diff --git a/dictionaries/en.dictionary.itop.ui.php b/dictionaries/en.dictionary.itop.ui.php index 81e4d5f21..431360ec0 100644 --- a/dictionaries/en.dictionary.itop.ui.php +++ b/dictionaries/en.dictionary.itop.ui.php @@ -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', diff --git a/dictionaries/hu.dictionary.itop.ui.php b/dictionaries/hu.dictionary.itop.ui.php index 05ac7ee17..0af1f5d71 100755 --- a/dictionaries/hu.dictionary.itop.ui.php +++ b/dictionaries/hu.dictionary.itop.ui.php @@ -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~~', diff --git a/dictionaries/sk.dictionary.itop.ui.php b/dictionaries/sk.dictionary.itop.ui.php index 8a3cb7e62..77da4e591 100644 --- a/dictionaries/sk.dictionary.itop.ui.php +++ b/dictionaries/sk.dictionary.itop.ui.php @@ -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', diff --git a/dictionaries/tr.dictionary.itop.ui.php b/dictionaries/tr.dictionary.itop.ui.php index 09bd477bb..b6b613762 100644 --- a/dictionaries/tr.dictionary.itop.ui.php +++ b/dictionaries/tr.dictionary.itop.ui.php @@ -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~~', diff --git a/webservices/export.php b/webservices/export.php index ee127ca32..56a7f16f6 100644 --- a/webservices/export.php +++ b/webservices/export.php @@ -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"); }