001: /*
002: * uDig - User Friendly Desktop Internet GIS client
003: * http://udig.refractions.net
004: * (C) 2004, Refractions Research Inc.
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation;
009: * version 2.1 of the License.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: *
016: */
017: package net.refractions.udig.project.internal;
018:
019: import org.eclipse.osgi.util.NLS;
020:
021: public class Messages extends NLS {
022: private static final String BUNDLE_NAME = "net.refractions.udig.project.internal.messages"; //$NON-NLS-1$
023: public static String ChangeCRSCommand_undoName;
024: public static String ChangeCRSCommand_name;
025: public static String CommandManager_warning2;
026: public static String DeleteLayersCommand_name;
027: public static String LayerImpl_resolveAdapter;
028: public static String LayerImpl_unkownCRS;
029: public static String PlaceHolder_error;
030: public static String ProjectPlugin_saving_task_name;
031: public static String ProjectRegistryImpl_load_error;
032: public static String SelectLayerCommand_name;
033: public static String SelectLayerCommand_selecting;
034: public static String SelectLayerCommand_undoing;
035: public static String SetScaleCommand_name;
036: public static String WriteFeatureChangesCommand_rollbackTask;
037: public static String WriteEditFeatureCommand_rollbackTask;
038: public static String WriteFeatureChangesCommand_commandName;
039: public static String WriteEditFeatureCommand_runTask;
040: public static String WriteFeatureChangesCommand_runTask;
041: public static String MapImpl_CommandStack;
042: public static String MapImpl_NavigationCommandStack;
043: public static String CopyFeaturesCommand_undo;
044: public static String CopyFeaturesCommand_name;
045: public static String CommandManager_undo;
046: public static String CommandManager_redo;
047: public static String CommandManager_0;
048: public static String LayerImpl_connectionFailed;
049: public static String RollbackCommand_name;
050: public static String CommitCommand_commitCommandName;
051: public static String CreateLayerCommand_name;
052: public static String CreateMapCommand_commandname;
053: public static String CreateMapCommand_defaultname;
054: public static String CreateLayerCommand_badID2;
055: public static String CreateLayerCommand_badID;
056: public static String UDIGTransaction_closeException;
057: public static String UDIGTransaction_rollbackException;
058: public static String UDIGTransaction_commitException;
059: public static String TilingRenderer_disposedError;
060: public static String StopRenderCommand_0;
061: public static String UDIGFeatureStore_1;
062: public static String UDIGFeatureStore_0;
063: public static String NullGeoResource_0;
064: public static String LayerImpl_status;
065: public static String LayerImpl_unknown;
066: public static String ProjectImpl_executor;
067: public static String CommandManager_warning;
068: public static String CommandManager_toggleMessage;
069: public static String CommandManager_ProgressMonitor;
070: public static String CommandManager_warningTitle;
071: public static String AddFeatureCommand_name;
072: public static String AddLayersCommand_name;
073: public static String AddLayerCommand_Name;
074: public static String CompositeRendererExecutorImpl_0;
075: public static String SelectCommand_name;
076: public static String SelectionListener_0;
077: public static String SelectionListener_SelectionTimer;
078: public static String ProjectImpl_commandManagerName;
079: public static String ProjectRegistry_defaultName;
080: public static String Styling_name;
081: public static String Styling_default;
082: public static String Styling_pointStyle;
083: public static String Styling_blackLine_semitransparentYellowFill;
084: public static String Styling_blackLine_semitransparentBlueFill;
085: public static String Styling_blackLine_greenFill;
086: public static String Styling_blackLine_blueFill;
087: public static String Styling_blackLine;
088: public static String Styling_greenLine;
089: public static String Styling_blueLine;
090: public static String ResetEditFeatureCommand_0;
091: public static String RendererImpl_selectionFor;
092: public static String RenderExecutorImpl_message;
093: public static String RenderExecutorImpl_title;
094: public static String NoSelectCommand_cancelSelections;
095: public static String BBoxSelectionCommand_boxSelection;
096: public static String FIDSelectCommand_featureSelection;
097: public static String SetEditFeatureCommand_setCurrentEditFeature;
098: public static String CreateLayerCommand_illegalRollback2;
099: public static String CreateLayerCommand_illegalRollback;
100: public static String CreateFeatureCommand_createFeature;
101: public static String CreateFeatureCommand_error_message;
102: public static String CreateFeatureCommand_error_title;
103: public static String PanCommand_pan;
104: public static String ZoomCommand_zoom;
105: public static String SetAttributeCommand_setFeatureAttribute;
106: public static String SetViewportCenterCommand_setViewCenter;
107: public static String SetViewportBBoxCommand_setViewArea;
108: public static String SetViewportHeight_setViewHeight;
109: public static String SetApplicabilityCommand_name;
110: public static String SetViewportWidth_setViewWidth;
111: public static String ZoomExtentCommand_name;
112: public static String DeleteManyFeaturesCommand_name;
113: public static String DeleteLayerCommand_deleteLayer;
114: public static String DeleteFeatureCommand_deleteFeature;
115: public static String RenderExecutorImpl_1;
116: public static String RenderExecutorImpl_2;
117: static {
118: // initialize resource bundle
119: NLS.initializeMessages(BUNDLE_NAME, Messages.class);
120: }
121:
122: private Messages() {
123: }
124: }
|