tmf: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.remote.ui / src / org / eclipse / tracecompass / internal / tmf / remote / ui / messages / RemoteMessages.java
1 /*******************************************************************************
2 * Copyright (c) 2015 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 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.internal.tmf.remote.ui.messages;
14
15 import org.eclipse.osgi.util.NLS;
16
17 /**
18 * Messages file for remote UI plug-in.
19 */
20 public class RemoteMessages extends NLS {
21 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.tmf.remote.ui.messages.messages"; //$NON-NLS-1$
22
23 /** Title for remote fetch log wizard */
24 public static String RemoteFetchLogWizard_Title;
25 /** Description of remote fetch wizard page */
26 public static String RemoteFetchLogWizardPage_Description;
27 /** Label for manage profile button */
28 public static String RemoteFetchLogWizardPage_ManageProfileLabel;
29 /** Label for remote nodes list */
30 public static String RemoteFetchLogWizardPage_NodesLabel;
31 /** Title of remote fetch wizard page */
32 public static String RemoteFetchLogWizardPage_Title;
33 /** Label of collapse all button */
34 public static String RemoteFetchLogWizardRemotePage_CollapseAll;
35 /** Error string for connection errors */
36 public static String RemoteFetchLogWizardRemotePage_ConnectionError;
37 /** Description of remote fetch wizard remote page */
38 public static String RemoteFetchLogWizardRemotePage_Description;
39 /** Label of expand all button */
40 public static String RemoteFetchLogWizardRemotePage_ExpandAll;
41 /** Error missing connection information */
42 public static String RemoteFetchLogWizardRemotePage_MissingConnectionInformation;
43 /** Message for connection job */
44 public static String RemoteFetchLogWizardRemotePage_OpeningConnectionTo;
45 /** Title of remote fetch wizard remote page*/
46 public static String RemoteFetchLogWizardRemotePage_Title;
47
48 /** Label of add button in remote preference page */
49 public static String RemoteProfilesPreferencePage_AddButton;
50 /** Label of browse button in remote preference page */
51 public static String RemoteProfilesPreferencePage_BrowseButton;
52 /** Label of connection node name label */
53 public static String RemoteProfilesPreferencePage_ConnectionNodeNameLabel;
54 /** Label of connection node URI label */
55 public static String RemoteProfilesPreferencePage_ConnectionNodeURILabel;
56 /** Label of copy button in remote preference page */
57 public static String RemoteProfilesPreferencePage_CopyAction;
58 /** Label of cut button in remote preference page */
59 public static String RemoteProfilesPreferencePage_CutAction;
60 /** Default connection node name */
61 public static String RemoteProfilesPreferencePage_DefaultConnectionNodeName;
62 /** Default connection node URI */
63 public static String RemoteProfilesPreferencePage_DefaultConnectionNodeURI;
64 /** Default profile name */
65 public static String RemoteProfilesPreferencePage_DefaultProfileName;
66 /** Label of delete button in remote preference page */
67 public static String RemoteProfilesPreferencePage_DeleteAction;
68 /** Label of details pane in remote preference page */
69 public static String RemoteProfilesPreferencePage_DetailsPanelLabel;
70 /** Error message for duplicate connection node name */
71 public static String RemoteProfilesPreferencePage_DuplicateConnectionNodeNameError;
72 /** Error message for duplicate profile name */
73 public static String RemoteProfilesPreferencePage_DuplicateProfileNameError;
74 /** Error message for empty file pattern */
75 public static String RemoteProfilesPreferencePage_EmptyFilePatternError;
76 /** Error message for empty node name */
77 public static String RemoteProfilesPreferencePage_EmptyNodeNameError;
78 /** Error message for invalid node name */
79 public static String RemoteProfilesPreferencePage_InvalidNodeName;
80 /** Error message for empty node URI */
81 public static String RemoteProfilesPreferencePage_EmptyNodeURIError;
82 /** Error message for empty profile name */
83 public static String RemoteProfilesPreferencePage_EmptyProfileNameError;
84 /** Error message for empty root path */
85 public static String RemoteProfilesPreferencePage_EmptyRootPathError;
86 /** Error message for errors during writing of profiles to disk */
87 public static String RemoteProfilesPreferencePage_ErrorWritingProfile;
88 /** Label of export button in remote preference page */
89 public static String RemoteProfilesPreferencePage_ExportButton;
90 /** Title of export file dialog */
91 public static String RemoteProfilesPreferencePage_ExportFileDialogTitle;
92 /** Label for file pattern label */
93 public static String RemoteProfilesPreferencePage_FilePatternLabel;
94 /** Label of import button in remote preference page */
95 public static String RemoteProfilesPreferencePage_ImportButton;
96 /** Title for import file dialog */
97 public static String RemoteProfilesPreferencePage_ImportFileDialogTitle;
98 /** Error message for invalid file pattern */
99 public static String RemoteProfilesPreferencePage_InvalidFilePatternError;
100 /** Error message for invalid host or port */
101 public static String RemoteProfilesPreferencePage_InvalidHostOrPortError;
102 /** Error message for invalid node URI */
103 public static String RemoteProfilesPreferencePage_InvalidNodeURIError;
104 /** Error message for missing connection node */
105 public static String RemoteProfilesPreferencePage_MissingConnectionNodeError;
106 /** Error message for missing trace node */
107 public static String RemoteProfilesPreferencePage_MissingTraceError;
108 /** Error message for missing trace group */
109 public static String RemoteProfilesPreferencePage_MissingTraceGroupError;
110 /** Error message for missing user info */
111 public static String RemoteProfilesPreferencePage_MissingUserInfoError;
112 /** Label of move down button in remote preference page */
113 public static String RemoteProfilesPreferencePage_MoveDownButton;
114 /** Label of move up button in remote preference page */
115 public static String RemoteProfilesPreferencePage_MoveUpButton;
116 /** Label for new connection node menu item */
117 public static String RemoteProfilesPreferencePage_NewConnectionNode;
118 /** Label for new trace menu item */
119 public static String RemoteProfilesPreferencePage_NewTraceAction;
120 /** Label for new trace group menu item */
121 public static String RemoteProfilesPreferencePage_NewTraceGroupAction;
122 /** Label for paste menu item */
123 public static String RemoteProfilesPreferencePage_PasteAction;
124 /** Label for profile name */
125 public static String RemoteProfilesPreferencePage_ProfileNameLabel;
126 /** Label for button recursive */
127 public static String RemoteProfilesPreferencePage_RecursiveButton;
128 /** Label for remove button in remote preference page */
129 public static String RemoteProfilesPreferencePage_RemoveButton;
130 /** Label for root path label */
131 public static String RemoteProfilesPreferencePage_RootPathLabel;
132 /** Label for trace type combo */
133 public static String RemoteProfilesPreferencePage_TraceTypeLabel;
134 /** Error message for unsupported URI scheme error*/
135 public static String RemoteProfilesPreferencePage_UnsupportedURISchemeError;
136
137 /** Message for download task */
138 public static String RemoteImportTracesOperation_DownloadTask;
139 /** Error message for import failure */
140 public static String RemoteImportTracesOperation_ImportFailure;
141 /** Message for detection of trace type task */
142 public static String RemoteImportTracesOperation_DetectingTraceType;
143 /** Error message for an null node name */
144 public static String RemoteImportConnectionNodeElement_NodeNameNullError;
145 /** Error message for invalid URI string during import operation */
146 public static String RemoteImportConnectionNodeElement_InvalidUriString;
147 /** Error message for connection error during import operation */
148 public static String RemoteImportConnectionNodeElement_ConnectionFailure;
149 /** Error message for a null URI during import operation */
150 public static String RemoteImportConnectionNodeElement_UriNullError;
151 /** Error message for an invalid tracing project during import operation */
152 public static String RemoteImportTracesOperation_ImportDialogInvalidTracingProject;
153 /** Error message for errors during generation of the profile manifest*/
154 public static String RemoteGenerateManifest_GenerateProfileManifestError;
155
156 static {
157 // initialize resource bundle
158 NLS.initializeMessages(BUNDLE_NAME, RemoteMessages.class);
159 }
160
161 private RemoteMessages() {
162 }
163
164 }
This page took 0.034446 seconds and 5 git commands to generate.