]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5336 Add missing labels for quality gate icons
authorJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Tue, 17 Jun 2014 15:15:12 +0000 (17:15 +0200)
committerJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Tue, 17 Jun 2014 15:15:12 +0000 (17:15 +0200)
sonar-core/src/main/resources/org/sonar/l10n/core.properties
sonar-server/src/main/hbs/quality-gates/quality-gate-detail-condition.hbs

index 9cdd515603d2df676b2609d4e1bf9eed4d868332..4ca65902a6f8a7c2ba5a536a36579863eb877d78 100644 (file)
@@ -1664,6 +1664,8 @@ quality_gates.delete.confirm.default=Are you sure you want to delete the "{0}" q
 quality_gates.delete_condition=Delete Condition
 quality_gates.delete_condition.confirm.message=Are you sure you want to delete the "{0}" condition?
 quality_gates.project_period=over period {0} - defined at project level
+quality_gates.warning_tooltip=Warning Threshold
+quality_gates.error_tooltip=Error Threshold
 
 
 #------------------------------------------------------------------------------
index 7acd9800f2a80058ce7de6ae3a85b5923f7df5e9..79973fe9a3808578007057f8f68e25dda7cf1d9d 100644 (file)
@@ -28,7 +28,7 @@
   {{/if}}
 </td>
 <td width="15%" nowrap="nowrap">
-  <i class="icon-alert-warn" title="{{t 'alerts.warning_tooltip'}}"></i>
+  <i class="icon-alert-warn" title="{{t 'quality_gates.warning_tooltip'}}"></i>
   {{#if canEdit}}
     <input name="warning" class="measure-input" data-type="{{metric.type}}" placeholder="{{metric.placeholder}}"
            type="text">
@@ -37,7 +37,7 @@
   {{/if}}
 </td>
 <td width="15%" nowrap="nowrap">
-  <i class="icon-alert-error" title="{{t 'alerts.error_tooltip'}}"></i>
+  <i class="icon-alert-error" title="{{t 'quality_gates.error_tooltip'}}"></i>
   {{#if canEdit}}
     <input name="error" class="measure-input" data-type="{{metric.type}}" placeholder="{{metric.placeholder}}"
            type="text">
@@ -59,4 +59,4 @@
       </div>
     {{/if}}
   {{/if}}
-</td>
\ No newline at end of file
+</td>