tmf: Rename packages to org.eclipse.tracecompass.*
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / internal / tmf / ui / project / wizards / importtrace / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 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 * Matthew Khouzam - Initial API and implementation
11 * Bernd Hufmann - Add ImportTraceWizard messages
12 *******************************************************************************/
13
14 package org.eclipse.tracecompass.internal.tmf.ui.project.wizards.importtrace;
15
16 import org.eclipse.osgi.util.NLS;
17
18 /**
19 * The messages for import trace wizards.
20 * @author Matthew Khouzam
21 */
22 @SuppressWarnings("javadoc")
23 public class Messages extends NLS {
24 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.tmf.ui.project.wizards.importtrace.messages"; //$NON-NLS-1$
25
26 // Import Trace Wizard
27 /**
28 * The dialog title of the import trace wizard
29 */
30 public static String ImportTraceWizard_DialogTitle;
31 /**
32 * The title of the file system within the import trace wizard
33 */
34 public static String ImportTraceWizard_FileSystemTitle;
35 /**
36 * The title of the the import trace wizard page.
37 */
38 public static String ImportTraceWizard_ImportTrace;
39 /**
40 * The label of the directory location (import trace wizard)
41 */
42 public static String ImportTraceWizard_DirectoryLocation;
43 /**
44 * The label of the archive location (import trace wizard)
45 */
46 public static String ImportTraceWizard_ArchiveLocation;
47 /**
48 * The title of the select trace directory dialog (import trace wizard)
49 */
50 public static String ImportTraceWizard_SelectTraceDirectoryTitle;
51 /**
52 * The title of the select trace archive dialog (import trace wizard)
53 */
54 public static String ImportTraceWizard_SelectTraceArchiveTitle;
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 label of the checkbox to preserve the folder structure of selected the traces in workspace (import trace wizard)
73 */
74 public static String ImportTraceWizard_PreserveFolderStructure;
75 /**
76 * The error message for invalid trace directory (import trace wizard)
77 */
78 public static String ImportTraceWizard_InvalidTraceDirectory;
79 /**
80 * The error message when a trace validation failed (import trace wizard).
81 */
82 public static String ImportTraceWizard_TraceValidationFailed;
83 /**
84 * The error message when a trace already exists in project (import trace wizard).
85 */
86 public static String ImportTraceWizard_TraceAlreadyExists;
87 /**
88 * The title of rename button for import configuration dialog.
89 */
90 public static String ImportTraceWizard_ImportConfigurationRename;
91 /**
92 * The title of rename all button for import configuration dialog.
93 */
94 public static String ImportTraceWizard_ImportConfigurationRenameAll;
95 /**
96 * The title of overwrite button for import configuration dialog.
97 */
98 public static String ImportTraceWizard_ImportConfigurationOverwrite;
99 /**
100 * The title of overwrite all button for import configuration dialog.
101 */
102 public static String ImportTraceWizard_ImportConfigurationOverwriteAll;
103 /**
104 * The title of skip button for import configuration dialog.
105 */
106 public static String ImportTraceWizard_ImportConfigurationSkip;
107 /**
108 * The title of skip all button for import configuration dialog.
109 */
110 public static String ImportTraceWizard_ImportConfigurationSkipAll;
111 /**
112 * The error message when trace source is empty (import trace wizard).
113 */
114 public static String ImportTraceWizard_SelectTraceSourceEmpty;
115 /**
116 * The error message when the specified archive file is not valid.
117 */
118 public static String ImportTraceWizard_BadArchiveFormat;
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 */
146 public static String ImportTraceWizard_ImportUnrecognized;
147 /**
148 * The message when the import operation was cancelled.
149 */
150 public static String ImportTraceWizard_ImportOperationCancelled;
151 /**
152 * The message when the trace type is not found.
153 */
154 public static String ImportTraceWizard_TraceTypeNotFound;
155 /**
156 * The import operation task name.
157 */
158 public static String ImportTraceWizard_ImportOperationTaskName;
159 /**
160 * The extract import operation task name
161 */
162 public static String ImportTraceWizard_ExtractImportOperationTaskName;
163 /**
164 * The label to indicate that trace type auto detection shall be used.
165 */
166 public static String ImportTraceWizard_AutoDetection;
167
168
169 // Batch Import Wizard
170 public static String ImportTraceWizardImportProblem ;
171 public static String ImportTraceWizardImportCaption;
172 public static String ImportTraceWizardTraceDisplayName;
173 public static String ImportTraceWizardLinkTraces;
174 public static String ImportTraceWizardCopyTraces;
175 public static String ImportTraceWizardOverwriteTraces;
176 public static String ImportTraceWizardAddFile;
177 public static String ImportTraceWizardAddDirectory;
178 public static String ImportTraceWizardRemove;
179 public static String ImportTraceWizardDirectoryTitle;
180 public static String ImportTraceWizardDirectoryHint;
181 /**
182 * @since 2.2
183 */
184 public static String ImportTraceWizardScanPagebyte;
185
186 /**
187 * @since 2.2
188 */
189 public static String ImportTraceWizardScanPageGigabyte;
190
191 /**
192 * @since 2.2
193 */
194 public static String ImportTraceWizardScanPageKilobyte;
195
196 /**
197 * @since 2.2
198 */
199 public static String ImportTraceWizardScanPageMegabyte;
200
201 public static String ImportTraceWizardScanPageRenameError;
202 /**
203 * @since 2.2
204 */
205 public static String ImportTraceWizardScanPageSelectAtleastOne;
206
207 /**
208 * @since 2.2
209 */
210 public static String ImportTraceWizardScanPageSize;
211 public static String ImportTraceWizardSelectAll;
212 /**
213 * @since 2.2
214 */
215 public static String ImportTraceWizardScanPageTerabyte;
216
217 public static String ImportTraceWizardScanPageTitle;
218 public static String ImportTraceWizardSelectTraceTypePageTitle;
219 public static String ImportTraceWizardPageOptionsTitle;
220 public static String ImportTraceWizardPageScanDone;
221 public static String ImportTraceWizardPageScanScanning;
222 public static String ImportTraceWizardPageSelectNone;
223 public static String ImportTraceWizardPageSelectHint;
224 public static String BatchImportTraceWizardRemove;
225 public static String BatchImportTraceWizardAdd;
226 public static String BatchImportTraceWizardErrorImportingTraceResource;
227
228 public static String SharedSelectProject;
229
230 static {
231 // initialize resource bundle
232 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
233 }
234
235 private Messages() {
236 }
237 }
This page took 0.037278 seconds and 6 git commands to generate.