Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 29cf56c4b45996d2c1bb2a83dad5ffa1d983d9a8 (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
# Copyright (c) 2017 CEA LIST.
# 
# 
# 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:
# 	Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation

pluginName = Papyrus EMF Expressions Edit Support
providerName = Eclipse Modeling Project

_UI_CreateChild_text = {0}
_UI_CreateChild_text2 = {1} | {0}
_UI_CreateChild_text3 = {1}
_UI_CreateChild_tooltip = Create New {0} Under {1} Feature
_UI_CreateChild_description = Create a new child of type {0} for the {1} feature of the selected {2}.
_UI_CreateSibling_description = Create a new sibling of type {0} for the selected {2}, under the {1} feature of their parent.

_UI_PropertyDescriptor_description = The {0} of the {1}

_UI_IBasicExpressionElement_type = IBasic Expression Element
_UI_IExpression_type = IExpression
_UI_ExpressionCatalog_type = Expression Catalog
_UI_EClass_type = EClass
_UI_EObject_type = EObject
_UI_OrExpression_type = Or Expression
_UI_IBooleanEObjectExpression_type = IBoolean EObject Expression
_UI_IBooleanExpression_type = IBoolean Expression
_UI_AndExpression_type = And Expression
_UI_NotExpression_type = Not Expression
_UI_LiteralTrueExpression_type = Literal True Expression
_UI_LiteralFalseExpression_type = Literal False Expression
_UI_ReferenceBooleanExpression_type = Reference Boolean Expression
_UI_Unknown_type = Object

_UI_Unknown_datatype= Value

_UI_IBasicExpressionElement_name_feature = Name
_UI_IBasicExpressionElement_description_feature = Description
_UI_ExpressionCatalog_expressions_feature = Expressions
_UI_OrExpression_ownedExpressions_feature = Owned Expressions
_UI_OrExpression_referencedExpressions_feature = Referenced Expressions
_UI_AndExpression_ownedExpressions_feature = Owned Expressions
_UI_AndExpression_referencedExpressions_feature = Referenced Expressions
_UI_NotExpression_ownedExpression_feature = Owned Expression
_UI_NotExpression_referencedExpression_feature = Referenced Expression
_UI_ReferenceBooleanExpression_referencedExpression_feature = Referenced Expression
_UI_Unknown_feature = Unspecified

Back to the top