123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- #
- pluginName = Expressions Edit Support
- providerName = yakindu.org
- _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_Expression_type = Expression
- _UI_Literal_type = Literal
- _UI_BoolLiteral_type = Bool Literal
- _UI_IntLiteral_type = Int Literal
- _UI_RealLiteral_type = Real Literal
- _UI_HexLiteral_type = Hex Literal
- _UI_StringLiteral_type = String Literal
- _UI_AssignmentExpression_type = Assignment Expression
- _UI_ConditionalExpression_type = Conditional Expression
- _UI_LogicalOrExpression_type = Logical Or Expression
- _UI_LogicalAndExpression_type = Logical And Expression
- _UI_LogicalNotExpression_type = Logical Not Expression
- _UI_BitwiseXorExpression_type = Bitwise Xor Expression
- _UI_BitwiseOrExpression_type = Bitwise Or Expression
- _UI_BitwiseAndExpression_type = Bitwise And Expression
- _UI_LogicalRelationExpression_type = Logical Relation Expression
- _UI_ShiftExpression_type = Shift Expression
- _UI_NumericalAddSubtractExpression_type = Numerical Add Subtract Expression
- _UI_NumericalMultiplyDivideExpression_type = Numerical Multiply Divide Expression
- _UI_NumericalUnaryExpression_type = Numerical Unary Expression
- _UI_PrimitiveValueExpression_type = Primitive Value Expression
- _UI_FeatureCall_type = Feature Call
- _UI_ElementReferenceExpression_type = Element Reference Expression
- _UI_ParenthesizedExpression_type = Parenthesized Expression
- _UI_Unknown_type = Object
- _UI_Unknown_datatype= Value
- _UI_BoolLiteral_value_feature = Value
- _UI_IntLiteral_value_feature = Value
- _UI_RealLiteral_value_feature = Value
- _UI_HexLiteral_value_feature = Value
- _UI_StringLiteral_value_feature = Value
- _UI_AssignmentExpression_varRef_feature = Var Ref
- _UI_AssignmentExpression_operator_feature = Operator
- _UI_AssignmentExpression_expression_feature = Expression
- _UI_ConditionalExpression_condition_feature = Condition
- _UI_ConditionalExpression_trueCase_feature = True Case
- _UI_ConditionalExpression_falseCase_feature = False Case
- _UI_LogicalOrExpression_leftOperand_feature = Left Operand
- _UI_LogicalOrExpression_rightOperand_feature = Right Operand
- _UI_LogicalAndExpression_leftOperand_feature = Left Operand
- _UI_LogicalAndExpression_rightOperand_feature = Right Operand
- _UI_LogicalNotExpression_operand_feature = Operand
- _UI_BitwiseXorExpression_leftOperand_feature = Left Operand
- _UI_BitwiseXorExpression_rightOperand_feature = Right Operand
- _UI_BitwiseOrExpression_leftOperand_feature = Left Operand
- _UI_BitwiseOrExpression_rightOperand_feature = Right Operand
- _UI_BitwiseAndExpression_leftOperand_feature = Left Operand
- _UI_BitwiseAndExpression_rightOperand_feature = Right Operand
- _UI_LogicalRelationExpression_leftOperand_feature = Left Operand
- _UI_LogicalRelationExpression_operator_feature = Operator
- _UI_LogicalRelationExpression_rightOperand_feature = Right Operand
- _UI_ShiftExpression_leftOperand_feature = Left Operand
- _UI_ShiftExpression_operator_feature = Operator
- _UI_ShiftExpression_rightOperand_feature = Right Operand
- _UI_NumericalAddSubtractExpression_leftOperand_feature = Left Operand
- _UI_NumericalAddSubtractExpression_operator_feature = Operator
- _UI_NumericalAddSubtractExpression_rightOperand_feature = Right Operand
- _UI_NumericalMultiplyDivideExpression_leftOperand_feature = Left Operand
- _UI_NumericalMultiplyDivideExpression_operator_feature = Operator
- _UI_NumericalMultiplyDivideExpression_rightOperand_feature = Right Operand
- _UI_NumericalUnaryExpression_operator_feature = Operator
- _UI_NumericalUnaryExpression_operand_feature = Operand
- _UI_PrimitiveValueExpression_value_feature = Value
- _UI_FeatureCall_owner_feature = Owner
- _UI_FeatureCall_feature_feature = Feature
- _UI_FeatureCall_operationCall_feature = Operation Call
- _UI_FeatureCall_args_feature = Args
- _UI_ElementReferenceExpression_reference_feature = Reference
- _UI_ElementReferenceExpression_operationCall_feature = Operation Call
- _UI_ElementReferenceExpression_args_feature = Args
- _UI_ParenthesizedExpression_expression_feature = Expression
- _UI_Unknown_feature = Unspecified
- _UI_AssignmentOperator_assign_literal = =
- _UI_AssignmentOperator_multAssign_literal = *=
- _UI_AssignmentOperator_divAssign_literal = /=
- _UI_AssignmentOperator_modAssign_literal = %=
- _UI_AssignmentOperator_addAssign_literal = +=
- _UI_AssignmentOperator_subAssign_literal = -=
- _UI_AssignmentOperator_leftShiftAssign_literal = <<=
- _UI_AssignmentOperator_rightShiftAssign_literal = >>=
- _UI_AssignmentOperator_andAssign_literal = &=
- _UI_AssignmentOperator_xorAssign_literal = ^=
- _UI_AssignmentOperator_orAssign_literal = |=
- _UI_ShiftOperator_left_literal = <<
- _UI_ShiftOperator_right_literal = >>
- _UI_AdditiveOperator_plus_literal = +
- _UI_AdditiveOperator_minus_literal = -
- _UI_MultiplicativeOperator_mul_literal = *
- _UI_MultiplicativeOperator_div_literal = /
- _UI_MultiplicativeOperator_mod_literal = %
- _UI_UnaryOperator_positive_literal = +
- _UI_UnaryOperator_negative_literal = -
- _UI_UnaryOperator_complement_literal = ~
- _UI_RelationalOperator_smaller_literal = <
- _UI_RelationalOperator_smallerEqual_literal = <=
- _UI_RelationalOperator_greater_literal = >
- _UI_RelationalOperator_greaterEqual_literal = >=
- _UI_RelationalOperator_equals_literal = ==
- _UI_RelationalOperator_notEquals_literal = !=
- _UI_NullLiteral_type = Null Literal
- _UI_DoubleLiteral_type = Double Literal
- _UI_FloatLiteral_type = Float Literal
- _UI_TypeCastExpression_type = Type Cast Expression
- _UI_DoubleLiteral_value_feature = Value
- _UI_FloatLiteral_value_feature = Value
- _UI_TypeCastExpression_operand_feature = Operand
- _UI_TypeCastExpression_type_feature = Type
- _UI_ArgumentExpression_type = Argument Expression
- _UI_FeatureCall_arraySelector_feature = Array Selector
- _UI_FeatureCall_arrayAccess_feature = Array Access
- _UI_ElementReferenceExpression_arraySelector_feature = Array Selector
- _UI_ElementReferenceExpression_arrayAccess_feature = Array Access
- _UI_ArgumentExpression_args_feature = Args
- _UI_BinaryExpression_type = Binary Expression
- _UI_LogicalOrExpression_operator_feature = Operator
- _UI_LogicalAndExpression_operator_feature = Operator
- _UI_BitwiseXorExpression_operator_feature = Operator
- _UI_BitwiseOrExpression_operator_feature = Operator
- _UI_BitwiseAndExpression_operator_feature = Operator
- _UI_BinaryExpression_leftOperand_feature = Left Operand
- _UI_BinaryExpression_rightOperand_feature = Right Operand
- _UI_LogicalOperator_and_literal = &&
- _UI_LogicalOperator_or_literal = ||
- _UI_BitwiseOperator_xor_literal = ^
- _UI_BitwiseOperator_and_literal = &
- _UI_BitwiseOperator_or_literal = |
- _UI_UnaryExpression_type = Unary Expression
- _UI_UnaryExpression_operand_feature = Operand
- _UI_LogicalOperator_not_literal = !
- _UI_Argument_type = Argument
- _UI_ArgumentExpression_arguments_feature = Arguments
- _UI_Argument_parameter_feature = Parameter
- _UI_Argument_value_feature = Value
- _UI_BinaryLiteral_type = Binary Literal
|