| 
<?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'    => 'inconnu',
 'ar'    => 'arabe',
 'az'    => 'azerbaïdjanais',
 'bg'    => 'bulgare',
 'bn'    => 'bengali',
 'bo'    => 'tibétain',
 'ceb'   => 'cebuano',
 'cs'    => 'tchèque',
 'cy'    => 'gallois',
 'da'    => 'danois',
 'de'    => 'allemand',
 'el'    => 'grec',
 'en'    => 'anglais',
 'en-gb' => 'anglais GB',
 'en-us' => 'anglais US',
 'es'    => 'espanol',
 'et'    => 'estonien',
 'fa'    => 'persan',
 'fi'    => 'finlandais',
 'fr'    => 'français',
 'gu'    => 'gujarati',
 'ha'    => 'hausa',
 'haw'   => 'hawaïen',
 'he'    => 'hébreu',
 'hi'    => 'hindi',
 'hr'    => 'croate',
 'hu'    => 'hongrois',
 'hy'    => 'arménien',
 'id'    => 'indonésien',
 'is'    => 'islandais',
 'it'    => 'italien',
 'ja'    => 'japonais',
 'ka'    => 'géorgien',
 'kh'    => 'cambodgien',
 'kk'    => 'kazakh',
 'ko'    => 'coréen',
 'ky'    => 'kirghiz',
 'la'    => 'latin',
 'lo'    => 'laotienne',
 'lt'    => 'lituanien',
 'lv'    => 'letton',
 'mk'    => 'macédonien',
 'ml'    => 'malayalam',
 'mn'    => 'mongol',
 'my'    => 'birman',
 'ne'    => 'népalais',
 'nl'    => 'néerlandais',
 'no'    => 'norvégien',
 'pidgin' => 'sabir',
 'pl'    => 'polonais',
 'ps'    => 'pashto',
 'pt'    => 'portugais',
 'ro'    => 'roumain',
 'ru'    => 'russe',
 'si'    => 'cingalais',
 'sk'    => 'slovaque',
 'sl'    => 'slovène',
 'so'    => 'somali',
 'sq'    => 'albanais',
 'sr'    => 'serbe',
 'sv'    => 'suédois',
 'sw'    => 'swahili',
 'ta'    => 'tamil',
 'th'    => 'thaïlandais',
 'tl'    => 'tagalog',
 'tr'    => 'turc',
 'uk'    => 'ukrainien',
 'ur'    => 'ourdou',
 'uz'    => 'ouzbek',
 'vi'    => 'vietnamien',
 'zh'    => 'chinois',
 'zh-cn' => 'chinois simplifié',
 'zh-hk' => 'chinois traditionnel',
 );
 
 |