| 
<?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'    => 'desconocido',
 'ar'    => 'arábica',
 'az'    => 'azerbaiyano',
 'bg'    => 'búlgaro',
 'bn'    => 'bengalí',
 'bo'    => 'tibetano',
 'ceb'   => 'cebuano',
 'cs'    => 'checo',
 'cy'    => 'galés',
 'da'    => 'danés',
 'de'    => 'alemán',
 'el'    => 'griego',
 'en'    => 'inglés',
 'en-gb' => 'inglés GB',
 'en-us' => 'inglés EUA',
 'es'    => 'español',
 'et'    => 'estonio',
 'fa'    => 'persa',
 'fi'    => 'finlandés',
 'fr'    => 'francés',
 'gu'    => 'gujarati',
 'ha'    => 'hausa',
 'haw'   => 'hawaiano',
 'he'    => 'hebreo',
 'hi'    => 'hindi',
 'hr'    => 'croata',
 'hu'    => 'húngaro',
 'hy'    => 'armenio',
 'id'    => 'indonesio',
 'is'    => 'islandés',
 'it'    => 'italiano',
 'ja'    => 'japonés',
 'ka'    => 'georgiano',
 'kh'    => 'camboyano',
 'kk'    => 'kazakh',
 'ko'    => 'coreano',
 'ky'    => 'kirguís',
 'la'    => 'latín',
 'lo'    => 'lao',
 'lt'    => 'lituano',
 'lv'    => 'letón',
 'mk'    => 'macedónio',
 'ml'    => 'malayalam',
 'mn'    => 'mongol',
 'my'    => 'birmano',
 'ne'    => 'nepalí',
 'ne'    => 'nepalí',
 'nl'    => 'holandés',
 'no'    => 'noruego',
 'pidgin' => 'chapurrado',
 'pl'    => 'polaco',
 'ps'    => 'pashto',
 'pt'    => 'portugués',
 'ro'    => 'rumano',
 'ru'    => 'ruso',
 'si'    => 'cingalés',
 'sk'    => 'eslovaco',
 'sl'    => 'esloveno',
 'so'    => 'somalí',
 'sq'    => 'albanés',
 'sr'    => 'serbio',
 'sv'    => 'sueco',
 'sw'    => 'suajili',
 'ta'    => 'tamil',
 'th'    => 'tailandés',
 'tl'    => 'tagalo',
 'tr'    => 'turco',
 'uk'    => 'ucranio',
 'ur'    => 'urdu',
 'uz'    => 'uzbeko',
 'vi'    => 'vietnamita',
 'zh'    => 'chino',
 'zh-cn' => 'chino simplificado',
 'zh-hk' => 'chino tradicional',
 );
 
 |