Skip to main content
summaryrefslogtreecommitdiffstats
blob: d340f9c9e0e7a4f168012282feb751aea5e6ec97 (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
/*******************************************************************************
 * Copyright (c) 2011 WindRiver 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:
 *     WindRiver Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.internal.p2.importexport.internal;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {
	public static String Column_Id;
	public static String Column_Name;
	public static String Column_Version;
	public static String ExportPage_Title;
	public static String ExportPage_TryAgainQuestion;
	public static String ExportPage_Description;
	public static String ExportPage_Label;
	public static String ExportPage_DEST_ERRORMESSAGE;
	public static String ExportPage_ERROR_CONFIG;
	public static String ExportPage_Fail;
	public static String ExportPage_FILEDIALOG_TITLE;
	public static String ExportPage_FixSuggestion;
	public static String EXTENSION_ALL;
	public static String EXTENSION_ALL_NAME;
	public static String EXTENSION_p2F_NAME;
	public static String EXTENSION_p2F;
	public static String ExportPage_LABEL_EXPORTFILE;
	public static String ExportPage_SuccessWithProblems;
	public static String ExportWizard_ConfirmDialogTitle;
	public static String ExportWizard_OverwriteConfirm;
	public static String ExportWizard_WizardTitle;
	public static String ImportPage_DESCRIPTION;
	public static String ImportPage_DEST_ERROR;
	public static String ImportPage_DESTINATION_LABEL;
	public static String ImportPage_FILEDIALOG_TITLE;
	public static String ImportPage_FILENOTFOUND;
	public static String AbstractImportPage_HigherVersionInstalled;
	public static String ImportPage_InstallLatestVersion;
	public static String ImportPage_QueryFeaturesJob;
	public static String AbstractImportPage_SameVersionInstalled;
	public static String AbstractPage_ButtonDeselectAll;
	public static String AbstractPage_ButtonSelectAll;
	public static String ImportPage_TITLE;
	public static String ImportWizard_CannotQuerySelection;
	public static String ImportWizard_WINDOWTITLE;
	public static String Page_BUTTON_BROWSER;
	public static String PAGE_NOINSTALLTION_ERROR;
	public static String ImportFromInstallationPage_DESTINATION_LABEL;
	public static String ImportFromInstallationPage_DIALOG_TITLE;
	public static String ImportFromInstallationPage_INVALID_DESTINATION;
	public static String ImportFromInstallationPage_DIALOG_DESCRIPTION;
	public static String ImportFromInstallationPage_SELECT_COMPONENT;

	public static String io_IncompatibleVersion;
	public static String io_parseError;
	public static String Replicator_ExportJobName;
	public static String Replicator_InstallFromLocal;
	public static String Replicator_NotFoundInRepository;
	public static String Replicator_SaveJobName;

	static {
		NLS.initializeMessages("org.eclipse.equinox.internal.p2.importexport.internal.messages", Messages.class); //$NON-NLS-1$
	}
}

Back to the top