plugin.properties 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. # <copyright>
  2. # </copyright>
  3. #
  4. # $Id$
  5. pluginName = Sgen Edit Support
  6. providerName = www.example.org
  7. _UI_CreateChild_text = {0}
  8. _UI_CreateChild_text2 = {1} {0}
  9. _UI_CreateChild_text3 = {1}
  10. _UI_CreateChild_tooltip = Create New {0} Under {1} Feature
  11. _UI_CreateChild_description = Create a new child of type {0} for the {1} feature of the selected {2}.
  12. _UI_CreateSibling_description = Create a new sibling of type {0} for the selected {2}, under the {1} feature of their parent.
  13. _UI_PropertyDescriptor_description = The {0} of the {1}
  14. _UI_GeneratorModel_type = Generator Model
  15. _UI_GeneratorConfiguration_type = Generator Configuration
  16. _UI_FeatureType_type = Feature Type
  17. _UI_FeatureParameter_type = Feature Parameter
  18. _UI_FeatureConfiguration_type = Feature Configuration
  19. _UI_GeneratorEntry_type = Generator Entry
  20. _UI_FeatureParameterValue_type = Feature Parameter Value
  21. _UI_FeatureTypeLibrary_type = Feature Type Library
  22. _UI_XExpression_type = XExpression
  23. _UI_XIfExpression_type = XIf Expression
  24. _UI_XSwitchExpression_type = XSwitch Expression
  25. _UI_XCasePart_type = XCase Part
  26. _UI_XBlockExpression_type = XBlock Expression
  27. _UI_XVariableDeclaration_type = XVariable Declaration
  28. _UI_XAbstractFeatureCall_type = XAbstract Feature Call
  29. _UI_XMemberFeatureCall_type = XMember Feature Call
  30. _UI_XFeatureCall_type = XFeature Call
  31. _UI_XConstructorCall_type = XConstructor Call
  32. _UI_XBooleanLiteral_type = XBoolean Literal
  33. _UI_XNullLiteral_type = XNull Literal
  34. _UI_XIntLiteral_type = XInt Literal
  35. _UI_XStringLiteral_type = XString Literal
  36. _UI_XClosure_type = XClosure
  37. _UI_XCastedExpression_type = XCasted Expression
  38. _UI_XBinaryOperation_type = XBinary Operation
  39. _UI_XUnaryOperation_type = XUnary Operation
  40. _UI_XForLoopExpression_type = XFor Loop Expression
  41. _UI_XAbstractWhileExpression_type = XAbstract While Expression
  42. _UI_XDoWhileExpression_type = XDo While Expression
  43. _UI_XWhileExpression_type = XWhile Expression
  44. _UI_XTypeLiteral_type = XType Literal
  45. _UI_XInstanceOfExpression_type = XInstance Of Expression
  46. _UI_XThrowExpression_type = XThrow Expression
  47. _UI_XTryCatchFinallyExpression_type = XTry Catch Finally Expression
  48. _UI_XCatchClause_type = XCatch Clause
  49. _UI_XAssignment_type = XAssignment
  50. _UI_XReturnExpression_type = XReturn Expression
  51. _UI_Unknown_type = Object
  52. _UI_Unknown_datatype= Value
  53. _UI_GeneratorModel_entries_feature = Entries
  54. _UI_GeneratorModel_generatorId_feature = Generator Id
  55. _UI_GeneratorConfiguration_configurations_feature = Configurations
  56. _UI_FeatureType_parameters_feature = Parameters
  57. _UI_FeatureType_library_feature = Library
  58. _UI_FeatureType_optional_feature = Optional
  59. _UI_FeatureParameter_featureType_feature = Feature Type
  60. _UI_FeatureParameter_optional_feature = Optional
  61. _UI_FeatureParameter_parameterType_feature = Parameter Type
  62. _UI_FeatureConfiguration_type_feature = Type
  63. _UI_FeatureConfiguration_parameterValues_feature = Parameter Values
  64. _UI_GeneratorEntry_elementRef_feature = Element Ref
  65. _UI_GeneratorEntry_features_feature = Features
  66. _UI_GeneratorEntry_contentType_feature = Content Type
  67. _UI_FeatureParameterValue_parameter_feature = Parameter
  68. _UI_FeatureParameterValue_featureConfiguration_feature = Feature Configuration
  69. _UI_FeatureParameterValue_expression_feature = Expression
  70. _UI_FeatureTypeLibrary_types_feature = Types
  71. _UI_FeatureTypeLibrary_name_feature = Name
  72. _UI_XIfExpression_if_feature = If
  73. _UI_XIfExpression_then_feature = Then
  74. _UI_XIfExpression_else_feature = Else
  75. _UI_XSwitchExpression_switch_feature = Switch
  76. _UI_XSwitchExpression_cases_feature = Cases
  77. _UI_XSwitchExpression_default_feature = Default
  78. _UI_XSwitchExpression_localVarName_feature = Local Var Name
  79. _UI_XCasePart_case_feature = Case
  80. _UI_XCasePart_then_feature = Then
  81. _UI_XCasePart_typeGuard_feature = Type Guard
  82. _UI_XBlockExpression_expressions_feature = Expressions
  83. _UI_XVariableDeclaration_type_feature = Type
  84. _UI_XVariableDeclaration_name_feature = Name
  85. _UI_XVariableDeclaration_right_feature = Right
  86. _UI_XVariableDeclaration_writeable_feature = Writeable
  87. _UI_XAbstractFeatureCall_feature_feature = Feature
  88. _UI_XAbstractFeatureCall_typeArguments_feature = Type Arguments
  89. _UI_XAbstractFeatureCall_implicitReceiver_feature = Implicit Receiver
  90. _UI_XAbstractFeatureCall_invalidFeatureIssueCode_feature = Invalid Feature Issue Code
  91. _UI_XAbstractFeatureCall_validFeature_feature = Valid Feature
  92. _UI_XMemberFeatureCall_memberCallTarget_feature = Member Call Target
  93. _UI_XMemberFeatureCall_memberCallArguments_feature = Member Call Arguments
  94. _UI_XMemberFeatureCall_explicitOperationCall_feature = Explicit Operation Call
  95. _UI_XMemberFeatureCall_spreading_feature = Spreading
  96. _UI_XMemberFeatureCall_nullSafe_feature = Null Safe
  97. _UI_XFeatureCall_featureCallArguments_feature = Feature Call Arguments
  98. _UI_XFeatureCall_explicitOperationCall_feature = Explicit Operation Call
  99. _UI_XFeatureCall_declaringType_feature = Declaring Type
  100. _UI_XConstructorCall_constructor_feature = Constructor
  101. _UI_XConstructorCall_arguments_feature = Arguments
  102. _UI_XConstructorCall_typeArguments_feature = Type Arguments
  103. _UI_XConstructorCall_invalidFeatureIssueCode_feature = Invalid Feature Issue Code
  104. _UI_XConstructorCall_validFeature_feature = Valid Feature
  105. _UI_XBooleanLiteral_isTrue_feature = Is True
  106. _UI_XIntLiteral_value_feature = Value
  107. _UI_XStringLiteral_value_feature = Value
  108. _UI_XClosure_formalParameters_feature = Formal Parameters
  109. _UI_XClosure_expression_feature = Expression
  110. _UI_XCastedExpression_type_feature = Type
  111. _UI_XCastedExpression_target_feature = Target
  112. _UI_XBinaryOperation_leftOperand_feature = Left Operand
  113. _UI_XBinaryOperation_rightOperand_feature = Right Operand
  114. _UI_XUnaryOperation_operand_feature = Operand
  115. _UI_XForLoopExpression_forExpression_feature = For Expression
  116. _UI_XForLoopExpression_eachExpression_feature = Each Expression
  117. _UI_XForLoopExpression_declaredParam_feature = Declared Param
  118. _UI_XAbstractWhileExpression_predicate_feature = Predicate
  119. _UI_XAbstractWhileExpression_body_feature = Body
  120. _UI_XTypeLiteral_type_feature = Type
  121. _UI_XInstanceOfExpression_type_feature = Type
  122. _UI_XInstanceOfExpression_expression_feature = Expression
  123. _UI_XThrowExpression_expression_feature = Expression
  124. _UI_XTryCatchFinallyExpression_expression_feature = Expression
  125. _UI_XTryCatchFinallyExpression_finallyExpression_feature = Finally Expression
  126. _UI_XTryCatchFinallyExpression_catchClauses_feature = Catch Clauses
  127. _UI_XCatchClause_expression_feature = Expression
  128. _UI_XCatchClause_declaredParam_feature = Declared Param
  129. _UI_XAssignment_assignable_feature = Assignable
  130. _UI_XAssignment_value_feature = Value
  131. _UI_XReturnExpression_expression_feature = Expression
  132. _UI_Unknown_feature = Unspecified
  133. _UI_ParameterTypes_STRING_literal = STRING
  134. _UI_ParameterTypes_FLOAT_literal = FLOAT
  135. _UI_ParameterTypes_BOOLEAN_literal = BOOLEAN
  136. _UI_ParameterTypes_INTEGER_literal = INTEGER
  137. _UI_Literal_type = Literal
  138. _UI_BoolLiteral_type = Bool Literal
  139. _UI_IntLiteral_type = Int Literal
  140. _UI_RealLiteral_type = Real Literal
  141. _UI_StringLiteral_type = String Literal
  142. _UI_BoolLiteral_value_feature = Value
  143. _UI_IntLiteral_value_feature = Value
  144. _UI_RealLiteral_value_feature = Value
  145. _UI_StringLiteral_value_feature = Value