src/jdk.jshell/share/classes/jdk/internal/jshell/tool/resources/l10n.properties

Print this page




   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 #
  25 
  26 jshell.msg.welcome =\
  27 Welcome to JShell -- Version {0}\n\
  28 For an introduction type: /help intro\n
  29 jshell.err.opt.classpath.conflict = Conflicting -classpath option.
  30 jshell.err.opt.classpath.arg = Argument to -classpath missing.
  31 jshell.err.opt.feedback.arg = Argument to -feedback missing. Mode required.
  32 jshell.err.opt.startup.one = Only one -startup or -nostartup option may be used.
  33 jshell.err.opt.unknown = Unknown option: {0}
  34 
  35 jshell.msg.terminated =\
  36 State engine terminated.\n\
  37 Restore definitions with: /reload -restore
  38 
  39 jshell.msg.use.one.of = Use one of: {0}
  40 jshell.msg.see.classes.etc = See /types, /methods, /vars, or /list
  41 jshell.err.arg = Invalid ''{0}'' argument: {1}
  42 jshell.msg.see = See {0} for help.
  43 
  44 jshell.err.file.not.accessible = File ''{1}'' for ''{0}'' is not accessible: {2}
  45 jshell.err.file.not.found = File ''{1}'' for ''{0}'' is not found.
  46 jshell.err.file.exception = File ''{1}'' for ''{0}'' threw exception: {2}
  47 jshell.err.file.filename = ''{0}'' requires a filename argument.
  48 
  49 jshell.err.startup.unexpected.exception = Unexpected exception reading start-up: {0}
  50 jshell.err.unexpected.exception = Unexpected exception: {0}
  51 
  52 jshell.err.no.such.command.or.snippet.id = No such command or snippet id: {0}


 131 jshell.err.cannot.delete.current.mode = The current feedback mode ''{0}'' cannot be deleted, use ''/set feedback'' first -- {1}
 132 jshell.err.cannot.delete.retained.mode = The retained feedback mode ''{0}'' cannot be deleted, use ''/retain feedback'' first -- {1}
 133 jshell.err.may.not.specify.options.and.snippets = Options and snippets must not both be used: {0}
 134 jshell.err.no.such.snippets = No such snippet: {0}
 135 jshell.err.the.snippet.cannot.be.used.with.this.command = This command does not accept the snippet ''{0}'' : {1}
 136 jshell.err.retained.mode.failure = Failure in retained modes (modes cleared) -- {0} {1}
 137 
 138 jshell.console.see.more = <press tab to see more>
 139 jshell.console.do.nothing = Do nothing
 140 jshell.console.choice = Choice: \
 141 
 142 jshell.console.create.variable = Create variable
 143 jshell.console.resolvable = \nThe identifier is resolvable in this context.
 144 jshell.console.no.candidate = \nNo candidate fully qualified names found to import.
 145 jshell.console.incomplete = \nResults may be incomplete; try again later for complete results.
 146 
 147 
 148 help.usage = \
 149 Usage:   jshell <options> <load files>\n\
 150 where possible options include:\n\
 151 \    -classpath <path>    Specify where to find user class files\n\
 152 \    -cp <path>           Specify where to find user class files\n\
 153 \    -startup <file>      One run replacement for the start-up definitions\n\
 154 \    -nostartup           Do not run the start-up definitions\n\
 155 \    -feedback <mode>     Specify the initial feedback mode. The mode may be\n\
 156 \                         predefined (silent, concise, normal, or verbose) or\n\
 157 \                         previously user-defined\n\
 158 \    -q                   Quiet feedback.  Same as: -feedback concise\n\
 159 \    -qq                  Really quiet feedback.  Same as: -feedback silent\n\
 160 \    -v                   Verbose feedback.  Same as: -feedback verbose\n\
 161 \    -J<flag>             Pass <flag> directly to the runtime system.\n\
 162 \                         Use one -J for each runtime flag or flag argument\n\
 163 \    -R<flag>             Pass <flag> to the remote runtime system.\n\
 164 \                         Use one -R for each remote flag or flag argument\n\
 165 \    -help                Print this synopsis of standard options\n\
 166 \    -version             Version information\n
 167 
 168 help.list.summary = list the source you have typed
 169 help.list.args = [<name or id>|-all|-start]
 170 help.list =\
 171 Show the source of snippets, prefaced with the snippet id.\n\
 172 \n\
 173 /list\n\t\
 174     List the currently active snippets of code that you typed or read with /open\n\n\
 175 /list -start\n\t\
 176     List the automatically evaluated start-up snippets\n\n\
 177 /list -all\n\t\
 178     List all snippets including failed, overwritten, dropped, and start-up\n\n\
 179 /list <name>\n\t\
 180     List snippets with the specified name (preference for active snippets)\n\n\
 181 /list <id>\n\t\
 182     List the snippet with the specified snippet id
 183 
 184 help.edit.summary = edit a source entry referenced by name or id
 185 help.edit.args = <name or id>
 186 help.edit =\




   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 #
  25 
  26 jshell.msg.welcome =\
  27 Welcome to JShell -- Version {0}\n\
  28 For an introduction type: /help intro\n
  29 jshell.err.opt.arg = Argument to {0} missing.
  30 jshell.err.opt.invalid = Invalid options: {0}.
  31 jshell.err.opt.one = Only one {0} option may be used.
  32 jshell.err.opt.startup.one = Only one --startup or --no-startup option may be used.
  33 jshell.err.opt.unknown = Unknown option: {0}
  34 
  35 jshell.msg.terminated =\
  36 State engine terminated.\n\
  37 Restore definitions with: /reload -restore
  38 
  39 jshell.msg.use.one.of = Use one of: {0}
  40 jshell.msg.see.classes.etc = See /types, /methods, /vars, or /list
  41 jshell.err.arg = Invalid ''{0}'' argument: {1}
  42 jshell.msg.see = See {0} for help.
  43 
  44 jshell.err.file.not.accessible = File ''{1}'' for ''{0}'' is not accessible: {2}
  45 jshell.err.file.not.found = File ''{1}'' for ''{0}'' is not found.
  46 jshell.err.file.exception = File ''{1}'' for ''{0}'' threw exception: {2}
  47 jshell.err.file.filename = ''{0}'' requires a filename argument.
  48 
  49 jshell.err.startup.unexpected.exception = Unexpected exception reading start-up: {0}
  50 jshell.err.unexpected.exception = Unexpected exception: {0}
  51 
  52 jshell.err.no.such.command.or.snippet.id = No such command or snippet id: {0}


 131 jshell.err.cannot.delete.current.mode = The current feedback mode ''{0}'' cannot be deleted, use ''/set feedback'' first -- {1}
 132 jshell.err.cannot.delete.retained.mode = The retained feedback mode ''{0}'' cannot be deleted, use ''/retain feedback'' first -- {1}
 133 jshell.err.may.not.specify.options.and.snippets = Options and snippets must not both be used: {0}
 134 jshell.err.no.such.snippets = No such snippet: {0}
 135 jshell.err.the.snippet.cannot.be.used.with.this.command = This command does not accept the snippet ''{0}'' : {1}
 136 jshell.err.retained.mode.failure = Failure in retained modes (modes cleared) -- {0} {1}
 137 
 138 jshell.console.see.more = <press tab to see more>
 139 jshell.console.do.nothing = Do nothing
 140 jshell.console.choice = Choice: \
 141 
 142 jshell.console.create.variable = Create variable
 143 jshell.console.resolvable = \nThe identifier is resolvable in this context.
 144 jshell.console.no.candidate = \nNo candidate fully qualified names found to import.
 145 jshell.console.incomplete = \nResults may be incomplete; try again later for complete results.
 146 
 147 
 148 help.usage = \
 149 Usage:   jshell <options> <load files>\n\
 150 where possible options include:\n\
 151 \    --class-path <path>   Specify where to find user class files\n\
 152 \    --startup <file>      One run replacement for the start-up definitions\n\
 153 \    --no-startup          Do not run the start-up definitions\n\
 154 \    --feedback <mode>     Specify the initial feedback mode. The mode may be\n\

 155 \                           predefined (silent, concise, normal, or verbose) or\n\
 156 \                           previously user-defined\n\
 157 \    -q                    Quiet feedback.  Same as: --feedback concise\n\
 158 \    -s                    Really quiet feedback.  Same as: --feedback silent\n\
 159 \    -v                    Verbose feedback.  Same as: --feedback verbose\n\
 160 \    -J<flag>              Pass <flag> directly to the runtime system.\n\
 161 \                            Use one -J for each runtime flag or flag argument\n\
 162 \    -R<flag>              Pass <flag> to the remote runtime system.\n\
 163 \                            Use one -R for each remote flag or flag argument\n\
 164 \    --help                Print this synopsis of standard options\n\
 165 \    --version             Version information\n
 166 
 167 help.list.summary = list the source you have typed
 168 help.list.args = [<name or id>|-all|-start]
 169 help.list =\
 170 Show the source of snippets, prefaced with the snippet id.\n\
 171 \n\
 172 /list\n\t\
 173     List the currently active snippets of code that you typed or read with /open\n\n\
 174 /list -start\n\t\
 175     List the automatically evaluated start-up snippets\n\n\
 176 /list -all\n\t\
 177     List all snippets including failed, overwritten, dropped, and start-up\n\n\
 178 /list <name>\n\t\
 179     List snippets with the specified name (preference for active snippets)\n\n\
 180 /list <id>\n\t\
 181     List the snippet with the specified snippet id
 182 
 183 help.edit.summary = edit a source entry referenced by name or id
 184 help.edit.args = <name or id>
 185 help.edit =\