e3cd26dfe517e964401a469f3f6e14e0a7b6aa65
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / project / wizards / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2012 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.project.wizards;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Message strings for TMF model handling.
19 *
20 * @version 1.0
21 * @author Francois Chouinard
22 *
23 */
24 @SuppressWarnings("javadoc")
25 public class Messages extends NLS {
26
27 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.project.wizards.messages"; //$NON-NLS-1$
28
29 /**
30 * The dialog header of the new project wizard
31 */
32 public static String NewProjectWizard_DialogHeader;
33 /**
34 * The dialog message of the new project wizard
35 */
36 public static String NewProjectWizard_DialogMessage;
37 /**
38 * The dialog title of the import trace wizard
39 */
40 public static String ImportTraceWizard_DialogTitle;
41 /**
42 * The title of the file system within the import trace wizard
43 */
44 public static String ImportTraceWizard_FileSystemTitle;
45 /**
46 * The title of the the import trace wizard page.
47 */
48 public static String ImportTraceWizard_ImportTrace;
49 /**
50 * The label of the directory location (import trace wizard)
51 */
52 public static String ImportTraceWizard_DirectoryLocation;
53 /**
54 * The title of the select trace directory dialog (import trace wizard)
55 */
56 public static String ImportTraceWizard_SelectTraceDirectoryTitle;
57 /**
58 * The message of the select trace directory dialog (import trace wizard)
59 */
60 public static String ImportTraceWizard_SelectTraceDirectoryMessage;
61 /**
62 * The title of the trace type label (import trace wizard)
63 */
64 public static String ImportTraceWizard_TraceType;
65 /**
66 * The label of the overwrite checkbox (import trace wizard)
67 */
68 public static String ImportTraceWizard_OverwriteExistingTrace;
69 /**
70 * The label of the checkbox to create a link to the trace in workspace (import trace wizard)
71 */
72 public static String ImportTraceWizard_CreateLinksInWorkspace;
73 /**
74 * The error message for invalid trace directory (import trace wizard)
75 */
76 public static String ImportTraceWizard_InvalidTraceDirectory;
77 /**
78 * The error message when a trace validation failed (import trace wizard).
79 */
80 public static String ImportTraceWizard_TraceValidationFailed;
81 /**
82 * The error message when trace source is empty (import trace wizard).
83 */
84 public static String ImportTraceWizard_SelectTraceSourceEmpty;
85 /**
86 * The error message when no trace is selected (import trace wizard).
87 */
88 public static String ImportTraceWizard_SelectTraceNoneSelected;
89 /**
90 * The error message when an error occurred during import operation.
91 */
92 public static String ImportTraceWizard_ImportProblem;
93 /**
94 * The error message if destination directory is a virtual folder.
95 */
96 public static String ImportTraceWizard_CannotImportFilesUnderAVirtualFolder;
97 /**
98 * The error message if destination directory is a virtual folder (for a link).
99 */
100 public static String ImportTraceWizard_HaveToCreateLinksUnderAVirtualFolder;
101 /**
102 * The label string of the browse button.
103 */
104 public static String ImportTraceWizard_BrowseButton;
105 /**
106 * The information label string.
107 */
108 public static String ImportTraceWizard_Information;
109 /**
110 * The title of the select traces wizard.
111 */
112 public static String SelectTracesWizard_WindowTitle;
113 /**
114 * The column header for the traces (select traces wizard page).
115 */
116 public static String SelectTracesWizardPage_TraceColumnHeader;
117 /**
118 * The title of select traces wizard page.
119 */
120 public static String SelectTracesWizardPage_WindowTitle;
121 /**
122 * The description of the select traces wizard page.
123 */
124 public static String SelectTracesWizardPage_Description;
125 /**
126 * The error message when no name was entered in a dialog box (new trace or experiment dialog)
127 */
128 public static String Dialog_EmptyNameError;
129 /**
130 * The error message when name of trace or experiment already exists
131 */
132 public static String Dialog_ExistingNameError;
133 /**
134 * The title of the new experiment dialog.
135 */
136 public static String NewExperimentDialog_DialogTitle;
137 /**
138 * The label of the new experiment name field.
139 */
140 public static String NewExperimentDialog_ExperimentName;
141 /**
142 * The title of the rename experiment dialog.
143 */
144 public static String RenameExperimentDialog_DialogTitle;
145 /**
146 * The label of the field of the current experiment name.
147 */
148 public static String RenameExperimentDialog_ExperimentName;
149 /**
150 * The label of the field for entering the new experiment name.
151 */
152 public static String RenameExperimentDialog_ExperimentNewName;
153 /**
154 * The title of the copy experiment dialog.
155 */
156 public static String CopyExperimentDialog_DialogTitle;
157 /**
158 * The label of the field of the current experiment name.
159 */
160 public static String CopyExperimentDialog_ExperimentName;
161 /**
162 * The label of the field for entering the new experiment name.
163 */
164 public static String CopyExperimentDialog_ExperimentNewName;
165 /**
166 * The title of the rename trace dialog.
167 */
168 public static String RenameTraceDialog_DialogTitle;
169 /**
170 * The label of the field of the current trace name.
171 */
172 public static String RenameTraceDialog_TraceName;
173 /**
174 * The label of the field for entering the new trace name.
175 */
176 public static String RenameTraceDialog_TraceNewName;
177 /**
178 * The title of the copy trace dialog.
179 */
180 public static String CopyTraceDialog_DialogTitle;
181 /**
182 * The label of the field of the current trace name.
183 */
184 public static String CopyTraceDialog_TraceName;
185 /**
186 * The label of the field for entering the new trace name.
187 */
188 public static String CopyTraceDialog_TraceNewName;
189
190 static {
191 // initialize resource bundle
192 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
193 }
194
195 private Messages() {
196 }
197 }
This page took 0.033489 seconds and 5 git commands to generate.