diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-05-16 16:01:39 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-05-16 16:09:12 +0200 |
commit | 7780e113a3893223328a1ad8028f4ab979c27ce4 (patch) | |
tree | 118044fd3f87242416b3fe00c408cb1f5ac2fe40 | |
parent | e06fcaf99022af6a9862aa92f6a0e316a87f5ee7 (diff) | |
download | sonarqube-7780e113a3893223328a1ad8028f4ab979c27ce4.tar.gz sonarqube-7780e113a3893223328a1ad8028f4ab979c27ce4.zip |
SONAR-3755 rename button of comment edition
-rw-r--r-- | plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties | 1 | ||||
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/issue/_edit_comment_form.html.erb | 2 |
2 files changed, 1 insertions, 2 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 ccf358a071f..4b0dda7fe08 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 @@ -536,7 +536,6 @@ issue.comment.submit=Comment issue.comment.delete_confirm_title=Delete Comment issue.comment.delete_confirm_message=Do you want to delete this comment? issue.comment.delete_confirm_button=Delete -issue.edit_comment.submit=Edit Comment issue.transition.resolve=Resolve issue.transition.falsepositive=False-Positive issue.transition.reopen=Reopen diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/issue/_edit_comment_form.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/issue/_edit_comment_form.html.erb index 80620759567..05a94ef9d7d 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/issue/_edit_comment_form.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/issue/_edit_comment_form.html.erb @@ -8,7 +8,7 @@ </tr> <tr> <td style="padding-top: 5px"> - <input type="submit" value="<%= message('issue.edit_comment.submit') -%>" + <input type="submit" value="<%= message('save') -%>" onclick="doEditIssueComment(this);return false"> <%= link_to_function message('cancel'), 'refreshIssue(this)' -%> <span class="loading hidden"></span> |