Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 80fc1254bf0161c86b290d3e0bd0739ef8256e85 (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
/*******************************************************************************
 * Copyright (c) 2008 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 Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.compare.internal.win32;

import org.eclipse.osgi.util.NLS;

public class CompareWin32Messages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.compare.internal.win32.messages"; //$NON-NLS-1$
	public static String WordComparison_0;
	public static String WordComparison_1;
	public static String WordComparison_16;
	public static String WordComparison_2;
	public static String WordComparison_3;
	public static String WordComparison_4;
	public static String WordComparison_6;
	public static String WordComparison_9;
	public static String WordMergeViewer_1;
	public static String WordMergeViewer_2;
	public static String WordMergeViewer_3;
	public static String WordMergeViewer_4;
	public static String WordMergeViewer_5;
	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, CompareWin32Messages.class);
	}

	private CompareWin32Messages() {
	}
}

Back to the top