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