tmf: Move ImportTraceWizard messages in correct package
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / project / wizards / importtrace / Messages.java
CommitLineData
d04ec5a7 1/*******************************************************************************
7d013366 2 * Copyright (c) 2013, 2014 Ericsson
d04ec5a7
MK
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 * Matthew Khouzam - Initial API and implementation
7d013366 11 * Bernd Hufmann - Add ImportTraceWizard messages
d04ec5a7
MK
12 *******************************************************************************/
13
14package org.eclipse.linuxtools.tmf.ui.project.wizards.importtrace;
15
16import org.eclipse.osgi.util.NLS;
17
18/**
7d013366 19 * The messages for import trace wizards.
d04ec5a7
MK
20 * @author Matthew Khouzam
21 * @since 2.0
22 */
23@SuppressWarnings("javadoc")
24public class Messages extends NLS {
25 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.project.wizards.importtrace.messages"; //$NON-NLS-1$
26
7d013366
BH
27 /**
28 * The dialog title of the import trace wizard
29 * @since 3.0
30 */
31 public static String ImportTraceWizard_DialogTitle;
32 /**
33 * The title of the file system within the import trace wizard
34 * @since 3.0
35 */
36 public static String ImportTraceWizard_FileSystemTitle;
37 /**
38 * The title of the the import trace wizard page.
39 * @since 3.0
40 */
41 public static String ImportTraceWizard_ImportTrace;
42 /**
43 * The label of the directory location (import trace wizard)
44 * @since 3.0
45 */
46 public static String ImportTraceWizard_DirectoryLocation;
47 /**
48 * The title of the select trace directory dialog (import trace wizard)
49 * @since 3.0
50 */
51 public static String ImportTraceWizard_SelectTraceDirectoryTitle;
52 /**
53 * The message of the select trace directory dialog (import trace wizard)
54 * @since 3.0
55 */
56 public static String ImportTraceWizard_SelectTraceDirectoryMessage;
57 /**
58 * The title of the trace type label (import trace wizard)
59 * @since 3.0
60 */
61 public static String ImportTraceWizard_TraceType;
62 /**
63 * The label of the overwrite checkbox (import trace wizard)
64 * @since 3.0
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 * @since 3.0
70 */
71 public static String ImportTraceWizard_CreateLinksInWorkspace;
72 /**
73 * The label of the checkbox to preserve the folder structure of selected the traces in workspace (import trace wizard)
74 * @since 3.0
75 */
76 public static String ImportTraceWizard_PreserveFolderStructure;
77 /**
78 * The error message for invalid trace directory (import trace wizard)
79 * @since 3.0
80 */
81 public static String ImportTraceWizard_InvalidTraceDirectory;
82 /**
83 * The error message when a trace validation failed (import trace wizard).
84 * @since 3.0
85 */
86 public static String ImportTraceWizard_TraceValidationFailed;
87 /**
88 * The error message when a trace already exists in project (import trace wizard).
89 * @since 3.0
90 */
91 public static String ImportTraceWizard_TraceAlreadyExists;
92 /**
93 * The title of rename button for import configuration dialog.
94 * @since 3.0
95 */
96 public static String ImportTraceWizard_ImportConfigurationRename;
97 /**
98 * The title of rename all button for import configuration dialog.
99 * @since 3.0
100 */
101 public static String ImportTraceWizard_ImportConfigurationRenameAll;
102 /**
103 * The title of overwrite button for import configuration dialog.
104 * @since 3.0
105 */
106 public static String ImportTraceWizard_ImportConfigurationOverwrite;
107 /**
108 * The title of overwrite all button for import configuration dialog.
109 * @since 3.0
110 */
111 public static String ImportTraceWizard_ImportConfigurationOverwriteAll;
112 /**
113 * The title of skip button for import configuration dialog.
114 * @since 3.0
115 */
116 public static String ImportTraceWizard_ImportConfigurationSkip;
117 /**
118 * The title of skip all button for import configuration dialog.
119 * @since 3.0
120 */
121 public static String ImportTraceWizard_ImportConfigurationSkipAll;
122 /**
123 * The error message when trace source is empty (import trace wizard).
124 * @since 3.0
125 */
126 public static String ImportTraceWizard_SelectTraceSourceEmpty;
127 /**
128 * The error message when no trace is selected (import trace wizard).
129 * @since 3.0
130 */
131 public static String ImportTraceWizard_SelectTraceNoneSelected;
132 /**
133 * The error message when an error occurred during import operation.
134 * @since 3.0
135 */
136 public static String ImportTraceWizard_ImportProblem;
137 /**
138 * The error message if destination directory is a virtual folder.
139 * @since 3.0
140 */
141 public static String ImportTraceWizard_CannotImportFilesUnderAVirtualFolder;
142 /**
143 * The error message if destination directory is a virtual folder (for a link).
144 * @since 3.0
145 */
146 public static String ImportTraceWizard_HaveToCreateLinksUnderAVirtualFolder;
147 /**
148 * The label string of the browse button.
149 * @since 3.0
150 */
151 public static String ImportTraceWizard_BrowseButton;
152 /**
153 * The information label string.
154 * @since 3.0
155 */
156 public static String ImportTraceWizard_Information;
157 /**
158 * The label of the checkbox to import unrecognized trace files
159 * @since 3.0
160 */
161 public static String ImportTraceWizard_ImportUnrecognized;
162 /**
163 * The message when the import operation was cancelled.
164 * @since 3.0
165 */
166 public static String ImportTraceWizard_ImportOperationCancelled;
167 /**
168 * The message when the trace type is not found.
169 * @since 3.0
170 */
171 public static String ImportTraceWizard_TraceTypeNotFound;
172 /**
173 * The import operation task name.
174 * @since 3.0
175 */
176 public static String ImportTraceWizard_ImportOperationTaskName;
177 /**
178 * The label to indicate that trace type auto detection shall be used.
179 * @since 3.0
180 */
181 public static String ImportTraceWizard_AutoDetection;
182
183
184
97c6e624 185 public static String ImportTraceWizardImportProblem ;
d04ec5a7
MK
186 public static String ImportTraceWizardImportCaption;
187 public static String ImportTraceWizardTraceDisplayName;
188 public static String ImportTraceWizardLinkTraces;
189 public static String ImportTraceWizardCopyTraces;
190 public static String ImportTraceWizardOverwriteTraces;
191 public static String ImportTraceWizardAddFile;
192 public static String ImportTraceWizardAddDirectory;
193 public static String ImportTraceWizardRemove;
32a0863e 194 public static String ImportTraceWizardDirectoryTitle;
d04ec5a7 195 public static String ImportTraceWizardDirectoryHint;
de2501f8
MK
196 /**
197 * @since 2.2
198 */
199 public static String ImportTraceWizardScanPagebyte;
200
201 /**
202 * @since 2.2
203 */
204 public static String ImportTraceWizardScanPageGigabyte;
205
206 /**
207 * @since 2.2
208 */
209 public static String ImportTraceWizardScanPageKilobyte;
210
211 /**
212 * @since 2.2
213 */
214 public static String ImportTraceWizardScanPageMegabyte;
215
97c6e624 216 public static String ImportTraceWizardScanPageRenameError;
de2501f8
MK
217 /**
218 * @since 2.2
219 */
97c6e624 220 public static String ImportTraceWizardScanPageSelectAtleastOne;
de2501f8
MK
221
222 /**
223 * @since 2.2
224 */
225 public static String ImportTraceWizardScanPageSize;
d04ec5a7 226 public static String ImportTraceWizardSelectAll;
de2501f8
MK
227 /**
228 * @since 2.2
229 */
230 public static String ImportTraceWizardScanPageTerabyte;
231
32a0863e
MK
232 public static String ImportTraceWizardScanPageTitle;
233 public static String ImportTraceWizardSelectTraceTypePageTitle;
234 public static String ImportTraceWizardPageOptionsTitle;
97c6e624
MK
235 public static String ImportTraceWizardPageScanDone;
236 public static String ImportTraceWizardPageScanScanning;
d04ec5a7
MK
237 public static String ImportTraceWizardPageSelectNone;
238 public static String ImportTraceWizardPageSelectHint;
97c6e624
MK
239 public static String BatchImportTraceWizardRemove;
240 public static String BatchImportTraceWizardAdd;
97c6e624 241 public static String BatchImportTraceWizardErrorImportingTraceResource;
d04ec5a7 242
a2d29ca1
MK
243 public static String SharedSelectProject;
244
d04ec5a7
MK
245 static {
246 // initialize resource bundle
247 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
248 }
249
250 private Messages() {
251 }
252}
This page took 0.046025 seconds and 5 git commands to generate.