Merge branch 'develop' into LibrAlign
[taxeditor.git] / eu.etaxonomy.taxeditor.molecular / src / main / java / eu / etaxonomy / taxeditor / molecular / Messages.java
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.molecular;
10
11
12 import org.eclipse.osgi.util.NLS;
13
14
15
16 /**
17 * Provides messages and texts for classes of the molecular plugin.
18 *
19 * @author Ben Stöver
20 * @date 17.11.2016
21 */
22 public class Messages extends NLS {
23 private static final String BUNDLE_NAME = "OSGI-INF/l10n/messages"; //$NON-NLS-1$
24
25
26 public static String exportSequenceToFileHandlerIOErrorMessage;
27 public static String exportSequenceToFileHandlerIOErrorTitle;
28 public static String exportSequenceToFileHandlerOverwriteTitle;
29 public static String exportSequenceToFileHandlerOverwriteText;
30
31 public static String wizardExportAlignmentAppendExtensionButton;
32 public static String wizardExportAlignmentBrowseButton;
33 public static String wizardExportAlignmentDataLabel;
34 public static String wizardExportAlignmentDescription;
35 public static String wizardExportAlignmentDestinationLabel;
36 public static String wizardExportAlignmentErrorMissingFileName;
37 public static String wizardExportAlignmentErrorMissingSeqLabel;
38 public static String wizardExportAlignmentErrorNothingToExport;
39 public static String wizardExportAlignmentExportConsensusSeqLabel;
40 public static String wizardExportAlignmentExportFormatLabel;
41 public static String wizardExportAlignmentExportSingleReads;
42 public static String wizardExportAlignmentFileDialogTitle;
43 public static String wizardExportAlignmentFileLabel;
44 public static String wizardExportAlignmentOptionsDescription;
45 public static String wizardExportAlignmentOptionsTitle;
46 public static String wizardExportAlignmentTitle;
47 public static String wizardExportAlignmentWarningFileNameStartsDot;
48 public static String wizardExportAlignmentwarningMissingExtension;
49 public static String wizardExportAlignmentWarningFileExists;
50 public static String wizardExportAlignmentExportedSeqHeading;
51 public static String wizardExportAlignmentAdditionalOptionsHeading;
52 public static String wizardExportAlignmentElongateSeqHeading;
53 public static String wizardExportAlignmentElongateSeqMissingData;
54 public static String wizardExportAlignmentElongateSeqGap;
55
56
57 static {
58 // initialize resource bundle
59 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
60 }
61
62 private Messages() {}
63 }