tmf: Rework trace import wizard
[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 *******************************************************************************/
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 public class Messages extends NLS {
24
25 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.project.wizards.messages"; //$NON-NLS-1$
26
27 /**
28 * The dialog header of the new project wizard
29 */
30 public static String NewProjectWizard_DialogHeader;
31 /**
32 * The dialog message of the new project wizard
33 */
34 public static String NewProjectWizard_DialogMessage;
35 /**
36 * The dialog title of the import trace wizard
37 */
38 public static String ImportTraceWizard_DialogTitle;
39 /**
40 * The title of the file system within the import trace wizard
41 */
42 public static String ImportTraceWizard_FileSystemTitle;
43 /**
44 * The title of the the import trace wizard page.
45 */
46 public static String ImportTraceWizard_ImportTrace;
47 /**
48 * The label of the directory location (import trace wizard)
49 */
50 public static String ImportTraceWizard_DirectoryLocation;
51 /**
52 * The title of the select trace directory dialog (import trace wizard)
53 */
54 public static String ImportTraceWizard_SelectTraceDirectoryTitle;
55 /**
56 * The message of the select trace directory dialog (import trace wizard)
57 */
58 public static String ImportTraceWizard_SelectTraceDirectoryMessage;
59 /**
60 * The title of the trace type label (import trace wizard)
61 */
62 public static String ImportTraceWizard_TraceType;
63 /**
64 * The label of the overwrite checkbox (import trace wizard)
65 */
66 public static String ImportTraceWizard_OverwriteExistingTrace;
67 /**
68 * The label of the checkbox to create a link to the trace in workspace (import trace wizard)
69 */
70 public static String ImportTraceWizard_CreateLinksInWorkspace;
71 /**
72 * The error message for invalid trace directory (import trace wizard)
73 */
74 public static String ImportTraceWizard_InvalidTraceDirectory;
75 /**
76 * The error message when a trace validation failed (import trace wizard).
77 */
78 public static String ImportTraceWizard_TraceValidationFailed;
79 /**
80 * The message when the automatic trace type detection couldn't find a valid trace type.
81 * @since 3.0
82 */
83 public static String ImportTraceWizard_NoValidTraceTypeFound;
84 /**
85 * The error message when trace source is empty (import trace wizard).
86 */
87 public static String ImportTraceWizard_SelectTraceSourceEmpty;
88 /**
89 * The error message when no trace is selected (import trace wizard).
90 */
91 public static String ImportTraceWizard_SelectTraceNoneSelected;
92 /**
93 * The error message when an error occurred during import operation.
94 */
95 public static String ImportTraceWizard_ImportProblem;
96 /**
97 * The error message if destination directory is a virtual folder.
98 */
99 public static String ImportTraceWizard_CannotImportFilesUnderAVirtualFolder;
100 /**
101 * The error message if destination directory is a virtual folder (for a link).
102 */
103 public static String ImportTraceWizard_HaveToCreateLinksUnderAVirtualFolder;
104 /**
105 * The label string of the browse button.
106 */
107 public static String ImportTraceWizard_BrowseButton;
108 /**
109 * The information label string.
110 */
111 public static String ImportTraceWizard_Information;
112 /**
113 * The label of the checkbox to import unrecognized trace files
114 * @since 3.0
115 */
116 public static String ImportTraceWizard_ImportUnrecognized;
117 /**
118 * The message when the import operation was cancelled.
119 * @since 3.0
120 */
121 public static String ImportTraceWizard_ImportOperationCancelled;
122 /**
123 * The message when the trace type is not found.
124 * @since 3.0
125 */
126 public static String ImportTraceWizard_TraceTypeNotFound;
127 /**
128 * The import operation task name.
129 * @since 3.0
130 */
131 public static String ImportTraceWizard_ImportOperationTaskName;
132 /**
133 * The label to indicate that trace type auto detection shall be used.
134 * @since 3.0
135 */
136 public static String ImportTraceWizard_AutoDetection;
137 /**
138 * The title of the select traces wizard.
139 */
140 public static String SelectTracesWizard_WindowTitle;
141 /**
142 * The column header for the traces (select traces wizard page).
143 */
144 public static String SelectTracesWizardPage_TraceColumnHeader;
145 /**
146 * The title of select traces wizard page.
147 */
148 public static String SelectTracesWizardPage_WindowTitle;
149 /**
150 * The description of the select traces wizard page.
151 */
152 public static String SelectTracesWizardPage_Description;
153 /**
154 * The error message when no name was entered in a dialog box (new trace or experiment dialog)
155 */
156 public static String Dialog_EmptyNameError;
157 /**
158 * The error message when name of trace or experiment already exists
159 */
160 public static String Dialog_ExistingNameError;
161 /**
162 * The title of the new experiment dialog.
163 */
164 public static String NewExperimentDialog_DialogTitle;
165 /**
166 * The label of the new experiment name field.
167 */
168 public static String NewExperimentDialog_ExperimentName;
169 /**
170 * The title of the rename experiment dialog.
171 */
172 public static String RenameExperimentDialog_DialogTitle;
173 /**
174 * The label of the field of the current experiment name.
175 */
176 public static String RenameExperimentDialog_ExperimentName;
177 /**
178 * The label of the field for entering the new experiment name.
179 */
180 public static String RenameExperimentDialog_ExperimentNewName;
181 /**
182 * The title of the copy experiment dialog.
183 */
184 public static String CopyExperimentDialog_DialogTitle;
185 /**
186 * The label of the field of the current experiment name.
187 */
188 public static String CopyExperimentDialog_ExperimentName;
189 /**
190 * The label of the field for entering the new experiment name.
191 */
192 public static String CopyExperimentDialog_ExperimentNewName;
193 /**
194 * The title of the rename trace dialog.
195 */
196 public static String RenameTraceDialog_DialogTitle;
197 /**
198 * The label of the field of the current trace name.
199 */
200 public static String RenameTraceDialog_TraceName;
201 /**
202 * The label of the field for entering the new trace name.
203 */
204 public static String RenameTraceDialog_TraceNewName;
205 /**
206 * The title of the copy trace dialog.
207 */
208 public static String CopyTraceDialog_DialogTitle;
209 /**
210 * The label of the field of the current trace name.
211 */
212 public static String CopyTraceDialog_TraceName;
213 /**
214 * The label of the field for entering the new trace name.
215 */
216 public static String CopyTraceDialog_TraceNewName;
217
218 static {
219 // initialize resource bundle
220 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
221 }
222
223 private Messages() {
224 }
225 }
This page took 0.036019 seconds and 6 git commands to generate.