Project

General

Profile

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

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

    
19
    public static final String CHANGE_ACCEPTED_TAXON_TO_SYNONYM_LABEL = "Change Accepted Taxon to Synonym";
20
    public static final String MOVE_TAXON_LABEL = "Move Taxon";
21
    public static final String MOVE_FACTUAL_DATA_LABEL = "Move Factual Data";
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

    
33

    
34

    
35
}
(11-11/16)