Skip to content

Commit

Permalink
Adding Turkish in language menu and sort entries
Browse files Browse the repository at this point in the history
  • Loading branch information
wincelau committed Dec 6, 2023
1 parent f525d8d commit 03efc49
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions app.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@
}

$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__);
Expand Down

0 comments on commit 03efc49

Please sign in to comment.