/*******************************************************************************
* Copyright (c) 2007, 2014 compeople AG 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:
* compeople AG - initial API and implementation
*******************************************************************************/
package org.eclipse.riena.ui.swt.nls;
import org.eclipse.osgi.util.NLS;
/**
* Provides internationalized UI strings.
*
* @since 3.0
*/
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.riena.ui.swt.nls.messages"; //$NON-NLS-1$
public static String MasterDetailsComposite_buttonApply;
public static String MasterDetailsComposite_buttonNew;
public static String MasterDetailsComposite_buttonRemove;
/**
* @since 1.2
*/
public static String MasterDetailsComposite_dialogMessage_confirmDiscard;
/**
* @since 1.2
*/
public static String MasterDetailsComposite_dialogTitle_confirmDiscard;
/**
* @since 1.2
*/
public static String MasterDetailsComposite_dialogTitle_applyFailed;
/**
* @since 2.0
*/
public static String MasterDetailsComposite_dialogTitle_removeFailed;
/**
* @since 2.0
*/
public static String StatuslineUIProcess_canceled;
/**
* @since 2.0
*/
public static String StatuslineUIProcess_finished;
/**
* @since 2.0
*/
public static String StatuslineUIProcess_noActiveProcess;
/**
* @since 2.0
*/
public static String UIProcessWindow_cancel;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}