Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3df09963ffb2d7bb8b8e5cb10a6ca13c49e3401a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
/*******************************************************************************
 * Copyright (c) 2008 Conselleria de Infraestructuras y Transporte,
 * Generalitat de la Comunitat Valenciana .
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors: Francisco Javier Cano Muñoz (Prodevelop) - initial API implementation
 * Emilien Perico (Atos Origin) - add tags for links with keywords
 *
 ******************************************************************************/
package org.eclipse.papyrus.uml.diagram.common;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {

	private static final String BUNDLE_NAME = "messages"; //$NON-NLS-1$

	public static String ElementImportParser_undefined_value;

	public static String IconStylePreferencePage_cheerful_style;

	public static String IconStylePreferencePage_eclipse_style;

	public static String IconStylePreferencePage_icon_style_group;

	public static String ModelElementSelectionPageMessage;

	public static String UMLNewDiagramFileWizard_RootSelectionPageSelectionTitle;

	public static String UMLNewDiagramFileWizard_RootSelectionPageNoSelectionMessage;

	public static String UMLNewDiagramFileWizard_RootSelectionPageInvalidSelectionMessage;

	public static String UMLNewDiagramFileWizard_CreationPageName;

	public static String UMLNewDiagramFileWizard_CreationPageTitle;

	public static String UMLNewDiagramFileWizard_CreationPageDescription;

	public static String UMLNewDiagramFileWizard_RootSelectionPageName;

	public static String UMLNewDiagramFileWizard_RootSelectionPageTitle;

	public static String UMLNewDiagramFileWizard_RootSelectionPageDescription;

	public static String UMLDiagramEditorUtil_CreateDiagramProgressTask;

	public static String UMLDiagramEditorUtil_CreateDiagramCommandLabel;

	public static String UMLInitDiagramFileAction_InitDiagramFileResourceErrorDialogTitle;

	public static String UMLInitDiagramFileAction_InitDiagramFileResourceErrorDialogMessage;

	public static String UMLInitDiagramFileAction_InitDiagramFileWizardTitle;

	public static String UMLNewDiagramFileWizard_DiagramKindTitle;

	public static String UMLNewDiagramFileWizard_DiagramKindDescription;

	public static String RotateAction_rotate_command;

	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
	}

	private Messages() {
	}

	/** Label to be displayed on {@link org.eclipse.uml2.uml.Abstraction} links */
	public static String AppliedStereotypeLabel_AbstractionTag;

	/**
	 * Label to be displayed on {@link org.eclipse.uml2.uml.PackageImport} links
	 */
	public static String AppliedStereotypeLabel_PackageImportTag;

	/**
	 * Label to be displayed on {@link org.eclipse.uml2.uml.PackageImport} links
	 * with reduced visibility
	 */
	public static String AppliedStereotypeLabel_PackageImportAccessTag;

	/** Label to be displayed on {@link org.eclipse.uml2.uml.PackageMerge} links */
	public static String AppliedStereotypeLabel_PackageMergeTag;

	/** Label to be displayed on {@link org.eclipse.uml2.uml.Usage} links */
	public static String AppliedStereotypeLabel_UsageTag;

	// ///////////////////////// Palette Customisation
	// /////////////////////////////////////
	/** Tooltip for the add button */
	public static String PapyrusPaletteCustomizerDialog_AddButtonTooltip;

	/** Tooltip for the remove button */
	public static String PapyrusPaletteCustomizerDialog_RemoveButtonTooltip;

	/** LAbel for the standard group */
	public static String StandardGroup_Label;

	/** label for the palette action in the palette viewer menu */
	public static String Palette_Action_Label;

	/** tooltip for the palette action in the palette viewer menu */
	public static String Palette_Action_Tooltip;

	/** label for the available palettes viewer */
	public static String Available_Palettes;

	/** label for the palette tree viewer */
	public static String Palette_Viewer;

	/** label for the palette name in the wizard */
	public static String Local_Palette_Name;

	/** label for the palette id in the wizard */
	public static String Local_Palette_Id;

	/** label for the editor id in the palette wizard */
	public static String Local_Palette_Editor_Id;

	/** tooltip for the palette name in the palette wizard */
	public static String Local_Palette_Name_Tooltip;

	/** tooltip for the palette id in the palette wizard */
	public static String Local_Palette_Id_Tooltip;

	/** tooltip for the editor id in the palette wizard */
	public static String Local_Palette_Editor_Id_Tooltip;

	/** label for the provider priority in the palette wizard */
	public static String Local_Palette_Priority;

	/** tooltip for the provider priority in the palette wizard */
	public static String Local_Palette_Priority_Tooltip;

	/** label for the advanced button, when advanced are not shown */
	public static String Dialog_Advanced_Button_Closed;

	/** label for the advanced button, when advanced are shown */
	public static String Dialog_Advanced_Button_Opened;

	/** Error message for the wizard page, when priority is not correctly filled */
	public static String Local_Palette_Error_Priority;

	/**
	 * Error message for the wizard page, when palette ID is not correctly
	 * filled
	 */
	public static String Local_Palette_Error_PaletteId;

	/** Error message for the wizard page, when name is not correctly filled */
	public static String Local_Palette_Error_Name;

	/**
	 * Error message for the wizard page, when Editor ID is not correctly filled
	 */
	public static String Local_Palette_Error_EditorId;

	/** Name of the information page */
	public static String Local_Palette_InfoPage_Name;

	/** Title of the information page */
	public static String Local_Palette_InfoPage_Title;

	/** Name of the content page */
	public static String Local_Palette_ContentPage_Name;

	/** Title of the content page */
	public static String Local_Palette_ContentPage_Title;

	/** name of the available tools group */
	public static String Local_Palette_Available_Tools;

	/** tooltip for the show/hide drawer button */
	public static String Local_Palette_ShowDrawers_Tooltip;

	/** tooltip for the show/hide drawer button */
	public static String Local_Palette_ShowTools_Tooltip;

	/** palette preview label */
	public static String Local_Palette_Palette_Preview;

	/** Title for dialog box when palette to delete is not a local palette */
	public static String Dialog_Not_Local_Palette_Title;

	/** Message for dialog box when palette to delete is not a local palette */
	public static String Dialog_Not_Local_Palette_Message;

	/** Title for dialog box when palette to restore is not an extended palette */
	public static String Dialog_Not_Extended_Palette_Title;

	/** Message for dialog box when palette to restore is not an extended palette */
	public static String Dialog_Not_Extended_Palette_Message;

	/** Tooltip for the restore palette button. */
	public static String Dialog_Restore_Palette_Tooltip;

	/** tooltip for the delete palette button */
	public static String Dialog_Delete_Palette_Tooltip;

	/** tooltip for the create palette button */
	public static String Dialog_Create_Palette_Tooltip;

	/** tooltip for the edit palette button */
	public static String Dialog_Edit_Palette_Tooltip;

	/** Message for horizontal distribution */
	public static String DistributionConstants_Distribute_Horizontally;

	/** Message for horizontal distribution between nodes */
	public static String DistributionConstants_Distribute_Horizontally_Between_Nodes;

	/** Message for vertical distribution */
	public static String DistributionConstants_Distribute_Vertically;

	/** Message for vertical distribution between nodes */
	public static String DistributionConstants_Distribute_Vertically_Between_Nodes;

	/** Title for the distribution menu */
	public static String DistributionConstants_DistributionTitle;

	/** tooltip for the create drawer button */
	public static String Local_Palette_Create_Drawer_Tooltip;

	/** tooltip for the create separator button */
	public static String Local_Palette_Create_Separator_Tooltip;

	/** tooltip for the create stack button */
	public static String Local_Palette_Create_Stack_Tooltip;

	/** name of the drawer wizard page */
	public static String Wizard_Drawer_Page_Name;

	/** title of the drawer wizard page */
	public static String Wizard_Drawer_Page_Title;

	/** error on the name in the drawer wizard */
	public static String Wizard_Drawer_Error_Name;

	/** error on the id in the drawer wizard */
	public static String Wizard_Drawer_Error_Id;

	/** error on the icon in the drawer wizard */
	public static String Wizard_Drawer_Error_Icon;

	/** label for the id field */
	public static String Wizard_Drawer_Id;

	/** tooltip for the id field */
	public static String Wizard_Drawer_Id_Tooltip;

	/** label for the name field */
	public static String Wizard_Drawer_Name;

	/** tooltip for the name field */
	public static String Wizard_Drawer_Name_Tooltip;

	/** tooltip for the icon field */
	public static String Wizard_Drawer_Icon_Tooltip;

	/** name for the icon field */
	public static String Wizard_Drawer_Icon;

	/** tooltip for the tool item */
	public static String Local_Palette_SwitchToolsContentProvider_Tooltip;

	/** tooltip for the disabled action because of missing profiles */
	public static String PaletteContextMenu_MissingProfile;

	/**
	 * tooltip for the edit local palette action disabled because of bad
	 * selection
	 */
	public static String PapyrusPaletteCustomizerDialog_EditButtonTooltip_LocalPaletteNotSelected;

	/** tooltip for the edit local palette action */
	public static String PapyrusPaletteCustomizerDialog_EditButtonTooltip_LocalPaletteSelected;

	/**
	 * tooltip for the edit local palette action disabled because of missing
	 * profiles
	 */
	public static String PapyrusPaletteCustomizerDialog_EditButtonTooltip_MissingProfile;

	/** label for the name text editor for a given proxy */
	public static String Local_Palette_Entry_Name;

	/** label for the description editor for a given proxy */
	public static String Local_Palette_Entry_Description;

	/** label for the group information about entry */
	public static String Local_Palette_Entry_Information;

	/** label for the icon information about entry */
	public static String Local_Palette_Entry_Icon;

	/** label for the referenced entry information about entry */
	public static String Local_Palette_Entry_Reference;

	/** label for the composite displaying the lis of aspect actions */
	public static String Aspect_Action_Information_List_Label;

	/** label for the tooltip of the edit drawer icon */
	public static String PapyrusPaletteCustomizerDialog_EditButtonTooltip;

	/** message when many resources have changed (including main) */
	public static String PartActivationListener_ChangedMainMsg_many;

	/** message when main resource has changed */
	public static String PartActivationListener_ChangedMainMsg_single;

	/** message when main resource is conflicting */
	public static String PartActivationListener_ChangedMainWarning;

	/** message when many resources have changed */
	public static String PartActivationListener_ChangedMsg_many;

	/** message when single resource has changed */
	public static String PartActivationListener_ChangedMsg_single;

	/** title when resources have changed */
	public static String PartActivationListener_ChangedTitle;

	/** message when resource is conflicting */
	public static String PartActivationListener_ChangedWarning;

	/** message when many resources have been removed */
	public static String PartActivationListener_RemovedMsg_many;

	/** message when single resource has been removed */
	public static String PartActivationListener_RemovedMsg_single;

	/** title when resources have been removed */
	public static String PartActivationListener_RemovedTitle;

	/** Message for dialog to edit the runtime properties */
	public static String StereotypePostAction_EditRuntimePropertiesMessage;

	/** Title for dialog to edit the runtime properties */
	public static String StereotypePostAction_EditRuntimePropertiesTitle;

	/** Message for the add Stereotype Window */
	public static String StereotypePostAction_StereotypeSelectionMessage;

	/** Title for the add Stereotype Window */
	public static String StereotypePostAction_StereotypeSelectionTitle;

	/** BooleanEditor Title */
	public static String PropertyEditors_BooleanTitle;

	/** the "Choice" String */
	public static String PropertyEditors_Choice;

	/** DataTypeEditor Title */
	public static String PropertyEditors_DataTypeTitle;

	/** EnumerationEditor Title */
	public static String PropertyEditors_EnumerationLiteralTitle;

	/** IntegerEditor Title */
	public static String PropertyEditors_IntegerTitle;

	/** RealEditor Title */
	public static String PropertyEditors_RealTitle;

	/** MetaclassEditor Title */
	public static String PropertyEditors_MetaclassTitle;

	/** warning message for metaclass editor */
	public static String PropertyEditors_NoFoundElementMetaclass;

	/** warning message for stereotype editor */
	public static String PropertyEditors_NoFoundElementStereotype;

	/** StereotypeEditor Title */
	public static String PropertyEditors_StereotypeTitle;

	/** StringEditor Title */
	public static String PropertyEditors_StringTitle;

	/** UnlimitedNaturalEditor Title */
	public static String PropertyEditors_UnlimitedNaturalTitle;

	/** the "Value" String */
	public static String PropertyEditors_Value;

	/** message for the runtime dialog */
	public static String SetDynamicValueCommand_DialogMessage;

	/** title for the runtime dialog */
	public static String SetDynamicValueCommand_DialogTile;

	/** Message for horizontal routing by bottom action */
	public static String RoutingConstants_Bottom;

	/** Message for horizontal routing by left */
	public static String RoutingConstants_HorizontalByLeft;

	/** Message for horizontal routing by right */
	public static String RoutingConstants_HorizontalByRight;

	/** Message for horizontal routing by left action */
	public static String RoutingConstants_Left;

	/** Menu title for the routing action */
	public static String RoutingConstants_MenuTitle;

	/** Menu ToolTip for the routing action */
	public static String RoutingConstants_MenuToolTip;

	/** Message for horizontal routing by right action */
	public static String RoutingConstants_Right;

	/** Message for horizontal routing by top action */
	public static String RoutingConstants_Top;

	/** Message for horizontal routing by bottom */
	public static String RoutingConstants_VerticalByBottom;

	/** Message for horizontal routing by top */
	public static String RoutingConstants_VerticalByTop;

	/** Message for Diagram Not Found */
	public static String DiagramNotFound;

	/** Message Set Name Diagram */
	public static String SetNameDiagram;

	/** The string No Name for the ShowHideCompartment Action */
	public static String EditorLabelProvider_No_name;

	public static String ShowHideContentsAction_Message;

	public static String ShowHideContentsAction_Title;

	public static String CommonDeferredCreateConnectionViewCommand_NullConnectionCommand;


}

Back to the top