Project

General

Profile

« Previous | Next » 

Revision 1415c660

Added by Patrick Plitzner about 5 years ago

ref #7912 i18n

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/preference/wizard/CheckBoxTreeComposite.java
70 70
        btnCollapse = new Button(toolbar, SWT.NONE);
71 71
        btnCollapse.addSelectionListener(this);
72 72
        btnCollapse.setImage(ImageResources.getImage(ImageResources.COLLAPSE_ALL));
73
        btnCollapse.setToolTipText(Messages.CheckBoxTreeComposite_COLLAPSE_ALL);
73
        btnCollapse.setToolTipText(""); //$NON-NLS-1$
74 74

  
75 75
        btnExpand = new Button(toolbar, SWT.NONE);
76 76
        btnExpand.addSelectionListener(this);
77 77
        btnExpand.setImage(ImageResources.getImage(ImageResources.EXPAND));
78
        btnExpand.setToolTipText(Messages.CheckBoxTreeComposite_EXPAND);
78
        btnExpand.setToolTipText(""); //$NON-NLS-1$
79 79

  
80 80
        btnSelectDirectChildren = new Button(toolbar, SWT.NONE);
81 81
        btnSelectDirectChildren.addSelectionListener(this);
82 82
        btnSelectDirectChildren.setImage(ImageResources.getImage(ImageResources.FLAT));
83
        btnSelectDirectChildren.setToolTipText("Select direct children");
83
        btnSelectDirectChildren.setToolTipText(Messages.CheckBoxTreeComposite_SELECT_DIRECT_CHILDREN);
84 84

  
85 85
                btnSelectAllChildren = new Button(toolbar, SWT.NONE);
86 86
                btnSelectAllChildren.addSelectionListener(this);
87 87
                btnSelectAllChildren.setImage(ImageResources.getImage(ImageResources.HIERARCHICAL));
88
                btnSelectAllChildren.setToolTipText(Messages.CheckBoxTreeComposite_TOGGLE_TREE_SELECTION);
88
                btnSelectAllChildren.setToolTipText(""); //$NON-NLS-1$
89 89

  
90 90
        Tree tree = new Tree(composite, SWT.BORDER | SWT.CHECK);
91 91
        tree.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

Also available in: Unified diff