diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2011-08-16 22:43:26 +0200 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2011-08-16 22:43:40 +0200 |
commit | 0054084c11dfb8565cc48b69f94a62a0f30c7576 (patch) | |
tree | 4c440ae180cefeae954dec619fdb253a87613134 /plugins | |
parent | b9395c6abef43d82f2936a17af85ce02cbebb834 (diff) | |
download | sonarqube-0054084c11dfb8565cc48b69f94a62a0f30c7576.tar.gz sonarqube-0054084c11dfb8565cc48b69f94a62a0f30c7576.zip |
SONAR-2716 Support localization of plugin properties
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/core.properties | 2 | ||||
-rw-r--r-- | plugins/sonar-surefire-plugin/src/test/java/org/sonar/plugins/surefire/FooTest.java | 46 |
2 files changed, 1 insertions, 47 deletions
diff --git a/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/core.properties b/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/core.properties index 4d5541356c2..e4880af457b 100644 --- a/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/core.properties +++ b/plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/core.properties @@ -420,7 +420,7 @@ dashboard.update_dashboard=Update dashboard # #------------------------------------------------------------------------------ settings.save_category=Save {0} settings -settings.category.General=General +property.category.General=General diff --git a/plugins/sonar-surefire-plugin/src/test/java/org/sonar/plugins/surefire/FooTest.java b/plugins/sonar-surefire-plugin/src/test/java/org/sonar/plugins/surefire/FooTest.java deleted file mode 100644 index aae1f119a48..00000000000 --- a/plugins/sonar-surefire-plugin/src/test/java/org/sonar/plugins/surefire/FooTest.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Sonar, open source software quality management tool. - * Copyright (C) 2008-2011 SonarSource - * mailto:contact AT sonarsource DOT com - * - * Sonar is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3 of the License, or (at your option) any later version. - * - * Sonar is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with Sonar; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02 - */ -package org.sonar.plugins.surefire; - -import org.junit.Test; -import org.junit.experimental.runners.Enclosed; -import org.junit.runner.RunWith; - -@RunWith(Enclosed.class) -public class FooTest { - - @RunWith(Enclosed.class) - public static class Inner1 { - - public static class Run { - @Test - public void test1() {} - } - } - - @RunWith(Enclosed.class) - public static class Inner2 { - - public static class Run { - @Test - public void test2() {} - } - } -}
\ No newline at end of file |