tmf: Support folders in tracing projects
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / project / wizards / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2014 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 * Patrick Tasse - Add support for folder elements
12 *******************************************************************************/
13
14 package org.eclipse.linuxtools.tmf.ui.project.wizards;
15
16 import org.eclipse.osgi.util.NLS;
17
18 /**
19 * Message strings for TMF model handling.
20 *
21 * @version 1.0
22 * @author Francois Chouinard
23 */
24 public class Messages extends NLS {
25
26 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.project.wizards.messages"; //$NON-NLS-1$
27
28 /**
29 * The dialog header of the new project wizard
30 */
31 public static String NewProjectWizard_DialogHeader;
32 /**
33 * The dialog message of the new project wizard
34 */
35 public static String NewProjectWizard_DialogMessage;
36 /**
37 * The dialog title of the import trace wizard
38 */
39 public static String ImportTraceWizard_DialogTitle;
40 /**
41 * The title of the file system within the import trace wizard
42 */
43 public static String ImportTraceWizard_FileSystemTitle;
44 /**
45 * The title of the the import trace wizard page.
46 */
47 public static String ImportTraceWizard_ImportTrace;
48 /**
49 * The label of the directory location (import trace wizard)
50 */
51 public static String ImportTraceWizard_DirectoryLocation;
52 /**
53 * The title of the select trace directory dialog (import trace wizard)
54 */
55 public static String ImportTraceWizard_SelectTraceDirectoryTitle;
56 /**
57 * The message of the select trace directory dialog (import trace wizard)
58 */
59 public static String ImportTraceWizard_SelectTraceDirectoryMessage;
60 /**
61 * The title of the trace type label (import trace wizard)
62 */
63 public static String ImportTraceWizard_TraceType;
64 /**
65 * The label of the overwrite checkbox (import trace wizard)
66 */
67 public static String ImportTraceWizard_OverwriteExistingTrace;
68 /**
69 * The label of the checkbox to create a link to the trace in workspace (import trace wizard)
70 */
71 public static String ImportTraceWizard_CreateLinksInWorkspace;
72 /**
73 * The error message for invalid trace directory (import trace wizard)
74 */
75 public static String ImportTraceWizard_InvalidTraceDirectory;
76 /**
77 * The error message when a trace validation failed (import trace wizard).
78 */
79 public static String ImportTraceWizard_TraceValidationFailed;
80 /**
81 * The error message when a trace already exists in project (import trace wizard).
82 * @since 3.0
83 */
84 public static String ImportTraceWizard_TraceAlreadyExists;
85 /**
86 * The title of rename button for import configuration dialog.
87 * @since 3.0
88 */
89 public static String ImportTraceWizard_ImportConfigurationRename;
90 /**
91 * The title of rename all button for import configuration dialog.
92 * @since 3.0
93 */
94 public static String ImportTraceWizard_ImportConfigurationRenameAll;
95 /**
96 * The title of overwrite button for import configuration dialog.
97 * @since 3.0
98 */
99 public static String ImportTraceWizard_ImportConfigurationOverwrite;
100 /**
101 * The title of overwrite all button for import configuration dialog.
102 * @since 3.0
103 */
104 public static String ImportTraceWizard_ImportConfigurationOverwriteAll;
105 /**
106 * The title of skip button for import configuration dialog.
107 * @since 3.0
108 */
109 public static String ImportTraceWizard_ImportConfigurationSkip;
110 /**
111 * The title of skip all button for import configuration dialog.
112 * @since 3.0
113 */
114 public static String ImportTraceWizard_ImportConfigurationSkipAll;
115 /**
116 * The error message when trace source is empty (import trace wizard).
117 */
118 public static String ImportTraceWizard_SelectTraceSourceEmpty;
119 /**
120 * The error message when no trace is selected (import trace wizard).
121 */
122 public static String ImportTraceWizard_SelectTraceNoneSelected;
123 /**
124 * The error message when an error occurred during import operation.
125 */
126 public static String ImportTraceWizard_ImportProblem;
127 /**
128 * The error message if destination directory is a virtual folder.
129 */
130 public static String ImportTraceWizard_CannotImportFilesUnderAVirtualFolder;
131 /**
132 * The error message if destination directory is a virtual folder (for a link).
133 */
134 public static String ImportTraceWizard_HaveToCreateLinksUnderAVirtualFolder;
135 /**
136 * The label string of the browse button.
137 */
138 public static String ImportTraceWizard_BrowseButton;
139 /**
140 * The information label string.
141 */
142 public static String ImportTraceWizard_Information;
143 /**
144 * The label of the checkbox to import unrecognized trace files
145 * @since 3.0
146 */
147 public static String ImportTraceWizard_ImportUnrecognized;
148 /**
149 * The message when the import operation was cancelled.
150 * @since 3.0
151 */
152 public static String ImportTraceWizard_ImportOperationCancelled;
153 /**
154 * The message when the trace type is not found.
155 * @since 3.0
156 */
157 public static String ImportTraceWizard_TraceTypeNotFound;
158 /**
159 * The import operation task name.
160 * @since 3.0
161 */
162 public static String ImportTraceWizard_ImportOperationTaskName;
163 /**
164 * The label to indicate that trace type auto detection shall be used.
165 * @since 3.0
166 */
167 public static String ImportTraceWizard_AutoDetection;
168 /**
169 * The title of the select traces wizard.
170 */
171 public static String SelectTracesWizard_WindowTitle;
172 /**
173 * The column header for the traces (select traces wizard page).
174 */
175 public static String SelectTracesWizardPage_TraceColumnHeader;
176 /**
177 * The title of select traces wizard page.
178 */
179 public static String SelectTracesWizardPage_WindowTitle;
180 /**
181 * The description of the select traces wizard page.
182 */
183 public static String SelectTracesWizardPage_Description;
184 /**
185 * The error message when no name was entered in a dialog box (new trace or experiment dialog)
186 */
187 public static String Dialog_EmptyNameError;
188 /**
189 * The error message when name of trace or experiment already exists
190 */
191 public static String Dialog_ExistingNameError;
192 /**
193 * The title of the new experiment dialog.
194 */
195 public static String NewExperimentDialog_DialogTitle;
196 /**
197 * The label of the new experiment name field.
198 */
199 public static String NewExperimentDialog_ExperimentName;
200 /**
201 * The title of the rename experiment dialog.
202 */
203 public static String RenameExperimentDialog_DialogTitle;
204 /**
205 * The label of the field of the current experiment name.
206 */
207 public static String RenameExperimentDialog_ExperimentName;
208 /**
209 * The label of the field for entering the new experiment name.
210 */
211 public static String RenameExperimentDialog_ExperimentNewName;
212 /**
213 * The title of the copy experiment dialog.
214 */
215 public static String CopyExperimentDialog_DialogTitle;
216 /**
217 * The label of the field of the current experiment name.
218 */
219 public static String CopyExperimentDialog_ExperimentName;
220 /**
221 * The label of the field for entering the new experiment name.
222 */
223 public static String CopyExperimentDialog_ExperimentNewName;
224 /**
225 * The title of the rename trace dialog.
226 */
227 public static String RenameTraceDialog_DialogTitle;
228 /**
229 * The label of the field of the current trace name.
230 */
231 public static String RenameTraceDialog_TraceName;
232 /**
233 * The label of the field for entering the new trace name.
234 */
235 public static String RenameTraceDialog_TraceNewName;
236 /**
237 * The title of the copy trace dialog.
238 */
239 public static String CopyTraceDialog_DialogTitle;
240 /**
241 * The label of the field of the current trace name.
242 */
243 public static String CopyTraceDialog_TraceName;
244 /**
245 * The label of the field for entering the new trace name.
246 */
247 public static String CopyTraceDialog_TraceNewName;
248 /**
249 * The title of the new folder dialog.
250 * @since 3.0
251 */
252 public static String NewFolderDialog_DialogTitle;
253 /**
254 * The label of the new folder name field.
255 * @since 3.0
256 */
257 public static String NewFolderDialog_FolderName;
258 /**
259 * The title of the rename folder dialog.
260 * @since 3.0
261 */
262 public static String RenameFolderDialog_DialogTitle;
263 /**
264 * The label of the field of the current folder name.
265 * @since 3.0
266 */
267 public static String RenameFolderDialog_FolderName;
268 /**
269 * The label of the field for entering the new folder name.
270 * @since 3.0
271 */
272 public static String RenameFolderDialog_FolderNewName;
273
274 static {
275 // initialize resource bundle
276 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
277 }
278
279 private Messages() {
280 }
281 }
This page took 0.038004 seconds and 6 git commands to generate.