| 
<?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'    => 'desconhecido',
 'ar'    => 'arábico',
 'az'    => 'azerbaijano',
 'bg'    => 'búlgaro',
 'bn'    => 'bengali',
 'bo'    => 'tibetano',
 'ceb'   => 'cebuano',
 'cs'    => 'tcheco',
 'cy'    => 'galês',
 'da'    => 'dinamarquês',
 'de'    => 'alemão',
 'el'    => 'grego',
 'en'    => 'inglês',
 'en-gb' => 'inglês GB',
 'en-us' => 'inglês EUA',
 'es'    => 'espanhol',
 'et'    => 'estoniano',
 'fa'    => 'persa',
 'fi'    => 'finlandês',
 'fr'    => 'francês',
 'gu'    => 'gujarati',
 'ha'    => 'hausa',
 'haw'   => 'havaiano',
 'he'    => 'hebraico',
 'hi'    => 'hindi',
 'hr'    => 'croata',
 'hu'    => 'húngaro',
 'hy'    => 'armênio',
 'id'    => 'indonésio',
 'is'    => 'islandês',
 'it'    => 'italiano',
 'ja'    => 'japonês',
 'ka'    => 'georgiano',
 'kh'    => 'cambojano',
 'kk'    => 'kazakh',
 'ko'    => 'coreano',
 'ky'    => 'quirguiz',
 'la'    => 'latim',
 'lo'    => 'lao',
 'lt'    => 'lituano',
 'lv'    => 'letão',
 'mk'    => 'macedônio',
 'ml'    => 'malayalam',
 'mn'    => 'mongol',
 'my'    => 'birmanês',
 'ne'    => 'nepalês',
 'ne'    => 'nepalês',
 'nl'    => 'holandês',
 'no'    => 'norueguês',
 'pidgin' => 'pidgin',
 'pl'    => 'polonês',
 'ps'    => 'pashto',
 'pt'    => 'português',
 'ro'    => 'romena',
 'ru'    => 'russo',
 'si'    => 'cingalês',
 'sk'    => 'eslovaco',
 'sl'    => 'esloveno',
 'so'    => 'somali',
 'sq'    => 'albanês',
 'sr'    => 'sérvio',
 'sv'    => 'sueco',
 'sw'    => 'swahili',
 'ta'    => 'tâmil',
 'th'    => 'tailandês',
 'tl'    => 'tagalog',
 'tr'    => 'turco',
 'uk'    => 'ucraniano',
 'ur'    => 'urdu',
 'uz'    => 'uzbeque',
 'vi'    => 'vietnamita',
 'zh'    => 'chinês',
 'zh-cn' => 'chinês simplificado',
 'zh-hk' => 'chinês tradicional',
 );
 
 |