| 1 | <?php
|
|---|
| 2 | /**
|
|---|
| 3 | *
|
|---|
| 4 | * viewforum [Čeština]
|
|---|
| 5 | *
|
|---|
| 6 | * @package language
|
|---|
| 7 | * @version $Id: viewforum.php 431 2008-07-05 14:21:19Z ameeck $
|
|---|
| 8 | * @copyright (c) 2007 phpBB.cz
|
|---|
| 9 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|---|
| 10 | * Original copyright: (c) 2005 phpBB Group
|
|---|
| 11 | *
|
|---|
| 12 | */
|
|---|
| 13 |
|
|---|
| 14 | /**
|
|---|
| 15 | * DO NOT CHANGE
|
|---|
| 16 | */
|
|---|
| 17 | if (!defined('IN_PHPBB'))
|
|---|
| 18 | {
|
|---|
| 19 | exit;
|
|---|
| 20 | }
|
|---|
| 21 |
|
|---|
| 22 | if (empty($lang) || !is_array($lang))
|
|---|
| 23 | {
|
|---|
| 24 | $lang = array();
|
|---|
| 25 | }
|
|---|
| 26 |
|
|---|
| 27 | // DEVELOPERS PLEASE NOTE
|
|---|
| 28 | //
|
|---|
| 29 | // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
|---|
| 30 | //
|
|---|
| 31 | // Placeholders can now contain order information, e.g. instead of
|
|---|
| 32 | // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
|---|
| 33 | // translators to re-order the output of data while ensuring it remains correct
|
|---|
| 34 | //
|
|---|
| 35 | // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
|---|
| 36 | // equally where a string contains only two placeholders which are used to wrap text
|
|---|
| 37 | // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
|---|
| 38 |
|
|---|
| 39 | $lang = array_merge($lang, array(
|
|---|
| 40 | 'ACTIVE_TOPICS' => 'Oblíbená',
|
|---|
| 41 | 'ANNOUNCEMENTS' => 'Oznámení',
|
|---|
| 42 |
|
|---|
| 43 | 'FORUM_PERMISSIONS' => 'Oprávnění fóra',
|
|---|
| 44 |
|
|---|
| 45 | 'ICON_ANNOUNCEMENT' => 'Oznámení',
|
|---|
| 46 | 'ICON_STICKY' => 'Důležité',
|
|---|
| 47 |
|
|---|
| 48 | 'LOGIN_NOTIFY_FORUM' => 'Fórum je pouze pro registrované, prosím přihlaste se.',
|
|---|
| 49 |
|
|---|
| 50 | 'MARK_TOPICS_READ' => 'Označit všechna témata jako přečtená',
|
|---|
| 51 |
|
|---|
| 52 | 'NEW_POSTS_HOT' => 'Nové příspěvky[ Oblíbené ]',
|
|---|
| 53 | 'NEW_POSTS_LOCKED' => 'Nové příspěvky [ Zamknuté ]',
|
|---|
| 54 | 'NO_NEW_POSTS_HOT' => 'Žádné nové příspěvky [ Oblíbené ]',
|
|---|
| 55 | 'NO_NEW_POSTS_LOCKED' => 'Žádné nové příspěvky [ Zamknuté ]',
|
|---|
| 56 | 'NO_READ_ACCESS' => 'Nemáte potřebná oprávnění pro čtení témat v tomto fóru.',
|
|---|
| 57 |
|
|---|
| 58 | 'POST_FORUM_LOCKED' => 'Toto fórum je zamknuto',
|
|---|
| 59 |
|
|---|
| 60 | 'TOPICS_MARKED' => 'Všechna témata ve fóru byla označena jako přečtená',
|
|---|
| 61 |
|
|---|
| 62 | 'VIEW_FORUM' => 'Zobrazit fórum',
|
|---|
| 63 | 'VIEW_FORUM_TOPIC' => '1 téma',
|
|---|
| 64 | 'VIEW_FORUM_TOPICS' => '%d témat',
|
|---|
| 65 | ));
|
|---|
| 66 |
|
|---|
| 67 | ?>
|
|---|