1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00

Supporto multilingua in configurazione

This commit is contained in:
Thomas Zilio
2019-08-02 13:21:21 +02:00
parent 64fe9439c0
commit 32b4d463d5
10 changed files with 219 additions and 70 deletions

View File

@ -26,15 +26,15 @@ $HTMLHandlers = [];
$HTMLManagers = [];
// Lingua del progetto (per la traduzione e la conversione numerica)
$lang = 'it';
$lang = '|lang|';
// Personalizzazione della formattazione di timestamp, date e orari
$formatter = [
'timestamp' => 'd/m/Y H:i',
'date' => 'd/m/Y',
'time' => 'H:i',
'timestamp' => '|timestamp|',
'date' => '|date|',
'time' => '|time|',
'number' => [
'decimals' => ',',
'thousands' => '.',
'decimals' => '|decimals|',
'thousands' => '|thousands|',
],
];