Skip to content

Commit 5e8c485

Browse files
authored
chore: wording update [IDE-1503] (#343)
1 parent 5db1f52 commit 5e8c485

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

plugin/plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,13 +314,13 @@
314314
commandId="io.snyk.eclipse.plugin.commands.snykShowOpenIgnored"
315315
icon="icons/enabled.png"
316316
style="push"
317-
tooltip="Show Open Issues. Note: This filter will only take effect if Code Consistent Ignores is enabled for the organization.">
317+
tooltip="Show Open Issues. Code Consistent Ignores helps your teams focus on important tasks by filtering out distractions. It ensures that once an ignore is created, it is consistently respected regardless of how and where the test is run and what branch is being tested. Note: These filters will have no effect if Code Consistent Ignores is disabled for the organization.">
318318
</command>
319319
<command
320320
commandId="io.snyk.eclipse.plugin.commands.snykShowIgnored"
321321
icon="icons/enabled.png"
322322
style="push"
323-
tooltip="Show Ignored. Note: This filter will only take effect if Code Consistent Ignores is enabled for the organization.">
323+
tooltip="Show Ignored Issues. Code Consistent Ignores helps your teams focus on important tasks by filtering out distractions. It ensures that once an ignore is created, it is consistently respected regardless of how and where the test is run and what branch is being tested. Note: These filters will have no effect if Code Consistent Ignores is disabled for the organization.">
324324
</command>
325325
<command
326326
commandId="io.snyk.eclipse.plugin.commands.snykFilterNetNewIssues"

plugin/src/main/java/io/snyk/eclipse/plugin/preferences/PreferencesPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ protected void createFieldEditors() {
9494
addField(new BooleanFieldEditor(Preferences.ACTIVATE_SNYK_OPEN_SOURCE, "Snyk Open Source enabled",
9595
getFieldEditorParent()));
9696
snykCodeSecurityCheckbox = new BooleanFieldEditor(Preferences.ACTIVATE_SNYK_CODE_SECURITY,
97-
"Snyk Code Security enabled\nNote: Code must be enabled for your organization to run.", getFieldEditorParent());
97+
"Snyk Code Security enabled\nFor these scans to run, Snyk Code must be enabled for your organization in Snyk settings.", getFieldEditorParent());
9898
addField(snykCodeSecurityCheckbox);
9999
addField(new BooleanFieldEditor(Preferences.ACTIVATE_SNYK_IAC, "Snyk Infrastructure-as-Code enabled",
100100
getFieldEditorParent()));

plugin/src/main/java/io/snyk/eclipse/plugin/properties/ProjectPropertyPage.java

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,13 @@ protected void createFieldEditors() {
100100
var url = Preferences.getInstance().getEndpoint() + "/account";
101101
var urlUserDocs = "https://docs.snyk.io/developer-tools/snyk-ide-plugins-and-extensions/eclipse-plugin/configuration-of-the-eclipse-plugin#global-settings";
102102
addField(new LabelFieldEditor(
103-
"Use automatic organization selection. When enabled, Snyk will automatically select the most\n"
103+
"[Experimental] Use automatic organization selection. When enabled, Snyk will automatically select the most\n"
104104
+ "appropriate organization for your project using context found in your repository and your authentication.\n"
105-
+ "If an organization is configured manually, this feature will be overridden. If an appropriate organization\n"
106-
+ "cannot be identified automatically, the preferred organization defined in your web account settings will\n"
107-
+ "be used as a fallback.",
105+
+ "\n"
106+
+ "If an organization is configured manually, this feature will be overridden.\n"
107+
+ "\n"
108+
+ "If an appropriate organization cannot be identified automatically, the preferred organization defined in your\n"
109+
+ "web account settings will be used as a fallback.",
108110
getFieldEditorParent()));
109111

110112
// Add clickable links
@@ -130,9 +132,9 @@ public void widgetSelected(SelectionEvent e) {
130132
addField(projectOrg);
131133

132134
addField(new LabelFieldEditor(
133-
"Specify the organization (ID or name) for Snyk to run scans against. If the organization is provided\n"
134-
+ "manually, automatic organization selection is overridden. If the organization value is blank or invalid,\n"
135-
+ "the preferred organization defined in your web account settings will be used.",
135+
"[Experimental] Specify the organization (ID or name) for Snyk to run scans against for this specific IDE project.\n"
136+
+ "\n"
137+
+ "If the organization value is blank or invalid, the value from the global Organization field will be used.",
136138
getFieldEditorParent()));
137139

138140
// Add clickable links for second description

0 commit comments

Comments
 (0)