home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 March / PCWorld_2001-03_cd.bin / Software / Komercni / VAgeJava / ivj35 / setup / JSP.Cab / F26995_Messages.properties < prev    next >
Text File  |  1999-11-10  |  11KB  |  451 lines

  1. #
  2. # Default JavaScript messages file.
  3. #
  4. # Copyright ⌐ 1998 Netscape Communications Corporation, All Rights Reserved.
  5. #
  6.  
  7. #
  8. # To add JavaScript error messages for a particular locale, create a
  9. # new Messages_[locale].properties file, where [locale] is the Java
  10. # string abbreviation for that locale.  For example, JavaScript
  11. # messages for the Polish locale should be located in
  12. # Messages_pl.properties, and messages for the Italian Swiss locale
  13. # should be located in Messages_it_CH.properties.  Message properties
  14. # files should be accessible through the classpath under
  15. # com.netscape.javascript.resources
  16. #
  17. # See:
  18. # java.util.ResourceBundle
  19. # java.text.MessageFormat
  20. #
  21.  
  22. # SomeJavaClassWhereUsed
  23.  
  24. # Codegen
  25. msg.dup.parms =\
  26.     Duplicate parameter name "{0}".
  27.  
  28. # Context
  29.  
  30. msg.ctor.not.found =\
  31.     Constructor for "{0}" not found.
  32.  
  33. msg.not.ctor =\
  34.     "{0}" is not a constructor.
  35.  
  36. # FunctionObject
  37. msg.varargs.ctor =\
  38.     Variable arguments signature must be \
  39.     (Context cx, Object[] args, Function ctorObj, boolean inNewExpr) \
  40.     to define a constructor.
  41.  
  42. msg.varargs.fun =\
  43.     Variable arguments signature must be \
  44.     (Context cx, Scriptable thisObj, Object[] args, Function funObj) \
  45.     to define a function.
  46.  
  47. msg.incompat.call =\
  48.     Method "{0}" called on incompatible object.
  49.  
  50. msg.bad.parms =\
  51.     Bad method parameters for "{0}".
  52.  
  53. msg.no.overload =\
  54.     Method "{0}" occurs multiple times in class "{1}".
  55.  
  56. msg.method.not.found =\
  57.     Method "{0}" not found in "{1}".
  58.  
  59. # IRFactory
  60. msg.del.nonref =\
  61.     Only variables and properties may be deleted.
  62.  
  63. msg.bad.for.in.lhs =\
  64.     Invalid left-hand side of for..in loop.
  65.  
  66. msg.bad.lhs.assign =\
  67.     Invalid assignment left-hand side.
  68.  
  69. msg.mult.index =\
  70.     Only one variable allowed in for..in loop.
  71.  
  72. msg.cant.convert =\
  73.     Can''t convert to type "{0}".
  74.  
  75. # NativeGlobal
  76. msg.cant.call.indirect =\
  77.     Function "{0}" must be called directly, and not by way of a \
  78.     function of another name.
  79.  
  80. msg.eval.nonstring =\
  81.     Calling eval() with anything other than a primitive string value will \
  82.     simply return the value. Is this what you intended?
  83.  
  84. # NativeCall
  85. msg.only.from.new =\
  86.     "{0}" may only be invoked from a "new" expression.
  87.  
  88. # NativeClosure
  89. msg.closure.proto =\
  90.     Closure.__proto__ must be a function
  91.  
  92. msg.deprec.ctor =\
  93.     The "{0}" constructor is deprecated.
  94.  
  95. # NativeFunction
  96. msg.no.function.ref.found.in =\
  97.     no source found in {1} to decompile function reference {0}
  98.  
  99. msg.no.function.ref.found =\
  100.     no source found to decompile function reference {0}
  101.  
  102. # NativeGlobal
  103. msg.bad.esc.mask =\
  104.     invalid string escape mask
  105.  
  106. # NativeJavaClass
  107. msg.cant.instantiate =\
  108.     error instantiating {0}: class {1} is interface or abstract
  109.  
  110. msg.bad.ctor.sig =\
  111.     Found constructor with wrong signature: \
  112.     {0} calling {1} with signature {2}
  113.  
  114. msg.not.java.obj =\
  115.     Expected argument to getClass() to be a Java object.
  116.  
  117. msg.no.java.ctor =\
  118.     Java constructor for "{0}" with arguments "{1}" not found.
  119.  
  120. # NativeRegExp
  121. msg.bad.quant =\
  122.     Invalid quantifier {0}
  123.  
  124. msg.overlarge.max =\
  125.     Overly large maximum {0}
  126.  
  127. msg.overlarge.octal =\
  128.     Overly large octal escape {0}
  129.  
  130. msg.zero.quant =\
  131.     Zero quantifier {0}
  132.  
  133. msg.max.lt.min =\
  134.     Maximum {0} less than minimum
  135.  
  136. msg.re.empty =\
  137.     Regular expression before {0} could be empty.
  138.  
  139. msg.unterm.quant =\
  140.     Unterminated quantifier {0}
  141.  
  142. msg.unterm.paren =\
  143.     Unterminated parenthetical {0}
  144.  
  145. msg.unterm.class =\
  146.     Unterminated character class {0}
  147.  
  148. msg.bad.range =\
  149.     Invalid range in character class.
  150.  
  151. msg.trail.backslash =\
  152.     Trailing \\ in regular expression.
  153.  
  154. # NodeTransformer
  155. msg.dup.label =\
  156.     Duplicate label {0}.
  157.  
  158. msg.undef.label =\
  159.     Undefined label {0}.
  160.  
  161. msg.bad.break =\
  162.     Unlabelled break must be inside loop or switch.
  163.  
  164. msg.continue.outside =\
  165.     continue must be inside loop.
  166.  
  167. msg.continue.nonloop =\
  168.     Can only continue to labeled iteration statement.
  169.  
  170. # Parser
  171. msg.no.paren.parms =\
  172.     missing ( before function parameters
  173.  
  174. msg.no.parm =\
  175.     missing formal parameter
  176.  
  177. msg.no.paren.after.parms =\
  178.     missing ) after formal parameters
  179.  
  180. msg.no.brace.body =\
  181.     missing '{' before function body
  182.  
  183. msg.no.brace.after.body =\
  184.     missing } after function body
  185.  
  186. msg.no.paren.cond =\
  187.     missing ( before condition
  188.  
  189. msg.no.paren.after.cond =\
  190.     missing ) after condition
  191.  
  192. msg.no.semi.stmt =\
  193.     missing ; before statement
  194.  
  195. msg.no.name.after.dot =\
  196.     missing name after . operator
  197.  
  198. msg.no.bracket.index =\
  199.     missing ] in index expression
  200.  
  201. msg.no.paren.switch =\
  202.     missing ( before switch expression
  203.  
  204. msg.no.paren.after.switch =\
  205.     missing ) after switch expression
  206.  
  207. msg.no.brace.switch =\
  208.     missing '{' before switch body
  209.  
  210. msg.bad.switch =\
  211.     invalid switch statement
  212.  
  213. msg.no.colon.case =\
  214.     missing : after case expression
  215.  
  216. msg.no.while.do =\
  217.     missing while after do-loop body
  218.  
  219. msg.no.paren.for =\
  220.     missing ( after for
  221.  
  222. msg.no.semi.for =\
  223.     missing ; after for-loop initializer
  224.  
  225. msg.no.semi.for.cond =\
  226.     missing ; after for-loop condition
  227.  
  228. msg.no.paren.for.ctrl =\
  229.     missing ) after for-loop control
  230.  
  231. msg.no.paren.with =\
  232.     missing ( before with-statement object
  233.  
  234. msg.no.paren.after.with =\
  235.     missing ) after with-statement object
  236.  
  237. msg.bad.return =\
  238.     invalid return
  239.  
  240. msg.fn.retval =\
  241.     function does not always return a value
  242.  
  243. msg.no.brace.block =\
  244.     missing } in compound statement
  245.  
  246. msg.bad.label =\
  247.     invalid label
  248.  
  249. msg.bad.var =\
  250.     missing variable name
  251.  
  252. msg.bad.var.init =\
  253.     invalid variable initialization
  254.  
  255. msg.no.colon.cond =\
  256.     missing : in conditional expression
  257.  
  258. msg.no.paren.arg =\
  259.     missing ) after argument list
  260.  
  261. msg.no.bracket.arg =\
  262.     missing ] after element list
  263.  
  264. msg.bad.prop =\
  265.     invalid property id
  266.  
  267. msg.no.colon.prop =\
  268.     missing : after property id
  269.  
  270. msg.no.brace.prop =\
  271.     missing } after property list
  272.  
  273. msg.no.paren =\
  274.     missing ) in parenthetical
  275.  
  276. msg.reserved.id =\
  277.     identifier is a reserved word
  278.  
  279. msg.scanner.caught.error =\
  280.     scanner caught an error
  281.  
  282. msg.no.paren.catch =\
  283.     missing ( before catch-block condition
  284.  
  285. msg.bad.catchcond =\
  286.     invalid catch block condition
  287.  
  288. msg.no.brace.catchblock =\
  289.     missing '{' before catch-block body
  290.  
  291. msg.try.no.catchfinally =\
  292.     ''try'' without ''catch'' or ''finally''
  293.  
  294. msg.syntax =\
  295.     syntax error
  296.  
  297. # ScriptRuntime
  298. msg.assn.create =\
  299.     Assignment to msg.undefined "{0}" will create a new variable. \
  300.     Add a variable statement at the top level scope to remove this warning.
  301.  
  302. msg.prop.not.found =\
  303.     Property not found.
  304.  
  305. msg.invalid.type =\
  306.     Invalid JavaScript value of type {0}
  307.  
  308. msg.primitive.expected =\
  309.     Primitive type expected (had {0} instead)
  310.  
  311. msg.null.to.object =\
  312.     Cannot convert null to an object.
  313.  
  314. msg.undef.to.object =\
  315.     Cannot convert msg.undefined to an object.
  316.  
  317. msg.cyclic.value =\
  318.     Cyclic {0} value not allowed.
  319.  
  320. msg.is.not.defined =\
  321.     "{0}" is not defined.
  322.  
  323. msg.isnt.function =\
  324.     {0} is not a function.
  325.  
  326. msg.bad.default.value =\
  327.     Object''s getDefaultValue() method returned an object.
  328.  
  329. msg.instanceof.not.object = \
  330.     Can''t use instanceof on a non-object.
  331.  
  332. msg.in.not.object = \
  333.     Can''t use the in operator on a non-object.
  334.  
  335. msg.instanceof.bad.prototype = \
  336.     ''prototype'' property of {0} is not an object.
  337.  
  338. # ScriptableObject
  339. msg.default.value =\
  340.     Cannot find default value for object.
  341.  
  342. msg.zero.arg.ctor =\
  343.     Cannot load class "{0}" which has no zero-parameter constructor.
  344.  
  345. msg.multiple.ctors =\
  346.     Cannot have more than one constructor method, but found both {0} and {1}.
  347.  
  348. msg.ctor.multiple.parms =\
  349.     Can''t define constructor or class {0} since more than one \
  350.     constructor has multiple parameters.
  351.  
  352. msg.extend.scriptable =\
  353.     {0} must extend ScriptableObject in order to define property {1}.
  354.  
  355. msg.bad.getter.parms =\
  356.     In order to define a property, getter {0} must have zero parameters \
  357.     or a single ScriptableObject parameter.
  358.  
  359. msg.obj.getter.parms =\
  360.     Expected static or delegated getter {0} to take a ScriptableObject parameter.
  361.  
  362. msg.getter.static =\
  363.     Getter and setter must both be static or neither be static.
  364.  
  365. msg.setter2.parms =\
  366.     Two-parameter setter must take a ScriptableObject as its first parameter.
  367.  
  368. msg.setter1.parms =\
  369.     Expected single parameter setter for {0}
  370.  
  371. msg.setter2.expected =\
  372.     Expected static or delegated setter {0} to take two parameters.
  373.  
  374. msg.setter.parms =\
  375.     Expected either one or two parameters for setter.
  376.  
  377. # TokenStream
  378. msg.token.replaces.pushback =\
  379.     ungot token {0} replaces pushback token {1}
  380.  
  381. msg.missing.exponent =\
  382.     missing exponent
  383.  
  384. msg.caught.nfe =\
  385.     number format error: {0}
  386.  
  387. msg.unterminated.string.lit =\
  388.     unterminated string literal
  389.  
  390. msg.oct.esc.too.large =\
  391.     octal escape too large
  392.  
  393. msg.nested.comment =\
  394.     nested comment
  395.  
  396. msg.unterminated.comment =\
  397.     unterminated comment
  398.  
  399. msg.unterminated.re.lit =\
  400.     unterminated regular expression literal
  401.  
  402. msg.invalid.re.flag =\
  403.     invalid flag after regular expression
  404.  
  405. msg.no.re.input.for =\
  406.     no input for {0}
  407.  
  408. msg.illegal.character =\
  409.     illegal character
  410.  
  411. # TokensStream warnings
  412. msg.bad.octal.literal =\
  413.     illegal octal literal digit {0}; interpreting it as a decimal digit
  414.  
  415. # Undefined
  416. msg.undefined =\
  417.     The msg.undefined value has no properties.
  418.  
  419. msg.undefined1 =\
  420.     The msg.undefined value has no properties. \
  421.     Property "{0}" was not found in object "{1}".
  422.  
  423. # LiveConnect errors
  424. msg.java.internal.field.type =\
  425.     Internal error: type conversion of {0} to assign to {1} on {2} failed.
  426.  
  427. msg.java.conversion.implicit_method =\
  428.     Can''t find converter method "{0}" on class {1}.
  429.  
  430. msg.java.method.assign =\
  431.     Java method "{0}" cannot be assigned to.
  432.  
  433. msg.java.internal.private =\
  434.     Internal error: attempt to access private/protected field "{0}".
  435.  
  436. java.construmsg.ctor.not.found =\
  437.     No constructor for {0} matching arguments ({1}).
  438.  
  439. msg.java.no_such_method =\
  440.     Can''t find method {0}.
  441.  
  442. msg.script.is.not.constructor =\
  443.     Script objects are not constructors.
  444.  
  445. msg.nonjava.method =\
  446.     Java method "{0}" was invoked with a ''this'' value that was not a Java object.
  447.  
  448. msg.java.member.not.found =\
  449.     Java class "{0}" has no public instance field or method named "{1}".
  450.  
  451.