Miglioria minore: corretta forma della valuta

This commit is contained in:
Frankie 2022-12-08 20:17:41 +01:00 committed by GitHub
parent 8b975a1321
commit 377bb1b9a5
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) function moneyFormat($number, $decimals = null)
{ {
return tr('_TOTAL_ _CURRENCY_', [ return tr('_CURRENCY_ _TOTAL_', [
'_TOTAL_' => numberFormat($number, $decimals), '_TOTAL_' => numberFormat($number, $decimals),
'_CURRENCY_' => currency(), '_CURRENCY_' => currency(),
]); ]);