Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b7bf90ed5c090a86a788862724822ce3cf0b3045 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*****************************************************************************
 * Copyright (c) 2016 CEA LIST 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:
 *   Nicolas FAUVERGUE (ALL4TEC) nicolas.fauvergue@all4tec.net - Initial API and implementation
 *   
 *****************************************************************************/

package org.eclipse.papyrus.infra.internationalization.common.utils;

/**
 * This class defines the constants for the internationalization preferences.
 */
public class InternationalizationPreferencesConstants {

	/**
	 * The internationalization preference label.
	 */
	public static final String USE_INTERNATIONALIZATION_PREFERENCE = "useInternationalization"; //$NON-NLS-1$
	
	/**
	 * The label for the internationalization annotation.
	 */
	public static final String INTERNATIONALIZATION_ANNOTATION_LABEL = "Internationalization"; //$NON-NLS-1$
	
	/**
	 * The label of the internationalization annotation detail.
	 */
	public static final String USE_DETAIL_ANNOTATION_LABEL = "use"; //$NON-NLS-1$
	
	/**
	 * The language preference name.
	 */
	public static final String LANGUAGE_PREFERENCE = "language"; //$NON-NLS-1$
	
}

Back to the top