idl.prp
Upload User: toby828
Upload Date: 2015-06-26
Package Size: 8558k
Code Size: 10k
Category:

Jsp/Servlet

Development Platform:

Java

  1. #
  2. # COMPONENT_NAME:  idl.parser
  3. #
  4. # ORIGINS: 27
  5. #
  6. # Licensed Materials - Property of IBM
  7. # 5639-D57 (C) COPYRIGHT International Business Machines Corp., 1997, 1999
  8. # RMI-IIOP v1.0
  9. # US Government Users Restricted Rights - Use, duplication or
  10. # disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  11. #
  12. # @(#)idl.prp 1.6 01/02/23
  13. #
  14. # Translator:  Each line below is of the form "<key>=<message>".
  15. #              The keys are NOT to be translated.
  16. #              The messages ARE to be translated.
  17. #
  18. #              DO NOT translate the following:
  19. #               ASCII
  20. #               #else
  21. #               #endif
  22. #               IDL
  23. #
  24. #              %0, %1, etc. are postional parameters to the message.  Do not
  25. #              translate these.  The number order is the order they are given to
  26. #              the message writer.  It is OK to change their order in the message
  27. #              if the language grammar so dictates.
  28. #
  29. #              Lines of the form "%0 (line %1):  <some message>n%xn%y" are error
  30. #              messages:  %0 is a filename; %1 is a line number; %x is line %1 from
  31. #              %0; %y is the error marker.  So the message comes out looking like:
  32. #                  <filename> (line xxx): <some message>
  33. #                  Line xxx from <filename> where the carat points to the error
  34. #                                                     ^
  35. #              So the first two and the last two parameters of these messages must
  36. #              remain in their positions.
  37. #
  38. #              A backslash () at the end of a line is a line continuation
  39. #              character.  A backslash at the beginning of a line means don't
  40. #              ignore leading blanks (they normally are).  These backslashes
  41. #              should remain in the message.
  42. #
  43. # Translator:  Start Translating
  44. Compile.parsing=Parsing %0
  45. Compile.parseDone=done  - %0
  46. Compile.generating=Generating %0
  47. Compile.genDone=done   -   %0
  48. Deprecated.keyword=WARNING: Keyword `%0' is deprecated.
  49. EvaluationException.1=Operands of %0 operator are inconsistent:  %1 and %2.
  50. EvaluationException.2=Operand of %0 operator must be a number, not a %1.
  51. EvaluationException.or=bitwise or
  52. EvaluationException.xor=bitwise xor
  53. EvaluationException.and=bitwise and
  54. EvaluationException.plus=addition
  55. EvaluationException.minus=subtraction
  56. EvaluationException.left=left shift
  57. EvaluationException.right=right shift
  58. EvaluationException.times=multiplication
  59. EvaluationException.divide=division
  60. EvaluationException.mod=modulo
  61. EvaluationException.pos=unary positive
  62. EvaluationException.neg=unary negation
  63. EvaluationException.not=bitwise not
  64. EvaluationException.booleanNot=boolean not
  65. EvaluationException.booleanAnd=boolean and
  66. EvaluationException.booleanOr=boolean or
  67. EvaluationException.equal=equal
  68. EvaluationException.notEqual=not equal
  69. EvaluationException.greaterThan=greater than
  70. EvaluationException.lessThan=less than
  71. EvaluationException.greaterEqual=greater than or equal
  72. EvaluationException.lessEqual=less than or equal
  73. GenFileStream.1=%0 could not be generated:  %1
  74. InvalidArgument.1=Invalid argument:  %0.
  75. InvalidArgument.2=No IDL file was specified.
  76. InvalidCharacter.1=%0 (line %1):  invalid character:  %2 (ASCII %3).n%4n%5
  77. Migration.futureKeyword=WARNING: Identifier `%0' collides with a keyword; use an escaped identifier to ensure future compatibility.
  78. Migration.keywordCollision=WARNING: Identifier `%0' collides with a keyword; use an escaped identifier to ensure future compatibility.
  79. ParseException.abstractValueBox=%0 (line %1):  A value box cannot be declared abstract.n%2n%3
  80. ParseException.alreadyDeclared=%0 (line %1):  %2 has already been declared.n%3n%4
  81. ParseException.alreadyDerived=%0 (line %1):  %2 has already been declared as a parent of %3.n%4n%5
  82. ParseException.alreadyDefaulted=%0 (line %1):  The default branch has already been encountered.n%2n%3
  83. ParseException.alreadyRaised=%0 (line %1):  %2 already specified in raises clause.n%3n%4
  84. ParseException.attributeNotType=%0 (line %1):  %2 is an attribute.  It cannot be used as a type.n%3n%4
  85. ParseException.badAbstract=%0 (line %1): The forward and actual declaration of %2 is inconsistent. One is abstract and the other is not.n%3n%4
  86. ParseException.badCustom=%0 (line %1):  A forward value declaration cannot be declared custom.n%2n%3
  87. ParseException.badRepIDAlreadyAssigned=%0 (line %1):  Type %2 has already been assigned a Repository ID in a previous ID pragma directive.n%3n%4
  88. ParseException.badRepIDForm=%0 (line %1): Repository ID '%2' should have form '<format>:<string>'.n%3n%4
  89. ParseException.badRepIDPrefix=%0 (line %1):  Interface %2 should have Repository ID prefix `%3', not '%4'.n%5n%6
  90. ParseException.badState=%0 (line %1): %2 cannot be a stateful interface; it has more than one stateful parent.n%3n%4
  91. ParseException.branchLabel=%0 (line %1):  case %2 has already been declared.n%3n%4
  92. ParseException.branchName=%0 (line %1):  A branch named %2 has already been declared.n%3n%4
  93. ParseException.duplicateInit=%0 (line %1):  An initializer has the same signature as a previous initializer.n%2n%3
  94. ParseException.duplicateState=%0 (line %1):  The data member %2 has the same name as a previous data member.n%3n%4
  95. ParseException.elseNoIf=%0 (line %1):  #else encountered without a matching #if.n%2n%3
  96. ParseException.endNoIf=%0 (line %1):  #endif encountered without a matching #if.n%2n%3
  97. ParseException.evaluation=%0 (line %1):  %2n%3n%4
  98. ParseException.forwardEntry=%0 (line %1):  There is a forward reference to %2, but it is not defined.n%3n%4
  99. ParseException.forwardedValueBox=%0 (line %1):  %2 has a forward declaration. A value box cannot be forward declared.n%3n%4
  100. ParseException.forwardInheritance=%0 (line %1):  It is illegal for %2 to inherit from the incomplete forward declaration of %3.n%4n%5
  101. ParseException.generic=%0 (line %1):  %2n%3n%4
  102. ParseException.illegalArray=%0 (line %1):  An array is not a legal type in a %2.n%3n%4
  103. ParseException.illegalException=%0 (line %1):  Exceptions cannot appear within %2s.n%3n%4
  104. ParseException.invalidConst1=%0 (line %1):  Constant expression must be of type %2, not %3.n%4n%5
  105. ParseException.invalidConst2=%0 (line %1):  Identifiers in constant expressions must be constants, not %2.n%3n%4
  106. ParseException.keywordCollision=%0 (line %1):  Identifier `%2' collides with keyword; use escaped identifier if necessary.n%3n%4
  107. ParseException.methodClash=%0 (line %1):  Method name clash in interface %2:  %3.n%4n%5
  108. ParseException.moduleNotType=%0 (line %1):  %2 is a module.  It cannot be used as a type.n%3n%4
  109. ParseException.nestedValueBox=%0 (line %1):  Value boxes cannot be nested.n%2n%3
  110. ParseException.noDefault=%0 (line %1):  A default branch is not allowed when all possible cases are fully covered.n%2n%3
  111. ParseException.nonAbstractParent=%0 (line %1):  The abstract interface %2 cannot inherit from the non-abstract interface %3.n%4n%5
  112. ParseException.nonAbstractParent2=%0 (line %1):  The abstract value %2 cannot inherit from the non-abstract value %3.n%4n%5
  113. ParseException.nonAbstractParent3=%0 (line %1):  The value %2 cannot inherit from the non-abstract value %3 as specified.n%4n%5
  114. ParseException.notANumber=%0 (line %1):  A number was expected.  %2 is not a valid number.n%3n%4
  115. ParseException.nothing=%0 is empty.  There is nothing to compile.
  116. ParseException.notPosInt=%0 (line %1):  Expected a positive integer constant, not %2.n%3n%4
  117. ParseException.oneway=%0 (line %1):  %2 is declared to be oneway.  Oneway methods must:  return void; have only in parameters; raise no exceptions.n%3n%4
  118. ParseException.operationNotType=%0 (line %1): %2 is an operation.  It cannot be used as a type.n%3n%4
  119. ParseException.outOfRange=%0 (line %1):  The value of the constant expression, %2, is out of range for type %3.n%4n%5
  120. ParseException.recursive=%0 (line %1):  The only legal recursive definition is:  sequence<%2> %3.n%4n%5
  121. ParseException.selfInherit=%0 (line %1):  %2 cannot inherit from itself.n%3n%4
  122. ParseException.stringTooLong=%0 (line %1):  "%2" cannot be more than %3 characters long.n%4n%5
  123. ParseException.syntax1=%0 (line %1):  Expected `%2'; encountered `%3'.n%4n%5
  124. ParseException.syntax2=%0 (line %1):  Expected one of%2; encountered `%3'.n%4n%5
  125. ParseException.unclosed=%0:  Unexpected end of file encountered in comment.
  126. ParseException.undeclaredType=%0 (line %1):  %2 is an undeclared type.n%3n%4
  127. ParseException.warning=%0 (line %1):  %2n%3n%4
  128. ParseException.constExprType=%0 (line %1):  The type of the constant expression is %2, but it should be %3.n%4n%5
  129. ParseException.wrongType=%0 (line %1):  The type of %2 is %3, but it should be %4.n%5n%6
  130. Preprocessor.unknown=Unknown preprocessor directive, `%0'.  Line ignored.
  131. Preprocessor.unknownPragma=Unknown pragma `%0'.  Line ignored.
  132. Preprocessor.undefinedName=Undefined type name for pragma %0:  %1.  Line ignored.
  133. Token.boolLit=<boolean literal>
  134. Token.charLit=<character literal>
  135. Token.intLit=<integer literal>
  136. Token.floatLit=<floating point literal>
  137. Token.stringLit=<string literal>
  138. Token.literal=<literal>
  139. Token.identifier=<identifier>
  140. Token.endOfFile=EOF
  141. Token.unknown=?
  142. Util.cantCreatePkg=Cannot create the package %0.
  143. Version.product=IDL Parser Framework, version "%0"
  144. Version.number=3.0
  145. default=Error!  A message was requested which does not exist.  The messages file does not contain the key: %0.
  146. # Translator: In the list of options below, do not translate:
  147. #             -i, -d, -keep, -emitAll, -noWarn, -v, -verbose, -version, #define
  148. #             Do not translate the string "java com.sun.tools.corba.se.idl.Compile"
  149. usage=Compiler Usage:n
  150.  java com.sun.tools.corba.se.idl.Compile [options] <idl file>n
  151. where <idl file> is the name of a file containing IDL definitions, andn
  152. [options] is any combination of the options listed below.  The optionsn
  153. are optional and may appear in any order; <idl file> is required andn
  154. must appear last.n
  155.  n
  156. Options:n
  157.   -d <symbol>          This is equivalent to the following line in ann
  158.                      IDL file:  #define <symbol>n
  159.   -emitAll             Emit all types, including those found in #includedn
  160.                      files.n
  161.   -i <include path>    By default, the current directory is scanned forn
  162.                      included files.  This option adds another directory.n
  163.   -keep                If a file to be generated already exists, do notn
  164.                      overwrite it.  By default it is overwritten.n
  165.   -noWarn              Suppress warnings.n
  166.   -v, -verbose         Verbose mode.n
  167.   -version             Display the version number.n