diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2013-11-27 17:11:02 +0100 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2013-11-27 17:11:02 +0100 |
commit | e556b76dee419bb6b85e17116bcd05f504add65d (patch) | |
tree | e0d9670e26d496af7ba240aa32246ee41c8c9891 | |
parent | 858e843e0e6dac017d1b8cba74083bb0673ecf4b (diff) | |
download | sonarqube-e556b76dee419bb6b85e17116bcd05f504add65d.tar.gz sonarqube-e556b76dee419bb6b85e17116bcd05f504add65d.zip |
SONAR-4797 Quality Profiles: replace "Backup" by "Back up"
3 files changed, 4 insertions, 3 deletions
diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties b/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties index cd3cdfc1c94..656c164955f 100644 --- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties +++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties @@ -20,6 +20,7 @@ ascending=Ascending assignee=Assignee author=Author back=Back +backup=Backup backup_verb=Back up blocker=Blocker bold=Bold diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/_restore_form.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/_restore_form.html.erb index 95eaab32306..0948c6a5800 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/_restore_form.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/_restore_form.html.erb @@ -8,7 +8,7 @@ <div class="modal-body"> <div class="modal-field"> - <label for="name"><%= message('backup_verb') -%> <em class="mandatory">*</em></label> + <label for="name"><%= message('backup') -%> <em class="mandatory">*</em></label> <%= file_field_tag 'backup' %> </div> @@ -19,4 +19,4 @@ <a href="#" onclick="return closeModalWindow()" id="restore-profile-cancel"><%= h message('cancel') -%></a> </div> </fieldset> -</form>
\ No newline at end of file +</form> diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/index.html.erb index 72a63f4c022..878981a759b 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/index.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/profiles/index.html.erb @@ -78,7 +78,7 @@ <% if profiles_administrator? %> - <td align="right"> + <td align="right" nowrap> <form method="post" action="<%= ApplicationController.root_context -%>/profiles/backup/<%= profile.id -%>" id="backup-<%= profile.key.parameterize -%>-form"> <a href="#" class="link-action" name="button_backup" id="backup_<%= u profile.key %>" onclick="$j('#backup-<%= profile.key.parameterize -%>-form').submit();return false;"><%= message('backup_verb') -%></a> </form> |