X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/db66d47e42bc267670ef00b3b2611b4b53cb40e9..9e1946b2837abe146777773177f4c48ffde8c06f:/lib/potlatch.rb diff --git a/lib/potlatch.rb b/lib/potlatch.rb index 4dfba12ef..cf8f5903d 100644 --- a/lib/potlatch.rb +++ b/lib/potlatch.rb @@ -83,7 +83,7 @@ module Potlatch when 'Hash' a=3.chr n.each do |k,v| - a+=encodestring(k)+encodevalue(v) + a+=encodestring(k.to_s)+encodevalue(v) end a+0.chr+0.chr+9.chr when 'String' @@ -195,7 +195,10 @@ module Potlatch } end - [presets,presetmenus,presetnames,colours,casing,areas,autotags,relcolours,relalphas,relwidths] + # Read internationalisation + localised = YAML::load(File.open("#{RAILS_ROOT}/config/potlatch/localised.yaml")) + + [presets,presetmenus,presetnames,colours,casing,areas,autotags,relcolours,relalphas,relwidths,localised] end end