end
def filesystem_field_tags(form, repository)
- content_tag('p', form.text_field(:url, :label => 'Root directory',
+ content_tag('p', form.text_field(
+ :url, :label => l("field_root_directory"),
:size => 60, :required => true,
:disabled => (repository && !repository.root_url.blank?))) +
content_tag('p', form.select(
attr_protected :root_url
validates_presence_of :url
- ATTRIBUTE_KEY_NAMES = {
- "url" => "Root directory",
- }
def self.human_attribute_name(attribute_key_name)
- ATTRIBUTE_KEY_NAMES[attribute_key_name] || super
+ attr_name = attribute_key_name
+ if attr_name == "url"
+ attr_name = "root_directory"
+ end
+ super(attr_name)
end
def self.scm_adapter_class
field_commit_logs_encoding: Commit messages encoding
field_scm_path_encoding: Path encoding
field_path_to_repository: Path to repository
+ field_root_directory: Root directory
setting_app_title: Application title
setting_app_subtitle: Application subtitle