Project

General

Profile

Download (2.18 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2016 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.bulkeditor;
10
/**
11
 * @author kluther
12
 * @date 29 Feb 2016
13
 */
14
public interface BulkEditorLables {
15

    
16
	    public static final String CONVERT_TEAM_2_PERSON_LABEL = "Convert Team to Person";
17
	    public static final String CONVERT_PERSON_2_TEAM_LABEL = "Convert Person to Team";
18
	    public static final String DELETE_LABEL = "Delete";
19
	    public static final String MERGE_GROUP_LABEL = "Merge Group";
20
	    public static final String REMOVE_MERGE_CANDIDATE_LABEL = "Remove from Merge Group";
21
	    public static final String SET_MERGE_CANDIDATE_LABEL = "Set as Merge Candidate";
22
	    public static final String SET_MERGE_TARGET_LABEL = "Set as Merge Target";
23

    
24
	    public static final String NO_CONVERT_PERSON_TO_TEAM_MESSAGE = "Can not convert Person into a Team.";
25
	    public static final String TRANSFORMATION_NOT_POSSIBLE_PERSON_PART_OF_TEAM_MESSAGE = "Person can not be transformed into team as it is already part of a team.";
26
	    public static final String NO_CONVERT_TEAM_TO_PERSON_MESSAGE = "Can not convert Team to Person";
27

    
28

    
29
	    public static final String UNSAVED_CHANGES_MESSAGE = "There are unsaved changes in the source taxon. Please save first.";
30
		public static final String SINGLE_PERSON_SELECTION_MESSAGE = "The chosen operation is available only for a single person";
31
		public static final String SINGLE_TEAM_SELECTION_MESSAGE = "The chosen operation is available only for a single team";
32
		public static final String NO_PERSON_SELECTION_MESSAGE = "No person selected for conversion";
33
		public static final String ONLY_PERSON_SELECTION_MESSAGE = "Only a person can be converted into a team.";
34
		public static final String NO_TEAM_SELECTION_MESSAGE = "No team selected for conversion";
35
		public static final String ONLY_TEAM_SELECTION_MESSAGE = "Only a team can be converted into a person.";
36
		public static final String ONLY_FOR_BULKEDITOR_MESSAGE = "You have to choose a line in the bulkeditor to perform this operation.";
37

    
38
}
(1-1/5)