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.mapgraphic.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.mapgraphic.internal.messages"; //$NON-NLS-1$
23: public static String GridStyleConfigurator_0;
24: public static String GridStyleConfigurator_1;
25: public static String GridStyleConfigurator_2;
26: public static String GridStyleConfigurator_ChangeColor;
27: public static String GridStyleConfigurator_HSpacing;
28: public static String GridStyleConfigurator_LineColor;
29: public static String GridStyleConfigurator_LineStyle;
30: public static String GridStyleConfigurator_LineWidth;
31: public static String GridStyleConfigurator_VSpacing;
32: public static String MapGraphicResource_description;
33: public static String MapGraphicService_description;
34: public static String MapGraphicService_title;
35: public static String MapGraphic_title;
36: public static String OtherAction_addAll;
37: public static String OtherAction_addButton;
38: public static String OtherAction_message1;
39: public static String OtherAction_p1;
40: public static String OtherAction_p2;
41: public static String OtherAction_shellText;
42: public static String OtherAction_wizardTitle;
43: public static String LocationStyleConfigurator_height;
44: public static String LocationStyleConfigurator_width;
45: public static String LocationStyleConfigurator_y;
46: public static String LocationStyleConfigurator_x;
47: public static String ScalebarMapGraphic_zoomInRequiredMessage;
48: public static String ScalebarStyleConfigurator_verticalAlignment;
49: public static String ScalebarStyleConfigurator_horizontalAlignment;
50: public static String ScalebarStyleConfigurator_right;
51: public static String ScalebarMapGraphic_numberOfKilometres;
52: public static String ScalebarMapGraphic_numberOfMetres;
53: public static String ScalebarStyleConfigurator_center;
54: public static String ScalebarStyleConfigurator_left;
55: public static String ScalebarStyleConfigurator_bottom;
56: public static String ScalebarStyleConfigurator_middle;
57: public static String ScalebarStyleConfigurator_top;
58: public static String GridMapGraphic_grids_too_close;
59: static {
60: // initialize resource bundle
61: NLS.initializeMessages(BUNDLE_NAME, Messages.class);
62: }
63:
64: private Messages() {
65: }
66: }
|