1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-25 15:22:24 +01:00

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

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(),
]);