From 847d75038b902226a86d1a0c8a87ce9da157e38f Mon Sep 17 00:00:00 2001 From: Jens Ulferts Date: Wed, 25 Jan 2012 17:58:39 +0100 Subject: [PATCH] having application title displayed in the impaired settings --- app/views/my/account.rhtml | 2 +- app/views/my/first_login.rhtml | 2 +- app/views/users/_form.rhtml | 2 +- app/views/users/_impaired_settings.rhtml | 7 +++++-- config/locales/bg.yml | 4 ++-- config/locales/bs.yml | 4 ++-- config/locales/ca.yml | 5 ++--- config/locales/cs.yml | 4 ++-- config/locales/da.yml | 4 ++-- config/locales/de.yml | 4 ++-- config/locales/el.yml | 4 ++-- config/locales/en-GB.yml | 4 ++-- config/locales/en.yml | 4 ++-- config/locales/es.yml | 4 ++-- config/locales/eu.yml | 4 ++-- config/locales/fa.yml | 4 ++-- config/locales/fi.yml | 4 ++-- config/locales/fr.yml | 4 ++-- config/locales/gl.yml | 4 ++-- config/locales/he.yml | 4 ++-- config/locales/hr.yml | 4 ++-- config/locales/hu.yml | 4 ++-- config/locales/id.yml | 4 ++-- config/locales/it.yml | 4 ++-- config/locales/ja.yml | 4 ++-- config/locales/ko.yml | 4 ++-- config/locales/lt.yml | 4 ++-- config/locales/lv.yml | 4 ++-- config/locales/mk.yml | 4 ++-- config/locales/mn.yml | 4 ++-- config/locales/nl.yml | 4 ++-- config/locales/no.yml | 4 ++-- config/locales/pl.yml | 4 ++-- config/locales/pt-BR.yml | 4 ++-- config/locales/pt.yml | 4 ++-- config/locales/ro.yml | 4 ++-- config/locales/ru.yml | 4 ++-- config/locales/sk.yml | 4 ++-- config/locales/sl.yml | 4 ++-- config/locales/sr-YU.yml | 4 ++-- config/locales/sr.yml | 4 ++-- config/locales/sv.yml | 4 ++-- config/locales/th.yml | 4 ++-- config/locales/tr.yml | 4 ++-- config/locales/uk.yml | 4 ++-- config/locales/vi.yml | 4 ++-- config/locales/zh-TW.yml | 4 ++-- config/locales/zh.yml | 4 ++-- 48 files changed, 96 insertions(+), 94 deletions(-) diff --git a/app/views/my/account.rhtml b/app/views/my/account.rhtml index 6149b2c68c..9572d529d7 100644 --- a/app/views/my/account.rhtml +++ b/app/views/my/account.rhtml @@ -34,7 +34,7 @@ <%= render :partial => 'users/mail_notifications' %> -

<%=l(:field_impaired_settings)%>

+

<%=l(:field_impaired_settings, :app_title => Setting.app_title)%>

<%= render :partial => 'users/impaired_settings' %>
diff --git a/app/views/my/first_login.rhtml b/app/views/my/first_login.rhtml index 8163f5c782..56d6867273 100644 --- a/app/views/my/first_login.rhtml +++ b/app/views/my/first_login.rhtml @@ -1,5 +1,5 @@ <% form_tag({:controller => 'my', :action => "first_login", :back_url => @back_url }, {:method => :put}) do %> -

<%=l(:field_impaired_settings)%>

+

<%=l(:field_impaired_settings, :app_title => Setting.app_title)%>

<%= render :partial => "users/impaired_settings" %>
diff --git a/app/views/users/_form.rhtml b/app/views/users/_form.rhtml index 1f8aa0cc66..a35366410f 100644 --- a/app/views/users/_form.rhtml +++ b/app/views/users/_form.rhtml @@ -20,7 +20,7 @@
-

<%=l(:field_impaired_settings)%>

+

<%=l(:field_impaired_settings, :app_title => Setting.app_title)%>

<%= render :partial => "users/impaired_settings" %>
diff --git a/app/views/users/_impaired_settings.rhtml b/app/views/users/_impaired_settings.rhtml index ebdfa4717a..938eeb27e7 100644 --- a/app/views/users/_impaired_settings.rhtml +++ b/app/views/users/_impaired_settings.rhtml @@ -1,3 +1,6 @@ -<% fields_for :pref, @user.pref, :builder => TabularFormBuilder, :lang => current_language do |pref_fields| %> -

<%= pref_fields.check_box :impaired %>

+<% fields_for :pref, @user.pref, :lang => current_language do |pref_fields| %> +

