diff options
author | Maria Odea B. Ching <oching@apache.org> | 2013-05-03 13:32:26 +0000 |
---|---|---|
committer | Maria Odea B. Ching <oching@apache.org> | 2013-05-03 13:32:26 +0000 |
commit | 364c398d8246af34c10a8c8b76fb820793409eab (patch) | |
tree | 734fac7e4dda9844ee46f4b46653782cdbb89ef4 | |
parent | 55d67a3575b2e6b302b13ab2f811d0976c1c5c75 (diff) | |
download | archiva-364c398d8246af34c10a8c8b76fb820793409eab.tar.gz archiva-364c398d8246af34c10a8c8b76fb820793409eab.zip |
o used camelcased id label in forms
o fixed typo in info message
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1478781 13f79535-47bb-0310-9956-ffa450edef68
2 files changed, 5 insertions, 5 deletions
diff --git a/archiva-modules/archiva-web/archiva-web-common/src/main/resources/org/apache/archiva/i18n/default.properties b/archiva-modules/archiva-web/archiva-web-common/src/main/resources/org/apache/archiva/i18n/default.properties index 61dd7c539..c528c028b 100644 --- a/archiva-modules/archiva-web/archiva-web-common/src/main/resources/org/apache/archiva/i18n/default.properties +++ b/archiva-modules/archiva-web/archiva-web-common/src/main/resources/org/apache/archiva/i18n/default.properties @@ -130,7 +130,7 @@ managedRepository.location.help.content=Location on File System (can be relative managedRepository.indexDirectory.help.title=Index Directory managedRepository.indexDirectory.help.content=Path to the Maven Index directory managedRepository.daysOlder.help.title=Days Older -managedRepository.daysOlder.help.content=For snapshots repositories, maximun file days age you want to keep +managedRepository.daysOlder.help.content=For snapshots repositories, maximum file days age you want to keep managedRepository.retentionCount.help.title=Retention Count managedRepository.retentionCount.help.content=For snapshots repositories, maximum of files you want to keep. managedRepository.description.help.content=A free description for your repository diff --git a/archiva-modules/archiva-web/archiva-webapp/src/main/webapp/js/templates/archiva/repositories.html b/archiva-modules/archiva-web/archiva-webapp/src/main/webapp/js/templates/archiva/repositories.html index d8e65c49c..9435f207b 100644 --- a/archiva-modules/archiva-web/archiva-webapp/src/main/webapp/js/templates/archiva/repositories.html +++ b/archiva-modules/archiva-web/archiva-webapp/src/main/webapp/js/templates/archiva/repositories.html @@ -205,7 +205,7 @@ <form id="managed-repository-edit-form" class="well form-horizontal"> <fieldset id="managed-repository-edit-fieldset"> <div class="control-group"> - <label class="control-label" for="id">${$.i18n.prop('id')}</label> + <label class="control-label" for="id">${$.i18n.prop('identifier')}</label> <div class="controls"> {{if update}} @@ -544,7 +544,7 @@ <form id="remote-repository-edit-form" class="well form-horizontal"> <fieldset id="remote-repository-edit-fieldset"> <div class="control-group"> - <label class="control-label" for="id">${$.i18n.prop('id')}</label> + <label class="control-label" for="id">${$.i18n.prop('identifier')}</label> <div class="controls"> {{if update}} @@ -904,7 +904,7 @@ <form id="network-proxy-edit-form" class="well form-horizontal"> <fieldset id="network-proxy-edit-fieldset"> <div class="control-group"> - <label class="control-label" for="id">${$.i18n.prop('id')}</label> + <label class="control-label" for="id">${$.i18n.prop('identifier')}</label> <div class="controls"> {{if update}} @@ -1429,7 +1429,7 @@ <form id="repository-group-edit-form" class="well"> <fieldset id="repository-group-edit-fieldset"> <div class="control-group"> - <label class="control-label" for="id">${$.i18n.prop('id')}</label> + <label class="control-label" for="id">${$.i18n.prop('identifier')}</label> <div class="controls"> <input type="text" class="input-medium required" id="id" name="id" size="15" data-bind="value: repositoryGroup.id,css:{'uneditable-input': update},readonly:update"/> |