Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 43b16c8d8393514bd46fb2cb8f1433c0aec4ce43 (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
/*******************************************************************************
 * Copyright (c) 2008, 2013 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:
 *     Chris Aniszczyk <zx@code9.com> - initial API and implementation
 *******************************************************************************/
package org.eclipse.pde.internal.ua.ui.editor.toc;

import org.eclipse.osgi.util.NLS;

public class TocMessages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.pde.internal.ua.ui.editor.toc.messages"; //$NON-NLS-1$

	public static String TocEditor_link;
	public static String TocFileValidator_errorMessage1;
	public static String TocFileValidator_errorMessage2;
	public static String TocPage_errorMessage2;
	public static String TocPage_title;
	public static String TocSourcePage_title;
	public static String TocTreeSection_addAnchor;
	public static String TocTreeSection_addLink;
	public static String TocTreeSection_addTopic;
	public static String TocTreeSection_collapseAll;
	public static String TocTreeSection_down;
	public static String TocTreeSection_errorMessage1;
	public static String TocTreeSection_errorMessage2;
	public static String TocTreeSection_New;
	public static String TocTreeSection_open;
	public static String TocTreeSection_openFile;
	public static String TocTreeSection_openFileMessage;
	public static String TocTreeSection_openFileMessage2;
	public static String TocTreeSection_remove;
	public static String TocTreeSection_sectionDesc;
	public static String TocTreeSection_sectionText;
	public static String TocTreeSection_showIn;
	public static String TocTreeSection_topic;
	public static String TocTreeSection_up;
	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, TocMessages.class);
	}

	private TocMessages() {
	}
}

Back to the top