Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f0606790b6f4a630d79dd7a33a80098db0ff89e7 (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
/*******************************************************************************
 * Copyright (c) 2017 QNX Software Systems 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
 *******************************************************************************/
package org.eclipse.cdt.cmake.ui.internal;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {

	public static String CMakeBuildTab_BuildCommand;
	public static String CMakeBuildTab_CleanCommand;
	public static String CMakeBuildTab_Cmake;
	public static String CMakeBuildTab_CMakeArgs;
	public static String CMakeBuildTab_Generator;
	public static String CMakeBuildTab_Ninja;
	public static String CMakeBuildTab_NoneAvailable;
	public static String CMakeBuildTab_Settings;
	public static String CMakeBuildTab_Toolchain;
	public static String CMakeBuildTab_UnixMakefiles;
	public static String CMakePreferencePage_Add;
	public static String CMakePreferencePage_ConfirmRemoveDesc;
	public static String CMakePreferencePage_ConfirmRemoveTitle;
	public static String CMakePreferencePage_Files;
	public static String CMakePreferencePage_Path;
	public static String CMakePreferencePage_Remove;
	public static String CMakePreferencePage_Toolchain;
	public static String CMakePropertyPage_FailedToStartCMakeGui_Body;
	public static String CMakePropertyPage_FailedToStartCMakeGui_Title;
	public static String CMakePropertyPage_FailedToGetOS_Body;
	public static String CMakePropertyPage_FailedToGetOS_Title;
	public static String CMakePropertyPage_FailedToGetCMakeConfiguration_Body;
	public static String CMakePropertyPage_FailedToGetCMakeConfiguration_Title;
	public static String CMakePropertyPage_FailedToConfigure;
	public static String CMakePropertyPage_Terminated;
	public static String CMakePropertyPage_LaunchCMakeGui;

	public static String NewCMakeProjectWizard_Description;
	public static String NewCMakeProjectWizard_PageTitle;
	public static String NewCMakeProjectWizard_WindowTitle;

	public static String NewCMakeToolChainFilePage_Browse;
	public static String NewCMakeToolChainFilePage_NoPath;
	public static String NewCMakeToolChainFilePage_Path;
	public static String NewCMakeToolChainFilePage_Select;
	public static String NewCMakeToolChainFilePage_Title;
	public static String NewCMakeToolChainFilePage_Toolchain;

	static {
		// initialize resource bundle
		NLS.initializeMessages("org.eclipse.cdt.cmake.ui.internal.messages", Messages.class); //$NON-NLS-1$
	}

	private Messages() {
	}
}

Back to the top