- not built -

more string fun


git-svn-id: svn://10.0.0.236/trunk@92976 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rginda%netscape.com 2001-04-24 00:55:24 +00:00
parent f63bb71b74
commit 86a981d20e

View File

@ -36,12 +36,42 @@ msg.type.properties = properties
msg.type.line = line
## messages ##
msg.stop = Stopped for %1$S
msg.cont = Continuing from %1$S
msg.stop = Stopped for %1$S.
msg.cont = Continuing from %1$S.
msg.subscript.load = Subscript %1$S loaded.
# 1 exception name, 2 fileName, 3 lineNumber
msg.eval.error = %1$S: %2$S, line %3$S
msg.eval.threw = Caught exception: %1$S
msg.hello.1 = Welcome to ``venkman'', the JavaScript debugger. Visit
msg.hello.2 = for a sample debugging target.
msg.noproperties = %1$S has no properties
msg.tip.help = Use /help <command-name> for help on specific commands.
msg.noproperties = %1$S has no properties.
msg.no-commandmatch = No commands match ``%1$S''.
msg.commandmatch = Commands matching ``%1$S'' are %2$S.
msg.commandmatch.all = Implemented commands are %1$S.
## commands ##
cmd.commands = commands
cmd.commands.params = [<pattern>]
cmd.commands.help = Lists all command names matching <pattern>, or all command names if pattern is not specified.
cmd.cont = cont
cmd.cont.params =
cmd.cont.help = Continue execution of the debug target.
cmd.eval = eval
cmd.eval.params = <script>
cmd.eval.help = Evaluates <script> in the debug target's current frame. See also /frame and /where.
cmd.frame = frame
cmd.frame.params = [<frame-number>]
cmd.frame.help = Sets the current frame to the one numbered <frame-number>, and displays a summary of the frame. If <frame-number> is not provided, a summary of the current frame will be displayed. Use the /where command to list available frames and frame numbers.
cmd.help = help
cmd.help.params = [<command>]
cmd.help.help = Displays help on <command>, which can be a full command name, or the first few characters of the command name. If <command> matches more than one command, help on all matching commands will be displayed.
cmd.scope = scope
cmd.scope.params =
cmd.scope.help = Lists the properties part of the topmost object in the scope chain for the current frame.
cmd.where = where
cmd.where.params =
cmd.where.help = Displays a summarized list of stack frames in the current call chain.
cmd.quit = quit
cmd.quit.params =
cmd.quit.help = Close this window.