diff options
author | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2013-10-04 12:54:31 +0200 |
---|---|---|
committer | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2013-10-04 15:54:59 +0200 |
commit | 52eac40314fd693406fd0ccb98a2d103ff453f8d (patch) | |
tree | 5f87685102da3a9f5e87fc66a05c33dcbb85a82c /plugins/sonar-core-plugin | |
parent | ef2ea270621dfb8e3b1b856bdecd2d54549c301b (diff) | |
download | sonarqube-52eac40314fd693406fd0ccb98a2d103ff453f8d.tar.gz sonarqube-52eac40314fd693406fd0ccb98a2d103ff453f8d.zip |
SONAR-4731 Replace "Dry Run" with "Preview" in text strings
Diffstat (limited to 'plugins/sonar-core-plugin')
-rw-r--r-- | plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java | 8 | ||||
-rw-r--r-- | plugins/sonar-core-plugin/src/main/resources/org/sonar/l10n/core.properties | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java index adea1718036..dd967953e53 100644 --- a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java +++ b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java @@ -192,26 +192,26 @@ import java.util.List; @Property( key = CoreProperties.DRY_RUN, defaultValue = "false", - name = "Dry Run", + name = "Preview", type = PropertyType.BOOLEAN, global = false, project = false, category = CoreProperties.CATEGORY_GENERAL), @Property( key = CoreProperties.DRY_RUN_INCLUDE_PLUGINS, - name = "Plugins accepted for dry run", + name = "Plugins accepted for Preview", defaultValue = CoreProperties.DRY_RUN_INCLUDE_PLUGINS_DEFAULT_VALUE, global = true, project = false, category = CoreProperties.CATEGORY_GENERAL), @Property( key = CoreProperties.DRY_RUN_EXCLUDE_PLUGINS, - name = "Plugins excluded for dry run", + name = "Plugins excluded for Preview", global = true, project = false, defaultValue = CoreProperties.DRY_RUN_EXCLUDE_PLUGINS_DEFAULT_VALUE, category = CoreProperties.CATEGORY_GENERAL), @Property( key = "sonar.dryRun.export.path", defaultValue = "dryRun.json", - name = "Dry Run Results Export File", + name = "Preview Results Export File", type = PropertyType.STRING, global = false, project = false), @Property( 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 56028bc0908..71eaf1cb52b 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 @@ -2301,9 +2301,9 @@ global_permissions.shareDashboard=Share Dashboards And Filters global_permissions.shareDashboard.desc=Ability to share dashboards, issue filters and measure filters. global_permissions.scan=Execute Analysis global_permissions.scan.desc=Ability to execute analyses, and to get all settings required to perform the analysis, even the secured ones like the scm account password, the jira account password, and so on. -global_permissions.dryRunScan=Execute Local Analysis (Dry Run) -global_permissions.dryRunScan.desc=Ability to execute local (dry run) analyses without pushing the results to the server, and to get all settings required to perform a local analysis. This permission does not include the ability to access secured settings such as the scm account password, the jira account password, and so on.<br/>\ -This permission is <em>required</em> to execute a local analysis in Eclipse or via the Issues Report plugin. +global_permissions.dryRunScan=Execute Preview +global_permissions.dryRunScan.desc=Ability to execute Preview (results are not pushed to the server). This permission does not include the ability to access secured settings such as the scm account password, the jira account password, and so on.<br/>\ +This permission is <em>required</em> to execute Preview in Eclipse or via the Issues Report plugin. global_permissions.provisioning=Provision Resources global_permissions.provisioning.desc=Ability to initialize project structure before first analysis. |