mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-04 19:33:18 +00:00
Bug 871697 - GCLI: review strings and l10n comment, fix wrong strings disconnectDesc and disconnectManual; r=jwalker
This commit is contained in:
parent
bb24e88a46
commit
c7be86c0f8
@ -11,533 +11,320 @@
|
||||
# A good criteria is the language in which you'd find the best
|
||||
# documentation on web development on the web.
|
||||
|
||||
# LOCALIZATION NOTE (canonDescNone): Short string used to describe any command
|
||||
# or command parameter when no description has been provided.
|
||||
# For each command there are in general two strings. As an example consider
|
||||
# the 'pref' command.
|
||||
# commandDesc (e.g. prefDesc for the command 'pref'): this string contains a
|
||||
# very short description of the command. It's designed to be shown in a menu
|
||||
# alongside the command name, which is why it should be as short as possible.
|
||||
# commandManual (e.g. prefManual for the command 'pref'): this string will
|
||||
# contain a fuller description of the command. It's diplayed when the user
|
||||
# asks for help about a specific command (e.g. 'help pref').
|
||||
|
||||
# LOCALIZATION NOTE: This message is used to describe any command or command
|
||||
# parameter when no description has been provided.
|
||||
canonDescNone=(No description)
|
||||
|
||||
# LOCALIZATION NOTE (canonDefaultGroupName): The default name for a group of
|
||||
# parameters.
|
||||
# LOCALIZATION NOTE: The default name for a group of parameters.
|
||||
canonDefaultGroupName=Options
|
||||
|
||||
# LOCALIZATION NOTE (canonProxyDesc): A very short description of a set of
|
||||
# remote commands. This string is designed to be shown in a menu alongside the
|
||||
# command name, which is why it should be as short as possible. See
|
||||
# canonProxyManual for a fuller description of what it does.
|
||||
# LOCALIZATION NOTE (canonProxyDesc, canonProxyManual): These commands are
|
||||
# used to execute commands on a remote system (using a proxy). Parameters: %S
|
||||
# is the name of the remote system.
|
||||
canonProxyDesc=Execute a command on %S
|
||||
|
||||
# LOCALIZATION NOTE (canonProxyManual): A fuller description of a set of
|
||||
# remote commands. Displayed when the user asks for help on what it does.
|
||||
canonProxyManual=A set of commands that are executed on a remote system. The remote system is reached via %S
|
||||
|
||||
# LOCALIZATION NOTE (canonProxyExists): An error message displayed when we try
|
||||
# to add new command (via a proxy) where one already exists in that name.
|
||||
# LOCALIZATION NOTE: This error message is displayed when we try to add a new
|
||||
# command (using a proxy) where one already exists with the same name.
|
||||
canonProxyExists=There is already a command called '%S'
|
||||
|
||||
# LOCALIZATION NOTE (cliEvalJavascript): The special '{' command allows entry
|
||||
# of JavaScript like traditional developer tool command lines. This describes
|
||||
# the '{' command.
|
||||
# LOCALIZATION NOTE: This message describes the '{' command, which allows
|
||||
# entry of JavaScript like traditional developer tool command lines.
|
||||
cliEvalJavascript=Enter JavaScript directly
|
||||
|
||||
# LOCALIZATION NOTE (cliUnusedArg): When the command line has more arguments
|
||||
# than the current command can understand this is the error message shown to
|
||||
# the user.
|
||||
# LOCALIZATION NOTE: This message is displayed when the command line has more
|
||||
# arguments than the current command can understand.
|
||||
cliUnusedArg=Too many arguments
|
||||
|
||||
# LOCALIZATION NOTE (cliOptions): The title of the dialog which displays the
|
||||
# options that are available to the current command.
|
||||
# LOCALIZATION NOTE: The title of the dialog which displays the options that
|
||||
# are available to the current command.
|
||||
cliOptions=Available Options
|
||||
|
||||
# LOCALIZATION NOTE (fileErrNotExists): Error message given when a file
|
||||
# argument points to a file that does not exist, but should (e.g. for use with
|
||||
# File->Open) %1$S is a filename
|
||||
# LOCALIZATION NOTE: Error message given when a file argument points to a file
|
||||
# that does not exist, but should (e.g. for use with File->Open) %1$S is a
|
||||
# filename
|
||||
fileErrNotExists='%1$S' doesn't exist
|
||||
|
||||
# LOCALIZATION NOTE (fileErrExists): Error message given when a file argument
|
||||
# points to a file that exists, but should not (e.g. for use with File->Save
|
||||
# As) %1$S is a filename
|
||||
# LOCALIZATION NOTE: Error message given when a file argument points to a file
|
||||
# that exists, but should not (e.g. for use with File->Save As) %1$S is a
|
||||
# filename
|
||||
fileErrExists='%1$S' already exists
|
||||
|
||||
# LOCALIZATION NOTE (fileErrIsNotFile): Error message given when a file
|
||||
# argument points to a non-file, when a file is needed. %1$S is a filename
|
||||
# LOCALIZATION NOTE: Error message given when a file argument points to a
|
||||
# non-file, when a file is needed. %1$S is a filename
|
||||
fileErrIsNotFile='%1$S' is not a file
|
||||
|
||||
# LOCALIZATION NOTE (fileErrIsNotDirectory): Error message given when a file
|
||||
# argument points to a non-directory, when a directory is needed (e.g. for use
|
||||
# with 'cd') %1$S is a filename
|
||||
# LOCALIZATION NOTE: Error message given when a file argument points to a
|
||||
# non-directory, when a directory is needed (e.g. for use with 'cd') %1$S is a
|
||||
# filename
|
||||
fileErrIsNotDirectory='%1$S' is not a directory
|
||||
|
||||
# LOCALIZATION NOTE (fileErrDoesntMatch): Error message given when a file
|
||||
# argument does not match the specified regular expression %1$S is a filename
|
||||
# %2$S is a regular expression
|
||||
# LOCALIZATION NOTE: Error message given when a file argument does not match
|
||||
# the specified regular expression %1$S is a filename %2$S is a regular
|
||||
# expression
|
||||
fileErrDoesntMatch='%1$S' does not match '%2$S'
|
||||
|
||||
# LOCALIZATION NOTE (fieldSelectionSelect): When a command has a parameter
|
||||
# that has a number of pre-defined options the user interface presents these
|
||||
# in a drop-down menu, where the first 'option' is an indicator that a
|
||||
# selection should be made. This string describes that first option.
|
||||
# LOCALIZATION NOTE: When a command has a parameter that has a number of
|
||||
# pre-defined options the user interface presents these in a drop-down menu,
|
||||
# where the first 'option' is an indicator that a selection should be made.
|
||||
# This string describes that first option.
|
||||
fieldSelectionSelect=Select a %S…
|
||||
|
||||
# LOCALIZATION NOTE (fieldArrayAdd): When a command has a parameter that can
|
||||
# be repeated a number of times (e.g. like the 'cat a.txt b.txt' command) the
|
||||
# user interface presents buttons to add and remove arguments. This string is
|
||||
# used to add arguments.
|
||||
# LOCALIZATION NOTE (fieldArrayAdd, fieldArrayDel): When a command has a
|
||||
# parameter that can be repeated multiple times (e.g. like the 'cat a.txt
|
||||
# b.txt' command) the user interface presents buttons to add and remove
|
||||
# arguments. This string is used to add arguments.
|
||||
fieldArrayAdd=Add
|
||||
|
||||
# LOCALIZATION NOTE (fieldArrayDel): When a command has a parameter that can
|
||||
# be repeated a number of times (e.g. like the 'cat a.txt b.txt' command) the
|
||||
# user interface presents buttons to add and remove arguments. This string is
|
||||
# used to remove arguments.
|
||||
fieldArrayDel=Delete
|
||||
|
||||
# LOCALIZATION NOTE (fieldMenuMore): When the menu has displayed all the
|
||||
# matches that it should (i.e. about 10 items) then we display this to alert
|
||||
# the user that more matches are available.
|
||||
# LOCALIZATION NOTE: When the menu has displayed all the matches that it
|
||||
# should (i.e. about 10 items) then we display this to alert the user that
|
||||
# more matches are available.
|
||||
fieldMenuMore=More matches, keep typing
|
||||
|
||||
# LOCALIZATION NOTE (jstypeParseScope): The command line provides completion
|
||||
# for JavaScript commands, however there are times when the scope of what
|
||||
# we're completing against can't be used. This error message is displayed when
|
||||
# this happens.
|
||||
# LOCALIZATION NOTE: The command line provides completion for JavaScript
|
||||
# commands, however there are times when the scope of what we're completing
|
||||
# against can't be used. This error message is displayed when this happens.
|
||||
jstypeParseScope=Scope lost
|
||||
|
||||
# LOCALIZATION NOTE (jstypeParseMissing): When the command line is doing
|
||||
# JavaScript completion, sometimes the property to be completed does not
|
||||
# exist. This error message is displayed when this happens.
|
||||
# LOCALIZATION NOTE (jstypeParseMissing, jstypeBeginSyntax,
|
||||
# jstypeBeginUnterm): These error messages are displayed when the command line
|
||||
# is doing JavaScript completion and encounters errors.
|
||||
jstypeParseMissing=Can't find property '%S'
|
||||
|
||||
# LOCALIZATION NOTE (jstypeBeginSyntax): When the command line is doing
|
||||
# JavaScript completion using invalid JavaScript, this error message is
|
||||
# displayed.
|
||||
jstypeBeginSyntax=Syntax error
|
||||
|
||||
# LOCALIZATION NOTE (jstypeBeginUnterm): When the command line is doing
|
||||
# JavaScript completion using a string that is not properly terminated, this
|
||||
# error message is displayed.
|
||||
jstypeBeginUnterm=Unterminated string literal
|
||||
|
||||
# LOCALIZATION NOTE (jstypeParseError): If the system for providing JavaScript
|
||||
# completions encounters and error it displays this.
|
||||
# LOCALIZATION NOTE: This message is displayed if the system for providing
|
||||
# JavaScript completions encounters and error it displays this.
|
||||
jstypeParseError=Error
|
||||
|
||||
# LOCALIZATION NOTE (typesNumberNan): When the command line is passed a
|
||||
# number, however the input string is not a valid number, this error message
|
||||
# is displayed.
|
||||
# LOCALIZATION NOTE (typesNumberNan, typesNumberNotInt2, typesDateNan): These
|
||||
# error messages are displayed when the command line is passed a variable
|
||||
# which has the wrong format and can't be converted. Parameters: %S is the
|
||||
# passed variable.
|
||||
typesNumberNan=Can't convert "%S" to a number.
|
||||
|
||||
# LOCALIZATION NOTE (typesNumberMax): When the command line is passed a
|
||||
# number, but the number is bigger than the largest allowed number, this error
|
||||
# message is displayed.
|
||||
typesNumberMax=%1$S is greater than maximum allowed: %2$S.
|
||||
|
||||
# LOCALIZATION NOTE (typesNumberMin): When the command line is passed a
|
||||
# number, but the number is lower than the smallest allowed number, this error
|
||||
# message is displayed.
|
||||
typesNumberMin=%1$S is smaller than minimum allowed: %2$S.
|
||||
|
||||
# LOCALIZATION NOTE (typesNumberNotInt2): When the command line is passed a
|
||||
# number, but the number has a decimal part and floats are not allowed.
|
||||
typesNumberNotInt2=Can't convert "%S" to an integer.
|
||||
|
||||
# LOCALIZATION NOTE (typesDateNan): When the command line is passed a date,
|
||||
# however the input string is not a valid date, this error message is
|
||||
# displayed.
|
||||
typesDateNan=Can't convert "%S" to a date.
|
||||
|
||||
# LOCALIZATION NOTE (typesDateMax): When the command line is passed a date,
|
||||
# but the number is later than the latest allowed date, this error message is
|
||||
# displayed.
|
||||
# LOCALIZATION NOTE (typesNumberMax, typesNumberMin, typesDateMax,
|
||||
# typesDateMin): These error messages are displayed when the command line is
|
||||
# passed a variable which has a value out of range (number or date).
|
||||
# Parameters: %1$S is the passed variable, %2$S is the limit value.
|
||||
typesNumberMax=%1$S is greater than maximum allowed: %2$S.
|
||||
typesNumberMin=%1$S is smaller than minimum allowed: %2$S.
|
||||
typesDateMax=%1$S is later than maximum allowed: %2$S.
|
||||
|
||||
# LOCALIZATION NOTE (typesDateMin): When the command line is passed a date,
|
||||
# but the date is earlier than the earliest allowed number, this error message
|
||||
# is displayed.
|
||||
typesDateMin=%1$S is earlier than minimum allowed: %2$S.
|
||||
|
||||
# LOCALIZATION NOTE (typesSelectionNomatch): When the command line is passed
|
||||
# an option with a limited number of correct values, but the passed value is
|
||||
# not one of them, this error message is displayed.
|
||||
# LOCALIZATION NOTE: This error message is displayed when the command line is
|
||||
# passed an option with a limited number of correct values, but the passed
|
||||
# value is not one of them.
|
||||
typesSelectionNomatch=Can't use '%S'.
|
||||
|
||||
# LOCALIZATION NOTE (nodeParseSyntax): When the command line is expecting a
|
||||
# CSS query string, however the passed string is not valid, this error message
|
||||
# is displayed.
|
||||
# LOCALIZATION NOTE: This error message is displayed when the command line is
|
||||
# expecting a CSS query string, however the passed string is not valid.
|
||||
nodeParseSyntax=Syntax error in CSS query
|
||||
|
||||
# LOCALIZATION NOTE (nodeParseMultiple): When the command line is expecting a
|
||||
# CSS string that matches a single node, but more than one node matches, this
|
||||
# error message is displayed.
|
||||
# LOCALIZATION NOTE (nodeParseMultiple, nodeParseNone): These error messages
|
||||
# are displayed when the command line is expecting a CSS string that matches a
|
||||
# single node, but more nodes (or none) match.
|
||||
nodeParseMultiple=Too many matches (%S)
|
||||
|
||||
# LOCALIZATION NOTE (nodeParseNone): When the command line is expecting a CSS
|
||||
# string that matches a single node, but no nodes match, this error message is
|
||||
# displayed.
|
||||
nodeParseNone=No matches
|
||||
|
||||
# LOCALIZATION NOTE (helpDesc): A very short description of the 'help'
|
||||
# command. This string is designed to be shown in a menu alongside the command
|
||||
# name, which is why it should be as short as possible. See helpManual for a
|
||||
# fuller description of what it does.
|
||||
# LOCALIZATION NOTE (helpDesc, helpManual, helpSearchDesc, helpSearchManual3):
|
||||
# These strings describe the "help" command, used to display a description of
|
||||
# a command (e.g. "help pref"), and its parameter 'search'.
|
||||
helpDesc=Get help on the available commands
|
||||
|
||||
# LOCALIZATION NOTE (helpManual): A fuller description of the 'help' command.
|
||||
# Displayed when the user asks for help on what it does.
|
||||
helpManual=Provide help either on a specific command (if a search string is provided and an exact match is found) or on the available commands (if a search string is not provided, or if no exact match is found).
|
||||
|
||||
# LOCALIZATION NOTE (helpSearchDesc): A very short description of the 'search'
|
||||
# parameter to the 'help' command. See helpSearchManual3 for a fuller
|
||||
# description of what it does. This string is designed to be shown in a dialog
|
||||
# with restricted space, which is why it should be as short as possible.
|
||||
helpSearchDesc=Search string
|
||||
|
||||
# LOCALIZATION NOTE (helpSearchManual3): A fuller description of the 'search'
|
||||
# parameter to the 'help' command. Displayed when the user asks for help on
|
||||
# what it does.
|
||||
helpSearchManual3=search string to use in narrowing down the displayed commands. Regular expressions not supported.
|
||||
|
||||
# LOCALIZATION NOTE (helpManSynopsis): A heading shown at the top of a help
|
||||
# page for a command in the console It labels a summary of the parameters to
|
||||
# the command
|
||||
# LOCALIZATION NOTE (helpManSynopsis, helpManDescription, helpManParameters):
|
||||
# These strings are displayed in the help page for a command in the console.
|
||||
helpManSynopsis=Synopsis
|
||||
|
||||
# LOCALIZATION NOTE (helpManDescription): A heading shown in a help page for a
|
||||
# command in the console. This heading precedes the top level description.
|
||||
helpManDescription=Description
|
||||
|
||||
# LOCALIZATION NOTE (helpManParameters): A heading shown above the parameters
|
||||
# in a help page for a command in the console.
|
||||
helpManParameters=Parameters
|
||||
|
||||
# LOCALIZATION NOTE (helpManNone): Some text shown under the parameters
|
||||
# heading in a help page for a command which has no parameters.
|
||||
# LOCALIZATION NOTE: This message is displayed in the help page if the command
|
||||
# has no parameters.
|
||||
helpManNone=None
|
||||
|
||||
# LOCALIZATION NOTE (helpListAll): The heading shown in response to the 'help'
|
||||
# LOCALIZATION NOTE: This message is displayed in response to the 'help'
|
||||
# command when used without a filter, just above the list of known commands.
|
||||
helpListAll=Available Commands:
|
||||
|
||||
# LOCALIZATION NOTE (helpListPrefix): The heading shown in response to the
|
||||
# 'help <search>' command (i.e. with a search string), just above the list of
|
||||
# matching commands.
|
||||
helpListPrefix=Commands starting with '%1$S':
|
||||
# LOCALIZATION NOTE (helpListPrefix, helpListNone): These messages are
|
||||
# displayed in response to the 'help <search>' command (i.e. with a search
|
||||
# string), just above the list of matching commands. Parameters: %S is the
|
||||
# search string.
|
||||
helpListPrefix=Commands starting with '%S':
|
||||
helpListNone=No commands starting with '%S'
|
||||
|
||||
# LOCALIZATION NOTE (helpListNone): The heading shown in response to the 'help
|
||||
# <search>' command (i.e. with a search string), when there are no matching
|
||||
# commands.
|
||||
helpListNone=No commands starting with '%1$S'
|
||||
|
||||
# LOCALIZATION NOTE (helpManRequired): When the 'help x' command wants to show
|
||||
# the manual for the 'x' command it needs to be able to describe the
|
||||
# parameters as either required or optional, or if they have a default value.
|
||||
# See also 'helpManOptional' and 'helpManDefault'.
|
||||
# LOCALIZATION NOTE (helpManRequired, helpManOptional, helpManDefault): When
|
||||
# the 'help x' command wants to show the manual for the 'x' command, it needs
|
||||
# to be able to describe the parameters as either required or optional, or if
|
||||
# they have a default value.
|
||||
helpManRequired=required
|
||||
|
||||
# LOCALIZATION NOTE (helpManOptional): See description of 'helpManRequired'
|
||||
helpManOptional=optional
|
||||
helpManDefault=optional, default=%S
|
||||
|
||||
# LOCALIZATION NOTE (helpManDefault): See description of 'helpManRequired'. %1$
|
||||
# S is the default value
|
||||
helpManDefault=optional, default=%1$S
|
||||
|
||||
# LOCALIZATION NOTE (subCommands): Text shown as part of the output of the
|
||||
# 'help' command when the command in question has sub-commands, before a list
|
||||
# of the matching sub-commands
|
||||
# LOCALIZATION NOTE: Text shown as part of the output of the 'help' command
|
||||
# when the command in question has sub-commands, before a list of the matching
|
||||
# sub-commands.
|
||||
subCommands=Sub-Commands
|
||||
|
||||
# LOCALIZATION NOTE (subCommandsNone): Text shown as part of the output of the
|
||||
# 'help' command when the command in question should have sub-commands but in
|
||||
# fact has none
|
||||
# LOCALIZATION NOTE: Text shown as part of the output of the 'help' command
|
||||
# when the command in question should have sub-commands but in fact has none.
|
||||
subCommandsNone=None
|
||||
|
||||
# LOCALIZATION NOTE (contextDesc): A very short description of the 'context'
|
||||
# command. This string is designed to be shown in a menu alongside the command
|
||||
# name, which is why it should be as short as possible. See contextManual for
|
||||
# a fuller description of what it does.
|
||||
# LOCALIZATION NOTE (contextDesc, contextManual, contextPrefixDesc): These
|
||||
# strings are used to describe the 'context' command and its 'prefix'
|
||||
# parameter. See localization comment for 'connect' for an explanation about
|
||||
# 'prefix'.
|
||||
contextDesc=Concentrate on a group of commands
|
||||
|
||||
# LOCALIZATION NOTE (contextManual): A fuller description of the 'context'
|
||||
# command. Displayed when the user asks for help on what it does.
|
||||
contextManual=Setup a default prefix to future commands. For example 'context git' would allow you to type 'commit' rather than 'git commit'.
|
||||
|
||||
# LOCALIZATION NOTE (contextPrefixDesc): A short description of the 'prefix'
|
||||
# parameter to the 'context' command. This string is designed to be shown in a
|
||||
# dialog with restricted space, which is why it should be as short as
|
||||
# possible.
|
||||
contextPrefixDesc=The command prefix
|
||||
|
||||
# LOCALIZATION NOTE (contextNotParentError): An error message displayed during
|
||||
# the processing of the 'context' command, when the found command is not a
|
||||
# parent command.
|
||||
contextNotParentError=Can't use '%1$S' as a prefix because it is not a parent command.
|
||||
# LOCALIZATION NOTE: This message message displayed during the processing of
|
||||
# the 'context' command, when the found command is not a parent command.
|
||||
contextNotParentError=Can't use '%S' as a prefix because it is not a parent command.
|
||||
|
||||
# LOCALIZATION NOTE (contextReply): A message displayed during the processing
|
||||
# of the 'context' command, to indicate success.
|
||||
contextReply=Using %1$S as a command prefix
|
||||
|
||||
# LOCALIZATION NOTE (contextEmptyReply): A message displayed during the
|
||||
# processing of the 'context' command, to indicate that there is no command
|
||||
# prefix
|
||||
# LOCALIZATION NOTE (contextReply, contextEmptyReply): These messages are
|
||||
# displayed during the processing of the 'context' command, to indicate
|
||||
# success or that there is no command prefix.
|
||||
contextReply=Using %S as a command prefix
|
||||
contextEmptyReply=Command prefix is unset
|
||||
|
||||
# LOCALIZATION NOTE (connectDesc): A very short description of the 'connect'
|
||||
# command. This string is designed to be shown in a menu alongside the command
|
||||
# name, which is why it should be as short as possible. See connectManual for
|
||||
# a fuller description of what it does.
|
||||
# LOCALIZATION NOTE (connectDesc, connectManual, connectPrefixDesc,
|
||||
# connectPortDesc, connectHostDesc, connectDupReply): These strings describe
|
||||
# the 'connect' command and all its available parameters. A 'prefix' is an
|
||||
# alias for the remote server (think of it as a "connection name"), and it
|
||||
# allows to identify a specific server when connected to multiple remote
|
||||
# servers.
|
||||
connectDesc=Proxy commands to server
|
||||
|
||||
# LOCALIZATION NOTE (connectManual): A fuller description of the 'connect'
|
||||
# command. Displayed when the user asks for help on what it does.
|
||||
connectManual=Connect to the server, creating local versions of the commands on the server. Remote commands initially have a prefix to distinguish them from local commands (but see the context command to get past this)
|
||||
|
||||
# LOCALIZATION NOTE (connectPrefixDesc): A short description of the 'prefix'
|
||||
# parameter to the 'connect' command. This string is designed to be shown in a
|
||||
# dialog with restricted space, which is why it should be as short as
|
||||
# possible.
|
||||
connectPrefixDesc=Parent prefix for imported commands
|
||||
|
||||
# LOCALIZATION NOTE (connectPortDesc): A short description of the 'port'
|
||||
# parameter to the 'connect' command. This string is designed to be shown in a
|
||||
# dialog with restricted space, which is why it should be as short as
|
||||
# possible.
|
||||
connectPortDesc=The TCP port to listen on
|
||||
|
||||
# LOCALIZATION NOTE (connectHostDesc): A short description of the 'host'
|
||||
# parameter to the 'connect' command. This string is designed to be shown in a
|
||||
# dialog with restricted space, which is why it should be as short as
|
||||
# possible.
|
||||
connectHostDesc=The hostname to bind to
|
||||
|
||||
# LOCALIZATION NOTE (connectDupReply): An error condition from executing the
|
||||
# 'connect' command
|
||||
connectDupReply=Connection called %S already exists.
|
||||
|
||||
# LOCALIZATION NOTE (connectReply): The output of the 'connect' command,
|
||||
# telling the user what it has done.
|
||||
# LOCALIZATION NOTE: The output of the 'connect' command, telling the user
|
||||
# what it has done. Parameters: %S is the prefix command. See localization
|
||||
# comment for 'connect' for an explanation about 'prefix'.
|
||||
connectReply=Added %S commands.
|
||||
|
||||
# LOCALIZATION NOTE (disconnectDesc): A very short description of the
|
||||
# 'disconnect' command. This string is designed to be shown in a menu
|
||||
# alongside the command name, which is why it should be as short as possible.
|
||||
# See connectManual for a fuller description of what it does.
|
||||
disconnectDesc=Proxy commands to server
|
||||
|
||||
# LOCALIZATION NOTE (disconnectManual): A fuller description of the
|
||||
# 'disconnect' command. Displayed when the user asks for help on what it does.
|
||||
disconnectManual=Connect to the server, creating local versions of the commands on the server. Remote commands initially have a prefix to distinguish them from local commands (but see the context command to get past this)
|
||||
|
||||
# LOCALIZATION NOTE (disconnectPrefixDesc): A short description of the
|
||||
# 'prefix' parameter to the 'disconnect' command. This string is designed to
|
||||
# be shown in a dialog with restricted space, which is why it should be as
|
||||
# short as possible.
|
||||
# LOCALIZATION NOTE (disconnectDesc2, disconnectManual2, disconnectPrefixDesc,
|
||||
# disconnectForceDesc): These strings describe the 'disconnect' command and
|
||||
# all its available parameters. See localization comment for 'connect' for an
|
||||
# explanation about 'prefix'.
|
||||
disconnectDesc2=Disconnect from server
|
||||
disconnectManual2=Disconnect from a server currently connected for remote commands execution
|
||||
disconnectPrefixDesc=Parent prefix for imported commands
|
||||
|
||||
# LOCALIZATION NOTE (disconnectForceDesc): A short description of the 'force'
|
||||
# parameter to the 'disconnect' command. This string is designed to be shown
|
||||
# in a dialog with restricted space, which is why it should be as short as
|
||||
# possible.
|
||||
disconnectForceDesc=Ignore outstanding requests
|
||||
|
||||
# LOCALIZATION NOTE (disconnectReply): The output of the 'disconnect' command,
|
||||
# telling the user what it's done.
|
||||
# LOCALIZATION NOTE: This is the output of the 'disconnect' command,
|
||||
# explaining the user what has been done. Parameters: %S is the number of
|
||||
# commands removed.
|
||||
disconnectReply=Removed %S commands.
|
||||
|
||||
# LOCALIZATION NOTE (disconnectOutstanding): An error message displayed when
|
||||
# the user attempts to disconnect before all requests have completed. %1$S is
|
||||
# a list of commands which are incomplete
|
||||
disconnectOutstanding=Outstanding requests (%1$S)
|
||||
# LOCALIZATION NOTE: This error message is displayed when the user attempts to
|
||||
# disconnect before all requests have completed. Parameters: %S is a list of
|
||||
# incomplete requests.
|
||||
disconnectOutstanding=Outstanding requests (%S)
|
||||
|
||||
# LOCALIZATION NOTE (prefDesc): A very short description of the 'pref'
|
||||
# command. This string is designed to be shown in a menu alongside the command
|
||||
# name, which is why it should be as short as possible. See prefManual for a
|
||||
# fuller description of what it does.
|
||||
# LOCALIZATION NOTE (prefDesc, prefManual, prefListDesc, prefListManual,
|
||||
# prefListSearchDesc, prefListSearchManual, prefShowDesc, prefShowManual,
|
||||
# prefShowSettingDesc, prefShowSettingManual): These strings describe the
|
||||
# 'pref' command and all its available sub-commands and parameters.
|
||||
prefDesc=Commands to control settings
|
||||
|
||||
# LOCALIZATION NOTE (prefManual): A fuller description of the 'pref' command.
|
||||
# Displayed when the user asks for help on what it does.
|
||||
prefManual=Commands to display and alter preferences both for GCLI and the surrounding environment
|
||||
|
||||
# LOCALIZATION NOTE (prefListDesc): A very short description of the 'pref
|
||||
# list' command. This string is designed to be shown in a menu alongside the
|
||||
# command name, which is why it should be as short as possible. See
|
||||
# prefListManual for a fuller description of what it does.
|
||||
prefListDesc=Display available settings
|
||||
|
||||
# LOCALIZATION NOTE (prefListManual): A fuller description of the 'pref list'
|
||||
# command. Displayed when the user asks for help on what it does.
|
||||
prefListManual=Display a list of preferences, optionally filtered when using the 'search' parameter
|
||||
|
||||
# LOCALIZATION NOTE (prefListSearchDesc): A short description of the 'search'
|
||||
# parameter to the 'pref list' command. See prefListSearchManual for a fuller
|
||||
# description of what it does. This string is designed to be shown in a dialog
|
||||
# with restricted space, which is why it should be as short as possible.
|
||||
prefListSearchDesc=Filter the list of settings displayed
|
||||
|
||||
# LOCALIZATION NOTE (prefListSearchManual): A fuller description of the
|
||||
# 'search' parameter to the 'pref list' command. Displayed when the user asks
|
||||
# for help on what it does.
|
||||
prefListSearchManual=Search for the given string in the list of available preferences
|
||||
|
||||
# LOCALIZATION NOTE (prefShowDesc): A very short description of the 'pref
|
||||
# show' command. This string is designed to be shown in a menu alongside the
|
||||
# command name, which is why it should be as short as possible. See
|
||||
# prefShowManual for a fuller description of what it does.
|
||||
prefShowDesc=Display setting value
|
||||
|
||||
# LOCALIZATION NOTE (prefShowManual): A fuller description of the 'pref show'
|
||||
# command. Displayed when the user asks for help on what it does.
|
||||
prefShowManual=Display the value of a given preference
|
||||
|
||||
# LOCALIZATION NOTE (prefShowSettingDesc): A short description of the
|
||||
# 'setting' parameter to the 'pref show' command. See prefShowSettingManual
|
||||
# for a fuller description of what it does. This string is designed to be
|
||||
# shown in a dialog with restricted space, which is why it should be as short
|
||||
# as possible.
|
||||
prefShowSettingDesc=Setting to display
|
||||
|
||||
# LOCALIZATION NOTE (prefShowSettingManual): A fuller description of the
|
||||
# 'setting' parameter to the 'pref show' command. Displayed when the user asks
|
||||
# for help on what it does.
|
||||
prefShowSettingManual=The name of the setting to display
|
||||
|
||||
# LOCALIZATION NOTE (prefShowSettingValue): This is used to show the
|
||||
# preference name and the associated preference value. %1$S is replaced with
|
||||
# the preference name and %2$S is replaced with the preference value.
|
||||
# LOCALIZATION NOTE: This message is used to show the preference name and the
|
||||
# associated preference value. Parameters: %1$S is the preference name, %2$S
|
||||
# is the preference value.
|
||||
prefShowSettingValue=%1$S: %2$S
|
||||
|
||||
# LOCALIZATION NOTE (prefSetDesc): A very short description of the 'pref set'
|
||||
# command. This string is designed to be shown in a menu alongside the command
|
||||
# name, which is why it should be as short as possible. See prefSetManual for
|
||||
# a fuller description of what it does.
|
||||
# LOCALIZATION NOTE (prefSetDesc, prefSetManual, prefSetSettingDesc,
|
||||
# prefSetSettingManual, prefSetValueDesc, prefSetValueManual): These strings
|
||||
# describe the 'pref set' command and all its parameters.
|
||||
prefSetDesc=Alter a setting
|
||||
|
||||
# LOCALIZATION NOTE (prefSetManual): A fuller description of the 'pref set'
|
||||
# command. Displayed when the user asks for help on what it does.
|
||||
prefSetManual=Alter preferences defined by the environment
|
||||
|
||||
# LOCALIZATION NOTE (prefSetSettingDesc): A short description of the 'setting'
|
||||
# parameter to the 'pref set' command. See prefSetSettingManual for a fuller
|
||||
# description of what it does. This string is designed to be shown in a dialog
|
||||
# with restricted space, which is why it should be as short as possible.
|
||||
prefSetSettingDesc=Setting to alter
|
||||
|
||||
# LOCALIZATION NOTE (prefSetSettingManual): A fuller description of the
|
||||
# 'setting' parameter to the 'pref set' command. Displayed when the user asks
|
||||
# for help on what it does.
|
||||
prefSetSettingManual=The name of the setting to alter.
|
||||
|
||||
# LOCALIZATION NOTE (prefSetValueDesc): A short description of the 'value'
|
||||
# parameter to the 'pref set' command. See prefSetValueManual for a fuller
|
||||
# description of what it does. This string is designed to be shown in a dialog
|
||||
# with restricted space, which is why it should be as short as possible.
|
||||
prefSetValueDesc=New value for setting
|
||||
|
||||
# LOCALIZATION NOTE (prefSetValueManual): A fuller description of the 'value'
|
||||
# parameter to the 'pref set' command. Displayed when the user asks for help
|
||||
# on what it does.
|
||||
prefSetValueManual=The new value for the specified setting
|
||||
|
||||
# LOCALIZATION NOTE (prefSetCheckHeading): Title displayed to the user the
|
||||
# first time they try to alter a setting This is displayed directly above
|
||||
# prefSetCheckBody and prefSetCheckGo.
|
||||
# LOCALIZATION NOTE (prefSetCheckHeading, prefSetCheckBody, prefSetCheckGo):
|
||||
# These strings are displayed to the user the first time they try to alter a
|
||||
# setting.
|
||||
prefSetCheckHeading=This might void your warranty!
|
||||
|
||||
# LOCALIZATION NOTE (prefSetCheckBody): The main text of the warning displayed
|
||||
# to the user the first time they try to alter a setting. See also
|
||||
# prefSetCheckHeading and prefSetCheckGo.
|
||||
prefSetCheckBody=Changing these advanced settings can be harmful to the stability, security, and performance of this application. You should only continue if you are sure of what you are doing.
|
||||
|
||||
# LOCALIZATION NOTE (prefSetCheckGo): The text to enable preference editing.
|
||||
# Displayed in a button directly under prefSetCheckHeading and
|
||||
# prefSetCheckBody
|
||||
prefSetCheckGo=I'll be careful, I promise!
|
||||
|
||||
# LOCALIZATION NOTE (prefResetDesc): A very short description of the 'pref
|
||||
# reset' command. This string is designed to be shown in a menu alongside the
|
||||
# command name, which is why it should be as short as possible. See
|
||||
# prefResetManual for a fuller description of what it does.
|
||||
# LOCALIZATION NOTE (prefResetDesc, prefResetManual, prefResetSettingDesc,
|
||||
# prefResetSettingManual): These strings describe the 'pref reset' command and
|
||||
# all its parameters.
|
||||
prefResetDesc=Reset a setting
|
||||
|
||||
# LOCALIZATION NOTE (prefResetManual): A fuller description of the 'pref
|
||||
# reset' command. Displayed when the user asks for help on what it does.
|
||||
prefResetManual=Reset the value of a setting to the system defaults
|
||||
|
||||
# LOCALIZATION NOTE (prefResetSettingDesc): A short description of the
|
||||
# 'setting' parameter to the 'pref reset' command. See prefResetSettingManual
|
||||
# for a fuller description of what it does. This string is designed to be
|
||||
# shown in a dialog with restricted space, which is why it should be as short
|
||||
# as possible.
|
||||
prefResetSettingDesc=Setting to reset
|
||||
|
||||
# LOCALIZATION NOTE (prefResetSettingManual): A fuller description of the
|
||||
# 'setting' parameter to the 'pref reset' command. Displayed when the user
|
||||
# asks for help on what it does.
|
||||
prefResetSettingManual=The name of the setting to reset to the system default value
|
||||
|
||||
# LOCALIZATION NOTE (prefOutputFilter): Displayed in the output from the 'pref
|
||||
# LOCALIZATION NOTE: This string is displayed in the output from the 'pref
|
||||
# list' command as a label to an input element that allows the user to filter
|
||||
# the results
|
||||
# the results.
|
||||
prefOutputFilter=Filter
|
||||
|
||||
# LOCALIZATION NOTE (prefOutputName): Displayed in the output from the 'pref
|
||||
# list' command as a heading to a table. The column contains the names of the
|
||||
# available preferences
|
||||
# LOCALIZATION NOTE (prefOutputName, prefOutputValue): These strings are
|
||||
# displayed in the output from the 'pref list' command as table headings.
|
||||
prefOutputName=Name
|
||||
|
||||
# LOCALIZATION NOTE (prefOutputValue): Displayed in the output from the 'pref
|
||||
# list' command as a heading to a table. The column contains the values of the
|
||||
# available preferences
|
||||
prefOutputValue=Value
|
||||
|
||||
# LOCALIZATION NOTE (introDesc): A very short description of the 'intro'
|
||||
# command. This string is designed to be shown in a menu alongside the command
|
||||
# name, which is why it should be as short as possible. See introManual for a
|
||||
# fuller description of what it does.
|
||||
# LOCALIZATION NOTE (introDesc, introManual): These strings describe the
|
||||
# 'intro' command. The localization of 'Got it!' should be the same used in
|
||||
# introTextGo.
|
||||
introDesc=Show the opening message
|
||||
|
||||
# LOCALIZATION NOTE (introManual): A fuller description of the 'intro'
|
||||
# command. Displayed when the user asks for help on what it does.
|
||||
introManual=Redisplay the message that is shown to new users until they click the 'Got it!' button
|
||||
|
||||
# LOCALIZATION NOTE (introTextOpening2): The 'intro text' opens when the user
|
||||
# LOCALIZATION NOTE (introTextOpening2, introTextCommands, introTextKeys2,
|
||||
# introTextF1Escape, introTextGo): These strings are displayed when the user
|
||||
# first opens the developer toolbar to explain the command line, and is shown
|
||||
# each time it is opened until the user clicks the 'Got it!' button. This
|
||||
# string is the opening paragraph of the intro text.
|
||||
# each time it is opened until the user clicks the 'Got it!' button.
|
||||
introTextOpening2=This command line is designed for developers. It focuses on speed of input over JavaScript syntax and a rich display over monospace output.
|
||||
|
||||
# LOCALIZATION NOTE (introTextCommands): For information about the 'intro
|
||||
# text' see introTextOpening2. The second paragraph is in 2 sections, the
|
||||
# first section points the user to the 'help' command.
|
||||
introTextCommands=For a list of commands type
|
||||
|
||||
# LOCALIZATION NOTE (introTextKeys2): For information about the 'intro text'
|
||||
# see introTextOpening2. The second section in the second paragraph points the
|
||||
# user to the F1/Escape keys which show and hide hints.
|
||||
introTextKeys2=, or to show/hide command hints press
|
||||
|
||||
# LOCALIZATION NOTE (introTextF1Escape): For information about the 'intro
|
||||
# text' see introTextOpening2. This string is used with introTextKeys2, and
|
||||
# contains the keys that are pressed to open and close hints.
|
||||
introTextF1Escape=F1/Escape
|
||||
|
||||
# LOCALIZATION NOTE (introTextGo): For information about the 'intro text' see
|
||||
# introTextOpening2. The text on the button that dismisses the intro text.
|
||||
introTextGo=Got it!
|
||||
|
||||
# LOCALIZATION NOTE (hideIntroDesc): Short description of the 'hideIntro'
|
||||
# setting. Displayed when the user asks for help on the settings.
|
||||
# LOCALIZATION NOTE: This is a short description of the 'hideIntro' setting.
|
||||
hideIntroDesc=Show the initial welcome message
|
||||
|
||||
# LOCALIZATION NOTE (eagerHelperDesc): Short description of the 'eagerHelper'
|
||||
# setting. Displayed when the user asks for help on the settings. eagerHelper
|
||||
# allows users to select between showing no tooltips, permanent tooltips, and
|
||||
# only important tooltips
|
||||
# LOCALIZATION NOTE: This is a description of the 'eagerHelper' setting. It's
|
||||
# displayed when the user asks for help on the settings. eagerHelper allows
|
||||
# users to select between showing no tooltips, permanent tooltips, and only
|
||||
# important tooltips.
|
||||
eagerHelperDesc=How eager are the tooltips
|
||||
|
||||
# LOCALIZATION NOTE (allowSetDesc): Short description of the 'allowSetDesc'
|
||||
# setting. Displayed when the user asks for help on the settings.
|
||||
# LOCALIZATION NOTE: This is a short description of the 'allowSetDesc'
|
||||
# setting.
|
||||
allowSetDesc=Has the user enabled the 'pref set' command?
|
||||
|
||||
# LOCALIZATION NOTE (introBody): The text displayed at the top of the output
|
||||
# for the help command, just before the list of commands. This text is wrapped
|
||||
# inside a link to a localized MDN article
|
||||
# LOCALIZATION NOTE: This text is displayed at the top of the output for the
|
||||
# help command, just before the list of commands. This text is wrapped inside
|
||||
# a link to a localized MDN article.
|
||||
introBody=For more information see MDN.
|
||||
|
||||
|
@ -10666,8 +10666,8 @@ var connect = {
|
||||
var disconnect = {
|
||||
item: 'command',
|
||||
name: 'disconnect',
|
||||
description: l10n.lookup('disconnectDesc'),
|
||||
manual: l10n.lookup('disconnectManual'),
|
||||
description: l10n.lookup('disconnectDesc2'),
|
||||
manual: l10n.lookup('disconnectManual2'),
|
||||
params: [
|
||||
{
|
||||
name: 'prefix',
|
||||
|
Loading…
Reference in New Issue
Block a user