Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/tasklist/BugzillaRepositorySettingsPage.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/tasklist/BugzillaRepositorySettingsPage.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/tasklist/BugzillaRepositorySettingsPage.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/tasklist/BugzillaRepositorySettingsPage.java
index a9797e397..b23d42c50 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/tasklist/BugzillaRepositorySettingsPage.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/tasklist/BugzillaRepositorySettingsPage.java
@@ -51,6 +51,8 @@ import org.eclipse.swt.widgets.Label;
*/
public class BugzillaRepositorySettingsPage extends AbstractRepositorySettingsPage {
+ private static final String LABEL_SHORT_LOGINS = "Local users enabled:";
+
public static final String LABEL_AUTOMATIC_VERSION = "Automatic (Use Validate Settings)";
private static final String TITLE = "Bugzilla Repository Settings";
@@ -128,7 +130,7 @@ public class BugzillaRepositorySettingsPage extends AbstractRepositorySettingsPa
boolean shortLogin = Boolean.parseBoolean(repository.getProperty(IBugzillaConstants.REPOSITORY_SETTING_SHORT_LOGIN));
Label shortLoginLabel = new Label(parent, SWT.NONE);
- shortLoginLabel.setText("Short logins enabled on repository:");
+ shortLoginLabel.setText(LABEL_SHORT_LOGINS);
cleanQAContact = new Button(parent, SWT.CHECK | SWT.LEFT);
cleanQAContact.setSelection(shortLogin);

Back to the top