01: /*******************************************************************************
02: * Copyright (c) 2005, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM - Initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.internal.wizards.newresource;
11:
12: import org.eclipse.osgi.util.NLS;
13:
14: public class ResourceMessages extends NLS {
15: private static final String BUNDLE_NAME = "org.eclipse.ui.internal.wizards.newresource.messages";//$NON-NLS-1$
16:
17: // ==============================================================================
18: // New Resource Wizards
19: // ==============================================================================
20: public static String FileResource_shellTitle;
21: public static String FileResource_pageTitle;
22: public static String FileResource_description;
23: public static String FileResource_errorMessage;
24:
25: public static String NewFolder_title;
26: public static String NewFolder_text;
27:
28: public static String NewProject_windowTitle;
29: public static String NewProject_title;
30: public static String NewProject_description;
31: public static String NewProject_referenceTitle;
32: public static String NewProject_referenceDescription;
33: public static String NewProject_errorOpeningWindow;
34: public static String NewProject_errorMessage;
35: public static String NewProject_internalError;
36: public static String NewProject_caseVariantExistsError;
37: public static String NewProject_perspSwitchTitle;
38: /**
39: * Combines a perspective name and text for introducing a perspective switch
40: */
41: public static String NewProject_perspSwitchMessage;
42: /**
43: * Combines a perspective name and description with text for introducing
44: * a perspective switch
45: */
46: public static String NewProject_perspSwitchMessageWithDesc;
47:
48: static {
49: // load message values from bundle file
50: NLS.initializeMessages(BUNDLE_NAME, ResourceMessages.class);
51: }
52: }
|