Project

General

Profile

Download (1.73 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2015 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.taxeditor.navigation.navigator;
10

    
11
/**
12
 * @author cmathew
13
 * @date 19 Jun 2015
14
 *
15
 */
16
public interface TaxonNavigatorLabels {
17

    
18
    public static final String CHANGE_ACCEPTED_TAXON_TO_SYNONYM_LABEL = "Change Accepted Taxon to Synonym";
19
    public static final String MOVE_TAXON_LABEL = "Move Taxon";
20
    public static final String MOVE_FACTUAL_DATA_LABEL = "Move Factual Data";
21
    public static final String DELETE_TAXON_NODE_LABEL = "Delete Taxon Node";
22

    
23
    public static final String NO_TAXON_SELECTION_MESSAGE = "No taxon tree node selected for operation.";
24
    public static final String SINGLE_TAXON_SELECTION_MESSAGE = "The chosen operation is available only for a single taxon.";
25
    public static final String SOURCE_TAXON_HAS_CHILDREN_MESSAGE = "The chosen taxon must not have any childen. You need to move all childen to " +
26
            "another taxon node in the TaxonNavigator before attempting to turn the accepted " +
27
            "taxon into a synonym.";
28
    public static final String RELATED_EDITOR_NOT_CLOSED_MESSAGE = "Could not close related taxon name editor. " +
29
            "Please close it manually and try again.";
30
    public static final String SELECTED_OBJECT_NOT_TREE_NODE_MESSAGE = "Selected object is not a taxon tree node";
31
    public static final String UNSAVED_CHANGES_MESSAGE = "There are unsaved changes in the source taxon. Please save first.";
32
    public static final String CHANGE_SECUNDUM_FOR_SUBTREE = "Set new Secundum Reference for all children.";
33

    
34

    
35

    
36
}
(13-13/21)