tmf: internalize the trace import wizards
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / 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.linuxtools.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.linuxtools.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 title of the select trace directory dialog (import trace wizard)
45 */
46 public static String ImportTraceWizard_SelectTraceDirectoryTitle;
47 /**
48 * The message of the select trace directory dialog (import trace wizard)
49 */
50 public static String ImportTraceWizard_SelectTraceDirectoryMessage;
51 /**
52 * The title of the trace type label (import trace wizard)
53 */
54 public static String ImportTraceWizard_TraceType;
55 /**
56 * The label of the overwrite checkbox (import trace wizard)
57 */
58 public static String ImportTraceWizard_OverwriteExistingTrace;
59 /**
60 * The label of the checkbox to create a link to the trace in workspace (import trace wizard)
61 */
62 public static String ImportTraceWizard_CreateLinksInWorkspace;
63 /**
64 * The label of the checkbox to preserve the folder structure of selected the traces in workspace (import trace wizard)
65 */
66 public static String ImportTraceWizard_PreserveFolderStructure;
67 /**
68 * The error message for invalid trace directory (import trace wizard)
69 */
70 public static String ImportTraceWizard_InvalidTraceDirectory;
71 /**
72 * The error message when a trace validation failed (import trace wizard).
73 */
74 public static String ImportTraceWizard_TraceValidationFailed;
75 /**
76 * The error message when a trace already exists in project (import trace wizard).
77 */
78 public static String ImportTraceWizard_TraceAlreadyExists;
79 /**
80 * The title of rename button for import configuration dialog.
81 */
82 public static String ImportTraceWizard_ImportConfigurationRename;
83 /**
84 * The title of rename all button for import configuration dialog.
85 */
86 public static String ImportTraceWizard_ImportConfigurationRenameAll;
87 /**
88 * The title of overwrite button for import configuration dialog.
89 */
90 public static String ImportTraceWizard_ImportConfigurationOverwrite;
91 /**
92 * The title of overwrite all button for import configuration dialog.
93 */
94 public static String ImportTraceWizard_ImportConfigurationOverwriteAll;
95 /**
96 * The title of skip button for import configuration dialog.
97 */
98 public static String ImportTraceWizard_ImportConfigurationSkip;
99 /**
100 * The title of skip all button for import configuration dialog.
101 */
102 public static String ImportTraceWizard_ImportConfigurationSkipAll;
103 /**
104 * The error message when trace source is empty (import trace wizard).
105 */
106 public static String ImportTraceWizard_SelectTraceSourceEmpty;
107 /**
108 * The error message when no trace is selected (import trace wizard).
109 */
110 public static String ImportTraceWizard_SelectTraceNoneSelected;
111 /**
112 * The error message when an error occurred during import operation.
113 */
114 public static String ImportTraceWizard_ImportProblem;
115 /**
116 * The error message if destination directory is a virtual folder.
117 */
118 public static String ImportTraceWizard_CannotImportFilesUnderAVirtualFolder;
119 /**
120 * The error message if destination directory is a virtual folder (for a link).
121 */
122 public static String ImportTraceWizard_HaveToCreateLinksUnderAVirtualFolder;
123 /**
124 * The label string of the browse button.
125 */
126 public static String ImportTraceWizard_BrowseButton;
127 /**
128 * The information label string.
129 */
130 public static String ImportTraceWizard_Information;
131 /**
132 * The label of the checkbox to import unrecognized trace files
133 */
134 public static String ImportTraceWizard_ImportUnrecognized;
135 /**
136 * The message when the import operation was cancelled.
137 */
138 public static String ImportTraceWizard_ImportOperationCancelled;
139 /**
140 * The message when the trace type is not found.
141 */
142 public static String ImportTraceWizard_TraceTypeNotFound;
143 /**
144 * The import operation task name.
145 */
146 public static String ImportTraceWizard_ImportOperationTaskName;
147 /**
148 * The label to indicate that trace type auto detection shall be used.
149 */
150 public static String ImportTraceWizard_AutoDetection;
151
152
153 // Batch Import Wizard
154 public static String ImportTraceWizardImportProblem ;
155 public static String ImportTraceWizardImportCaption;
156 public static String ImportTraceWizardTraceDisplayName;
157 public static String ImportTraceWizardLinkTraces;
158 public static String ImportTraceWizardCopyTraces;
159 public static String ImportTraceWizardOverwriteTraces;
160 public static String ImportTraceWizardAddFile;
161 public static String ImportTraceWizardAddDirectory;
162 public static String ImportTraceWizardRemove;
163 public static String ImportTraceWizardDirectoryTitle;
164 public static String ImportTraceWizardDirectoryHint;
165 /**
166 * @since 2.2
167 */
168 public static String ImportTraceWizardScanPagebyte;
169
170 /**
171 * @since 2.2
172 */
173 public static String ImportTraceWizardScanPageGigabyte;
174
175 /**
176 * @since 2.2
177 */
178 public static String ImportTraceWizardScanPageKilobyte;
179
180 /**
181 * @since 2.2
182 */
183 public static String ImportTraceWizardScanPageMegabyte;
184
185 public static String ImportTraceWizardScanPageRenameError;
186 /**
187 * @since 2.2
188 */
189 public static String ImportTraceWizardScanPageSelectAtleastOne;
190
191 /**
192 * @since 2.2
193 */
194 public static String ImportTraceWizardScanPageSize;
195 public static String ImportTraceWizardSelectAll;
196 /**
197 * @since 2.2
198 */
199 public static String ImportTraceWizardScanPageTerabyte;
200
201 public static String ImportTraceWizardScanPageTitle;
202 public static String ImportTraceWizardSelectTraceTypePageTitle;
203 public static String ImportTraceWizardPageOptionsTitle;
204 public static String ImportTraceWizardPageScanDone;
205 public static String ImportTraceWizardPageScanScanning;
206 public static String ImportTraceWizardPageSelectNone;
207 public static String ImportTraceWizardPageSelectHint;
208 public static String BatchImportTraceWizardRemove;
209 public static String BatchImportTraceWizardAdd;
210 public static String BatchImportTraceWizardErrorImportingTraceResource;
211
212 public static String SharedSelectProject;
213
214 static {
215 // initialize resource bundle
216 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
217 }
218
219 private Messages() {
220 }
221 }
This page took 0.047231 seconds and 5 git commands to generate.