Skip to content

Commit

Permalink
i18n(Workflow) translate tax and currency functions
Browse files Browse the repository at this point in the history
  • Loading branch information
joebordes committed Nov 27, 2021
1 parent 59421be commit 0838baa
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions modules/com_vtiger_workflow/language/es_es.fndefs.php
Expand Up @@ -2217,35 +2217,35 @@
),
),
'getCurrentConfiguredTaxValues' => array(
'name' => 'getCurrentConfiguredTaxValues(taxname)',
'desc' => 'This function returns the Current Configured Tax Values.',
'name' => 'getCurrentConfiguredTaxValues(impuesto)',
'desc' => 'Devuelve el valor numérico del impuesto dado.',
'params' => array(
array(
'name' => 'taxname',
'type' => 'String',
'name' => 'impuesto',
'type' => 'Texto',
'optional' => false,
'desc' => 'fields that contain the tax name',
'desc' => 'nombre del impuesto',
),
),
'categories' => array('Information'),
'examples' => array(
"getCurrentConfiguredTaxValues('taxname')"
"getCurrentConfiguredTaxValues('impuesto')"
),
),
'getCurrencyConversionValue' => array(
'name' => 'getCurrencyConversionValue(currency_code)',
'desc' => 'This function returns the Currency Conversion Value.',
'name' => 'getCurrencyConversionValue(moneda)',
'desc' => 'Devuelve el valor numérico de la moneda dada.',
'params' => array(
array(
'name' => 'Currency code',
'type' => 'String',
'name' => 'moneda',
'type' => 'Texto',
'optional' => false,
'desc' => 'fields that contain the currency code',
'desc' => 'nombre de la moneda',
),
),
'categories' => array('Information'),
'examples' => array(
"getCurrencyConversionValue('currency_code')"
"getCurrencyConversionValue('moneda')"
),
),
);
Expand Down

0 comments on commit 0838baa

Please sign in to comment.