1
0
Fork 0
mirror of https://github.com/24eme/signaturepdf synced 2024-05-15 20:26:36 +02:00

Adding Turkish in language menu and sort entries

This commit is contained in:
Vincent LAURENT 2023-12-06 16:52:04 +01:00
parent f525d8d934
commit 03efc493c9

11
app.php
View file

@ -14,13 +14,16 @@ if(getenv("DEBUG")) {
} }
$f3->set('SUPPORTED_LANGUAGES', $f3->set('SUPPORTED_LANGUAGES',
['fr' => 'Français', [
'en' => 'English',
'ar' => 'العربية', 'ar' => 'العربية',
'de' => 'Deutsch',
'en' => 'English',
'fr' => 'Français',
'it' => 'Italiano',
'kab' => 'Taqbaylit', 'kab' => 'Taqbaylit',
'oc' => 'Occitan', 'oc' => 'Occitan',
'it' => 'Italiano', 'tr' => 'Türkçe'
'de' => 'Deutsch']); ]);
$f3->set('XFRAME', null); // Allow use in an iframe $f3->set('XFRAME', null); // Allow use in an iframe
$f3->set('ROOT', __DIR__); $f3->set('ROOT', __DIR__);