From d41d52877ed68902c45231a89715470774e7f944 Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 22 Mar 2023 09:49:34 +0000 Subject: [PATCH] Use with_locale for the copyright page This avoids having to override the locale on each and every translation --- app/views/site/copyright.html.erb | 84 ++++++++++++++++--------------- 1 file changed, 44 insertions(+), 40 deletions(-) diff --git a/app/views/site/copyright.html.erb b/app/views/site/copyright.html.erb index 3253aebe1..977398660 100644 --- a/app/views/site/copyright.html.erb +++ b/app/views/site/copyright.html.erb @@ -35,53 +35,57 @@ <% end %> <% end %> - <%= tag.h1 :lang => @locale, :dir => t("html.dir", :locale => @locale) do %> - <%= t ".legal_babble.title_html", :locale => @locale %> + <% I18n.with_locale @locale do %> + <%= tag.h1 :lang => @locale, :dir => t("html.dir") do %> + <%= t ".legal_babble.title_html" %> + <% end %> <% end %> <% end %> -<%= tag.div :lang => @locale, :dir => t("html.dir", :locale => @locale) do %> -

<%= t ".legal_babble.intro_1_html", :locale => @locale %>

-

<%= t ".legal_babble.intro_2_html", :locale => @locale %>

-

<%= t ".legal_babble.intro_3_1_html", :locale => @locale %>

+<% I18n.with_locale @locale do %> + <%= tag.div :lang => @locale, :dir => t("html.dir") do %> +

<%= t ".legal_babble.intro_1_html" %>

+

<%= t ".legal_babble.intro_2_html" %>

+

<%= t ".legal_babble.intro_3_1_html" %>

-

<%= t ".legal_babble.credit_title_html", :locale => @locale %>

-

<%= t ".legal_babble.credit_1_html", :locale => @locale %>

-

<%= t ".legal_babble.credit_2_1_html", :locale => @locale %>

-

<%= t ".legal_babble.credit_3_1_html", :locale => @locale %>

-

<%= t ".legal_babble.credit_4_html", :locale => @locale %>

-

<%= image_tag("attribution_example.png", - :alt => t(".legal_babble.attribution_example.alt"), - :border => 0, - :title => t(".legal_babble.attribution_example.title")) %>

+

<%= t ".legal_babble.credit_title_html" %>

+

<%= t ".legal_babble.credit_1_html" %>

+

<%= t ".legal_babble.credit_2_1_html" %>

+

<%= t ".legal_babble.credit_3_1_html" %>

+

<%= t ".legal_babble.credit_4_html" %>

+

<%= image_tag("attribution_example.png", + :alt => t(".legal_babble.attribution_example.alt"), + :border => 0, + :title => t(".legal_babble.attribution_example.title")) %>

-

<%= t ".legal_babble.more_title_html", :locale => @locale %>

-

<%= t ".legal_babble.more_1_html", :locale => @locale %>

-

<%= t ".legal_babble.more_2_html", :locale => @locale %>

+

<%= t ".legal_babble.more_title_html" %>

+

<%= t ".legal_babble.more_1_html" %>

+

<%= t ".legal_babble.more_2_html" %>

-

<%= t ".legal_babble.contributors_title_html", :locale => @locale %>

-

<%= t ".legal_babble.contributors_intro_html", :locale => @locale %>

- -

<%= t ".legal_babble.contributors_footer_1_html", :locale => @locale %>

-

<%= t ".legal_babble.contributors_footer_2_html", :locale => @locale %>

+

<%= t ".legal_babble.contributors_title_html" %>

+

<%= t ".legal_babble.contributors_intro_html" %>

+ +

<%= t ".legal_babble.contributors_footer_1_html" %>

+

<%= t ".legal_babble.contributors_footer_2_html" %>

-

<%= t ".legal_babble.infringement_title_html", :locale => @locale %>

-

<%= t ".legal_babble.infringement_1_html", :locale => @locale %>

-

<%= t ".legal_babble.infringement_2_html", :locale => @locale %>

+

<%= t ".legal_babble.infringement_title_html" %>

+

<%= t ".legal_babble.infringement_1_html" %>

+

<%= t ".legal_babble.infringement_2_html" %>

-

<%= t ".legal_babble.trademarks_title_html", :locale => @locale %>

-

<%= t ".legal_babble.trademarks_1_html", :locale => @locale %>

+

<%= t ".legal_babble.trademarks_title_html" %>

+

<%= t ".legal_babble.trademarks_1_html" %>

+ <% end %> <% end %> -- 2.43.2