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'] = 'Moderate Discussions'; 16 17$lang['discussion'] = 'Diskuze'; 18$lang['comment'] = 'Komentář'; 19$lang['comments'] = 'Komentáře'; 20$lang['url'] = 'Web'; 21$lang['address'] = 'Adresa'; 22$lang['date'] = 'Datum'; 23$lang['older'] = 'Starší komentáře'; 24$lang['newer'] = 'Novější komentáře'; 25$lang['btn_reply'] = 'Odpověď'; 26$lang['btn_hide'] = 'Skrýt'; 27$lang['btn_show'] = 'Zobrazit'; 28$lang['btn_change'] = 'Změnit'; 29$lang['statuschanged'] = 'Stav diskuse se změnil'; 30$lang['wordblock'] = 'Váš příspěvek byl blokován jako spam.'; 31$lang['mail_newcomment'] = 'Nový komentář'; 32 33$lang['status'] = 'Stav'; 34$lang['off'] = 'vypnuto'; 35$lang['open'] = 'otevřené'; 36$lang['closed'] = 'uzavřené'; 37 38$lang['reply'] = 'Odpověď'; 39$lang['replies'] = 'Odpovědi'; 40$lang['newthread'] = 'Nové vlákno'; 41$lang['threads'] = 'Vlákna'; 42 43//Setup VIM: ex: et ts=2 enc=utf-8 : 44