diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2014-03-06 18:13:57 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2014-03-06 18:13:57 +0100 |
commit | 0bfbecd3d0562f62e5e61c42579b2dce45d33a2c (patch) | |
tree | 4c4bfa84a0f8c18d9b6b588645b9032d96ac2a7b | |
parent | 53c42ee7bc0c3f2142dc7d3e4bd02a5c0d9ca8ca (diff) | |
download | sonarqube-0bfbecd3d0562f62e5e61c42579b2dce45d33a2c.tar.gz sonarqube-0bfbecd3d0562f62e5e61c42579b2dce45d33a2c.zip |
Fix alerts.warning_tooltip
2 files changed, 2 insertions, 2 deletions
diff --git a/sonar-server/src/main/java/org/sonar/server/qualitygate/ws/QgateAppHandler.java b/sonar-server/src/main/java/org/sonar/server/qualitygate/ws/QgateAppHandler.java index a9e1286173c..3b15e29111d 100644 --- a/sonar-server/src/main/java/org/sonar/server/qualitygate/ws/QgateAppHandler.java +++ b/sonar-server/src/main/java/org/sonar/server/qualitygate/ws/QgateAppHandler.java @@ -39,7 +39,7 @@ public class QgateAppHandler implements RequestHandler { "alerts.notes.ok", "alerts.notes.warn", "alerts.select_metric", - "alerts.warn_tooltip", + "alerts.warning_tooltip", "are_you_sure", "cancel", "copy", diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/quality_gates/templates/_quality_gate_detail_condition_template.hbs.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/quality_gates/templates/_quality_gate_detail_condition_template.hbs.erb index cbc78673732..6023e5b4357 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/quality_gates/templates/_quality_gate_detail_condition_template.hbs.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/quality_gates/templates/_quality_gate_detail_condition_template.hbs.erb @@ -24,7 +24,7 @@ {{/if}} </td> <td width="15%"> - <i class="icon-alert-warn" title="{{t 'alerts.warn_tooltip'}}"></i> + <i class="icon-alert-warn" title="{{t 'alerts.warning_tooltip'}}"></i> {{#if canEdit}} <input name="warning" class="measure-input" data-type="{{metric.type}}" type="text"> {{else}} |