+ <%= pref_fields.label(:impaired, t(:field_impaired, :app_title => Setting.app_title))%> + <%= pref_fields.check_box :impaired %> +

<% end %> diff --git a/config/locales/bg.yml b/config/locales/bg.yml index 08b6169ac6..22ffe32315 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -1003,9 +1003,9 @@ bg: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/bs.yml b/config/locales/bs.yml index 5368d57772..618526d429 100644 --- a/config/locales/bs.yml +++ b/config/locales/bs.yml @@ -1017,9 +1017,9 @@ bs: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/ca.yml b/config/locales/ca.yml index 9ca0f3fcbd..58213e2745 100644 --- a/config/locales/ca.yml +++ b/config/locales/ca.yml @@ -1006,9 +1006,8 @@ ca: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users - search_input_placeholder: search ... + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/cs.yml b/config/locales/cs.yml index f539f2a8be..e8d0e53a73 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -1227,9 +1227,9 @@ cs: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/da.yml b/config/locales/da.yml index 54cf560f83..8eeb369bb5 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -1019,9 +1019,9 @@ da: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/de.yml b/config/locales/de.yml index a28e65f9fa..26aaa91fe0 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -1001,8 +1001,8 @@ de: field_effective_date: "Abgabedatum" label_news_comment_added: "Kommentar einer News hinzugefügt" field_warn_on_leaving_unsaved: "Beim Verlassen einer Seite mit ungespeichertem Text warnen" - field_impaired_settings: "ChiliProject bietet eine optimierte Oberfläche für motorisch- oder seh-behinderte Nutzer" - field_impaired: "Angepasste ChiliProject-Oberfläche benutzen" + field_impaired_settings: "%{app_title} bietet eine optimierte Oberfläche für motorisch- oder seh-behinderte Nutzer" + field_impaired: "Angepasste %{app_title}-Oberfläche benutzen" text_warn_on_leaving_unsaved: "Der eingegebene Text wird nicht gespeichert, wenn sie die Seite jetzt verlassen." text_default_encoding: "Default: UTF-8" text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) diff --git a/config/locales/el.yml b/config/locales/el.yml index 37f30c469a..34b231dc07 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -1003,9 +1003,9 @@ el: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/en-GB.yml b/config/locales/en-GB.yml index 0fe8776598..e4fbcd94b1 100644 --- a/config/locales/en-GB.yml +++ b/config/locales/en-GB.yml @@ -1007,9 +1007,9 @@ en-GB: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/en.yml b/config/locales/en.yml index 8caaaa512c..7ca84d1ef2 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -309,8 +309,8 @@ en: field_text: Text field field_visible: Visible field_warn_on_leaving_unsaved: "Warn me when leaving a page with unsaved text" - field_impaired_settings: "ChiliProject offers a slightly different User Interface for visually/motorically impaired Users" - field_impaired: "Use adjusted ChiliProject Interface" + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" setting_app_title: Application title setting_app_subtitle: Application subtitle diff --git a/config/locales/es.yml b/config/locales/es.yml index 621edeb65b..c255bf9dca 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -1040,9 +1040,9 @@ es: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/eu.yml b/config/locales/eu.yml index 8bd664b3eb..03abe69343 100644 --- a/config/locales/eu.yml +++ b/config/locales/eu.yml @@ -1007,9 +1007,9 @@ eu: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/fa.yml b/config/locales/fa.yml index f00bd82ea4..9855fc6f3a 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -1006,9 +1006,9 @@ fa: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/fi.yml b/config/locales/fi.yml index 34db1861e8..84528b82e0 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -1024,9 +1024,9 @@ fi: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/fr.yml b/config/locales/fr.yml index b8e4dc4dd9..cb82c12a03 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -1021,9 +1021,9 @@ fr: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/gl.yml b/config/locales/gl.yml index ee8b0a8750..bf7e8110fe 100644 --- a/config/locales/gl.yml +++ b/config/locales/gl.yml @@ -1015,9 +1015,9 @@ gl: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/he.yml b/config/locales/he.yml index dfadc9a434..4e610ca32b 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -1008,9 +1008,9 @@ he: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/hr.yml b/config/locales/hr.yml index 97860ede62..de6314fc97 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -1010,9 +1010,9 @@ hr: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/hu.yml b/config/locales/hu.yml index 9513270550..b1cadc3787 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -1022,9 +1022,9 @@ description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/id.yml b/config/locales/id.yml index 9e2b11e560..128208e842 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -1011,9 +1011,9 @@ id: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/it.yml b/config/locales/it.yml index f6762b9b7d..d714056ec6 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -1004,9 +1004,9 @@ it: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/ja.yml b/config/locales/ja.yml index 1ca95f940b..3e6fa65f67 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -1025,9 +1025,9 @@ ja: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/ko.yml b/config/locales/ko.yml index 6be8f2bfe4..2a5aede6db 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -1055,9 +1055,9 @@ ko: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/lt.yml b/config/locales/lt.yml index 3a46f43100..47f48a7b93 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -1063,9 +1063,9 @@ lt: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/lv.yml b/config/locales/lv.yml index 96bf518f85..caf475663e 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -998,9 +998,9 @@ lv: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/mk.yml b/config/locales/mk.yml index 1bc71196de..6c5a633fdf 100644 --- a/config/locales/mk.yml +++ b/config/locales/mk.yml @@ -1003,9 +1003,9 @@ mk: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/mn.yml b/config/locales/mn.yml index 5ecfb86cf0..413cf07ad0 100644 --- a/config/locales/mn.yml +++ b/config/locales/mn.yml @@ -1004,9 +1004,9 @@ mn: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 1933a241e9..d7317522ae 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -985,9 +985,9 @@ nl: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/no.yml b/config/locales/no.yml index 2cc14c74bc..dae7cc0793 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -990,9 +990,9 @@ description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/pl.yml b/config/locales/pl.yml index c4d47896b4..89e73df309 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -1020,9 +1020,9 @@ pl: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml index d933ad38db..0fbc83a5ae 100644 --- a/config/locales/pt-BR.yml +++ b/config/locales/pt-BR.yml @@ -1027,9 +1027,9 @@ pt-BR: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/pt.yml b/config/locales/pt.yml index 1a6f3b463a..e5250717ab 100644 --- a/config/locales/pt.yml +++ b/config/locales/pt.yml @@ -1007,9 +1007,9 @@ pt: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/ro.yml b/config/locales/ro.yml index c529e7c5fe..e6f97a24b3 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -996,9 +996,9 @@ ro: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/ru.yml b/config/locales/ru.yml index 075c985d47..48b33d0913 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -1116,9 +1116,9 @@ ru: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/sk.yml b/config/locales/sk.yml index 1ff7d8e00f..0b1ad4761b 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -998,9 +998,9 @@ sk: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/sl.yml b/config/locales/sl.yml index 1272b31d97..3a9a498ecf 100644 --- a/config/locales/sl.yml +++ b/config/locales/sl.yml @@ -999,9 +999,9 @@ sl: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/sr-YU.yml b/config/locales/sr-YU.yml index 37deb42412..b1eecdfe9a 100644 --- a/config/locales/sr-YU.yml +++ b/config/locales/sr-YU.yml @@ -1003,9 +1003,9 @@ sr-YU: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/sr.yml b/config/locales/sr.yml index c43ef94f99..5dca767d9d 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -1004,9 +1004,9 @@ sr: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/sv.yml b/config/locales/sv.yml index 19e8fbf75b..1f291e9996 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -1045,9 +1045,9 @@ sv: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/th.yml b/config/locales/th.yml index 7811d7cce5..cba810435f 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -1000,9 +1000,9 @@ th: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/tr.yml b/config/locales/tr.yml index d9b9453014..caa8e0b415 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -1022,9 +1022,9 @@ tr: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/uk.yml b/config/locales/uk.yml index 84d36f9059..008f7b954e 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -999,9 +999,9 @@ uk: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/vi.yml b/config/locales/vi.yml index 9ee28d4082..9bb1a5ce1e 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -1054,9 +1054,9 @@ vi: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/zh-TW.yml b/config/locales/zh-TW.yml index 8ab8565a3c..acaf7d9ee5 100644 --- a/config/locales/zh-TW.yml +++ b/config/locales/zh-TW.yml @@ -1085,9 +1085,9 @@ description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface diff --git a/config/locales/zh.yml b/config/locales/zh.yml index 1c48829d74..c52983114c 100644 --- a/config/locales/zh.yml +++ b/config/locales/zh.yml @@ -1017,9 +1017,9 @@ zh: description_enter_number: Enter number description_select_issue: Select issue label_table_of_contents: Table of Contents - field_impaired_settings: ChiliProject offers a slightly different User Interface for visually/motorically impaired Users + field_impaired_settings: "%{app_title} offers a slightly different User Interface for visually/motorically impaired Users" + field_impaired: "Use adjusted %{app_title} Interface" search_input_placeholder: search ... text_analyze: "Further analyze: %{subject}" label_project_view_all: View all projects description_subissue: Subissue of - field_impaired: Use adjusted ChiliProject Interface