Skip to main content
summaryrefslogtreecommitdiffstats
blob: 99db74ae027adcbf57959cffc36b03af55835dbc (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
###############################################################################
# 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}
exception_invalidFeatureInstallMode=Invalid value for attribute 'installMode': {0}

### 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 features specified in the product definition are ignored; verify the value of the 'type' or 'useFeatures' attribute.   
bundlesInProductFileIgnored=The bundles specified in the product definition are ignored; verify the value of the 'type' or 'useFeatures' attribute.
message_cannotDetermineFilterOnInclusion=Included element {0} {1} is missing. Cannot determine filter for requirement to this element.
message_problemPublishingProduct=Problems while publishing product {0}

Back to the top