| 
<?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'    => 'neznámý',
 'ar'    => 'arab?tina',
 'az'    => 'azerbajd?án?tina',
 'bg'    => 'bulhar?tina',
 'bn'    => 'bengál?tina',
 'bo'    => 'tibet?tina',
 'ceb'   => 'cebuán?tina',
 'cs'    => '?e?tina',
 'cy'    => 'vel?tina',
 'da'    => 'dán?tina',
 'de'    => 'n?m?ina',
 'el'    => '?e?tina',
 'en'    => 'angli?tina',
 'en-gb' => 'angli?tina VB',
 'en-us' => 'angli?tina USA',
 'es'    => '?pan?l?tina',
 'et'    => 'eston?tina',
 'fa'    => 'per?tina',
 'fi'    => 'fin?tina',
 'fr'    => 'francouz?tina',
 'gu'    => 'gud?arat?tina',
 'ha'    => 'hau?tina',
 'haw'   => 'havaj?tina',
 'he'    => 'hebrej?tina',
 'hi'    => 'hind?tina',
 'hr'    => 'chorvat?tina',
 'hu'    => 'ma?ar?tina',
 'hy'    => 'armén?tina',
 'id'    => 'indoné?tina',
 'is'    => 'island?tina',
 'it'    => 'ital?tina',
 'ja'    => 'japon?tina',
 'ka'    => 'gruzín?tina',
 'kh'    => 'kambod??tina',
 'kk'    => 'kazach?tina',
 'ko'    => 'korej?tina',
 'ky'    => 'kyrgyz?tina',
 'la'    => 'latina',
 'lo'    => 'lao?tina',
 'lt'    => 'litev?tina',
 'lv'    => 'loty?tina',
 'mk'    => 'makedon?tina',
 'ml'    => 'malajálam?tina',
 'mn'    => 'mongol?tina',
 'my'    => 'barm?tina',
 'ne'    => 'nepál?tina',
 'ne'    => 'nepál?tina',
 'nl'    => 'holand?tina',
 'no'    => 'nor?tina',
 'pidgin' => 'pid?in?tina',
 'pl'    => 'pol?tina',
 'ps'    => 'pa?t?tina',
 'pt'    => 'portugal?tina',
 'ro'    => 'rumun?tina',
 'ru'    => 'ru?tina',
 'si'    => 'sinhál?tina',
 'sk'    => 'sloven?tina',
 'sl'    => 'slovin?tina',
 'so'    => 'somál?tina',
 'sq'    => 'albán?tina',
 'sr'    => 'srb?tina',
 'sv'    => '?véd?tina',
 'sw'    => 'svahil?tina',
 'ta'    => 'tamil?tina',
 'th'    => 'thaj?tina',
 'tl'    => 'tagal?tina',
 'tr'    => 'ture?tina',
 'uk'    => 'ukrajin?tina',
 'ur'    => 'urd?tina',
 'uz'    => 'uzbe?tina',
 'vi'    => 'vietnam?tina',
 'zh'    => '?ín?tina',
 'zh-cn' => '?ín?tina zjednodu?ená',
 'zh-hk' => '?ín?tina tradi?ní',
 );
 
 |