From 52eac40314fd693406fd0ccb98a2d103ff453f8d Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Lievremont Date: Fri, 4 Oct 2013 12:54:31 +0200 Subject: SONAR-4731 Replace "Dry Run" with "Preview" in text strings --- .../src/main/java/org/sonar/plugins/core/CorePlugin.java | 8 ++++---- .../src/main/resources/org/sonar/l10n/core.properties | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'plugins') 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.
\ -This permission is required 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.
\ +This permission is required 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. -- cgit v1.2.3