Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f700e42f85b5dff9ae8dac26597f7ebb8858b9a3 (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
71
72
73
74
/*******************************************************************************
 * Copyright (c) 2007 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.equinox.internal.p2.ui.admin;

import org.eclipse.osgi.util.NLS;

/**
 * Message class for provisioning UI messages.  
 * 
 * @since 3.4
 */
public class ProvAdminUIMessages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.equinox.internal.p2.ui.admin.messages"; //$NON-NLS-1$
	static {
		// load message values from bundle file
		NLS.initializeMessages(BUNDLE_NAME, ProvAdminUIMessages.class);
	}
	public static String AddArtifactRepositoryDialog_OperationLabel;
	public static String AddProfileDialog_Title;
	public static String AddRepositoryDialog_InvalidURL;
	public static String AddMetadataRepositoryDialog_OperationLabel;
	public static String ProfilesView_AlwaysConfirmSelectionInstallOps;
	public static String MetadataRepositoriesView_AddRepositoryTooltip;
	public static String MetadataRepositoriesView_AddRepositoryLabel;
	public static String MetadataRepositoriesView_ChooseProfileDialogTitle;
	public static String MetadataRepositoriesView_RemoveRepositoryLabel;
	public static String MetadataRepositoriesView_RemoveRepositoryTooltip;
	public static String MetadataRepositoriesView_RemoveRepositoryOperationLabel;
	public static String ArtifactRepositoriesView_AddRepositoryTooltip;
	public static String ArtifactRepositoriesView_AddRepositoryLabel;
	public static String ArtifactRepositoriesView_RemoveRepositoryLabel;
	public static String ArtifactRepositoriesView_RemoveRepositoryTooltip;
	public static String ArtifactRepositoriesView_RemoveRepositoryOperationLabel;
	public static String ProfilesView_AddProfileTooltip;
	public static String ProfilesView_AddProfileLabel;
	public static String ProfilesView_ConfirmUninstallMessage;
	public static String ProfilesView_RemoveProfileLabel;
	public static String ProfilesView_RemoveProfileTooltip;
	// Preferences
	public static String ProvisioningPrefPage_ConfirmSelectionInstallOps;
	public static String ProvisioningPrefPage_HideInternalRepos;
	public static String ProvisioningPrefPage_ShowGroupsOnly;
	public static String ProvisioningPrefPage_Description;

	public static String Ops_RemoveProfileOperationLabel;
	public static String Ops_ConfirmIUInstall;
	public static String AddProfileDialog_OperationLabel;
	public static String AddProfileDialog_DuplicateProfileID;
	public static String UpdateAndInstallDialog_AvailableIUsPageLabel;
	public static String UpdateAndInstallDialog_InstalledIUsPageLabel;

	public static String Ops_InstallIUOperationLabel;
	public static String Ops_UninstallIUOperationLabel;
	public static String Ops_UpdateIUOperationLabel;

	public static String InstallIUCommandLabel;
	public static String BecomeIUCommandLabel;
	public static String InstallIUCommandTooltip;
	public static String UninstallIUCommandLabel;
	public static String UninstallIUCommandTooltip;
	public static String UpdateIUCommandLabel;
	public static String UpdateIUCommandTooltip;
	public static String ProvView_RefreshCommandLabel;
	public static String ProvView_RefreshCommandTooltip;
}

Back to the top