Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / internal / 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
2bdf0193 14package org.eclipse.tracecompass.internal.tmf.ui.project.wizards.importtrace;
d04ec5a7
MK
15
16import org.eclipse.osgi.util.NLS;
17
18/**
7d013366 19 * The messages for import trace wizards.
d04ec5a7 20 * @author Matthew Khouzam
d04ec5a7
MK
21 */
22@SuppressWarnings("javadoc")
23public class Messages extends NLS {
2bdf0193 24 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.tmf.ui.project.wizards.importtrace.messages"; //$NON-NLS-1$
d04ec5a7 25
1de10308 26 // Import Trace Wizard
7d013366
BH
27 /**
28 * The dialog title of the import trace wizard
7d013366
BH
29 */
30 public static String ImportTraceWizard_DialogTitle;
31 /**
32 * The title of the file system within the import trace wizard
7d013366
BH
33 */
34 public static String ImportTraceWizard_FileSystemTitle;
35 /**
36 * The title of the the import trace wizard page.
7d013366
BH
37 */
38 public static String ImportTraceWizard_ImportTrace;
39 /**
40 * The label of the directory location (import trace wizard)
7d013366
BH
41 */
42 public static String ImportTraceWizard_DirectoryLocation;
c8cf44dc
MAL
43 /**
44 * The label of the archive location (import trace wizard)
45 */
46 public static String ImportTraceWizard_ArchiveLocation;
7d013366
BH
47 /**
48 * The title of the select trace directory dialog (import trace wizard)
7d013366
BH
49 */
50 public static String ImportTraceWizard_SelectTraceDirectoryTitle;
c8cf44dc
MAL
51 /**
52 * The title of the select trace archive dialog (import trace wizard)
53 */
54 public static String ImportTraceWizard_SelectTraceArchiveTitle;
7d013366
BH
55 /**
56 * The message of the select trace directory dialog (import trace wizard)
7d013366
BH
57 */
58 public static String ImportTraceWizard_SelectTraceDirectoryMessage;
59 /**
60 * The title of the trace type label (import trace wizard)
7d013366
BH
61 */
62 public static String ImportTraceWizard_TraceType;
63 /**
64 * The label of the overwrite checkbox (import trace wizard)
7d013366
BH
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)
7d013366
BH
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)
7d013366
BH
73 */
74 public static String ImportTraceWizard_PreserveFolderStructure;
75 /**
76 * The error message for invalid trace directory (import trace wizard)
7d013366
BH
77 */
78 public static String ImportTraceWizard_InvalidTraceDirectory;
79 /**
80 * The error message when a trace validation failed (import trace wizard).
7d013366
BH
81 */
82 public static String ImportTraceWizard_TraceValidationFailed;
83 /**
84 * The error message when a trace already exists in project (import trace wizard).
7d013366
BH
85 */
86 public static String ImportTraceWizard_TraceAlreadyExists;
87 /**
88 * The title of rename button for import configuration dialog.
7d013366
BH
89 */
90 public static String ImportTraceWizard_ImportConfigurationRename;
91 /**
92 * The title of rename all button for import configuration dialog.
7d013366
BH
93 */
94 public static String ImportTraceWizard_ImportConfigurationRenameAll;
95 /**
96 * The title of overwrite button for import configuration dialog.
7d013366
BH
97 */
98 public static String ImportTraceWizard_ImportConfigurationOverwrite;
99 /**
100 * The title of overwrite all button for import configuration dialog.
7d013366
BH
101 */
102 public static String ImportTraceWizard_ImportConfigurationOverwriteAll;
103 /**
104 * The title of skip button for import configuration dialog.
7d013366
BH
105 */
106 public static String ImportTraceWizard_ImportConfigurationSkip;
107 /**
108 * The title of skip all button for import configuration dialog.
7d013366
BH
109 */
110 public static String ImportTraceWizard_ImportConfigurationSkipAll;
111 /**
112 * The error message when trace source is empty (import trace wizard).
7d013366
BH
113 */
114 public static String ImportTraceWizard_SelectTraceSourceEmpty;
c8cf44dc
MAL
115 /**
116 * The error message when the specified archive file is not valid.
117 */
118 public static String ImportTraceWizard_BadArchiveFormat;
7d013366
BH
119 /**
120 * The error message when no trace is selected (import trace wizard).
7d013366
BH
121 */
122 public static String ImportTraceWizard_SelectTraceNoneSelected;
123 /**
124 * The error message when an error occurred during import operation.
7d013366
BH
125 */
126 public static String ImportTraceWizard_ImportProblem;
127 /**
128 * The error message if destination directory is a virtual folder.
7d013366
BH
129 */
130 public static String ImportTraceWizard_CannotImportFilesUnderAVirtualFolder;
131 /**
132 * The error message if destination directory is a virtual folder (for a link).
7d013366
BH
133 */
134 public static String ImportTraceWizard_HaveToCreateLinksUnderAVirtualFolder;
135 /**
136 * The label string of the browse button.
7d013366
BH
137 */
138 public static String ImportTraceWizard_BrowseButton;
139 /**
140 * The information label string.
7d013366
BH
141 */
142 public static String ImportTraceWizard_Information;
143 /**
144 * The label of the checkbox to import unrecognized trace files
7d013366
BH
145 */
146 public static String ImportTraceWizard_ImportUnrecognized;
147 /**
148 * The message when the import operation was cancelled.
7d013366
BH
149 */
150 public static String ImportTraceWizard_ImportOperationCancelled;
151 /**
152 * The message when the trace type is not found.
7d013366
BH
153 */
154 public static String ImportTraceWizard_TraceTypeNotFound;
155 /**
156 * The import operation task name.
7d013366
BH
157 */
158 public static String ImportTraceWizard_ImportOperationTaskName;
c8cf44dc
MAL
159 /**
160 * The extract import operation task name
161 */
162 public static String ImportTraceWizard_ExtractImportOperationTaskName;
7d013366
BH
163 /**
164 * The label to indicate that trace type auto detection shall be used.
7d013366
BH
165 */
166 public static String ImportTraceWizard_AutoDetection;
167
168
1de10308 169 // Batch Import Wizard
97c6e624 170 public static String ImportTraceWizardImportProblem ;
d04ec5a7
MK
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;
32a0863e 179 public static String ImportTraceWizardDirectoryTitle;
d04ec5a7 180 public static String ImportTraceWizardDirectoryHint;
de2501f8
MK
181 public static String ImportTraceWizardScanPagebyte;
182
de2501f8
MK
183 public static String ImportTraceWizardScanPageGigabyte;
184
de2501f8
MK
185 public static String ImportTraceWizardScanPageKilobyte;
186
de2501f8
MK
187 public static String ImportTraceWizardScanPageMegabyte;
188
97c6e624
MK
189 public static String ImportTraceWizardScanPageRenameError;
190 public static String ImportTraceWizardScanPageSelectAtleastOne;
de2501f8 191
de2501f8 192 public static String ImportTraceWizardScanPageSize;
d04ec5a7 193 public static String ImportTraceWizardSelectAll;
de2501f8
MK
194 public static String ImportTraceWizardScanPageTerabyte;
195
32a0863e
MK
196 public static String ImportTraceWizardScanPageTitle;
197 public static String ImportTraceWizardSelectTraceTypePageTitle;
198 public static String ImportTraceWizardPageOptionsTitle;
97c6e624
MK
199 public static String ImportTraceWizardPageScanDone;
200 public static String ImportTraceWizardPageScanScanning;
d04ec5a7
MK
201 public static String ImportTraceWizardPageSelectNone;
202 public static String ImportTraceWizardPageSelectHint;
97c6e624
MK
203 public static String BatchImportTraceWizardRemove;
204 public static String BatchImportTraceWizardAdd;
97c6e624 205 public static String BatchImportTraceWizardErrorImportingTraceResource;
d04ec5a7 206
a2d29ca1
MK
207 public static String SharedSelectProject;
208
d04ec5a7
MK
209 static {
210 // initialize resource bundle
211 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
212 }
213
214 private Messages() {
215 }
216}
This page took 0.144633 seconds and 5 git commands to generate.