Thomas Bruederli
2012-08-06 20825920e3f723c1a2a962beaa72a33e82cd14da
commit | author | age
48e9c1 1 <?php
T 2
208259 3 /*
TB 4  +-----------------------------------------------------------------------+
5  | localization/cs_CZ/labels.inc                                         |
6  |                                                                       |
7  | Language file of the Roundcube Webmail client                         |
8  | Copyright (C) 2012, The Roundcube Dev Team                            |
9  | Licensed under the GNU General Public License                         |
10  |                                                                       |
11  +-----------------------------------------------------------------------+
12  | Author: Thomas                                                        |
13  +-----------------------------------------------------------------------+
14 */
48e9c1 15
T 16 $labels = array();
208259 17 $labels['changepasswd'] = 'Změna hesla';
TB 18 $labels['curpasswd'] = 'Aktuální heslo:';
19 $labels['newpasswd'] = 'Nové heslo:';
20 $labels['confpasswd'] = 'Nové heslo (pro kontrolu):';
21 $labels['nopassword'] = 'Prosím zadejte nové heslo.';
22 $labels['nocurpassword'] = 'Prosím zadejte aktuální heslo.';
23 $labels['passwordincorrect'] = 'Zadané aktuální heslo není správné.';
24 $labels['passwordinconsistency'] = 'Zadaná hesla se neshodují. Prosím zkuste to znovu.';
25 $labels['crypterror'] = 'Heslo se nepodařilo uložit. Chybí šifrovací funkce.';
26 $labels['connecterror'] = 'Heslo se nepodařilo uložit. Problém s připojením.';
27 $labels['internalerror'] = 'Heslo se nepodařilo uložit.';
28 $labels['passwordshort'] = 'Heslo musí mít alespoň $length znaků.';
29 $labels['passwordweak'] = 'Heslo musí obsahovat alespoň jedno číslo a jedno interpuknční znaménko.';
30 $labels['passwordforbidden'] = 'Heslo obsahuje nepovolené znaky.';
48e9c1 31