blob: 10a301dfe17af71065d0cd4859854c7067326612 [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2007 IBM Corporation and others.
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
// which accompanies this distribution, and is available at
// http://www.eclipse.org/legal/epl-v10.html
//
// Contributors:
// IBM Corporation - initial implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.ui;
import org.eclipse.osgi.util.NLS;
public final class EPFUIResources extends NLS {
private static String BUNDLE_NAME = EPFUIResources.class.getPackage()
.getName()
+ ".Resources"; //$NON-NLS-1$
private EPFUIResources() {
// Do not instantiate.
}
public static String Dialog_fileNameConflict_title;
public static String Dialog_fileNameConflict_msg;
public static String Dialog_fileName_selectAction_label;
public static String Dialog_fileName_destination;
public static String Dialog_fileNameConflict_note;
public static String Dialog_fileName_replace_msg;
public static String Dialog_fileName_unique_msg;
public static String internalError_reason;
public static String initializeWizardError_reason;
public static String initializeWizardPagesError_reason;
static {
NLS.initializeMessages(BUNDLE_NAME, EPFUIResources.class);
}
}