| 
<?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'    => 'unbekannt',
 'ar'    => 'Arabisch',
 'az'    => 'Azerbaijani',
 'bg'    => 'Bulgarisch',
 'bn'    => 'Bengalisch',
 'bo'    => 'Tibetisch',
 'ceb'   => 'Cebuano',
 'cs'    => 'Tschechisch',
 'cy'    => 'Walisisch',
 'da'    => 'Dänisch',
 'de'    => 'Deutsch',
 'el'    => 'Griechisch',
 'en'    => 'Englisch',
 'en-gb' => 'Englisch GB',
 'en-us' => 'Englisch US',
 'es'    => 'Spanisch',
 'et'    => 'Estnisch',
 'fa'    => 'Persisch',
 'fi'    => 'Finnisch',
 'fr'    => 'Französisch',
 'gu'    => 'Gujaratisch',
 'ha'    => 'Hausa',
 'haw'   => 'Hawaiisch',
 'he'    => 'Hebräisch',
 'hi'    => 'Hindi',
 'hr'    => 'Kroatisch',
 'hu'    => 'Ungarisch',
 'hy'    => 'Armenisch',
 'id'    => 'Indonesisch',
 'is'    => 'Isländisch',
 'it'    => 'Italienisch',
 'ja'    => 'Japanisch',
 'ka'    => 'Georgisch',
 'kh'    => 'Kambodschaner',
 'kk'    => 'Kasachischen',
 'ko'    => 'Koreanisch',
 'ky'    => 'Kirgisischen',
 'la'    => 'Lateinisch',
 'lo'    => 'Lao',
 'lt'    => 'Litauisch',
 'lv'    => 'Lettisch',
 'mk'    => 'Mazedonisch',
 'ml'    => 'Malayalam',
 'mn'    => 'Mongolisch',
 'my'    => 'Birmanisch',
 'ne'    => 'Nepalesisch',
 'ne'    => 'Nepalesisch',
 'nl'    => 'Holländisch',
 'no'    => 'Norwegisch',
 'pidgin' => 'Pidgin',
 'pl'    => 'Polnisch',
 'ps'    => 'Pashto',
 'pt'    => 'Portugiesisch',
 'ro'    => 'Rumänisch',
 'ru'    => 'Russisch',
 'si'    => 'Singhalesisch',
 'sk'    => 'Slovakisch',
 'sl'    => 'Slowenisch',
 'so'    => 'Somali',
 'sq'    => 'Albanisch',
 'sr'    => 'Serbisch',
 'sv'    => 'Schwedisch',
 'sw'    => 'Swahili',
 'ta'    => 'Tamilisch',
 'th'    => 'Siamesisch',
 'tl'    => 'Tagalog',
 'tr'    => 'Türkisch',
 'uk'    => 'Ukrainisch',
 'ur'    => 'Urdu',
 'uz'    => 'Usbekisch',
 'vi'    => 'Vietnamesisch',
 'zh'    => 'Chinesisch',
 'zh-cn' => 'Chinesisch vereinfacht',
 'zh-hk' => 'Chinesisch traditionell',
 );
 
 |