Skip to main content
summaryrefslogtreecommitdiffstats
blob: 80eee080b5355d19ec7f23b0ab429058995bfa01 (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
/**********************************************************************
 * Copyright (c) 2005 IBM Corporation and others. 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: 
 * IBM - Initial API and implementation
 **********************************************************************/
package org.eclipse.wst.dtd.ui.internal;

import org.eclipse.osgi.util.NLS;

/**
 * Strings used by DTD UI
 * 
 * @plannedfor 1.0
 */
public class DTDUIMessages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.wst.dtd.ui.internal.DTDUIPluginResources";//$NON-NLS-1$

	public static String _UI_ACTION_ADD_ATTRIBUTELIST;
	public static String _UI_ACTION_ADD_DTD_NOTATION;
	public static String _UI_ACTION_ADD_DTD_ENTITY;
	public static String _UI_ACTION_ADD_DTD_ELEMENT;
	public static String _UI_ACTION_ADD_DTD_COMMENT;
	public static String _UI_ACTION_DTD_DELETE;
	public static String _UI_ACTION_ADD_ATTRIBUTE;
	public static String _UI_ACTION_GROUP_ADD_GROUP;
	public static String _UI_ACTION_ADD_ELEMENT;
	public static String _UI_BUTTON_GROUP_ITEMS_LOGICALLY;
	public static String _UI_BUTTON_SORT_ITEMS;
	public static String _UI_ACTION_ADD_PARAM_ENTITY_REF;
	public static String _UI_MOVE_ATTRIBUTE;
	public static String _UI_MOVE_CONTENT;
	public static String _UI_MOVE_NODE;
	public static String _UI_MOVE_NODES;
	public static String _ERROR_FILENAME_MUST_END_DTD;
	public static String DTDColorPage_0;
	public static String DTDColorPage_1;
	public static String DTDColorPage_2;
	public static String DTDColorPage_3;
	public static String DTDColorPage_4;
	public static String DTDColorPage_5;
	public static String DTDColorPage_6;
	public static String DTDColorPage_7;
	public static String DTDColorPage_8;
	public static String DTDPropertySourceAdapter_0;
	public static String DTDPropertySourceAdapter_1;
	public static String DTDPropertySourceAdapter_2;
	public static String SourceMenu_label;
	public static String _UI_CREATE_NEW_DTD_FILE;
	public static String _UI_WIZARD_NEW_DTD_TITLE;
	public static String _UI_WIZARD_NEW_DTD_EXPL;
	public static String _UI_LABEL_DTD_FILE_DELETE;
	public static String NewDTDTemplatesWizardPage_0;
	public static String NewDTDTemplatesWizardPage_1;
	public static String NewDTDTemplatesWizardPage_2;
	public static String NewDTDTemplatesWizardPage_3;
	public static String NewDTDTemplatesWizardPage_4;
	public static String NewDTDTemplatesWizardPage_5;
	public static String NewDTDTemplatesWizardPage_6;

	public static String MESSAGE_DTD_VALIDATION_MESSAGE_UI_;

	static {
		// load message values from bundle file
		NLS.initializeMessages(BUNDLE_NAME, DTDUIMessages.class);
	}
}

Back to the top