From: Tom Hughes Date: Tue, 27 Apr 2010 15:00:10 +0000 (+0100) Subject: Tweak the copyright page translation X-Git-Tag: live~6332^2 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/feb9582b071d6eb44bcc6fbc027049dd1f5c2042?hp=-c Tweak the copyright page translation --- feb9582b071d6eb44bcc6fbc027049dd1f5c2042 diff --git a/app/views/site/copyright.html.erb b/app/views/site/copyright.html.erb index 897f9cda3..eaaf3f366 100644 --- a/app/views/site/copyright.html.erb +++ b/app/views/site/copyright.html.erb @@ -10,9 +10,9 @@ { :rel => "license" }) %>

-<% if I18n.locale.to_s == "en" or params['locale'] == 'en' %> +<% if I18n.locale == 'en' or params[:copyright_locale] == 'en' %> - <% if params['orig_locale'] and params['orig_locale'] != params['locale'] %> + <% if t('license_page.legal_babble') != t('license_page.legal_babble', :locale => :en) %>

<%= t 'license_page.native.title' %>

<%= t 'license_page.native.text', @@ -26,20 +26,20 @@


<% end %> - <%= t('license_page.legal_babble', :locale => 'en') %> + <%= t('license_page.legal_babble', :locale => :en) %> <% else %> - <% if t('license_page.legal_babble') != t('license_page.legal_babble', :locale => 'en') %> + <% if t('license_page.legal_babble') != t('license_page.legal_babble', :locale => :en) %>

<%= t 'license_page.foreign.title' %>

<%= t 'license_page.foreign.text', :english_original_link => link_to(t('license_page.foreign.english_link'), :controller => 'site', :action => 'copyright', - :locale => 'en', - :orig_locale => I18n.locale.to_s) %> + :copyright_locale => 'en') %>


<% end %> + <%= t('license_page.legal_babble') %> <% end %> diff --git a/config/routes.rb b/config/routes.rb index df6efef60..9a86f9200 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -89,6 +89,7 @@ ActionController::Routing::Routes.draw do |map| map.connect '/', :controller => 'site', :action => 'index' map.connect '/edit', :controller => 'site', :action => 'edit' map.connect '/copyright', :controller => 'site', :action => 'copyright' + map.connect '/copyright/:copyright_locale', :controller => 'site', :action => 'copyright' map.connect '/history', :controller => 'changeset', :action => 'list' map.connect '/history/feed', :controller => 'changeset', :action => 'list', :format => :atom map.connect '/export', :controller => 'site', :action => 'export'