Merge pull request #1130 from idraulicadueci/patch-2

Miglioria minore: corretta forma della valuta
This commit is contained in:
Valentina 2023-02-02 11:55:41 +01:00 committed by GitHub
commit fd8156d810
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ function currency()
*/
function moneyFormat($number, $decimals = null)
{
return tr('_TOTAL_ _CURRENCY_', [
return tr('_CURRENCY_ _TOTAL_', [
'_TOTAL_' => numberFormat($number, $decimals),
'_CURRENCY_' => currency(),
]);