Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: af8eeb7b38908fefdb0a899dfd0bfd5e5e1b8075 (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
/*******************************************************************************
 * Copyright (c) 2007, 2010 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.publisher;

import org.eclipse.osgi.util.NLS;

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

	public static String exception_errorConverting;
	public static String exception_stateAddition;
	public static String exception_errorReadingManifest;
	public static String exception_errorLoadingManifest;
	public static String exception_errorLoadingProductFile;
	public static String exception_noPluginConverter;
	public static String exception_noArtifactRepo;
	public static String exception_noMetadataRepo;
	public static String exception_noBundlesOrLocations;
	public static String exception_noFeaturesOrLocations;
	public static String exception_invalidSiteReference;
	public static String exception_invalidSiteReferenceInFeature;
	public static String exception_repoMustBeURL;
	public static String exception_sourcePath;

	public static String message_generatingMetadata;
	public static String message_generationCompleted;
	public static String message_noSimpleconfigurator;
	public static String message_resultException;
	public static String message_publisherArguments;

	public static String exception_artifactRepoNoAppendDestroysInput;

	public static String error_rootIU_generation;
	static {
		// load message values from bundle file
		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
	}
}

Back to the top