ref #4611 Restructure string externalization for taxeditor.navigation
[taxeditor.git] / eu.etaxonomy.taxeditor.navigation / src / main / java / eu / etaxonomy / taxeditor / navigation / l10n / Messages.java
1 /**
2 * Copyright (C) 2014 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.navigation.l10n;
10
11 import org.eclipse.osgi.util.NLS;
12
13 /**
14 * @author d.schild
15 * @date 18.06.2014
16 *
17 */
18 public class Messages extends NLS {
19 private static final String BUNDLE_NAME = "eu.etaxonomy.taxeditor.navigation.l10n.messages"; //$NON-NLS-1$
20 public static String SearchBar_0;
21 public static String SearchBar_1;
22 public static String SearchBar_2;
23 public static String SearchBar_3;
24 public static String SearchBar_4;
25 public static String SearchBar_6;
26 public static String SearchBar_7;
27 public static String SearchBar_8;
28 public static String SearchBar_9;
29
30 static {
31 // initialize resource bundle
32 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
33 }
34
35 private Messages() {
36 }
37 }