🌐 Fix typo in comma (2 "m" !!)

This commit is contained in:
Pierre Goiffon
2020-11-26 18:34:07 +01:00
parent 66273ebd39
commit 35215cf62f
5 changed files with 7 additions and 10 deletions

View File

@@ -89,7 +89,7 @@ Dict::Add('EN US', 'English', 'English', array(
'Class:Query/Attribute:description' => 'Description',
'Class:Query/Attribute:description+' => 'Long description for the query (purpose, usage, etc.)',
'Class:QueryOQL/Attribute:fields' => 'Fields',
'Class:QueryOQL/Attribute:fields+' => 'Coma separated list of attributes (or alias.attribute) to export',
'Class:QueryOQL/Attribute:fields+' => 'Comma separated list of attributes (or alias.attribute) to export',
'Class:QueryOQL' => 'OQL Query',
'Class:QueryOQL+' => 'A query based on the Object Query Language',
'Class:QueryOQL/Attribute:oql' => 'Expression',

View File

@@ -72,7 +72,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
'Class:Query/Attribute:description' => 'Description~~',
'Class:Query/Attribute:description+' => 'Long description for the query (purpose, usage, etc.)~~',
'Class:QueryOQL/Attribute:fields' => 'Fields~~',
'Class:QueryOQL/Attribute:fields+' => 'Coma separated list of attributes (or alias.attribute) to export~~',
'Class:QueryOQL/Attribute:fields+' => 'Comma separated list of attributes (or alias.attribute) to export~~',
'Class:QueryOQL' => 'OQL Query~~',
'Class:QueryOQL+' => 'A query based on the Object Query Language~~',
'Class:QueryOQL/Attribute:oql' => 'Expression~~',

View File

@@ -71,7 +71,7 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Query/Attribute:description' => 'Popis',
'Class:Query/Attribute:description+' => '',
'Class:QueryOQL/Attribute:fields' => 'Polia',
'Class:QueryOQL/Attribute:fields+' => 'Coma separated list of attributes (or alias.attribute) to export~~',
'Class:QueryOQL/Attribute:fields+' => 'Comma separated list of attributes (or alias.attribute) to export~~',
'Class:QueryOQL' => 'OQL Dopyt',
'Class:QueryOQL+' => '',
'Class:QueryOQL/Attribute:oql' => 'Výraz',

View File

@@ -86,7 +86,7 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
'Class:Query/Attribute:description' => 'Description~~',
'Class:Query/Attribute:description+' => 'Long description for the query (purpose, usage, etc.)~~',
'Class:QueryOQL/Attribute:fields' => 'Fields~~',
'Class:QueryOQL/Attribute:fields+' => 'Coma separated list of attributes (or alias.attribute) to export~~',
'Class:QueryOQL/Attribute:fields+' => 'Comma separated list of attributes (or alias.attribute) to export~~',
'Class:QueryOQL' => 'OQL Query~~',
'Class:QueryOQL+' => 'A query based on the Object Query Language~~',
'Class:QueryOQL/Attribute:oql' => 'Expression~~',

View File

@@ -336,17 +336,14 @@ if (!$oP)
$oP->p("Parameters:");
$oP->p(" * expression: an OQL expression (URL encoded if needed)");
$oP->p(" * query: (alternative to 'expression') the id of an entry from the query phrasebook");
if (Utils::IsModeCLI())
{
if (Utils::IsModeCLI()) {
$oP->p(" * with_archive: (optional, defaults to 0) if set to 1 then the result set will include archived objects");
}
else
{
} else {
$oP->p(" * with_archive: (optional, defaults to the current mode) if set to 1 then the result set will include archived objects");
}
$oP->p(" * arg_xxx: (needed if the query has parameters) the value of the parameter 'xxx'");
$oP->p(" * format: (optional, default is html) the desired output format. Can be one of 'html', 'spreadsheet', 'csv', 'xlsx' or 'xml'");
$oP->p(" * fields: (optional, no effect on XML format) list of fields (attribute codes, or alias.attcode) separated by a coma");
$oP->p(" * fields: (optional, no effect on XML format) list of fields (attribute codes, or alias.attcode) separated by a comma");
$oP->p(" * fields_advanced: (optional, no effect on XML/HTML formats ; ignored is fields is specified) If set to 1, the default list of fields will include the external keys and their reconciliation keys");
$oP->p(" * filename: (optional, no effect in CLI mode) if set then the results will be downloaded as a file");
}