blob: 8022d3dad088336b82275ae98152454508515d6f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.server.backend.internal;
import org.eclipse.sirius.ext.base.I18N;
import org.eclipse.sirius.ext.base.I18N.TranslatableMessage;
/**
* Utility class used for the internationalization.
*
* @author sbegaudeau
*/
public final class SiriusServerMessages {
static {
I18N.initializeMessages(SiriusServerMessages.class, SiriusServerBackendPlugin.INSTANCE);
}
// CHECKSTYLE:OFF
@TranslatableMessage
public static String SiriusServerProjectsService_projectAlreadyExists;
// CHECKSTYLE:ON
private SiriusServerMessages() {
// Prevents instantiation.
}
}