git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5520 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
bb929f4f75
commit
379503b591
|
@ -213,7 +213,7 @@ module RepositoriesHelper
|
|||
'<br />Local repository (e.g. /hgrepo, c:\hgrepo)' ) +
|
||||
content_tag('p', form.select(
|
||||
:path_encoding, [nil] + Setting::ENCODINGS,
|
||||
:label => 'Path encoding') +
|
||||
:label => l("field_scm_path_encoding")) +
|
||||
'<br />Default: UTF-8')
|
||||
end
|
||||
|
||||
|
@ -224,7 +224,7 @@ module RepositoriesHelper
|
|||
'<br />Bare and local repository (e.g. /gitrepo, c:\gitrepo)') +
|
||||
content_tag('p', form.select(
|
||||
:path_encoding, [nil] + Setting::ENCODINGS,
|
||||
:label => 'Path encoding') +
|
||||
:label => l("field_scm_path_encoding")) +
|
||||
'<br />Default: UTF-8')
|
||||
end
|
||||
|
||||
|
@ -240,7 +240,7 @@ module RepositoriesHelper
|
|||
:label => l("field_commit_logs_encoding"), :required => true)) +
|
||||
content_tag('p', form.select(
|
||||
:path_encoding, [nil] + Setting::ENCODINGS,
|
||||
:label => 'Path encoding') +
|
||||
:label => l("field_scm_path_encoding")) +
|
||||
'<br />Default: UTF-8')
|
||||
end
|
||||
|
||||
|
@ -258,8 +258,8 @@ module RepositoriesHelper
|
|||
:size => 60, :required => true,
|
||||
:disabled => (repository && !repository.root_url.blank?))) +
|
||||
content_tag('p', form.select(
|
||||
:path_encoding, [nil] + Setting::ENCODINGS,
|
||||
:label => 'Path encoding') +
|
||||
'<br />Default: UTF-8')
|
||||
:path_encoding, [nil] + Setting::ENCODINGS,
|
||||
:label => l("field_scm_path_encoding")) +
|
||||
'<br />Default: UTF-8')
|
||||
end
|
||||
end
|
||||
|
|
|
@ -310,6 +310,7 @@ en:
|
|||
field_issues_visibility: Issues visibility
|
||||
field_is_private: Private
|
||||
field_commit_logs_encoding: Commit messages encoding
|
||||
field_scm_path_encoding: Path encoding
|
||||
|
||||
setting_app_title: Application title
|
||||
setting_app_subtitle: Application subtitle
|
||||
|
|
Loading…
Reference in New Issue