ss: Move plugins to Trace Compass namespace
[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 * Patrick Tasse - Add support for folder elements
12 * Marc-Andre Laperle - Preserve folder structure on import
13 * Bernd Hufmann - Extract ImportTraceWizard messages
14 *******************************************************************************/
15
16 package org.eclipse.linuxtools.tmf.ui.project.wizards;
17
18 import org.eclipse.osgi.util.NLS;
19
20 /**
21 * Message strings for TMF model handling.
22 *
23 * @version 1.0
24 * @author Francois Chouinard
25 */
26 public class Messages extends NLS {
27
28 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.tmf.ui.project.wizards.messages"; //$NON-NLS-1$
29
30 /**
31 * The dialog header of the new project wizard
32 */
33 public static String NewProjectWizard_DialogHeader;
34 /**
35 * The dialog message of the new project wizard
36 */
37 public static String NewProjectWizard_DialogMessage;
38 /**
39 * The title of the select traces wizard.
40 */
41 public static String SelectTracesWizard_WindowTitle;
42 /**
43 * The column header for the traces (select traces wizard page).
44 */
45 public static String SelectTracesWizardPage_TraceColumnHeader;
46 /**
47 * The title of select traces wizard page.
48 */
49 public static String SelectTracesWizardPage_WindowTitle;
50 /**
51 * The description of the select traces wizard page.
52 */
53 public static String SelectTracesWizardPage_Description;
54 /**
55 * The error message when selecting of traces for an experiment fails.
56 * @since 3.1
57 */
58 public static String SelectTracesWizardPage_SelectionError;
59 /**
60 * The task name for selecting of a trace for an experiment.
61 * @since 3.1
62 */
63 public static String SelectTracesWizardPage_TraceSelectionTask;
64 /**
65 * The task name for removing of a trace for an experiment.
66 * @since 3.1
67 */
68 public static String SelectTracesWizardPage_TraceRemovalTask;
69 /**
70 * The cancel message for the trace selection operation.
71 * @since 3.1
72 */
73 public static String SelectTracesWizardPage_SelectionOperationCancelled;
74 /**
75 * The error message title.
76 * @since 3.1
77 */
78 public static String SelectTracesWizardPage_InternalErrorTitle;
79 /**
80 * The error message when no name was entered in a dialog box (new trace or experiment dialog)
81 */
82 public static String Dialog_EmptyNameError;
83 /**
84 * The error message when name of trace or experiment already exists
85 */
86 public static String Dialog_ExistingNameError;
87 /**
88 * The title of the new experiment dialog.
89 */
90 public static String NewExperimentDialog_DialogTitle;
91 /**
92 * The label of the new experiment name field.
93 */
94 public static String NewExperimentDialog_ExperimentName;
95 /**
96 * The title of the rename experiment dialog.
97 */
98 public static String RenameExperimentDialog_DialogTitle;
99 /**
100 * The label of the field of the current experiment name.
101 */
102 public static String RenameExperimentDialog_ExperimentName;
103 /**
104 * The label of the field for entering the new experiment name.
105 */
106 public static String RenameExperimentDialog_ExperimentNewName;
107 /**
108 * The title of the copy experiment dialog.
109 */
110 public static String CopyExperimentDialog_DialogTitle;
111 /**
112 * The label of the field of the current experiment name.
113 */
114 public static String CopyExperimentDialog_ExperimentName;
115 /**
116 * The label of the field for entering the new experiment name.
117 */
118 public static String CopyExperimentDialog_ExperimentNewName;
119 /**
120 * The title of the rename trace dialog.
121 */
122 public static String RenameTraceDialog_DialogTitle;
123 /**
124 * The label of the field of the current trace name.
125 */
126 public static String RenameTraceDialog_TraceName;
127 /**
128 * The label of the field for entering the new trace name.
129 */
130 public static String RenameTraceDialog_TraceNewName;
131 /**
132 * The title of the copy trace dialog.
133 */
134 public static String CopyTraceDialog_DialogTitle;
135 /**
136 * The label of the field of the current trace name.
137 */
138 public static String CopyTraceDialog_TraceName;
139 /**
140 * The label of the field for entering the new trace name.
141 */
142 public static String CopyTraceDialog_TraceNewName;
143 /**
144 * The title of the new folder dialog.
145 * @since 3.0
146 */
147 public static String NewFolderDialog_DialogTitle;
148 /**
149 * The label of the new folder name field.
150 * @since 3.0
151 */
152 public static String NewFolderDialog_FolderName;
153 /**
154 * The title of the rename folder dialog.
155 * @since 3.0
156 */
157 public static String RenameFolderDialog_DialogTitle;
158 /**
159 * The label of the field of the current folder name.
160 * @since 3.0
161 */
162 public static String RenameFolderDialog_FolderName;
163 /**
164 * The label of the field for entering the new folder name.
165 * @since 3.0
166 */
167 public static String RenameFolderDialog_FolderNewName;
168
169 static {
170 // initialize resource bundle
171 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
172 }
173
174 private Messages() {
175 }
176 }
This page took 0.034299 seconds and 5 git commands to generate.