Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a79bec113c532a0a9717ceaac2eee185406f6ff3 (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
/*******************************************************************************
 * Copyright (c) 2007, 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.equinox.internal.p2.director;

import org.eclipse.osgi.util.NLS;

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

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

	private Messages() {
		// Do not instantiate
	}

	public static String Director_Revert_Problems;
	public static String Director_Task_installer_plan;
	public static String Director_Unexpected_IU;
	public static String Director_Task_Installing;
	public static String Director_Task_Updating;
	public static String Director_Task_Resolving_Dependencies;
	public static String Director_Unsatisfied_Dependencies;
	public static String Director_Unsatisfied_Dependency;
	public static String Director_error_applying_configuration;

	public static String Explanation_alreadyInstalled;
	public static String Explanation_from;
	public static String Explanation_hardDependency;
	public static String Explanation_missingRequired;
	public static String Explanation_optionalDependency;
	public static String Explanation_rootMissing;
	public static String Explanation_rootSingleton;
	public static String Explanation_singleton;
	public static String Explanation_to;
	public static String Explanation_toInstall;
	public static String Explanation_unsatisfied;

	public static String Planner_Error_saving_opbfile;
	public static String Planner_Format_error;
	public static String Planner_Missing_opb_file;
	public static String Planner_Timeout;
	public static String Planner_Problems_resolving_plan;
	public static String Planner_Unsatisfiable_problem;
	public static String Planner_Unsatisfied_dependency;
	public static String Planner_NoSolution;
	public static String Planner_Unexpected_problem;
	public static String Planner_actions_and_software_incompatible;
	public static String Planner_can_not_install_preq;
	public static String Planner_no_profile_registry;
	public static String Planner_no_self_profile;
	public static String Planner_profile_out_of_sync;

	public static String Old_Resolver_Several_Versions;
	public static String Old_Resolver_Incompatible_Versions;

}

Back to the top