-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror_messages_pl_PL.php
More file actions
37 lines (35 loc) · 2.32 KB
/
Copy patherror_messages_pl_PL.php
File metadata and controls
37 lines (35 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
if(!defined('whPwK4QzToQ2omolUMYUeeRT3VedWQpbnIzi8Htm9eBzGMO5zCY0MZwhBmFH')) {
die('');
}
/************************************************************************************
* This class validates and sanitizes data received from HTML forms *
* *
* Copyright (C) 2018 Maciej Modzelewski <https://maciejmodzelewski.com/contact/> *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU Affero General Public License as *
* published by the Free Software Foundation, either version 3 of the *
* License, or (at your option) any later version. *
* *
* This program 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 Affero General Public License for more details. *
* *
* You should have received a copy of the GNU Affero General Public License *
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
*************************************************************************************/
$error_empty = 'To pole nie może być puste.';
$error_number = 'Ten wpis powinien być liczbą.';
$error_text = 'Ten wpis powinien być tekstem.';
$error_date = "Ten wpis powinien być datą w formacie $format.";
$error_time = "Ten wpis powinien być czasem w formacie $format.";
$error_min = "Ten wpis powinien być co najmniej $min.";
$error_max = "Ten wpis powinien być co najwyżej $max.";
$error_min_char = "Ten wpis powinien zawierać co najmniej $min znak/i/ów.";
$error_max_char = "Ten wpis powinien zawierać co najwyżej $max znak/i/ów.";
$error_early = 'Data nie może być wcześniejsza niż dzisiaj.';
$error_late = "Data nie może być późniejsza niż ";
$error_format = 'Nieodpowiednio sformatowane dane.';
?>