smaller changes for specimen import and others
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / preference / ChecklistEditorGeneralPreference.java
index b807510bc5b0296ade0eddcc936382bbd39dad48..d319dfd537c39e32f3aed777c36ec7754a72beda 100644 (file)
@@ -47,7 +47,7 @@ public class ChecklistEditorGeneralPreference extends PreferencePage implements
         composite.setLayout(new GridLayout());
         isEditorActivated = PreferencesUtil.getPreferenceStore().getBoolean(IPreferenceKeys.DISTRIBUTION_AREA_PREFRENCES_ACTIVE);
         final Button activateCheckButton = new Button(composite, SWT.CHECK);
-        activateCheckButton.setText("Enable Checklist Editor");
+        activateCheckButton.setText("Enable Distribution Editor");
         activateCheckButton.setSelection(isEditorActivated);
         activateCheckButton.addSelectionListener(new SelectionAdapter(){
             @Override
@@ -69,7 +69,7 @@ public class ChecklistEditorGeneralPreference extends PreferencePage implements
         child.setLayout(new GridLayout());
         child.setVisible(isEditorActivated);
         final CLabel label = new CLabel(child, SWT.NULL);
-        label.setText("Please open the wizard below, in order to \n" + "choose the areas for the Checklist Editor");
+        label.setText("Please open the wizard below, in order to \n" + "choose the areas for the Distribution Editor");
         final CommandHandlerButton button_openFeatureTree = new CommandHandlerButton(child, SWT.PUSH,
                 "eu.etaxonomy.taxeditor.store.open.OpenDistributionEditorWizardHandler");
 
@@ -88,7 +88,7 @@ public class ChecklistEditorGeneralPreference extends PreferencePage implements
         PreferencesUtil.recursiveSetEnabled(button_openFeatureTree, CdmStore.isActive());
         boolean isShowRank = PreferencesUtil.isShowRankInChecklistEditor();
         final Button activateRankButton = new Button(child, SWT.CHECK);
-        activateRankButton.setText("Show Rank in Checklist Editor");
+        activateRankButton.setText("Show Rank in Distribution Editor");
         activateRankButton.setSelection(isShowRank);
         activateRankButton.addSelectionListener(new SelectionAdapter(){
             @Override