From bfacd827a85a6cfdde7d3166fdb78ef591e1a043 Mon Sep 17 00:00:00 2001 From: Simon COURTOIS Date: Thu, 28 Apr 2011 16:42:07 +0200 Subject: [PATCH] Removig english strings from RepositoriesHelper --- app/helpers/repositories_helper.rb | 25 ++++++++++++------------- config/locales/bg.yml | 5 +++++ config/locales/bs.yml | 5 +++++ config/locales/ca.yml | 5 +++++ config/locales/cs.yml | 5 +++++ config/locales/da.yml | 5 +++++ config/locales/de.yml | 5 +++++ config/locales/el.yml | 5 +++++ config/locales/en-GB.yml | 5 +++++ config/locales/en.yml | 4 ++++ config/locales/es.yml | 5 +++++ config/locales/eu.yml | 5 +++++ config/locales/fa.yml | 5 +++++ config/locales/fi.yml | 5 +++++ config/locales/fr.yml | 5 +++++ config/locales/gl.yml | 5 +++++ config/locales/he.yml | 5 +++++ config/locales/hr.yml | 5 +++++ config/locales/hu.yml | 5 +++++ config/locales/id.yml | 5 +++++ config/locales/it.yml | 5 +++++ config/locales/ja.yml | 5 +++++ config/locales/ko.yml | 5 +++++ config/locales/lt.yml | 5 +++++ config/locales/lv.yml | 5 +++++ config/locales/mk.yml | 5 +++++ config/locales/mn.yml | 5 +++++ config/locales/nl.yml | 5 +++++ config/locales/no.yml | 5 +++++ config/locales/pl.yml | 5 +++++ config/locales/pt-BR.yml | 5 +++++ config/locales/pt.yml | 5 +++++ config/locales/ro.yml | 5 +++++ config/locales/ru.yml | 5 +++++ config/locales/sk.yml | 5 +++++ config/locales/sl.yml | 5 +++++ config/locales/sr-YU.yml | 5 +++++ config/locales/sr.yml | 5 +++++ config/locales/sv.yml | 5 +++++ config/locales/th.yml | 5 +++++ config/locales/tr.yml | 5 +++++ config/locales/uk.yml | 5 +++++ config/locales/vi.yml | 5 +++++ config/locales/zh-TW.yml | 5 +++++ config/locales/zh.yml | 5 +++++ 45 files changed, 231 insertions(+), 13 deletions(-) diff --git a/app/helpers/repositories_helper.rb b/app/helpers/repositories_helper.rb index 8e79101c..c8f6e8bf 100644 --- a/app/helpers/repositories_helper.rb +++ b/app/helpers/repositories_helper.rb @@ -217,45 +217,44 @@ module RepositoriesHelper def darcs_field_tags(form, repository) content_tag('p', form.text_field(:url, :label => :label_darcs_path, :size => 60, :required => true, :disabled => (repository && !repository.new_record?))) + content_tag('p', form.select(:log_encoding, [nil] + Setting::ENCODINGS, - :label => 'Commit messages encoding', :required => true)) + :label => l(:setting_commit_logs_encoding), :required => true)) end def mercurial_field_tags(form, repository) content_tag('p', form.text_field(:url, :label => :label_mercurial_path, :size => 60, :required => true, :disabled => (repository && !repository.root_url.blank?)) + - '
local repository (e.g. /hgrepo, c:\hgrepo)' ) + - content_tag('p', form.select( - :path_encoding, [nil] + Setting::ENCODINGS, - :label => 'Path encoding') + - '
Default: UTF-8') + '
' + l(:text_mercurial_repo_example)) + + content_tag('p', form.select(:path_encoding, [nil] + Setting::ENCODINGS, + :label => l(:label_path_encoding)) + + '
' + l(:text_default_encoding)) end def git_field_tags(form, repository) content_tag('p', form.text_field(:url, :label => :label_git_path, :size => 60, :required => true, :disabled => (repository && !repository.root_url.blank?)) + - '
a bare and local repository (e.g. /gitrepo, c:\gitrepo)') + + '
' + l(:text_git_repo_example)) + content_tag('p', form.select( :path_encoding, [nil] + Setting::ENCODINGS, - :label => 'Path encoding') + - '
Default: UTF-8') + :label => l(:label_path_encoding)) + + '
' + l(:text_default_encoding)) end def cvs_field_tags(form, repository) content_tag('p', form.text_field(:root_url, :label => :label_cvs_path, :size => 60, :required => true, :disabled => !repository.new_record?)) + content_tag('p', form.text_field(:url, :label => :label_cvs_module, :size => 30, :required => true, :disabled => !repository.new_record?)) + content_tag('p', form.select(:log_encoding, [nil] + Setting::ENCODINGS, - :label => 'Commit messages encoding', :required => true)) + :label => l(:setting_commit_logs_encoding), :required => true)) end def bazaar_field_tags(form, repository) content_tag('p', form.text_field(:url, :label => :label_bazaar_path, :size => 60, :required => true, :disabled => (repository && !repository.new_record?))) + content_tag('p', form.select(:log_encoding, [nil] + Setting::ENCODINGS, - :label => 'Commit messages encoding', :required => true)) + :label => l(:setting_commit_logs_encoding), :required => true)) end def filesystem_field_tags(form, repository) content_tag('p', form.text_field(:url, :label => :label_filesystem_path, :size => 60, :required => true, :disabled => (repository && !repository.root_url.blank?))) + content_tag('p', form.select(:path_encoding, [nil] + Setting::ENCODINGS, - :label => 'Path encoding') + - '
Default: UTF-8') + :label => l(:label_path_encoding)) + + '
' + l(:text_default_encoding)) end end diff --git a/config/locales/bg.yml b/config/locales/bg.yml index f7ff09e1..e5e32151 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -958,3 +958,8 @@ bg: button_collapse_all: Collapse all label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author field_effective_date: Due date + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/bs.yml b/config/locales/bs.yml index 9dcef1b4..2a18d88c 100644 --- a/config/locales/bs.yml +++ b/config/locales/bs.yml @@ -972,3 +972,8 @@ bs: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/ca.yml b/config/locales/ca.yml index 5a9ec46e..1f9384b6 100644 --- a/config/locales/ca.yml +++ b/config/locales/ca.yml @@ -961,3 +961,8 @@ ca: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/cs.yml b/config/locales/cs.yml index 617e1d60..225c25bf 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -1182,3 +1182,8 @@ cs: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/da.yml b/config/locales/da.yml index ffbb982a..ffdf8863 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -974,3 +974,8 @@ da: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/de.yml b/config/locales/de.yml index f93206a4..1e7b5f9b 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -975,3 +975,8 @@ de: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/el.yml b/config/locales/el.yml index 5816a4c8..e4d012b8 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -958,3 +958,8 @@ el: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/en-GB.yml b/config/locales/en-GB.yml index 3f16e789..2170e042 100644 --- a/config/locales/en-GB.yml +++ b/config/locales/en-GB.yml @@ -962,3 +962,8 @@ en-GB: label_mercurial_path: Root directory label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/en.yml b/config/locales/en.yml index e4477b53..fd6e2c98 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -809,6 +809,7 @@ en: label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding button_login: Login button_submit: Submit @@ -929,6 +930,9 @@ en: text_zoom_out: Zoom out text_powered_by: "Powered by %{link}" text_warn_on_leaving_unsaved: "The current page contains unsaved text that will be lost if you leave this page." + text_default_encoding: "Default: UTF-8" + text_mercurial_repo_example: "local repository (e.g. /hgrepo, c:\hgrepo)" + text_git_repo_example: "a bare and local repository (e.g. /gitrepo, c:\gitrepo)" default_role_manager: Manager default_role_developer: Developer diff --git a/config/locales/es.yml b/config/locales/es.yml index f220a13d..f8aad096 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -995,3 +995,8 @@ es: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/eu.yml b/config/locales/eu.yml index c16e6e19..21c6c44a 100644 --- a/config/locales/eu.yml +++ b/config/locales/eu.yml @@ -962,3 +962,8 @@ eu: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/fa.yml b/config/locales/fa.yml index a8e8a37c..4fa0a109 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -961,3 +961,8 @@ fa: text_powered_by: Powered by %{link} default_role_non_member: Non member label_mercurial_path: Root directory + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/fi.yml b/config/locales/fi.yml index e5539296..10620c26 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -979,3 +979,8 @@ fi: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/fr.yml b/config/locales/fr.yml index 6df8aa3b..7d0382e3 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -976,3 +976,8 @@ fr: label_git_path: Path to .git directory label_mercurial_path: Root directory field_effective_date: Due date + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/gl.yml b/config/locales/gl.yml index dd4aaef2..1f24b694 100644 --- a/config/locales/gl.yml +++ b/config/locales/gl.yml @@ -970,3 +970,8 @@ gl: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/he.yml b/config/locales/he.yml index 47f92f4a..17ef662a 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -963,3 +963,8 @@ he: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/hr.yml b/config/locales/hr.yml index a835dd49..837d1cc6 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -965,3 +965,8 @@ hr: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/hu.yml b/config/locales/hu.yml index c522d39d..58e2e7bc 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -977,3 +977,8 @@ label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/id.yml b/config/locales/id.yml index f3bd87e9..c543ff45 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -966,3 +966,8 @@ id: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/it.yml b/config/locales/it.yml index 04294568..a5290802 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -959,3 +959,8 @@ it: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/ja.yml b/config/locales/ja.yml index 199789fc..37d56f4c 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -980,3 +980,8 @@ ja: label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author field_effective_date: Due date + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/ko.yml b/config/locales/ko.yml index e6e11380..fd0c078c 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -1010,3 +1010,8 @@ ko: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/lt.yml b/config/locales/lt.yml index f2bfb60e..ada822a0 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -1018,3 +1018,8 @@ lt: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/lv.yml b/config/locales/lv.yml index dbea18ee..87a11053 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -953,3 +953,8 @@ lv: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/mk.yml b/config/locales/mk.yml index 5ee6efee..c35f48df 100644 --- a/config/locales/mk.yml +++ b/config/locales/mk.yml @@ -958,3 +958,8 @@ mk: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/mn.yml b/config/locales/mn.yml index d4fcd8b2..6277ffc7 100644 --- a/config/locales/mn.yml +++ b/config/locales/mn.yml @@ -959,3 +959,8 @@ mn: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 8c813d9b..8854a14c 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -940,3 +940,8 @@ nl: label_git_path: Path to .git directory text_powered_by: Powered by %{link} label_mercurial_path: Root directory + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/no.yml b/config/locales/no.yml index 37685001..d1f3042c 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -945,3 +945,8 @@ label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/pl.yml b/config/locales/pl.yml index 4d5b38f2..8f459418 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -975,3 +975,8 @@ pl: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml index 51a8d8f7..db89bd87 100644 --- a/config/locales/pt-BR.yml +++ b/config/locales/pt-BR.yml @@ -981,3 +981,8 @@ pt-BR: label_git_path: Path to .git directory text_powered_by: Powered by %{link} label_mercurial_path: Root directory + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/pt.yml b/config/locales/pt.yml index a78ddca8..d9ec309a 100644 --- a/config/locales/pt.yml +++ b/config/locales/pt.yml @@ -962,3 +962,8 @@ pt: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/ro.yml b/config/locales/ro.yml index 0e60e1da..c0a41e76 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -951,3 +951,8 @@ ro: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/ru.yml b/config/locales/ru.yml index a44f602e..382f0bbf 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -1071,3 +1071,8 @@ ru: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/sk.yml b/config/locales/sk.yml index d4006cb4..c7c28ecd 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -953,3 +953,8 @@ sk: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/sl.yml b/config/locales/sl.yml index bfd951ca..6a928928 100644 --- a/config/locales/sl.yml +++ b/config/locales/sl.yml @@ -954,3 +954,8 @@ sl: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/sr-YU.yml b/config/locales/sr-YU.yml index 5797a921..6e43db73 100644 --- a/config/locales/sr-YU.yml +++ b/config/locales/sr-YU.yml @@ -958,3 +958,8 @@ sr-YU: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/sr.yml b/config/locales/sr.yml index cd617572..a53b4840 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -959,3 +959,8 @@ sr: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/sv.yml b/config/locales/sv.yml index 7f08d80b..3d9a0122 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -1000,3 +1000,8 @@ sv: label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author field_effective_date: Due date label_news_comment_added: Comment added to a news + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/th.yml b/config/locales/th.yml index 55d24d0e..febda7c3 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -955,3 +955,8 @@ th: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/tr.yml b/config/locales/tr.yml index cd91c292..02d0cff6 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -977,3 +977,8 @@ tr: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/uk.yml b/config/locales/uk.yml index 506c9a87..ac8afd0a 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -954,3 +954,8 @@ uk: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/vi.yml b/config/locales/vi.yml index 33da5de5..df038cd5 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -1009,3 +1009,8 @@ vi: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/zh-TW.yml b/config/locales/zh-TW.yml index 44969f84..4ef2277b 100644 --- a/config/locales/zh-TW.yml +++ b/config/locales/zh-TW.yml @@ -1040,3 +1040,8 @@ label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author field_effective_date: Due date label_news_comment_added: Comment added to a news + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo) diff --git a/config/locales/zh.yml b/config/locales/zh.yml index 8d41e689..6c42072e 100644 --- a/config/locales/zh.yml +++ b/config/locales/zh.yml @@ -972,3 +972,8 @@ zh: label_news_comment_added: Comment added to a news field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. + text_default_encoding: "Default: UTF-8" + text_git_repo_example: a bare and local repository (e.g. /gitrepo, c:\gitrepo) + label_notify_member_plural: Email issue updates + label_path_encoding: Path encoding + text_mercurial_repo_example: local repository (e.g. /hgrepo, c:\hgrepo)