fixed build console
[groovy.git] / src / main / groovy / ui / InteractiveShell.properties
blobdb94415a74a8a6e1c9713f06ba3456f827ff0902
2 # Copyright 2003-2007 the original author or authors.
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
8 #    http://www.apache.org/licenses/LICENSE-2.0
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
18 # $Id$
22 # CLI messages
25 cli.option.help.description=Display this help message
26 cli.option.version.description=Display the version
28 cli.info.unexpected_args=Unexpected arguments: {0}
29 cli.info.version=Groovy Shell {0}
32 # Command messages
35 command.help.descripion=Displays this help text
36 command.help.available_commands=Available commands:
38 command.exit.descripion=Exit the shell
40 command.discard.descripion=Discards the current statement buffer
42 command.display.descripion=Displays the current statement buffer
43 command.display.buffer_empty=The current buffer is empty.
45 command.explain.descripion=Explains the parsing of the current statement buffer (currently disabled)
46 command.explain.tree_header=Parse tree:
47 command.explain.unparsable=The statement does not parse.
49 command.execute.descripion=Executes the current statement buffer
50 command.execute.not_complete=Statement is not complete.
52 command.binding.descripion=Shows the binding used by the shell
53 command.binding.binding_empty=The current binding is empty.
54 command.binding.available_variables=Available variables:
56 command.discardclasses.descripion=Discards all former unbound class definitions
57 command.discardclasses.classdefs_discarded=All former unbound class definitions are discarded.
59 command.inspect.descripion=Opens an object browser for the expression returned from previous 'go'
60 command.inspect.no_result=Nothing to inspect (preceding 'go' missing?).
63 # Misc messages
66 startup_banner.0=Groovy Shell ({0}, JVM: {1})
67 startup_banner.1=Type 'go' to execute statements; Type 'help' for more information.