src/jdk/nashorn/internal/runtime/resources/Messages.properties

Print this page




  99 type.error.no.such.java.constructor=No such Java constructor: {0}
 100 type.error.improper.constructor.signature=Java constructor signature invalid: {0}
 101 type.error.cant.get.property=Cannot get property "{0}" of {1}
 102 type.error.cant.set.property=Cannot set property "{0}" of {1}
 103 type.error.cant.delete.property=Cannot delete property "{0}" of {1}
 104 type.error.cant.redefine.property=Cannot redefine property "{0}" of {1}
 105 type.error.property.not.writable="{0}" is not a writable property of {1}
 106 type.error.object.non.extensible=Cannot add new property "{0}" to non-extensible {1}
 107 type.error.__proto__.set.non.extensible=Cannot set __proto__ of non-extensible {0}
 108 type.error.circular.__proto__.set=Cannot create__proto__ cycle for {0}
 109 
 110 # miscellaneous
 111 type.error.regex.cant.supply.flags=Cannot supply flags when constructing one RegExp from another
 112 type.error.inconsistent.property.descriptor=inconsistent property descriptor
 113 type.error.bad.default.value=bad default value: {0}
 114 type.error.function.apply.expects.array=Function.prototype.apply expects an Array for second argument
 115 type.error.instanceof.on.non.object=instanceof must be called with a javascript or java object as the right-hand argument
 116 type.error.cannot.convert.to.interface=object {0} cannot be converted to {1} due to "{2}"
 117 type.error.array.reduce.invalid.init=invalid initialValue for Array.prototype.reduce
 118 type.error.array.reduceright.invalid.init=invalid initialValue for Array.prototype.reduceRight

 119 type.error.cannot.get.default.string=Cannot get default string value
 120 type.error.cannot.get.default.number=Cannot get default number value
 121 type.error.cant.apply.with.to.null=Cannot apply "with" to null
 122 type.error.cant.apply.with.to.undefined=Cannot apply "with" to undefined
 123 type.error.cant.apply.with.to.non.scriptobject=Cannot apply "with" to non script object
 124 type.error.in.with.non.object=Right hand side of "in" cannot be non-Object, found {0}
 125 type.error.prototype.not.an.object="prototype" of {0} is not an Object, it is {1}
 126 type.error.cant.load.script=Cannot load script from {0}
 127 type.error.JSON.stringify.cyclic=JSON.stringify got a cyclic data structure
 128 type.error.cant.convert.string.to.char=Cannot convert string to character; its length must be exactly 1
 129 type.error.cant.convert.number.to.char=Cannot convert number to character; it is out of 0-65535 range
 130 type.error.cant.convert.to.java.string=Cannot convert object of type {0} to a Java argument of string type
 131 type.error.cant.convert.to.java.number=Cannot convert object of type {0} to a Java argument of number type
 132 type.error.cant.convert.to.javascript.array=Can only convert Java arrays and lists to JavaScript arrays. Cannot convert object of type {0}.
 133 type.error.extend.expects.at.least.one.argument=Java.extend needs at least one argument.
 134 type.error.extend.expects.at.least.one.type.argument=Java.extend needs at least one type argument.
 135 type.error.extend.expects.java.types=Java.extend needs Java types as its arguments.
 136 type.error.extend.ambiguous.defining.class=There is no class loader that can see all of {0} at once.
 137 type.error.extend.ERROR_FINAL_CLASS=Can not extend final class {0}.
 138 type.error.extend.ERROR_NON_PUBLIC_CLASS=Can not extend/implement non-public class/interface {0}.


 149 type.error.new.on.nonpublic.javatype=new cannot be used with non-public java type {0}.
 150 
 151 range.error.dataview.constructor.offset=Wrong offset or length in DataView constructor
 152 range.error.dataview.offset=Offset is outside the bounds of the DataView
 153 range.error.inappropriate.array.length=inappropriate array length: {0}
 154 range.error.inappropriate.array.buffer.length=inappropriate array buffer length: {0}
 155 range.error.invalid.fraction.digits=fractionDigits argument to {0} must be in [0, 20]
 156 range.error.invalid.precision=precision argument toPrecision() must be in [1, 21]
 157 range.error.invalid.radix=radix argument must be in [2, 36]
 158 range.error.invalid.date=Invalid Date
 159 range.error.too.many.errors=Script contains too many errors: {0} errors
 160 range.error.concat.string.too.big=Concatenated String is too big
 161 
 162 reference.error.not.defined="{0}" is not defined
 163 reference.error.cant.be.used.as.lhs="{0}" can not be used as the left-hand side of assignment
 164 
 165 syntax.error.invalid.json=Invalid JSON: {0}
 166 syntax.error.strict.cant.delete=cannot delete "{0}" in strict mode
 167 syntax.error.redeclare.variable=Variable "{0}" has already been declared
 168 syntax.error.assign.constant=Assignment to constant "{0}"

 169 
 170 io.error.cant.write=cannot write "{0}"
 171 config.error.no.dest=no destination directory supplied
 172 
 173 uri.error.bad.uri=Bad URI "{0}" near offset {1}
 174 


  99 type.error.no.such.java.constructor=No such Java constructor: {0}
 100 type.error.improper.constructor.signature=Java constructor signature invalid: {0}
 101 type.error.cant.get.property=Cannot get property "{0}" of {1}
 102 type.error.cant.set.property=Cannot set property "{0}" of {1}
 103 type.error.cant.delete.property=Cannot delete property "{0}" of {1}
 104 type.error.cant.redefine.property=Cannot redefine property "{0}" of {1}
 105 type.error.property.not.writable="{0}" is not a writable property of {1}
 106 type.error.object.non.extensible=Cannot add new property "{0}" to non-extensible {1}
 107 type.error.__proto__.set.non.extensible=Cannot set __proto__ of non-extensible {0}
 108 type.error.circular.__proto__.set=Cannot create__proto__ cycle for {0}
 109 
 110 # miscellaneous
 111 type.error.regex.cant.supply.flags=Cannot supply flags when constructing one RegExp from another
 112 type.error.inconsistent.property.descriptor=inconsistent property descriptor
 113 type.error.bad.default.value=bad default value: {0}
 114 type.error.function.apply.expects.array=Function.prototype.apply expects an Array for second argument
 115 type.error.instanceof.on.non.object=instanceof must be called with a javascript or java object as the right-hand argument
 116 type.error.cannot.convert.to.interface=object {0} cannot be converted to {1} due to "{2}"
 117 type.error.array.reduce.invalid.init=invalid initialValue for Array.prototype.reduce
 118 type.error.array.reduceright.invalid.init=invalid initialValue for Array.prototype.reduceRight
 119 type.error.assign.constant=Assignment to constant "{0}"
 120 type.error.cannot.get.default.string=Cannot get default string value
 121 type.error.cannot.get.default.number=Cannot get default number value
 122 type.error.cant.apply.with.to.null=Cannot apply "with" to null
 123 type.error.cant.apply.with.to.undefined=Cannot apply "with" to undefined
 124 type.error.cant.apply.with.to.non.scriptobject=Cannot apply "with" to non script object
 125 type.error.in.with.non.object=Right hand side of "in" cannot be non-Object, found {0}
 126 type.error.prototype.not.an.object="prototype" of {0} is not an Object, it is {1}
 127 type.error.cant.load.script=Cannot load script from {0}
 128 type.error.JSON.stringify.cyclic=JSON.stringify got a cyclic data structure
 129 type.error.cant.convert.string.to.char=Cannot convert string to character; its length must be exactly 1
 130 type.error.cant.convert.number.to.char=Cannot convert number to character; it is out of 0-65535 range
 131 type.error.cant.convert.to.java.string=Cannot convert object of type {0} to a Java argument of string type
 132 type.error.cant.convert.to.java.number=Cannot convert object of type {0} to a Java argument of number type
 133 type.error.cant.convert.to.javascript.array=Can only convert Java arrays and lists to JavaScript arrays. Cannot convert object of type {0}.
 134 type.error.extend.expects.at.least.one.argument=Java.extend needs at least one argument.
 135 type.error.extend.expects.at.least.one.type.argument=Java.extend needs at least one type argument.
 136 type.error.extend.expects.java.types=Java.extend needs Java types as its arguments.
 137 type.error.extend.ambiguous.defining.class=There is no class loader that can see all of {0} at once.
 138 type.error.extend.ERROR_FINAL_CLASS=Can not extend final class {0}.
 139 type.error.extend.ERROR_NON_PUBLIC_CLASS=Can not extend/implement non-public class/interface {0}.


 150 type.error.new.on.nonpublic.javatype=new cannot be used with non-public java type {0}.
 151 
 152 range.error.dataview.constructor.offset=Wrong offset or length in DataView constructor
 153 range.error.dataview.offset=Offset is outside the bounds of the DataView
 154 range.error.inappropriate.array.length=inappropriate array length: {0}
 155 range.error.inappropriate.array.buffer.length=inappropriate array buffer length: {0}
 156 range.error.invalid.fraction.digits=fractionDigits argument to {0} must be in [0, 20]
 157 range.error.invalid.precision=precision argument toPrecision() must be in [1, 21]
 158 range.error.invalid.radix=radix argument must be in [2, 36]
 159 range.error.invalid.date=Invalid Date
 160 range.error.too.many.errors=Script contains too many errors: {0} errors
 161 range.error.concat.string.too.big=Concatenated String is too big
 162 
 163 reference.error.not.defined="{0}" is not defined
 164 reference.error.cant.be.used.as.lhs="{0}" can not be used as the left-hand side of assignment
 165 
 166 syntax.error.invalid.json=Invalid JSON: {0}
 167 syntax.error.strict.cant.delete=cannot delete "{0}" in strict mode
 168 syntax.error.redeclare.variable=Variable "{0}" has already been declared
 169 syntax.error.assign.constant=Assignment to constant "{0}"
 170 syntax.error.unprotected.switch.declaration=Unsupported {0} declaration in unprotected switch statement
 171 
 172 io.error.cant.write=cannot write "{0}"
 173 config.error.no.dest=no destination directory supplied
 174 
 175 uri.error.bad.uri=Bad URI "{0}" near offset {1}
 176