Skip to main content
summaryrefslogtreecommitdiffstats
blob: eae97fc3a28a56e952499cbdfed7e241b02ac9c7 (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, 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.artifact.repository;

import org.eclipse.osgi.util.NLS;

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

	public static String artifact_not_found;
	public static String available_already_in;
	public static String no_location;
	public static String downloading;
	public static String error_closing_stream;
	public static String io_failedRead;
	public static String io_failedWrite;
	public static String io_incompatibleVersion;
	public static String io_invalidLocation;
	public static String SignatureVerification_failedRead;
	public static String SignatureVerification_invalidContent;
	public static String SignatureVerification_invalidFileContent;

	public static String SignatureVerifier_OutOfMemory;
	public static String io_parseError;
	public static String mirroring;
	public static String repoMan_internalError;
	public static String repoFailedWrite;

	public static String sar_downloading;
	public static String sar_downloadJobName;
	public static String sar_failedMkdir;
	public static String sar_reportStatus;

	public static String mirror_alreadyExists;
	public static String message_childrenRepos;
	public static String exception_comparatorNotFound;
	public static String exception_noComparators;
	public static String exception_unsupportedAddToComposite;

	public static String exception_unsupportedGetOutputStream;
	public static String exception_unsupportedRemoveFromComposite;

	public static String MirrorLog_Console_Log;
	public static String MirrorLog_Exception_Occurred;

	public static String MirrorRequest_multipleDownloadProblems;
	public static String MirrorRequest_transferFailed;

	public static String exception_unableToCreateParentDir;

	public static String folder_artifact_not_file_repo;

	public static String retryRequest;

	public static String error_copying_local_file;

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

	private Messages() {
		// Do not instantiate
	}

}

Back to the top