diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2012-12-05 16:29:43 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2012-12-05 16:29:43 +0100 |
commit | 9ff63b0fae2cd7e97a56c147f001c840899204d5 (patch) | |
tree | 765567f20d4d83c4567f39b87bf80a94a66abcf2 | |
parent | 2a634cc4d455da1bb56b7dac6a2608a38df82045 (diff) | |
download | sonarqube-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.properties | 1 | ||||
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/helpers/alerts_helper.rb | 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 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}>Δ #{period_label}</option>" else selected = (alert.period ? 'selected' : '') - "<option value='' #{selected}>#{message('absolute_value')}</option>" + "<option value='' #{selected}>#{message('value')}</option>" end end |