Project

General

Profile

Download (3.15 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.editor;
11

    
12
import org.eclipse.osgi.util.NLS;
13

    
14
/**
15
 * @author pplitzner
16
 * @date 09.09.2015
17
 *
18
 */
19
public class Messages extends NLS {
20
    private static final String BUNDLE_NAME = "OSGI-INF/l10n/messages"; //$NON-NLS-1$
21
    public static String CreateDerivateContextMenu_ADD;
22
    public static String CreateDerivateContextMenu_DNA_SAMPLE;
23
    public static String CreateDerivateContextMenu_MEDIA;
24
    public static String CreateDerivateContextMenu_MEDIA_EXISTING;
25
    public static String CreateDerivateContextMenu_MEDIA_SPECIMEN;
26
    public static String CreateDerivateContextMenu_NO_CHILD_DERIVATE;
27
    public static String CreateDerivateContextMenu_SEQUENCE;
28
    public static String CreateDerivateContextMenu_SINGLE_READ;
29
    public static String CreateDerivateContextMenu_SPECIMEN;
30
    public static String CreateDerivateContextMenu_TISSUE_SAMPLE;
31
    public static String CreateFieldUnitContextMenu_CREATE_FIELD_UNIT;
32
	public static String CreateFieldUnitContextMenu_CREATE_FIELD_UNIT_FOR;
33
	public static String DeleteDerivateOperation_AND_CHILDREN;
34
    public static String DeleteDerivateOperation_CONFIRM;
35
    public static String DeleteDerivateOperation_DELETE_FAILED;
36
    public static String DeleteDerivateOperation_REALLY_DELETE;
37
    public static String DeleteTaxonBaseHandler_CONFIRM_DELETION;
38
    public static String DeleteTaxonBaseHandler_ELEMENT_MUST_BE_SYNONYM_MISAPP_CONCEPT;
39
    public static String DeleteTaxonBaseHandler_REALLY_DELETE_TAXON;
40
    public static String DerivateDropListener_MOVE_TO;
41
    public static String DerivateView_DERIVATIVE_EDITOR;
42
    public static String DerivateView_SAVING_HIERARCHY;
43
    public static String DerivateView_UNSAVED_CHANGES;
44
    public static String DerivateView_YOU_NEED_TO_SAVE;
45
    public static String DerivateViewEditorInput_FAIL_INIT;
46
    public static String DerivateViewEditorInput_NO_ROOT;
47
    public static String DescriptiveViewPart_COLLAPSE_ALL;
48
	public static String DescriptiveViewPart_EXPAND_ALL;
49
	public static String DescriptiveViewPart_FACTUAL_DATA;
50
	public static String DescriptiveViewPart_SHOW_ALL_DATA;
51
	public static String MoveDerivateOperation_MOVE_NOT_POSSIBLE;
52
    public static String MoveDerivateOperation_MOVE_TO_NOT_POSSIBLE;
53
    public static String OpenDerivateEditorForTaxonHandler_COULD_NOT_OPEN_EDITOR;
54
    public static String OpenDerivateEditorForTaxonHandler_FAILED_TO_OPEN;
55
    public static String OpenDerivateEditorForTaxonHandler_HIERARCHY_CORRUPTED;
56
    public static String OpenDerivateEditorForTaxonHandler_NO_DERIVATIVES_FOUND;
57
    public static String SingleReadSequenceContextMenu_REMOVE_FROM_SEQUENCE;
58
    public static String SingleReadSequenceContextMenu_REUSE_FOR_SEQUENCE;
59
    public static String SingleReadSequenceContextMenu_REUSE_SINGLE_READ_HERE;
60
    static {
61
        // initialize resource bundle
62
        NLS.initializeMessages(BUNDLE_NAME, Messages.class);
63
    }
64

    
65
    private Messages() {
66
    }
67
}
(7-7/18)