1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<?php
$languageNames = [
'ace' => 'Aceh-Sprache',
'ach' => 'Acholi-Sprache',
'ar-001' => 'Modernes Hocharabisch',
'ars' => 'Nadschd-Arabisch',
'bas' => 'Basaa-Sprache',
'bik' => 'Bikol-Sprache',
'bin' => 'Bini-Sprache',
'chb' => 'Chibcha-Sprache',
'de-ch' => 'Schweizer Hochdeutsch',
'din' => 'Dinka-Sprache',
'fan' => 'Pangwe-Sprache',
'gba' => 'Gbaya-Sprache',
'kmb' => 'Kimbundu-Sprache',
'mus' => 'Muskogee-Sprache',
'nl-be' => 'Flämisch',
'prg' => 'Altpreussisch',
'zh-hans' => 'Chinesisch (vereinfacht)',
'zh-hant' => 'Chinesisch (traditionell)',
];
$currencyNames = [
'BYN' => 'Weissrussischer Rubel',
'BYR' => 'Weissrussischer Rubel (2000–2016)',
'STN' => 'São-toméischer Dobra (2018)',
];
$countryNames = [
'BN' => 'Brunei',
'BW' => 'Botswana',
'CV' => 'Kapverden',
'GB' => 'Grossbritannien',
'QO' => 'Äusseres Ozeanien',
'SB' => 'Salomon-Inseln',
'TL' => 'Osttimor',
'ZW' => 'Zimbabwe',
];
|