plugin.properties 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. #
  2. pluginName = Expressions Edit Support
  3. providerName = yakindu.org
  4. _UI_CreateChild_text = {0}
  5. _UI_CreateChild_text2 = {1} {0}
  6. _UI_CreateChild_text3 = {1}
  7. _UI_CreateChild_tooltip = Create New {0} Under {1} Feature
  8. _UI_CreateChild_description = Create a new child of type {0} for the {1} feature of the selected {2}.
  9. _UI_CreateSibling_description = Create a new sibling of type {0} for the selected {2}, under the {1} feature of their parent.
  10. _UI_PropertyDescriptor_description = The {0} of the {1}
  11. _UI_Expression_type = Expression
  12. _UI_Literal_type = Literal
  13. _UI_BoolLiteral_type = Bool Literal
  14. _UI_IntLiteral_type = Int Literal
  15. _UI_RealLiteral_type = Real Literal
  16. _UI_HexLiteral_type = Hex Literal
  17. _UI_StringLiteral_type = String Literal
  18. _UI_AssignmentExpression_type = Assignment Expression
  19. _UI_ConditionalExpression_type = Conditional Expression
  20. _UI_LogicalOrExpression_type = Logical Or Expression
  21. _UI_LogicalAndExpression_type = Logical And Expression
  22. _UI_LogicalNotExpression_type = Logical Not Expression
  23. _UI_BitwiseXorExpression_type = Bitwise Xor Expression
  24. _UI_BitwiseOrExpression_type = Bitwise Or Expression
  25. _UI_BitwiseAndExpression_type = Bitwise And Expression
  26. _UI_LogicalRelationExpression_type = Logical Relation Expression
  27. _UI_ShiftExpression_type = Shift Expression
  28. _UI_NumericalAddSubtractExpression_type = Numerical Add Subtract Expression
  29. _UI_NumericalMultiplyDivideExpression_type = Numerical Multiply Divide Expression
  30. _UI_NumericalUnaryExpression_type = Numerical Unary Expression
  31. _UI_PrimitiveValueExpression_type = Primitive Value Expression
  32. _UI_FeatureCall_type = Feature Call
  33. _UI_ElementReferenceExpression_type = Element Reference Expression
  34. _UI_ParenthesizedExpression_type = Parenthesized Expression
  35. _UI_Unknown_type = Object
  36. _UI_Unknown_datatype= Value
  37. _UI_BoolLiteral_value_feature = Value
  38. _UI_IntLiteral_value_feature = Value
  39. _UI_RealLiteral_value_feature = Value
  40. _UI_HexLiteral_value_feature = Value
  41. _UI_StringLiteral_value_feature = Value
  42. _UI_AssignmentExpression_varRef_feature = Var Ref
  43. _UI_AssignmentExpression_operator_feature = Operator
  44. _UI_AssignmentExpression_expression_feature = Expression
  45. _UI_ConditionalExpression_condition_feature = Condition
  46. _UI_ConditionalExpression_trueCase_feature = True Case
  47. _UI_ConditionalExpression_falseCase_feature = False Case
  48. _UI_LogicalOrExpression_leftOperand_feature = Left Operand
  49. _UI_LogicalOrExpression_rightOperand_feature = Right Operand
  50. _UI_LogicalAndExpression_leftOperand_feature = Left Operand
  51. _UI_LogicalAndExpression_rightOperand_feature = Right Operand
  52. _UI_LogicalNotExpression_operand_feature = Operand
  53. _UI_BitwiseXorExpression_leftOperand_feature = Left Operand
  54. _UI_BitwiseXorExpression_rightOperand_feature = Right Operand
  55. _UI_BitwiseOrExpression_leftOperand_feature = Left Operand
  56. _UI_BitwiseOrExpression_rightOperand_feature = Right Operand
  57. _UI_BitwiseAndExpression_leftOperand_feature = Left Operand
  58. _UI_BitwiseAndExpression_rightOperand_feature = Right Operand
  59. _UI_LogicalRelationExpression_leftOperand_feature = Left Operand
  60. _UI_LogicalRelationExpression_operator_feature = Operator
  61. _UI_LogicalRelationExpression_rightOperand_feature = Right Operand
  62. _UI_ShiftExpression_leftOperand_feature = Left Operand
  63. _UI_ShiftExpression_operator_feature = Operator
  64. _UI_ShiftExpression_rightOperand_feature = Right Operand
  65. _UI_NumericalAddSubtractExpression_leftOperand_feature = Left Operand
  66. _UI_NumericalAddSubtractExpression_operator_feature = Operator
  67. _UI_NumericalAddSubtractExpression_rightOperand_feature = Right Operand
  68. _UI_NumericalMultiplyDivideExpression_leftOperand_feature = Left Operand
  69. _UI_NumericalMultiplyDivideExpression_operator_feature = Operator
  70. _UI_NumericalMultiplyDivideExpression_rightOperand_feature = Right Operand
  71. _UI_NumericalUnaryExpression_operator_feature = Operator
  72. _UI_NumericalUnaryExpression_operand_feature = Operand
  73. _UI_PrimitiveValueExpression_value_feature = Value
  74. _UI_FeatureCall_owner_feature = Owner
  75. _UI_FeatureCall_feature_feature = Feature
  76. _UI_FeatureCall_operationCall_feature = Operation Call
  77. _UI_FeatureCall_args_feature = Args
  78. _UI_ElementReferenceExpression_reference_feature = Reference
  79. _UI_ElementReferenceExpression_operationCall_feature = Operation Call
  80. _UI_ElementReferenceExpression_args_feature = Args
  81. _UI_ParenthesizedExpression_expression_feature = Expression
  82. _UI_Unknown_feature = Unspecified
  83. _UI_AssignmentOperator_assign_literal = =
  84. _UI_AssignmentOperator_multAssign_literal = *=
  85. _UI_AssignmentOperator_divAssign_literal = /=
  86. _UI_AssignmentOperator_modAssign_literal = %=
  87. _UI_AssignmentOperator_addAssign_literal = +=
  88. _UI_AssignmentOperator_subAssign_literal = -=
  89. _UI_AssignmentOperator_leftShiftAssign_literal = <<=
  90. _UI_AssignmentOperator_rightShiftAssign_literal = >>=
  91. _UI_AssignmentOperator_andAssign_literal = &=
  92. _UI_AssignmentOperator_xorAssign_literal = ^=
  93. _UI_AssignmentOperator_orAssign_literal = |=
  94. _UI_ShiftOperator_left_literal = <<
  95. _UI_ShiftOperator_right_literal = >>
  96. _UI_AdditiveOperator_plus_literal = +
  97. _UI_AdditiveOperator_minus_literal = -
  98. _UI_MultiplicativeOperator_mul_literal = *
  99. _UI_MultiplicativeOperator_div_literal = /
  100. _UI_MultiplicativeOperator_mod_literal = %
  101. _UI_UnaryOperator_positive_literal = +
  102. _UI_UnaryOperator_negative_literal = -
  103. _UI_UnaryOperator_complement_literal = ~
  104. _UI_RelationalOperator_smaller_literal = <
  105. _UI_RelationalOperator_smallerEqual_literal = <=
  106. _UI_RelationalOperator_greater_literal = >
  107. _UI_RelationalOperator_greaterEqual_literal = >=
  108. _UI_RelationalOperator_equals_literal = ==
  109. _UI_RelationalOperator_notEquals_literal = !=
  110. _UI_NullLiteral_type = Null Literal
  111. _UI_DoubleLiteral_type = Double Literal
  112. _UI_FloatLiteral_type = Float Literal
  113. _UI_TypeCastExpression_type = Type Cast Expression
  114. _UI_DoubleLiteral_value_feature = Value
  115. _UI_FloatLiteral_value_feature = Value
  116. _UI_TypeCastExpression_operand_feature = Operand
  117. _UI_TypeCastExpression_type_feature = Type
  118. _UI_ArgumentExpression_type = Argument Expression
  119. _UI_FeatureCall_arraySelector_feature = Array Selector
  120. _UI_FeatureCall_arrayAccess_feature = Array Access
  121. _UI_ElementReferenceExpression_arraySelector_feature = Array Selector
  122. _UI_ElementReferenceExpression_arrayAccess_feature = Array Access
  123. _UI_ArgumentExpression_args_feature = Args
  124. _UI_BinaryExpression_type = Binary Expression
  125. _UI_LogicalOrExpression_operator_feature = Operator
  126. _UI_LogicalAndExpression_operator_feature = Operator
  127. _UI_BitwiseXorExpression_operator_feature = Operator
  128. _UI_BitwiseOrExpression_operator_feature = Operator
  129. _UI_BitwiseAndExpression_operator_feature = Operator
  130. _UI_BinaryExpression_leftOperand_feature = Left Operand
  131. _UI_BinaryExpression_rightOperand_feature = Right Operand
  132. _UI_LogicalOperator_and_literal = &&
  133. _UI_LogicalOperator_or_literal = ||
  134. _UI_BitwiseOperator_xor_literal = ^
  135. _UI_BitwiseOperator_and_literal = &
  136. _UI_BitwiseOperator_or_literal = |
  137. _UI_UnaryExpression_type = Unary Expression
  138. _UI_UnaryExpression_operand_feature = Operand
  139. _UI_LogicalOperator_not_literal = !
  140. _UI_Argument_type = Argument
  141. _UI_ArgumentExpression_arguments_feature = Arguments
  142. _UI_Argument_parameter_feature = Parameter
  143. _UI_Argument_value_feature = Value
  144. _UI_BinaryLiteral_type = Binary Literal