scm: darcs: change "url" human attribute name from "Root directory" to "Path to repository".

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5527 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-04-23 04:40:45 +00:00
parent 7ad046f53d
commit 8696835b42
2 changed files with 2 additions and 2 deletions

View File

@ -198,7 +198,7 @@ module RepositoriesHelper
end
def darcs_field_tags(form, repository)
content_tag('p', form.text_field(:url, :label => 'Root directory',
content_tag('p', form.text_field(:url, :label => 'Path to repository',
:size => 60, :required => true,
:disabled => (repository && !repository.new_record?))) +
content_tag('p', form.select(

View File

@ -21,7 +21,7 @@ class Repository::Darcs < Repository
validates_presence_of :url, :log_encoding
ATTRIBUTE_KEY_NAMES = {
"url" => "Root directory",
"url" => "Path to repository",
}
def self.human_attribute_name(attribute_key_name)
ATTRIBUTE_KEY_NAMES[attribute_key_name] || super