merge
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / Messages.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.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 DeleteDerivateOperation_AND_CHILDREN;
32 public static String DeleteDerivateOperation_CONFIRM;
33 public static String DeleteDerivateOperation_DELETE_FAILED;
34 public static String DeleteDerivateOperation_REALLY_DELETE;
35 public static String DerivateDropListener_MOVE_TO;
36 public static String DerivateView_DERIVATIVE_EDITOR;
37 public static String DerivateView_SAVING_HIERARCHY;
38 public static String DerivateView_UNSAVED_CHANGES;
39 public static String DerivateView_YOU_NEED_TO_SAVE;
40 public static String DerivateViewEditorInput_FAIL_INIT;
41 public static String DerivateViewEditorInput_NO_ROOT;
42 public static String MoveDerivateOperation_MOVE_NOT_POSSIBLE;
43 public static String MoveDerivateOperation_MOVE_TO_NOT_POSSIBLE;
44 public static String OpenDerivateEditorForTaxonHandler_COULD_NOT_OPEN_EDITOR;
45 public static String OpenDerivateEditorForTaxonHandler_FAILED_TO_OPEN;
46 public static String OpenDerivateEditorForTaxonHandler_HIERARCHY_CORRUPTED;
47 public static String OpenDerivateEditorForTaxonHandler_NO_DERIVATIVES_FOUND;
48 public static String SingleReadSequenceContextMenu_REMOVE_FROM_SEQUENCE;
49 public static String SingleReadSequenceContextMenu_REUSE_FOR_SEQUENCE;
50 public static String SingleReadSequenceContextMenu_REUSE_SINGLE_READ_HERE;
51 static {
52 // initialize resource bundle
53 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
54 }
55
56 private Messages() {
57 }
58 }