Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1507dfb3d1925778185a8b7ff91fd840bea9e47a (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
/*******************************************************************************
 * Copyright (c) 2008, 2010 Nokia 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:
 *     Nokia - initial API and implementation
 *     IBM Corporation
 *******************************************************************************/
package org.eclipse.cdt.debug.internal.ui.views.executables;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {
	public static String ExecutablesContentProvider_FetchingExecutables;
	public static String ExecutablesView_Columns;
	public static String ExecutablesView_ConfigureColumns;
	public static String ExecutablesView_ConfirmRemoveExe;
	public static String ExecutablesView_ConfirmRemoveSelected;
	public static String ExecutablesView_ExeData;
	public static String ExecutablesView_ExeLocation;
	public static String ExecutablesView_ExeName;
	public static String ExecutablesView_ExeProject;
	public static String ExecutablesView_ExeSize;
	public static String ExecutablesView_ExeType;
	public static String ExecutablesView_Finding_Sources_Job_Name;
	public static String ExecutablesView_Import;
	public static String ExecutablesView_ImportExe;
	public static String ExecutablesView_ImportExecutables;
	public static String ExecutablesView_Refresh;
	public static String ExecutablesView_RefreshList;
	public static String ExecutablesView_Remove;
	public static String ExecutablesView_RemoveExes;
	public static String ExecutablesView_RemoveSelectedExes;
	public static String ExecutablesView_Select_Executable;
	public static String ExecutablesView_SelectColumns;
	public static String ExecutablesView_SelectExeFile;
	public static String ExecutablesView_SrcDate;
	public static String ExecutablesView_SrcLocation;
	public static String ExecutablesView_SrcName;
	public static String ExecutablesView_SrcOrgLocation;
	public static String ExecutablesView_SrcSize;
	public static String ExecutablesView_SrcType;
	public static String ExecutablesViewer_ExecutableName;
	public static String ExecutablesViewer_Location;
	public static String ExecutablesViewer_Modified;
	public static String ExecutablesViewer_Project;
	public static String ExecutablesViewer_RefreshExecutablesView;
	public static String ExecutablesViewer_Size;
	public static String ExecutablesViewer_Type;
	public static String SourceFilesContentProvider_NoFilesFound;
	public static String SourceFilesContentProvider_ReadingDebugSymbolInformationLabel;
	public static String SourceFilesContentProvider_Refreshing;
	public static String SourceFilesViewer_RefreshSourceFiles;
	public static String SourceFilesViewer_Location;
	public static String SourceFilesViewer_Modified;
	public static String SourceFilesViewer_Original;
	public static String SourceFilesViewer_Size;
	public static String SourceFilesViewer_SourceFileName;
	public static String SourceFilesViewer_Type;

	static {
		// initialize resource bundle
		NLS.initializeMessages(Messages.class.getName(), Messages.class);
	}

	private Messages() {
	}
}

Back to the top