blob: 1ae2d13a4220ab8af0cda0a1458f6a4a8dacc533 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2019 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Yupanqui Munoz (CEA LIST) yupanqui.munozjulho@cea.fr - Initial API and implementation
* Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
*****************************************************************************/
package org.eclipse.papyrus.model2doc.odt.internal.message;
import org.eclipse.osgi.util.NLS;
/**
* This class provides messages.
*
*/
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.papyrus.model2doc.odt.internal.message.messages"; //$NON-NLS-1$
public static String ODTEditor_LibreOfficeDocumentGenerator_ErrorMessage;
public static String ODTEditor_LibreOfficeDocumentGenerator_ErrorTitle;
public static String ODTEditor_SendMail;
public static String ODTEditor_MailClientWasNotFound;
public static String PDFExporter_GeneratePDF;
public static String PDFExporter_PDFHasBeenGenerated;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
/**
* Constructor.
*
*/
private Messages() {
// to avoid instantiation
}
}