org.mozilla.javascript.tools.resources.Messages.properties Maven / Gradle / Ivy
The newest version!
#
# JavaScript tools messages file.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
msg.expected.string.arg =\
Expected a string argument.
msg.class.not.found =\
Class "{0}" not found.
msg.couldnt.open =\
Couldn''t open file "{0}".
msg.couldnt.open.url =\
Couldn''t open URL "{0}": {1}.
msg.couldnt.read.source =\
Couldn''t read source file "{0}": {1}.
msg.no-opt =\
Must have the org.mozilla.javascript.optimizer package available \
to compile to class files.
msg.shell.invalid =\
Invalid option "{0}"
msg.shell.usage =\
Usage: java {0} [options...] [files]\n\
Valid options are:\n\
\ -?, -help Displays help messages.\n\
\ -w Enable warnings.\n\
\ -version 100|110|120|130|140|150|160|170|180|200\n\
\ Set a specific language version.\n\
\ -opt [-1|0-9] Set optimization level.\n\
\ -f script-filename Execute script file, or "-" for interactive.\n\
\ -e script-source Evaluate inline script.\n\
\ -modules [uri] Add a single path or URL element to the CommonJS\n\
\ module search path. (implies -require)\n\
\ -require Enable CommonJS module support.\n\
\ -sandbox Enable CommonJS sandbox mode. (implies -require)\n\
\ -debug Generate debug code.\n\
\ -strict Enable strict mode warnings.\n\
\ -fatal-warnings Treat warnings as errors.\n\
\ -encoding charset Use specified character encoding as default when reading scripts.
msg.help =\
\n\
Command Description \n\
======= =========== \n\
help() Display usage and help messages. \n\
defineClass(className) Define an extension using the Java class \n\
\ named with the string argument. \n\
\ Uses ScriptableObject.defineClass(). \n\
load(["foo.js", ...]) Load JavaScript source files named by \n\
\ string arguments. \n\
loadClass(className) Load a class named by a string argument. \n\
\ The class must be a script compiled to a \n\
\ class file. \n\
print([expr ...]) Evaluate and print expressions. \n\
write([expr ...]) Evaluate and print just like "print" but without a trailing newline. \n\
quit() Quit the shell. \n\
version([number]) Get or set the JavaScript version number. \n\
gc() Runs the garbage collector.\n\
spawn(arg) Evaluate function or script name on a new thread \n\
sync(function [, obj]) Creates a synchronized version of the function, \n\
\ where the synchronization object is the obj \n\
\ argument or "this" if obj is undefined\n\
readline([prompt])\n\
\ Reads a line of input from the console terminal. \n\
\ "prompt" is optional, and if included, will be printed \n\
\ before taking the input. \n\
readFile(fileName [, encoding])\n\
\ Returns the content of the file as a string. \n\
\ Encoding of the string can be optionally specified. \n\
readUrl(url [, encoding]) \n\
\ Similar to readFile, reads the contents of the url.\n\
runCommand(name ...) Runs a specified shell command. Additional arguments are \n\
\ passed to the command \n\
seal(args ...) Seals the supplied objects \n\
toint32(arg) Converts the argument into a 32-bit integer \n\
serialize(obj, fileName) \n\
\ Serializes an object and saves it to a file \n\
deserialize(fileName) Reconstructs a serialized object \n\
environment Returns the current environment object \n\
history Displays the shell command history
msg.warning =\
warning: {0}
msg.format1 =\
{0}
msg.format2 =\
line {0}: {1}
msg.format3 =\
"{0}", line {1}: {2}
msg.uncaughtJSException =\
exception from uncaught JavaScript throw: {0}
msg.uncaughtEcmaError =\
uncaught JavaScript runtime exception: {0}
msg.jsc.bad.usage =\
Didn''t understand "{1}". \n\
For more information, try java {0} -h
msg.jsc.usage =\
Usage: java {0} [OPTION]... SOURCE...\n\
Valid options are: \n\
\ -version VERSION Use the specified language version.\n\
\ VERSION should be one of 100|110|120|130|140|150|160|170.\n\
\ -opt LEVEL Use optimization with the specified level.\n\
\ LEVEL should be one of 0..9.\n\
\ -debug, -g Include debug information.\n\
\ -nosource Do not include source to function objects.\n\
\ It makes f.toString() useless and violates ECMAScript\n\
\ standard but makes generated classes smaller and\n\
\ saves memory.\n\
\ -o CLASSNAME Use specified name as the last component of the main\n\
\ generated class name. When specified, only one script\n\
\ SOURCE is allowed. If omitted, it defaults to source\n\
\ name with stripped .js suffix.\n\
\ -package PACKAGE Place generated classes in the specified package.\n\
\ -d DIRECTORY Use DIRECTORY as destination directory for generated\n\
\ classes. If omitted, it defaults to parent directory\n\
\ of SOURCE.\n\
\ -encoding charset Sets the character encoding of the source files. \n\
\ -extends CLASS The main generated class will extend the specified\n\
\ class CLASS.\n\
\ -implements INTERFACE1,INTERFACE2,... The main generated class will\n\
\ implement the specified list of interfaces.\n\
\ -main-method-class CLASS Specify the class name used for main method \n\
\ implementation. The class must have a method matching\n\
\ "public static void main(Script sc, String[] args)"\n\
\ -observe-instruction-count Generate code that contains callbacks to \n\
\ accumulate counts of executed instructions. Code \n\
\ compiled with this flag can be monitored using \n\
\ Context.setInstructionObserverThreshold. \n\
\ -help, --help, -h Print this help and exit.\n\
msg.no.file =\
A file name must be specified to compile.
msg.invalid.classfile.name =\
File "{0}" is not a valid class file name.
msg.extension.not.js =\
File "{0}" is not a valid js file name.
msg.jsfile.not.found=\
File "{0}" not found.
msg.multiple.js.to.file =\
Cannot compile multiple js files to "{0}".
msg.package.name =\
"{0}" is not a valid package name.
msg.spawn.args =\
Argument to spawn() must be a function or script.
msg.must.implement.Script =\
Argument to loadClass() must be the name of a class that implements \
the Script interface. Class files generated by compiling scripts \
will implement Script.
msg.must.implement.Scriptable =\
Argument to defineClass() must be the name of a class that implements \
the Scriptable interface.
msg.runCommand.bad.args =\
The first argument to runCommand must be a command name.
msg.runCommand.bad.env =\
A value of the env property of option object for runCommnad must be an \
object.
msg.shell.seal.not.object =\
seal function can only be applied to objects
msg.shell.seal.not.scriptable =\
seal function supports only sealing of ScriptableObject instances
msg.shell.readFile.bad.args =\
readFile require at least file path to be specified
msg.shell.readUrl.bad.args =\
readUrl require at least file path to be specified
msg.shell.bad.function.scope =\
Wrong scope object for shell function: {0}
msg.idswitch.same_string =\
The string {0} is used second time in the switch code. \
Previous occurrence was at line {1}
msg.idswitch.file_end_in_switch =\
End of file inside tag {0}
msg.idswitch.bad_tag_order =\
String switch tag {0} is not allowed here
msg.idswitch.no_end_with_value =\
End for tag {0} can not contain value
msg.idswitch.no_value_allowed =\
Tag {0} can not contain value
msg.idswitch.no_end_usage =\
Tag {0} can not be used as end tag
msg.idswitch.no_file_argument =\
File argument should be given
msg.idswitch.too_many_arguments =\
Too many arguments are given
msg.idswitch.bad_option =\
Invalid option {0}
msg.idswitch.bad_option_char =\
Invalid option letter {0}
msg.idswitch.bad_invocation =\
StringIdMap: {0}\n\
For more information, try\n\
java org.mozilla.javascript.tools.idswitch.StringIdMap --help
msg.idswitch.io_error =\
StringIdMap: IO error, {0}
msg.idswitch.usage = \
Usage: java org.mozilla.javascript.tools.idswitch.StringIdMap [OPTIONS] JAVA_SOURCE_FILE\n\
Generates efficient string dispatch code in JAVA_SOURCE_FILE.\n\
The resulting Java source fragment replaces the old dispatch code.\n\
If JAVA_SOURCE_FILE is -, standard input is used for Java source and the\n\
result is sent to standard output.\n\
\n\
\ -h, --help display this help and exit\n\
\ --version display version information and exit\n\
\n\
Note: the original file will be overwritten without any backup actions\n\
\ and all code inside #generated# tag will be replaced by new one.
msg.idswitch.version = \
org.mozilla.javascript.tools.idswitch.StringIdMap version 0.2