Project

General

Profile

Download (1.92 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;
11

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

    
14
/**
15
 * @author pplitzner
16
 * @date Apr 14, 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 LanguageEditorPreferencePage_ChooseDefaultLanguage;
22
    public static String LanguageEditorPreferencePage_EditorHasToRestart;
23
    public static String LanguageEditorPreferencePage_PleaseRestart;
24
    public static String LanguageEditorPreferencePage_RestartRequired;
25
    public static String OrderPreferencePage_NewNavigatorWindowRequired;
26
    public static String OrderPreferencePage_PleaseReopenNavigator;
27
    public static String CdmDataSourceViewPart_1;
28
    public static String CdmDataSourceViewPart_10;
29
    public static String CdmDataSourceViewPart_11;
30
    public static String CdmDataSourceViewPart_12;
31
    public static String CdmDataSourceViewPart_2;
32
    public static String CdmDataSourceViewPart_3;
33
    public static String CdmDataSourceViewPart_4;
34
    public static String CdmDataSourceViewPart_5;
35
    public static String CdmDataSourceViewPart_6;
36
    public static String CdmDataSourceViewPart_7;
37
    public static String CdmDataSourceViewPart_8;
38
    public static String CdmDataSourceViewPart_9;
39
    public static String UriWithLabelElement_COULD_NOT_OPEN_BROWSER;
40
    public static String UriWithLabelElement_INVALID_URL;
41
    public static String UriWithLabelElement_OPEN_EXTERNAL_BROWSER;
42
    public static String UriWithLabelElement_URL_NOT_SAVED;
43
    static {
44
        // initialize resource bundle
45
        NLS.initializeMessages(BUNDLE_NAME, Messages.class);
46
    }
47

    
48
    private Messages() {
49
    }
50
}
    (1-1/1)