blob: f07f8551048047dc184827970d34b89d42bfa66f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2021 Primemetals Austria GmbH
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Michael Oberlehner
* - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.fordiac.ide.systemmanagement.ui.editors;
import org.eclipse.osgi.util.NLS;
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.fordiac.ide.systemmanagement.ui.editors.messages"; //$NON-NLS-1$
public static String AutomationSystemEditor_Title;
public static String AutomationSystemEditor_Info;
public static String AutomationSystemEditor_Discard_Changes;
public static String AutomationSystemEditor_Save_Changes;
public static String AutomationSystemEditor_Overwrite_Changes;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}