| 
<?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ámy',
 'ar'    => 'arab?ina',
 'az'    => 'azerbajd?an?ina',
 'bg'    => 'bulhar?ina',
 'bn'    => 'bengál?ina',
 'bo'    => 'tibet?ina',
 'ceb'   => 'cebuan?ina',
 'cs'    => '?e?tina',
 'cy'    => 'wale?tina',
 'da'    => 'dán?ina',
 'de'    => 'nem?ina',
 'el'    => 'gré?tina',
 'en'    => 'angli?tina',
 'en-gb' => 'angli?tina GB',
 'en-us' => 'angli?tina US',
 'es'    => '?paniel?ina',
 'et'    => 'estón?ina',
 'fa'    => 'perz?tina',
 'fi'    => 'fín?tina',
 'fr'    => 'francúz?tina',
 'gu'    => 'gud?arat?ina',
 'ha'    => 'hau?ina',
 'haw'   => 'havaj?ina',
 'he'    => 'hebrej?ina',
 'hi'    => 'hind?ina',
 'hr'    => 'chorvat?ina',
 'hu'    => 'ma?ar?ina',
 'hy'    => 'armén?ina',
 'id'    => 'indonéz?ina',
 'is'    => 'island?ina',
 'it'    => 'talian?ina',
 'ja'    => 'japon?ina',
 'ka'    => 'gruzín?ina',
 'kh'    => 'kambod?tina',
 'kk'    => 'kazach?ina',
 'ko'    => 'kórej?ina',
 'ky'    => 'kirgiz?ina',
 'la'    => 'latina',
 'lo'    => 'lao?tina',
 'lt'    => 'litov?ina',
 'lv'    => 'loty?tina',
 'mk'    => 'macedón?ina',
 'ml'    => 'malajám?ina',
 'mn'    => 'mongol?ina',
 'my'    => 'barm?ina',
 'ne'    => 'nepál?ina',
 'ne'    => 'nepál?ina',
 'nl'    => 'holand?ina',
 'no'    => 'nór?ina',
 'pidgin' => 'pid?in?ina',
 'pl'    => 'po??tina',
 'ps'    => 'pa?t?ina',
 'pt'    => 'portugal?ina',
 'ro'    => 'rumun?ina',
 'ru'    => 'ru?tina',
 'si'    => 'sinhál?ina',
 'sk'    => 'sloven?ina',
 'sl'    => 'slovin?ina',
 'so'    => 'somál?ina',
 'sq'    => 'alban?ina',
 'sr'    => 'srb?ina',
 'sv'    => '?véd?ina',
 'sw'    => 'swahil?ina',
 'ta'    => 'tamil?ina',
 'th'    => 'thaj?tina',
 'tl'    => 'tagal?ina',
 'tr'    => 'tur?ina',
 'uk'    => 'ukrajin?ina',
 'ur'    => 'urd?ina',
 'uz'    => 'uzbe?tina',
 'vi'    => 'vietnam?ina',
 'zh'    => '?ín?tina',
 'zh-cn' => '?ín?tina zjednodu?ená',
 'zh-hk' => '?ín?tina tradi?ná',
 );
 
 |