]> source.dussan.org Git - sonarqube.git/commitdiff
Replace absolute value by value in alert periods select
authorJulien Lancelot <julien.lancelot@gmail.com>
Wed, 5 Dec 2012 15:29:43 +0000 (16:29 +0100)
committerJulien Lancelot <julien.lancelot@gmail.com>
Wed, 5 Dec 2012 15:29:43 +0000 (16:29 +0100)
plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties
sonar-server/src/main/webapp/WEB-INF/app/helpers/alerts_helper.rb

index eb8aa0ba0b71303483c0bf6988715b3fc7cf4bee..8cd7fec38b640658b6bd944a318606fd9ac871ba 100644 (file)
@@ -216,7 +216,6 @@ since_version_detailed=since version {0} ({1})
 since_previous_version=since previous version
 since_previous_version_detailed=since previous version ({0})
 time_changes=Time changes
-absolute_value=Absolute value
 
 #------------------------------------------------------------------------------
 #
index e39cf586981357f7294aba029c709bff81a33b64..97c34292b85fe77734fb949f98c6f3602d318d82 100644 (file)
@@ -95,7 +95,7 @@ module AlertsHelper
       "<option value='#{index}' #{selected}>&Delta; #{period_label}</option>"
     else
       selected = (alert.period ? 'selected' : '')
-      "<option value='' #{selected}>#{message('absolute_value')}</option>"
+      "<option value='' #{selected}>#{message('value')}</option>"
     end
   end