| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * Login
- *
- * Copyright 2010 by Jason Coward <jason@modxcms.com> and Shaun McCormick
- * <shaun@modxcms.com>
- *
- * Login is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation; either version 2 of the License, or (at your option) any
- * later version.
- *
- * Login is distributed in the hope that it will be useful, but WITHOUT ANY
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * Login; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * @package login
- */
- /**
- * Default English language strings for Login
- * @package login
- * @subpackage lexicon
- */
- $_lang['login'] = 'Přihlásit';
- $_lang['login.invalid_post'] = 'WebLogin neplatná POST akce: [[+action]]';
- $_lang['login.login_err'] = 'Neznámá chyba při přihlašování!';
- $_lang['login.logout'] = 'Odhlásit';
- $_lang['login.logout_err'] = 'Neznámá chyba při odhlašování!';
- $_lang['login.password'] = 'Heslo';
- $_lang['login.recaptcha_err_load'] = 'Nelze načíst třídu služby reCaptcha.';
- $_lang['login.username'] = 'Uživatelské jméno';
- $_lang['setting_login.forgot_password_confirm_resource'] = 'ID dokumentu pro změnu zapomenutého hesla';
- $_lang['setting_login.forgot_password_confirm_resource_desc'] = 'Zadejte ID dokumentu, kde je umístěn formulář pro změnu zapomenutého hesla.';
- $_lang['setting_login.forgot_password_email_subject'] = 'Předmět e-mailu žádosti zapomenutého heslaForgot Password Email Subject';
- $_lang['setting_login.forgot_password_email_subject_desc'] = 'Předmět e-mailu odesílaného při požadavku změny zapomenutého hesla.';
|