Project

General

Profile

Download (1.71 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.molecular;
10

    
11

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

    
14

    
15

    
16
/**
17
 * Messages and texts for 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
    public static String wizardExportAlignmentAppendExtensionButton;
25
    public static String wizardExportAlignmentBrowseButton;
26
    public static String wizardExportAlignmentDataLabel;
27
    public static String wizardExportAlignmentDescription;
28
    public static String wizardExportAlignmentDestinationLabel;
29
    public static String wizardExportAlignmentErrorMissingFileName;
30
    public static String wizardExportAlignmentErrorMissingSeqLabel;
31
    public static String wizardExportAlignmentErrorNothingToExport;
32
    public static String wizardExportAlignmentExportConsensusSeqLabel;
33
    public static String wizardExportAlignmentExportFormatLabel;
34
    public static String wizardExportAlignmentExportSingleReads;
35
    public static String wizardExportAlignmentFileDialogTitle;
36
    public static String wizardExportAlignmentFileLabel;
37
    public static String wizardExportAlignmentTitle;
38
    public static String wizardExportAlignmentWarningFileNameStartsDot;
39
    public static String wizardExportAlignmentwarningMissingExtension;
40

    
41

    
42
    static {
43
        // initialize resource bundle
44
        NLS.initializeMessages(BUNDLE_NAME, Messages.class);
45
    }
46

    
47
    private Messages() {}
48
}
(1-1/2)