Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b6dff804aed6feb50562d7ffba930f6a7f39be29 (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
###############################################################################
# Copyright (c) 2003, 2011 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
#     SAP AG - consolidation of publishers for PDE formats
#     SAP AG - ongoing development
###############################################################################

### exception
exception_missingElement = Unable to find element: {0}.
exception_featureParse = Problems parsing the feature {0}.
exception_productParse = Problems parsing the product file {0}.
exception_invalidProductContentType=Provided value \"{0}\" for product content type is not valid. Allowed values are {1}

### feature parsing
feature_parse_invalidIdOrVersion= Invalid ID \"{0}\" or version \"{1}\" encountered.
feature_parse_emptyRequires = Error parsing feature: \"require\" must include at least one \"import\" element.

featuresInProductFileIgnored=The product specifies features although useFeatures is false. These features are ignored.   
bundlesInProductFileIgnored=The product specifies bundles although useFeatures is true. These bundles are ignored.

Back to the top