1<?php 2/** 3 * Czech language file (UTF-8 encoding) 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Lukas Zapletal <lukas.zapletal at gmail dot com> 7 */ 8 9// settings must be present and set appropriately for the language 10$lang['encoding'] = 'utf-8'; 11$lang['direction'] = 'ltr'; 12 13// for admin plugins, the menu prompt to be displayed in the admin menu 14// if set here, the plugin doesn't need to override the getMenuText() method 15$lang['menu'] = 'Moderovat diskusi'; 16 17$lang['discussion'] = 'Diskuze'; 18$lang['comment'] = 'Komentář'; 19$lang['comments'] = 'Komentáře'; 20$lang['nocomments'] = 'Komentáře'; 21$lang['url'] = 'Web'; 22$lang['address'] = 'Adresa'; 23$lang['date'] = 'Datum'; 24$lang['entercomment'] = 'Vložte svůj komentář'; 25$lang['wikisyntax'] = 'Používání wiki syntaxe povoleno'; 26$lang['older'] = 'Starší komentáře'; 27$lang['newer'] = 'Novější komentáře'; 28$lang['btn_reply'] = 'Odpověď'; 29$lang['btn_hide'] = 'Skrýt'; 30$lang['btn_show'] = 'Zobrazit'; 31$lang['btn_change'] = 'Změnit'; 32$lang['statuschanged'] = 'Stav diskuse se změnil'; 33$lang['wordblock'] = 'Váš příspěvek byl blokován jako spam.'; 34$lang['moderation'] = 'Váš komentář byl přidán a čeká na schválení moderátorem.'; 35$lang['mail_newcomment'] = 'Nový komentář'; 36$lang['subscribe'] = 'Posílat upozornění na nové komentáře'; 37 38$lang['status'] = 'Stav'; 39$lang['off'] = 'vypnuto'; 40$lang['open'] = 'otevřené'; 41$lang['closed'] = 'uzavřené'; 42 43$lang['reply'] = 'Odpověď'; 44$lang['replies'] = 'Odpovědi'; 45$lang['newthread'] = 'Nové vlákno'; 46$lang['threads'] = 'Vlákna'; 47 48//Setup VIM: ex: et ts=2 enc=utf-8 : 49