diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2019-03-07 00:11:28 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-03-07 20:21:00 +0100 |
commit | a8aa40bd9bd4fea44111def143fa792b07b6013d (patch) | |
tree | 9850099ce10ba9f7894e71a1470c5a0ca3a8b0c5 /sonar-core | |
parent | bb6bb844e6a8ac1bb2fd9fdafa73e4005c994806 (diff) | |
download | sonarqube-a8aa40bd9bd4fea44111def143fa792b07b6013d.tar.gz sonarqube-a8aa40bd9bd4fea44111def143fa792b07b6013d.zip |
SONAR-11802 fix description of metric "sqale_index"
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/resources/org/sonar/l10n/core.properties | 2 | ||||
-rw-r--r-- | sonar-core/src/test/java/org/sonar/core/i18n/DefaultI18nTest.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sonar-core/src/main/resources/org/sonar/l10n/core.properties b/sonar-core/src/main/resources/org/sonar/l10n/core.properties index 9ba97fab7d9..57ef2a7c71a 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -1980,7 +1980,7 @@ metric.skipped_tests.short_name=Skipped metric.sqale_debt_ratio.description=Ratio of the actual technical debt compared to the estimated cost to develop the whole source code from scratch metric.sqale_debt_ratio.name=Technical Debt Ratio metric.sqale_debt_ratio.short_name=Debt Ratio -metric.sqale_index.description=Total effort (in days) to fix all the issues on the component and therefore to comply to all the requirements. +metric.sqale_index.description=Total effort (in hours) to fix all the issues on the component and therefore to comply to all the requirements. metric.sqale_index.name=Technical Debt metric.sqale_index.short_name=Debt metric.sqale_rating.description=A-to-E rating based on the technical debt ratio diff --git a/sonar-core/src/test/java/org/sonar/core/i18n/DefaultI18nTest.java b/sonar-core/src/test/java/org/sonar/core/i18n/DefaultI18nTest.java index ad6ebf9a5e5..aedf30248af 100644 --- a/sonar-core/src/test/java/org/sonar/core/i18n/DefaultI18nTest.java +++ b/sonar-core/src/test/java/org/sonar/core/i18n/DefaultI18nTest.java @@ -41,7 +41,7 @@ public class DefaultI18nTest { private TestSystem2 system2 = new TestSystem2(); - DefaultI18n underTest; + private DefaultI18n underTest; @Before public void before() { |