Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 45e4e1842f8d61b25f0609f60842566343ecb4cd (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
79
80
81
82
83
84
/*******************************************************************************
 * Copyright (c) 2009, 2018 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.p2.internal.repository.tools;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.equinox.p2.internal.repository.tools.messages"; //$NON-NLS-1$
	public static String exception_destinationNotModifiable;
	public static String exception_unableToRemoveRepo;
	public static String exception_notLocalFileRepo;
	public static String exception_noEngineService;
	public static String exception_noPlannerService;
	public static String exception_needIUsOrNonEmptyRepo;
	public static String exception_needDestinationRepo;
	public static String exception_onlyOneComparator;
	public static String exception_loadingRepository;

	public static String AbstractApplication_no_valid_destinations;

	public static String AbstractRepositoryTask_unableToFind;

	public static String CompositeRepository_composite_repository_exists;
	public static String CompositeRepository_default_artifactRepo_name;
	public static String CompositeRepository_default_metadataRepo_name;

	public static String no_artifactRepo_manager;
	public static String no_metadataRepo_manager;
	public static String no_profile_registry;
	public static String no_provisioning_agent;
	public static String unable_to_process_uri;
	public static String unknown_repository_type;

	public static String MirrorApplication_artifactDestinationNoSource;
	public static String MirrorApplication_metadataDestinationNoSource;
	public static String MirrorApplication_no_IUs;
	public static String MirrorApplication_set_source_repositories;

	public static String ProcessRepo_location_not_url;
	public static String ProcessRepo_must_be_local;

	public static String SlicingOption_invalid_platform;
	public static String exception_invalidDestination;
	public static String exception_invalidSource;
	public static String Repo2RunnableTask_errorTransforming;
	public static String SlicingOption_invalidFilterFormat;

	public static String skippingInvalidFilter;

	public static String message_mirroringStatus;
	public static String mirror_alreadyExists;
	public static String Mirroring_noMatchingDescriptor;
	public static String Mirroring_ValidationError;
	public static String Mirroring_missingDescriptor;
	public static String Mirroring_differentDescriptorProperty;

	public static String invalidComparatorId;

	public static String info_noMD5Infomation;
	public static String info_noMD5InRepository;
	public static String warning_differentMD5;

	public static String info_noChecksumInfomation;
	public static String info_noChecksumInRepository;
	public static String warning_different_checksum;

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

	private Messages() {
		// Do not instantiate
	}

}

Back to the top