Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5068d3904863f001f00502c25e09668b7f709e97 (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) 2013 Ericsson AB 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:
 *     Ericsson AB - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.internal.p2.ui.sdk.scheduler.migration;

import org.eclipse.osgi.util.NLS;

public class ProvUIMessages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.equinox.internal.p2.ui.sdk.scheduler.migration.messages"; //$NON-NLS-1$
	static {
		// load message values from bundle file
		NLS.initializeMessages(BUNDLE_NAME, ProvUIMessages.class);
	}

	public static String AbstractImportPage_HigherVersionInstalled;
	public static String AbstractImportPage_SameVersionInstalled;
	public static String Column_Id;
	public static String Column_Name;
	public static String Column_Version;
	public static String AbstractPage_ButtonSelectAll;
	public static String AbstractPage_ButtonDeselectAll;
	public static String PAGE_NOINSTALLTION_ERROR;
	public static String ImportFromInstallationPage_SELECT_COMPONENT;
	public static String ImportFromInstallationPage_DIALOG_TITLE;
	public static String ImportFromInstallationPage_DIALOG_DESCRIPTION;
	public static String ImportWizard_WINDOWTITLE;
	public static String ImportFromInstallationPage_CONFIRMATION_TITLE;
	public static String ImportFromInstallationPage_CONFIRMATION_DIALOG;
	public static String ImportFromInstallationPag_LATER_BUTTON;
}

Back to the top