Add language selector configuration

This commit is contained in:
Kaenbyou Rin 2023-11-24 18:01:23 +01:00
parent 46686487b8
commit bb9b3c430e
1 changed files with 22 additions and 0 deletions

View File

@ -58,3 +58,25 @@ $autoLangMappings = [
'ar-sa' => 'ar-sa',
'ar' => 'ar-sa',
];
//Language selector configuration
$selectorConf = [
['de-de', 'de', 'Deutsch'],
['en-us', 'us', 'English (United States)'],
['es-ar', 'ar', 'Español (Argentina)'],
['fr-fr', 'fr', 'Français (France)'],
['it-it', 'it', 'Italiano'],
['hu-hu', 'hu', 'Magyar'],
['nl-nl', 'nl', 'Nederlands'],
['pl-pl', 'pl', 'polski'],
['pt-br', 'br', 'Português (Brasil)'],
['pt-pt', 'pt', 'Português (Portugal)'],
['ru-ru', 'ru', 'Русский'],
['ro-ro', 'ro', 'Română (România)'],
['tr-tr', 'tr', 'Türkçe'],
['ar-sa', 'sa', 'العربية'],
['ko-kr', 'kr', '한국어'],
['zh-cn', 'cn', '中文(简体)'],
['zh-tw', 'tw', '中文(繁體)'],
['ja-jp', 'jp', '日本語'],
];