Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 77be0e226ea0b59741f517190f22a1292716a244 (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
75
76
77
78
/*******************************************************************************
 * Copyright (c) 2007, 2009 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.engine;

import org.eclipse.osgi.util.NLS;

class Messages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.equinox.internal.p2.engine.messages"; //$NON-NLS-1$

	public static String ActionManager_Exception_Creating_Action_Extension;
	public static String ActionManager_Required_Touchpoint_Not_Found;
	public static String download_artifact;
	public static String download_no_repository;

	public static String error_parsing_profile;

	public static String error_persisting_profile;

	public static String ParameterizedProvisioningAction_action_or_parameters_null;

	public static String profile_does_not_exist;

	public static String profile_not_current;

	public static String profile_not_registered;

	public static String Profile_Duplicate_Root_Profile_Id;
	public static String Profile_Null_Profile_Id;
	public static String Profile_Parent_Not_Found;

	public static String ProfilePreferences_saving;

	public static String reg_dir_not_available;

	public static String SimpleProfileRegistry_Parser_Error_Parsing_Registry;
	public static String SimpleProfileRegistry_Parser_Has_Incompatible_Version;

	public static String SimpleProfileRegistry_Profile_in_use;
	public static String SimpleProfileRegistry_Profile_not_locked;
	public static String SimpleProfileRegistry_Profile_not_locked_due_to_exception;
	public static String SimpleProfileRegistry_Bad_profile_location;

	public static String SimpleProfileRegistry_CannotRemoveCurrentSnapshot;

	public static String thread_not_owner;
	public static String profile_lock_not_reentrant;

	public static String TouchpointManager_Attribute_Not_Specified;
	public static String TouchpointManager_Conflicting_Touchpoint_Types;
	public static String TouchpointManager_Exception_Creating_Touchpoint_Extension;
	public static String TouchpointManager_Incorrectly_Named_Extension;
	public static String TouchpointManager_Null_Creating_Touchpoint_Extension;
	public static String TouchpointManager_Null_Touchpoint_Type_Argument;
	public static String shared_profile_not_found;
	public static String action_syntax_error;

	public static String io_FailedRead;

	public static String io_NotFound;

	static {
		// initialize resource bundles
		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
	}

	private Messages() {
		// Do not instantiate
	}

}

Back to the top