1
0
Fork 0
mirror of https://github.com/24eme/signaturepdf synced 2024-05-01 13:42:46 +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',
['fr' => 'Français',
'en' => 'English',
[
'ar' => 'العربية',
'de' => 'Deutsch',
'en' => 'English',
'fr' => 'Français',
'it' => 'Italiano',
'kab' => 'Taqbaylit',
'oc' => 'Occitan',
'it' => 'Italiano',
'de' => 'Deutsch']);
'tr' => 'Türkçe'
]);
$f3->set('XFRAME', null); // Allow use in an iframe
$f3->set('ROOT', __DIR__);