| 
<?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'    => 'ukendt',
 'ar'    => 'arabisk',
 'az'    => 'aserbajdsjansk',
 'bg'    => 'bulgarsk',
 'bn'    => 'bengalsk',
 'bo'    => 'tibetansk',
 'ceb'   => 'cebuano',
 'cs'    => 'tjekkisk',
 'cy'    => 'walisisk',
 'da'    => 'dansk',
 'de'    => 'tysk',
 'el'    => 'græsk',
 'en'    => 'engelsk',
 'en-gb' => 'engelsk GB',
 'en-us' => 'engelsk USA',
 'es'    => 'spansk',
 'et'    => 'estisk',
 'fa'    => 'persisk',
 'fi'    => 'finsk',
 'fr'    => 'fransk',
 'gu'    => 'gujaratisk',
 'ha'    => 'hausa',
 'haw'   => 'hawaiiansk',
 'he'    => 'hebraisk',
 'hi'    => 'hindi',
 'hr'    => 'kroatisk',
 'hu'    => 'ungarsk',
 'hy'    => 'armensk',
 'id'    => 'indonesisk',
 'is'    => 'islandsk',
 'it'    => 'italiensk',
 'ja'    => 'japansk',
 'ka'    => 'georgisk',
 'kh'    => 'khmerisk',
 'kk'    => 'kasakhisk',
 'ko'    => 'koreansk',
 'ky'    => 'kirgisisk',
 'la'    => 'latinsk',
 'lo'    => 'laotisk',
 'lt'    => 'litauisk',
 'lv'    => 'lettisk',
 'mk'    => 'makedonsk',
 'ml'    => 'malayalam',
 'mn'    => 'mongolsk',
 'my'    => 'burmesisk',
 'ne'    => 'nepalesisk',
 'ne'    => 'nepalesisk',
 'nl'    => 'hollandsk',
 'no'    => 'norsk',
 'pidgin' => 'pidgin',
 'pl'    => 'polsk',
 'ps'    => 'pashto',
 'pt'    => 'portugisisk',
 'ro'    => 'rumænsk',
 'ru'    => 'russisk',
 'si'    => 'sinhalesisk',
 'sk'    => 'slovakisk',
 'sl'    => 'slovensk',
 'so'    => 'somalisk',
 'sq'    => 'albansk',
 'sr'    => 'serbisk',
 'sv'    => 'svensk',
 'sw'    => 'swahili',
 'ta'    => 'tamilsk',
 'th'    => 'thailandsk',
 'tl'    => 'tagalog',
 'tr'    => 'tyrkisk',
 'uk'    => 'ukrainsk',
 'ur'    => 'urdu',
 'uz'    => 'usbekisk',
 'vi'    => 'vietnamesisk',
 'zh'    => 'kinesisk',
 'zh-cn' => 'kinesisk forenklet',
 'zh-hk' => 'kinesisk traditionel',
 );
 
 |