Merge branch 'develop' into remoting-4.0
[taxeditor.git] / eu.etaxonomy.taxeditor.navigation / src / main / java / eu / etaxonomy / taxeditor / navigation / navigator / TaxonNavigatorLabels.java
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 public static final String DELETE_TAXON_NODE_LABEL = "Delete Taxon Node";
23
24 public static final String NO_TAXON_SELECTION_MESSAGE = "No taxon tree node selected for operation.";
25 public static final String SINGLE_TAXON_SELECTION_MESSAGE = "The chosen operation is available only for a single taxon.";
26 public static final String SOURCE_TAXON_HAS_CHILDREN_MESSAGE = "The chosen taxon must not have any childen. You need to move all childen to " +
27 "another taxon node in the TaxonNavigator before attempting to turn the accepted " +
28 "taxon into a synonym.";
29 public static final String RELATED_EDITOR_NOT_CLOSED_MESSAGE = "Could not close related taxon name editor. " +
30 "Please close it manually and try again.";
31 public static final String SELECTED_OBJECT_NOT_TREE_NODE_MESSAGE = "Selected object is not a taxon tree node";
32 public static final String UNSAVED_CHANGES_MESSAGE = "There are unsaved changes in the source taxon. Please save first.";
33
34
35
36 }