| 
<?php/**
 * Language Info (Multilingual)
 * Converts language code to a full name in requested language.
 *
 * @version    2017-06-07 01:06:00 GMT
 * @author     Peter Kahl <[email protected]>
 * @since      2017
 * @license    Apache License, Version 2.0
 *
 * Copyright 2017 Peter Kahl <[email protected]>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      <http://www.apache.org/licenses/LICENSE-2.0>
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
 
 $text = array(
 '00'    => 'onbekend',
 'ar'    => 'Arabisch',
 'az'    => 'Azerbeidzjaanse',
 'bg'    => 'Bulgarian',
 'bn'    => 'Bengalees',
 'bo'    => 'Tibetaans',
 'ceb'   => 'Cebuano',
 'cs'    => 'Tsjechisch',
 'cy'    => 'Wels',
 'da'    => 'Deens',
 'de'    => 'Duits',
 'el'    => 'Grieks',
 'en'    => 'Engels',
 'en-gb' => 'Engels GB',
 'en-us' => 'Engels US',
 'es'    => 'Spaans',
 'et'    => 'Estlands',
 'fa'    => 'Perzisch',
 'fi'    => 'Fins',
 'fr'    => 'Frans',
 'gu'    => 'Gujarati',
 'ha'    => 'Hausa',
 'haw'   => 'Hawaiiaans',
 'he'    => 'Hebreeuws',
 'hi'    => 'Hindi',
 'hr'    => 'Kroatisch',
 'hu'    => 'Hongaars',
 'hy'    => 'Armeens',
 'id'    => 'Indonesisch',
 'is'    => 'IJslands',
 'it'    => 'Italiaans',
 'ja'    => 'Japans',
 'ka'    => 'Georgisch',
 'kh'    => 'Cambodjaans',
 'kk'    => 'Kazachse',
 'ko'    => 'Koreaans',
 'ky'    => 'Kirgizische',
 'la'    => 'Latijns',
 'lo'    => 'Laotiaans',
 'lt'    => 'Litouws',
 'lv'    => 'Lets',
 'mk'    => 'Macedonisch',
 'ml'    => 'Malayalam',
 'mn'    => 'Mongools',
 'my'    => 'Birmaans',
 'ne'    => 'Nepalees',
 'ne'    => 'Nepali',
 'nl'    => 'Nederlands',
 'no'    => 'Noors',
 'pidgin' => 'Pidgin',
 'pl'    => 'Pools',
 'ps'    => 'Pashto',
 'pt'    => 'Portugees',
 'ro'    => 'Roemeense',
 'ru'    => 'Russisch',
 'si'    => 'Sinhalees',
 'sk'    => 'Slowaaks',
 'sl'    => 'Sloveens',
 'so'    => 'Somalisch',
 'sq'    => 'Albanees',
 'sr'    => 'Servisch',
 'sv'    => 'Zweeds',
 'sw'    => 'Swahili',
 'ta'    => 'Tamil',
 'th'    => 'Thais',
 'tl'    => 'Tagalog',
 'tr'    => 'Turks',
 'uk'    => 'Oekraïens',
 'ur'    => 'Urdu',
 'uz'    => 'Oezbeeks',
 'vi'    => 'Vietnamees',
 'zh'    => 'Chinees',
 'zh-cn' => 'Chinees vereenvoudigd',
 'zh-hk' => 'Chinese traditionele',
 );
 
 |