]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/actions/AssignSymbolGroupsDialog.java
Fixed previous i18n work from 47269fe0
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / actions / AssignSymbolGroupsDialog.java
index b768a05ab728068fcc29a819ffaaf92512974752..a85c35628fb1a69252eed0359ed3ae7c7fdb8c7c 100644 (file)
@@ -38,10 +38,6 @@ public abstract class AssignSymbolGroupsDialog extends SelectionDialog {
 
     private static final String DIALOG = "AssignSymbolGroupsDialog"; //$NON-NLS-1$
 
 
     private static final String DIALOG = "AssignSymbolGroupsDialog"; //$NON-NLS-1$
 
-    static String SELECT_ALL_TITLE = ""; //$NON-NLS-1$
-
-    static String DESELECT_ALL_TITLE = ""; //$NON-NLS-1$
-
     // the root element to populate the viewer with
     protected Object inputElement;
 
     // the root element to populate the viewer with
     protected Object inputElement;
 
@@ -86,7 +82,7 @@ public abstract class AssignSymbolGroupsDialog extends SelectionDialog {
         if (message != null) {
             setMessage(message);
         } else {
         if (message != null) {
             setMessage(message);
         } else {
-            setMessage(""); //$NON-NLS-1$
+            setMessage(WorkbenchMessages.ListSelection_message);
         }
 
         IDialogSettings settings = Activator.getDefault().getDialogSettings();
         }
 
         IDialogSettings settings = Activator.getDefault().getDialogSettings();
@@ -114,7 +110,7 @@ public abstract class AssignSymbolGroupsDialog extends SelectionDialog {
         buttonComposite.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, false, true));
 
         Button selectButton = createButton(buttonComposite,
         buttonComposite.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, false, true));
 
         Button selectButton = createButton(buttonComposite,
-                IDialogConstants.SELECT_ALL_ID, SELECT_ALL_TITLE, false);
+                IDialogConstants.SELECT_ALL_ID, WorkbenchMessages.SelectionDialog_selectLabel, false);
 
         SelectionListener listener = new SelectionAdapter() {
             public void widgetSelected(SelectionEvent e) {
 
         SelectionListener listener = new SelectionAdapter() {
             public void widgetSelected(SelectionEvent e) {
@@ -125,7 +121,7 @@ public abstract class AssignSymbolGroupsDialog extends SelectionDialog {
         selectButton.addSelectionListener(listener);
 
         Button deselectButton = createButton(buttonComposite,
         selectButton.addSelectionListener(listener);
 
         Button deselectButton = createButton(buttonComposite,
-                IDialogConstants.DESELECT_ALL_ID, DESELECT_ALL_TITLE, false);
+                IDialogConstants.DESELECT_ALL_ID, WorkbenchMessages.SelectionDialog_deselectLabel, false);
 
         listener = new SelectionAdapter() {
             public void widgetSelected(SelectionEvent e) {
 
         listener = new SelectionAdapter() {
             public void widgetSelected(SelectionEvent e) {
@@ -139,7 +135,7 @@ public abstract class AssignSymbolGroupsDialog extends SelectionDialog {
         Label label = new Label(buttonComposite, SWT.NONE);
 
         Button newButton = createButton(buttonComposite,
         Label label = new Label(buttonComposite, SWT.NONE);
 
         Button newButton = createButton(buttonComposite,
-                IDialogConstants.INTERNAL_ID-1, org.simantics.modeling.ui.actions.WorkbenchMessages.AssignSymbolGroupsDialog_NewDots, false);
+                IDialogConstants.INTERNAL_ID-1, org.simantics.modeling.ui.actions.WorkbenchMessages.AssignSymbolGroupsDialog_New, false);
 
         listener = new SelectionAdapter() {
             public void widgetSelected(SelectionEvent e) {
 
         listener = new SelectionAdapter() {
             public void widgetSelected(SelectionEvent e) {
@@ -149,7 +145,7 @@ public abstract class AssignSymbolGroupsDialog extends SelectionDialog {
         newButton.addSelectionListener(listener);
 
         Button removeButton = createButton(buttonComposite,
         newButton.addSelectionListener(listener);
 
         Button removeButton = createButton(buttonComposite,
-                IDialogConstants.INTERNAL_ID-2, org.simantics.modeling.ui.actions.WorkbenchMessages.AssignSymbolGroupsDialog_RemoveAnd, false);
+                IDialogConstants.INTERNAL_ID-2, org.simantics.modeling.ui.actions.WorkbenchMessages.AssignSymbolGroupsDialog_Remove, false);
 
         listener = new SelectionAdapter() {
             public void widgetSelected(SelectionEvent e) {
 
         listener = new SelectionAdapter() {
             public void widgetSelected(SelectionEvent e) {