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.printing.ui.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.printing.ui.internal.messages"; //$NON-NLS-1$
23: public static String MapPart_defaultMapTitle;
24: public static String MapEditPolicy_label;
25: public static String MapTreePart_mapLabel;
26: public static String ConnectionCreateCommand_error_targetNull;
27: public static String ConnectionCreateCommand_error_sourceNull;
28: public static String ConnectionReconnectCommand_label_endpoint;
29: public static String ConnectionReconnectCommand_label_startpoint;
30: public static String ConnectionReconnectCommand_error_unreacheable;
31: public static String ConnectionReconnectCommand_error_nullConnection;
32: public static String ConnectionDeleteCommand_label;
33: public static String RenameLabelCommand_label;
34: public static String DeleteCommand_delete;
35: public static String SetConstraintCommand_label;
36: public static String PageEditorPaletteFactory_components_title;
37: public static String PageEditorPaletteFactory_controlGroup_title;
38: public static String PageEditor_error_nullEditor;
39: public static String PrintingPreferences_label_defaultTemplate;
40: public static String PrintAction_jobStatus;
41: public static String PrintAction_jobTitle;
42: public static String PrintAction_pageError;
43: public static String CreatePageAction_error_cannotFindDefaultTemplate;
44: public static String CreatePageAction_dialog_message;
45: public static String CreatePageAction_newPageName;
46: public static String CreatePageAction_dialog_title;
47: public static String CreatePageAction_printError_text;
48: public static String CreatePageAction_printError_title;
49: public static String EditMapAction_action_tooltip;
50: public static String EditMapAction_action_text;
51: public static String BasicTemplate_name;
52: public static String BasicTemplate_label_defaultTitle;
53: static {
54: // initialize resource bundle
55: NLS.initializeMessages(BUNDLE_NAME, Messages.class);
56: }
57:
58: private Messages() {
59: }
60: }
|