ref #7912 i18n
authorPatrick Plitzner <p.plitzner@bgbm.org>
Wed, 21 Nov 2018 15:02:38 +0000 (16:02 +0100)
committerPatrick Plitzner <p.plitzner@bgbm.org>
Wed, 21 Nov 2018 15:02:38 +0000 (16:02 +0100)
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/l10n/Messages.java
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/l10n/messages.properties
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/l10n/messages_de.properties
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/preference/wizard/CheckBoxTreeComposite.java

index 3338a4f57178604b748babd8d17d393a5ab81783..77952d675079ce56beed9dd1a9cb777177f41822 100644 (file)
@@ -588,6 +588,15 @@ public class Messages extends NLS {
     public static String AvailableVocabularyWizard_WIZARD_TITLE;
 
 
+    public static String CheckBoxTreeComposite_COLLAPSE_ALL;
+
+
+    public static String CheckBoxTreeComposite_EXPAND;
+
+
+    public static String CheckBoxTreeComposite_TOGGLE_TREE_SELECTION;
+
+
     public static String ChecklistEditorGeneralPreference_3;
     public static String ChecklistEditorGeneralPreference_enable;
 
index 581a2641d81e25ccf898c2a066aa51b21bc7f6a6..53f16113203754caf59389855d286e9af0129fb0 100644 (file)
@@ -337,6 +337,9 @@ AvailableVocabularyWizard_PAGE_TITLE=AvailableDistributionPage
 AvailableVocabularyWizard_WINDOW_TITLE=Vocabulary Selection
 AvailableVocabularyWizard_WIZARD_TITLE=Vocabulary Selection
 
+CheckBoxTreeComposite_COLLAPSE_ALL=Collapse all
+CheckBoxTreeComposite_EXPAND=Expand selected node
+CheckBoxTreeComposite_TOGGLE_TREE_SELECTION=Toggle selection on all children
 ChecklistEditorGeneralPreference_3=eu.etaxonomy.taxeditor.store.open.OpenDistributionEditorWizardHandler
 ChecklistEditorGeneralPreference_enable=Enable Distribution Editor
 ChecklistEditorGeneralPreference_allowOverride=Allow override
index 3648831aa10d57bdf664e5d0cd50e0e83a22f7cb..8e2324f9bcc05d9cab8f287dec886cd5db216ced 100644 (file)
@@ -337,6 +337,9 @@ AvailableVocabularyWizard_PAGE_TITLE=Verbreitung ausw
 AvailableVocabularyWizard_WINDOW_TITLE=Vokabular auswählen
 AvailableVocabularyWizard_WIZARD_TITLE=Vokabular auswählen
 
+CheckBoxTreeComposite_COLLAPSE_ALL=Alles einklappen
+CheckBoxTreeComposite_EXPAND=Ausgewählten Knoten ausklappen
+CheckBoxTreeComposite_TOGGLE_TREE_SELECTION=Alle Kinder (de-)selektieren
 ChecklistEditorGeneralPreference_3=eu.etaxonomy.taxeditor.store.open.OpenDistributionEditorWizardHandler
 ChecklistEditorGeneralPreference_enable=Verbreitungs-Editor aktivieren
 ChecklistEditorGeneralPreference_allowOverride=Erlaube Überschreiben
index 09ba49ba3ab7f307908f0ef7a88b2f7688453e4c..04aa5ab3b647edd4ed5e870472b1afb0bd8f23f3 100644 (file)
@@ -26,6 +26,7 @@ import org.eclipse.swt.widgets.Tree;
 import org.eclipse.swt.widgets.TreeItem;
 import org.eclipse.swt.widgets.Widget;
 
+import eu.etaxonomy.taxeditor.l10n.Messages;
 import eu.etaxonomy.taxeditor.model.ImageResources;
 
 /**
@@ -57,17 +58,17 @@ public class CheckBoxTreeComposite extends Composite implements SelectionListene
         btnCollapse = new Button(toolbar, SWT.NONE);
         btnCollapse.addSelectionListener(this);
         btnCollapse.setImage(ImageResources.getImage(ImageResources.COLLAPSE_ALL));
-        btnCollapse.setToolTipText("Collapse All");
+        btnCollapse.setToolTipText(Messages.CheckBoxTreeComposite_COLLAPSE_ALL);
 
         btnExpand = new Button(toolbar, SWT.NONE);
         btnExpand.addSelectionListener(this);
         btnExpand.setImage(ImageResources.getImage(ImageResources.EXPAND));
-        btnExpand.setToolTipText("Expand Selected Node");
+        btnExpand.setToolTipText(Messages.CheckBoxTreeComposite_EXPAND);
 
         btnSelectAllChildren = new Button(toolbar, SWT.NONE);
         btnSelectAllChildren.addSelectionListener(this);
         btnSelectAllChildren.setImage(ImageResources.getImage(ImageResources.HIERARCHICAL));
-        btnSelectAllChildren.setToolTipText("Toggle Selection on all children");
+        btnSelectAllChildren.setToolTipText(Messages.CheckBoxTreeComposite_TOGGLE_TREE_SELECTION);
 
         Tree tree = new Tree(composite, SWT.BORDER | SWT.CHECK);
         tree.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));