From: Anton Khorev Date: Tue, 4 Jun 2024 13:34:03 +0000 (+0300) Subject: Move changeset subscribe/unsubscribe locale strings out of javascripts X-Git-Tag: live~451^2 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/0cd90e76db2842082008638270fd60b10053ae3a?ds=inline;hp=-c Move changeset subscribe/unsubscribe locale strings out of javascripts --- 0cd90e76db2842082008638270fd60b10053ae3a diff --git a/app/views/changesets/show.html.erb b/app/views/changesets/show.html.erb index 1d37e302a..6ae0efb8b 100644 --- a/app/views/changesets/show.html.erb +++ b/app/views/changesets/show.html.erb @@ -18,13 +18,13 @@ <% if current_user %>
<% if @changeset.subscribers.exists?(current_user.id) %> - <%= tag.button t("javascripts.changesets.show.unsubscribe"), + <%= tag.button t(".unsubscribe"), :class => "btn btn-sm btn-primary", :name => "unsubscribe", :data => { :method => "POST", :url => api_changeset_unsubscribe_url(@changeset) } %> <% else %> - <%= tag.button t("javascripts.changesets.show.subscribe"), + <%= tag.button t(".subscribe"), :class => "btn btn-sm btn-primary", :name => "subscribe", :data => { :method => "POST", diff --git a/app/views/diary_entries/show.html.erb b/app/views/diary_entries/show.html.erb index 6c0895380..1830c9ced 100644 --- a/app/views/diary_entries/show.html.erb +++ b/app/views/diary_entries/show.html.erb @@ -19,9 +19,9 @@ <% if current_user %>
<% if @entry.subscribers.exists?(current_user.id) %> - <%= link_to t("javascripts.changesets.show.unsubscribe"), diary_entry_unsubscribe_path(@entry.user, @entry), :method => :post, :class => "btn btn-sm btn-primary" %> + <%= link_to t(".unsubscribe"), diary_entry_unsubscribe_path(@entry.user, @entry), :method => :post, :class => "btn btn-sm btn-primary" %> <% else %> - <%= link_to t("javascripts.changesets.show.subscribe"), diary_entry_subscribe_path(@entry.user, @entry.id), :method => :post, :class => "btn btn-sm btn-primary" %> + <%= link_to t(".subscribe"), diary_entry_subscribe_path(@entry.user, @entry.id), :method => :post, :class => "btn btn-sm btn-primary" %> <% end %>
<% end %> diff --git a/config/locales/en.yml b/config/locales/en.yml index bad3ef025..4a103b21e 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -472,6 +472,8 @@ en: discussion: Discussion join_discussion: "Log in to join the discussion" still_open: "Changeset still open - discussion will open once the changeset is closed." + subscribe: "Subscribe" + unsubscribe: "Unsubscribe" comment_by_html: "Comment from %{user} %{time_ago}" hidden_comment_by_html: "Hidden comment from %{user} %{time_ago}" hide_comment: "hide" @@ -546,6 +548,8 @@ en: title: "%{user}'s Diary | %{title}" user_title: "%{user}'s Diary" discussion: "Discussion" + subscribe: "Subscribe" + unsubscribe: "Unsubscribe" leave_a_comment: "Leave a comment" login_to_leave_a_comment_html: "%{login_link} to leave a comment" login: "Log in" @@ -3172,10 +3176,6 @@ en: queryfeature_tooltip: Query features queryfeature_disabled_tooltip: Zoom in to query features embed_html_disabled: HTML embedding is not available for this map layer - changesets: - show: - subscribe: "Subscribe" - unsubscribe: "Unsubscribe" edit_help: Move the map and zoom in on a location you want to edit, then click here. directions: ascend: "Ascend"