01: /*
02: * uDig - User Friendly Desktop Internet GIS client
03: * http://udig.refractions.net
04: * (C) 2004, Refractions Research Inc.
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation;
09: * version 2.1 of the License.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: *
16: */
17: package net.refractions.udig.catalog.db2.internal;
18:
19: import org.eclipse.osgi.util.NLS;
20:
21: public class Messages extends NLS {
22: private static final String BUNDLE_NAME = "net.refractions.udig.catalog.db2.internal.messages"; //$NON-NLS-1$
23: public static String DB2Preferences_driverNotValid;
24: public static String DB2Preferences_renameError;
25: public static String DB2Preferences_restartQuestion;
26: public static String DB2ServiceExtension_notDB2URL;
27: public static String DB2ServiceExtension_nullURL;
28: public static String DB2WizardPage_title;
29: public static String DB2WizardPage_warning;
30: public static String DB2WizardPage_connectionTask;
31: public static String DB2WizardPage_installDrivers;
32: public static String DB2Preferences_restartNeeded;
33: public static String DB2Preferences_restartTitle;
34: public static String DB2Preferences_copyError;
35: public static String DB2Preferences_licenceLabel;
36: public static String DB2Preferences_archive;
37: public static String DB2Preferences_browse;
38: public static String DB2Preferences_fileExists;
39: public static String DB2Preferences_fileNotFound;
40: public static String DB2Preferences_driverLabel;
41: public static String DB2Preferences_title;
42: static {
43: // initialize resource bundle
44: NLS.initializeMessages(BUNDLE_NAME, Messages.class);
45: }
46:
47: private Messages() {
48: }
49: }
|