Messages.properties revision 1002:2f0161551858
1#
2# Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# This code is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License version 2 only, as
7# published by the Free Software Foundation.  Oracle designates this
8# particular file as subject to the "Classpath" exception as provided
9# by Oracle in the LICENSE file that accompanied this code.
10#
11# This code is distributed in the hope that it will be useful, but WITHOUT
12# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14# version 2 for more details (a copy is included in the LICENSE file that
15# accompanied this code).
16#
17# You should have received a copy of the GNU General Public License version
18# 2 along with this work; if not, write to the Free Software Foundation,
19# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20#
21# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22# or visit www.oracle.com if you need additional information or have any
23# questions.
24#
25lexer.error.edit.string.missing.brace=Edit string expression missing closing brace
26lexer.error.here.missing.end.marker=Here string missing end marker "{0}"
27lexer.error.missing.close.quote=Missing close quote
28lexer.error.missing.space.after.number=Missing space after numeric literal
29lexer.error.invalid.hex=Invalid hex digit
30lexer.error.strict.no.octal=cannot use octal escapes in strict mode
31lexer.error.json.invalid.number=Invalid JSON number format
32lexer.error.invalid.escape.char=Invalid escape character
33lexer.error.illegal.identifier.character=Illegal character in identifier
34
35parser.error.illegal.continue.stmt=Illegal continue statement
36parser.error.illegal.break.stmt=Illegal break statement
37parser.error.invalid.lvalue=Invalid left hand side for assignment
38parser.error.undefined.label=Undefined Label "{0}"
39parser.error.duplicate.label=Duplicate Label "{0}"
40parser.error.duplicate.default.in.switch=Switch already has default case
41parser.error.expected.literal=Expected a literal but found {0}
42parser.error.expected.operand=Expected an operand but found {0}
43parser.error.expected.stmt=Expected statement but found {0}
44parser.error.expected.comma=Expected comma but found {0}
45parser.error.expected.property.id=Expected property id but found {0}
46parser.error.expected.lvalue=Expected l-value but found {0}
47parser.error.expected=Expected {0} but found {1}
48parser.error.invalid.return=Invalid return statement
49parser.error.no.func.decl.here=Function declarations can only occur at program or function body level. You should use a function expression here instead.
50parser.error.no.func.decl.here.warn=Function declarations should only occur at program or function body level. Function declaration in nested block was converted to a function expression.
51parser.error.property.redefinition=Property "{0}" already defined
52parser.error.unexpected.token=Unexpected token: {0}
53parser.error.for.each.without.in=for each can only be used with for..in
54parser.error.many.vars.in.for.in.loop=Only one variable allowed in for..in loop
55parser.error.not.lvalue.for.in.loop=Invalid left side value of for..in loop
56parser.error.missing.catch.or.finally=Missing catch or finally after try
57parser.error.regex.unsupported.flag=Unsupported RegExp flag: {0}
58parser.error.regex.repeated.flag=Repeated RegExp flag: {0}
59parser.error.regex.syntax={0}
60parser.error.trailing.comma.in.json=Trailing comma is not allowed in JSON
61parser.error.missing.const.assignment=Missing assignment to constant "{0}"
62
63# strict mode error messages
64parser.error.strict.no.with="with" statement cannot be used in strict mode
65parser.error.strict.name="{0}" cannot be used as {1} in strict mode
66parser.error.strict.cant.delete.ident=cannot delete identifier "{0}" in strict mode
67parser.error.strict.param.redefinition=strict mode function cannot have duplicate parameter name "{0}"
68parser.error.strict.no.octal=cannot use octal value in strict mode
69parser.error.strict.no.func.decl.here=In strict mode, function declarations can only occur at program or function body level. You should use a function expression here instead.
70type.error.strict.getter.setter.poison=In strict mode, "caller", "callee", and "arguments" properties can not be accessed on functions or the arguments object
71
72# not the expected type in a given context
73type.error.not.an.object={0} is not an Object
74type.error.not.a.boolean={0} is not a Boolean
75type.error.not.a.date={0} is not a Date
76type.error.not.a.number={0} is not a Number
77type.error.not.a.regexp={0} is not a RegExp
78type.error.not.a.string={0} is not a String
79type.error.not.a.function={0} is not a function
80type.error.not.a.constructor={0} is not a constructor function
81type.error.not.a.file={0} is not a File
82type.error.not.a.numeric.array={0} is not a numeric array
83type.error.not.a.bytebuffer={0} is not a java.nio.ByteBuffer
84type.error.not.an.arraybuffer.in.dataview=First arg to DataView constructor must be an ArrayBuffer
85type.error.no.reflection.with.classfilter=Java reflection not supported when class filter is present
86
87# operations not permitted on undefined
88type.error.cant.call.undefined=Cannot call undefined
89type.error.cant.read.property.of.undefined=Cannot read property "{0}" from undefined
90type.error.cant.set.property.of.undefined=Cannot set property "{0}" of undefined
91type.error.cant.delete.property.of.undefined=Cannot delete property "{0}" of undefined
92
93# other wrong usages of property
94type.error.property.has.no.setter=Cannot set property "{0}" of {1} that has only a getter
95type.error.cant.set.proto.to.non.object=Cannot set Object {0}'s __proto__ to be a non-object like {1}
96type.error.no.such.function={1} has no such function "{0}"
97type.error.no.such.java.class=No such Java class: {0}
98type.error.no.such.java.constructor=No such Java constructor: {0}
99type.error.improper.constructor.signature=Java constructor signature invalid: {0}
100type.error.cant.get.property=Cannot get property "{0}" of {1}
101type.error.cant.set.property=Cannot set property "{0}" of {1}
102type.error.cant.delete.property=Cannot delete property "{0}" of {1}
103type.error.cant.redefine.property=Cannot redefine property "{0}" of {1}
104type.error.property.not.writable="{0}" is not a writable property of {1}
105type.error.object.non.extensible=Cannot add new property "{0}" to non-extensible {1}
106type.error.__proto__.set.non.extensible=Cannot set __proto__ of non-extensible {0}
107type.error.circular.__proto__.set=Cannot create__proto__ cycle for {0}
108
109# miscellaneous
110type.error.regex.cant.supply.flags=Cannot supply flags when constructing one RegExp from another
111type.error.inconsistent.property.descriptor=inconsistent property descriptor
112type.error.bad.default.value=bad default value: {0}
113type.error.function.apply.expects.array=Function.prototype.apply expects an Array for second argument
114type.error.instanceof.on.non.object=instanceof must be called with a javascript or java object as the right-hand argument
115type.error.cannot.convert.to.interface=object {0} cannot be converted to {1} due to "{2}"
116type.error.array.reduce.invalid.init=invalid initialValue for Array.prototype.reduce
117type.error.array.reduceright.invalid.init=invalid initialValue for Array.prototype.reduceRight
118type.error.cannot.get.default.string=Cannot get default string value
119type.error.cannot.get.default.number=Cannot get default number value
120type.error.cant.apply.with.to.null=Cannot apply "with" to null
121type.error.cant.apply.with.to.undefined=Cannot apply "with" to undefined
122type.error.cant.apply.with.to.non.scriptobject=Cannot apply "with" to non script object
123type.error.in.with.non.object=Right hand side of "in" cannot be non-Object, found {0}
124type.error.prototype.not.an.object="prototype" of {0} is not an Object, it is {1}
125type.error.cant.load.script=Cannot load script from {0}
126type.error.JSON.stringify.cyclic=JSON.stringify got a cyclic data structure
127type.error.cant.convert.string.to.char=Cannot convert string to character; its length must be exactly 1
128type.error.cant.convert.number.to.char=Cannot convert number to character; it's out of 0-65535 range
129type.error.cant.convert.to.java.string=Cannot convert object of type {0} to a Java argument of string type
130type.error.cant.convert.to.java.number=Cannot convert object of type {0} to a Java argument of number type
131type.error.cant.convert.to.javascript.array=Can only convert Java arrays and lists to JavaScript arrays. Can't convert object of type {0}.
132type.error.extend.expects.at.least.one.argument=Java.extend needs at least one argument.
133type.error.extend.expects.at.least.one.type.argument=Java.extend needs at least one type argument.
134type.error.extend.expects.java.types=Java.extend needs Java types as its arguments.
135type.error.extend.ambiguous.defining.class=There is no class loader that can see all of {0} at once.
136type.error.extend.ERROR_FINAL_CLASS=Can not extend final class {0}.
137type.error.extend.ERROR_NON_PUBLIC_CLASS=Can not extend/implement non-public class/interface {0}.
138type.error.extend.ERROR_NO_ACCESSIBLE_CONSTRUCTOR=Can not extend class {0} as it has no public or protected constructors.
139type.error.extend.ERROR_MULTIPLE_SUPERCLASSES=Can not extend multiple classes {0}. At most one of the specified types can be a class, the rest must all be interfaces.
140type.error.extend.ERROR_NO_COMMON_LOADER=Can not find a common class loader for ScriptObject and {0}.
141type.error.extend.ERROR_FINAL_FINALIZER=Can not extend class because {0} has a final finalize method.
142type.error.no.constructor.matches.args=Can not construct {0} with the passed arguments; they do not match any of its constructor signatures.
143type.error.no.method.matches.args=Can not invoke method {0} with the passed arguments; they do not match any of its method signatures.
144type.error.method.not.constructor=Java method {0} can't be used as a constructor.
145type.error.env.not.object=$ENV must be an Object.
146type.error.unsupported.java.to.type=Unsupported Java.to target type {0}.
147type.error.constructor.requires.new=Constructor {0} requires 'new'.
148type.error.new.on.nonpublic.javatype=new cannot be used with non-public java type {0}.
149
150range.error.dataview.constructor.offset=Wrong offset or length in DataView constructor
151range.error.dataview.offset=Offset is outside the bounds of the DataView
152range.error.inappropriate.array.length=inappropriate array length: {0}
153range.error.inappropriate.array.buffer.length=inappropriate array buffer length: {0}
154range.error.invalid.fraction.digits=fractionDigits argument to {0} must be in [0, 20]
155range.error.invalid.precision=precision argument toPrecision() must be in [1, 21]
156range.error.invalid.radix=radix argument must be in [2, 36]
157range.error.invalid.date=Invalid Date
158range.error.too.many.errors=Script contains too many errors: {0} errors
159range.error.concat.string.too.big=Concatenated String is too big
160
161reference.error.not.defined="{0}" is not defined
162reference.error.cant.be.used.as.lhs="{0}" can not be used as the left-hand side of assignment
163
164syntax.error.invalid.json=Invalid JSON: {0}
165syntax.error.strict.cant.delete=cannot delete "{0}" in strict mode
166syntax.error.redeclare.variable=Variable "{0}" has already been declared
167syntax.error.assign.constant=Assignment to constant "{0}"
168
169io.error.cant.write=cannot write "{0}"
170config.error.no.dest=no destination directory supplied
171
172uri.error.bad.uri=Bad URI "{0}" near offset {1}
173
174