Project

General

Profile

Download (2.21 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

    
10
package eu.etaxonomy.taxeditor.bulkeditor;
11
/**
12
 * @author kluther
13
 * @date 29 Feb 2016
14
 *
15
 */
16
public interface BulkEditorLables {
17
	
18

    
19

    
20
	    public static final String CONVERT_TEAM_2_PERSON_LABEL = "Convert Team to Person";
21
	    public static final String CONVERT_PERSON_2_TEAM_LABEL = "Convert Person to Team";
22
	    public static final String DELETE_LABEL = "Delete";
23
	    public static final String MERGE_GROUP_LABEL = "Merge Group";
24
	    public static final String REMOVE_MERGE_CANDIDATE_LABEL = "Remove from Merge Group";
25
	    public static final String SET_MERGE_CANDIDATE_LABEL = "Set as Merge Candidate";
26
	    public static final String SET_MERGE_TARGET_LABEL = "Set as Merge Target";
27

    
28
	    public static final String NO_CONVERT_PERSON_TO_TEAM_MESSAGE = "Can not convert Person into a Team.";
29
	    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.";
30
	    public static final String NO_CONVERT_TEAM_TO_PERSON_MESSAGE = "Can not convert Team to Person";
31
	   
32
	   
33
	    public static final String UNSAVED_CHANGES_MESSAGE = "There are unsaved changes in the source taxon. Please save first.";
34
		public static final String SINGLE_PERSON_SELECTION_MESSAGE = "The chosen operation is available only for a single person";
35
		public static final String SINGLE_TEAM_SELECTION_MESSAGE = "The chosen operation is available only for a single team";
36
		public static final String NO_PERSON_SELECTION_MESSAGE = "No person selected for conversion";
37
		public static final String ONLY_PERSON_SELECTION_MESSAGE = "Only a person can be converted into a team.";
38
		public static final String NO_TEAM_SELECTION_MESSAGE = "No team selected for conversion";
39
		public static final String ONLY_TEAM_SELECTION_MESSAGE = "Only a team can be converted into a person.";
40
		public static final String ONLY_FOR_BULKEDITOR_MESSAGE = "You have to choose a line in the bulkeditor to perform this operation.";
41

    
42

    
43

    
44
	
45

    
46
}
(2-2/10)