Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 69698d84aa54769d550d5e2864592d4e0bd24e0f (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*******************************************************************************
 * Copyright (c) 2007, 2014 Borland Software Corporation and others.
 * 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v2.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v20.html
 * 
 * Contributors:
 *     Borland Software Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.m2m.internal.qvt.oml.runtime.ui.wizards;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.m2m.internal.qvt.oml.runtime.ui.wizards.messages"; //$NON-NLS-1$
		
	public static String ApplyWizard_FailedToApply;
	public static String ApplyWizard_Error;
	public static String ApplyWizard_ShowResultError;
	
	public static String ApplyToWizard_InputNotSupported;
	public static String ApplyToWizard_FailedToGetTransformationOutput;
	public static String ApplyToWizard_NoSource;
	
	public static String ApplyTransformationWizard_SetupConfigProperty;	
	public static String ApplyTransformationWizard_ConfigProperties;
	public static String ApplyTransformationWizard_Title;	
	public static String ApplyTransformationWizard_ApplyTransformationSelectPageTitle;
	public static String ApplyTransformationWizard_ProjectNotBuilt;
	public static String ApplyTransformationWizard_QVTErrors;
	public static String ApplyTransformationWizard_ApplyTransformationFinalPageTitle;	
	public static String ApplyTransformationWizard_ApplyTransformationFinalPageDesc;
	public static String ApplyTransformationWizard_TransfromationsListTitle;
	
	public static String ApplyTransformationFinalPage_OpenEditor;
	public static String ApplyTransformationFinalPage_NoTransformation;
	
	public static String ApplyCompiledTransformationWizard_Title;
	public static String ApplyCompiledTransformationWizard_Description;
	
	public static String SelectQvtProjectTransformationPage_Title;
	public static String SelectQvtProjectTransformationPage_RunInterpretedMode;
	public static String SelectQvtProjectTransformationPage_Description;

    public static String SelectWorkspaceTransformationPage_Title;
    public static String SelectWorkspaceTransformationPage_Description;
    
    public static String TransformationParametersPage_Title;
    public static String TransformationParametersPage_TitleWithTransf;
    public static String TransformationParametersPage_Description;
    
    public static String LaunchWorkspaceTransformationWizard_Title;
    public static String LaunchWorkspaceTransformationWizard_runningTransformation;
    public static String LaunchWorkspaceTransformationWizard_FailedToLaunch;
    public static String LaunchWorkspaceTransformationWizard_Error;
    public static String LaunchWorkspaceTransformationWizard_ShowResultError;
    public static String LaunchWorkspaceTransformationWizard_launchConfigName;
    
    public static String RunInterpretedTransformationAction_title;
    public static String RunInterpretedTransformationAction_message;
    
    public static String TransformationWizardUtil_savingTransformationResults;
	
	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
	}

	private Messages() {
	}
}

Back to the top