aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@gmail.com>2012-12-05 16:29:43 +0100
committerJulien Lancelot <julien.lancelot@gmail.com>2012-12-05 16:29:43 +0100
commit9ff63b0fae2cd7e97a56c147f001c840899204d5 (patch)
tree765567f20d4d83c4567f39b87bf80a94a66abcf2
parent2a634cc4d455da1bb56b7dac6a2608a38df82045 (diff)
downloadsonarqube-9ff63b0fae2cd7e97a56c147f001c840899204d5.tar.gz
sonarqube-9ff63b0fae2cd7e97a56c147f001c840899204d5.zip
Replace absolute value by value in alert periods select
-rw-r--r--plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties1
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/helpers/alerts_helper.rb2
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 eb8aa0ba0b7..8cd7fec38b6 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
@@ -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
#------------------------------------------------------------------------------
#
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/helpers/alerts_helper.rb b/sonar-server/src/main/webapp/WEB-INF/app/helpers/alerts_helper.rb
index e39cf586981..97c34292b85 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/helpers/alerts_helper.rb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/helpers/alerts_helper.rb
@@ -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