You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
902 B
PHP
27 lines
902 B
PHP
<?php
|
|
|
|
/**
|
|
* Czech translation for Roundcube password plugin
|
|
*
|
|
* @version 1.0 (2009-08-29)
|
|
* @author Milan Kozak <hodza@hodza.net>
|
|
*
|
|
*/
|
|
|
|
$labels = array();
|
|
$labels['changepasswd'] = 'Změna hesla';
|
|
$labels['curpasswd'] = 'Aktuální heslo:';
|
|
$labels['newpasswd'] = 'Nové heslo:';
|
|
$labels['confpasswd'] = 'Nové heslo (pro kontrolu):';
|
|
|
|
$messages = array();
|
|
$messages['nopassword'] = 'Prosím zadejte nové heslo.';
|
|
$messages['nocurpassword'] = 'Prosím zadejte aktuální heslo.';
|
|
$messages['passwordincorrect'] = 'Zadané aktuální heslo není správné.';
|
|
$messages['passwordinconsistency'] = 'Zadaná hesla se neshodují. Prosím zkuste to znovu.';
|
|
$messages['crypterror'] = 'Heslo se nepodařilo uložit. Chybí šifrovací funkce.';
|
|
$messages['connecterror'] = 'Heslo se nepodařilo uložit. Problém s připojením.';
|
|
$messages['internalerror'] = 'Heslo se nepodařilo uložit.';
|
|
|
|
?>
|