]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/changesets/index.atom.builder
Move all browse.changeset strings to changesets locale
[rails.git] / app / views / changesets / index.atom.builder
index a1af72b911d4917ab4862feb504c099d5106e62d..13c6bd5a43dafd250715cd14339a9cc3d76d2caa 100644 (file)
@@ -25,9 +25,9 @@ atom_feed(:language => I18n.locale, :schema_date => 2009,
                  :type => "application/osmChange+xml"
 
       if !changeset.tags.empty? && changeset.tags.key?("comment")
-        entry.title t("browse.changeset.feed.title_comment", :id => changeset.id, :comment => changeset.tags["comment"]), :type => "html"
+        entry.title t(".feed.title_comment", :id => changeset.id, :comment => changeset.tags["comment"])
       else
-        entry.title t("browse.changeset.feed.title", :id => changeset.id)
+        entry.title t(".feed.title", :id => changeset.id)
       end
 
       if changeset.user.data_public?
@@ -50,7 +50,7 @@ atom_feed(:language => I18n.locale, :schema_date => 2009,
           end
           if changeset.user.data_public?
             table.tr do |tr|
-              tr.th t("browse.changeset.belongs_to")
+              tr.th t(".feed.belongs_to")
               tr.td do |td|
                 td.a changeset.user.display_name, :href => user_url(changeset.user, :only_path => false)
               end