git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5523 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
582b3a0008
commit
2a2e6d71e3
|
@ -213,8 +213,9 @@ module RepositoriesHelper
|
|||
'<br />Local repository (e.g. /hgrepo, c:\hgrepo)' ) +
|
||||
content_tag('p', form.select(
|
||||
:path_encoding, [nil] + Setting::ENCODINGS,
|
||||
:label => l("field_scm_path_encoding")) +
|
||||
'<br />Default: UTF-8')
|
||||
:label => l("field_scm_path_encoding")
|
||||
) +
|
||||
'<br />' + l("text_scm_path_encoding_note"))
|
||||
end
|
||||
|
||||
def git_field_tags(form, repository)
|
||||
|
@ -224,8 +225,9 @@ module RepositoriesHelper
|
|||
'<br />Bare and local repository (e.g. /gitrepo, c:\gitrepo)') +
|
||||
content_tag('p', form.select(
|
||||
:path_encoding, [nil] + Setting::ENCODINGS,
|
||||
:label => l("field_scm_path_encoding")) +
|
||||
'<br />Default: UTF-8')
|
||||
:label => l("field_scm_path_encoding")
|
||||
) +
|
||||
'<br />' + l("text_scm_path_encoding_note"))
|
||||
end
|
||||
|
||||
def cvs_field_tags(form, repository)
|
||||
|
@ -240,8 +242,9 @@ module RepositoriesHelper
|
|||
:label => l("field_commit_logs_encoding"), :required => true)) +
|
||||
content_tag('p', form.select(
|
||||
:path_encoding, [nil] + Setting::ENCODINGS,
|
||||
:label => l("field_scm_path_encoding")) +
|
||||
'<br />Default: UTF-8')
|
||||
:label => l("field_scm_path_encoding")
|
||||
) +
|
||||
'<br />' + l("text_scm_path_encoding_note"))
|
||||
end
|
||||
|
||||
def bazaar_field_tags(form, repository)
|
||||
|
@ -259,7 +262,8 @@ module RepositoriesHelper
|
|||
:disabled => (repository && !repository.root_url.blank?))) +
|
||||
content_tag('p', form.select(
|
||||
:path_encoding, [nil] + Setting::ENCODINGS,
|
||||
:label => l("field_scm_path_encoding")) +
|
||||
'<br />Default: UTF-8')
|
||||
:label => l("field_scm_path_encoding")
|
||||
) +
|
||||
'<br />' + l("text_scm_path_encoding_note"))
|
||||
end
|
||||
end
|
||||
|
|
|
@ -936,6 +936,7 @@ en:
|
|||
text_zoom_in: Zoom in
|
||||
text_zoom_out: Zoom out
|
||||
text_warn_on_leaving_unsaved: "The current page contains unsaved text that will be lost if you leave this page."
|
||||
text_scm_path_encoding_note: "Default: UTF-8"
|
||||
|
||||
default_role_manager: Manager
|
||||
default_role_developer: Developer
|
||||
|
|
Loading…
Reference in New Issue