mirror of
https://github.com/PawelSuwinski/moodle-auth_emailotp.git
synced 2026-05-16 21:41:27 +02:00
68 lines
3.0 KiB
PHP
68 lines
3.0 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle 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 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle 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 Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Strings for component 'auth_emailotp', language 'pl'.
|
|
*
|
|
* @package auth_emailotp
|
|
* @copyright 2020 Pawel Suwinski <psuw@wp.pl>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
$string['pluginname'] = 'Email OTP';
|
|
$string['eventotpgenerated'] = 'Hasło wynegerowano';
|
|
$string['eventotprevoked'] = 'Hasło unieważniono';
|
|
$string['otpgeneratedsubj'] = 'Hasło jednorazowe';
|
|
$string['otpgeneratedtext'] = 'Hasło jednorazowe dla bieżącej sesji: {$a->password}';
|
|
$string['otpsentsuccess'] = 'Hasło jednorazowe zostało wysłane na podany adres email.';
|
|
$string['otpsenterror'] = 'Wystąpił błąd podczas wysyłania hasła jednorazowego.';
|
|
$string['otpsentinfo'] = 'Hasło jednorazowe dla bieżącej sesji już zostało wygenerowane i wysłane.';
|
|
$string['otprevoked'] = 'Poprzednio wygenerowane hasło zostało unieważnione z powodu przekroczenia limitu niepoprawnych logowań.';
|
|
$string['otpperiodwarning'] = 'Nie zachowany minimalny odstęp, po którym kolejne hasło może być wygenerowane. Spróbuj ponownie później.';
|
|
$string['revokethreshold'] = 'Próg nieważnienia';
|
|
$string['revokethreshold_help'] = 'Limit nieudanych logowań unieważniających wygenerowane hasło (0 - bez limitu).';
|
|
$string['minrequestperiod'] = 'Minimalny odstęp';
|
|
$string['minrequestperiod_help'] = 'Czas w sekundach, po którym kolejne hasło może być wygenerowane (0 - nieograniczony). Wymaga działającego loggera.';
|
|
$string['logstorerequired'] = '<b>Uwaga: logger nieaktywny! <a href="{$a}">Aktywuj logger</a> albo ustaw czas na 0.</b>';
|
|
$string['fieldsmapping'] = 'Mapowanie pól profilu użytkownika podczas rejestracji';
|
|
$string['fieldsmapping_pattern'] = 'Wzorzec';
|
|
$string['fieldsmapping_pattern_help'] = 'Grupujące wyrażenie regularne PCRE.';
|
|
$string['fieldsmapping_mapping'] = 'Mapowanie';
|
|
$string['fieldsmapping_mapping_help'] = 'Wyrażenie mapujące.';
|
|
$string['fieldsmapping_help'] = <<<'EOT'
|
|
<p> Przykład użycia:</p>
|
|
|
|
Wzorzec:<br />
|
|
<pre>
|
|
#/(?P<FIRST>[^\.]+)\.(?P<LAST>[^@]+)@(?P<COMPANY>[^\.]+).*#
|
|
</pre>
|
|
|
|
Mapowanie:<br />
|
|
<pre>
|
|
firstname:FIRST:ucfirst
|
|
lastname:LAST:ucfirst
|
|
institution:COMPANY:strtoupper
|
|
</pre>
|
|
|
|
<p>odwzoruje <em>my.name@corp.com</em> na:</p>
|
|
|
|
firstname: My<br />
|
|
lastname: Name<br />
|
|
institution: CORP<br />
|
|
|
|
<p>Dozwolone modyfikatory: ucfirst, ucwords, strtoupper.</p>
|
|
EOT;
|