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 org.tcat.citd.sim.udig.bookmarks.internal;
18:
19: import org.eclipse.osgi.util.NLS;
20:
21: public class Messages extends NLS {
22: private static final String BUNDLE_NAME = "org.tcat.citd.sim.udig.bookmarks.internal.messages"; //$NON-NLS-1$
23: public static String BookmarkAction_dialogtitle_renamebookmark;
24: public static String BookmarkAction_dialogtitle_bookmarklocation;
25: public static String BookmarkAction_dialogprompt_removebookmark;
26: public static String BookmarkAction_dialogtitle_removebookmark;
27: public static String BookmarkAction_dialogprompt_removeselectedbookmarks;
28: public static String BookmarksContentProvider_emptybookmarkslist;
29: public static String BookmarkAction_dialogprompt_removeselectedprojects;
30: public static String BookmarkAction_dialogprompt_removeprojectbookmarks;
31: public static String BookmarkAction_dialogprompt_removeselectedmaps;
32: public static String BookmarkAction_dialogprompt_removemapbookmarks;
33: public static String BookmarkAction_dialogprompt_removeallbookmarks;
34: public static String BookmarkAction_dialogtitle_removebookmarks;
35: public static String BookmarkManager_name_bookmarkmanager;
36: public static String BookmarkManager_bookmarkdefaultname;
37: public static String BookmarkAction_restorebookmarksaction;
38: public static String BookmarkAction_savebookmarksaction;
39: public static String BookmarkAction_renamebookmarkaction;
40: public static String BookmarkAction_addbookmarkaction;
41: public static String BookmarkAction_gotobookmarkaction;
42: public static String BookmarkAction_removeallbookmarksaction;
43: public static String BookmarkAction_removeprojectaction;
44: public static String BookmarkAction_removemapaction;
45: public static String BookmarkAction_removebookmarkaction;
46: public static String BookmarkAction_dialogprompt_enterbookmarkname;
47:
48: static {
49: // initialize resource bundle
50: NLS.initializeMessages(BUNDLE_NAME, Messages.class);
51: }
52:
53: private Messages() {
54: }
55: }
|