first commit

This commit is contained in:
2026-04-30 14:38:11 +02:00
commit e22bbde336
1994 changed files with 613950 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'undefined_group' => 'The %s group is not defined in your configuration.',
'extension_not_loaded' => 'The %s PHP extension must be loaded to use this driver.',
'unwritable' => 'The configured storage location, %s, is not writable.',
'resources' => 'Caching of resources is impossible, because resources cannot be serialized.',
'driver_error' => '%s',
);

View File

@@ -0,0 +1,59 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
// Two letter days
'su' => 'Su',
'mo' => 'Mo',
'tu' => 'Tu',
'we' => 'We',
'th' => 'Th',
'fr' => 'Fr',
'sa' => 'Sa',
// Short day names
'sun' => 'Sun',
'mon' => 'Mon',
'tue' => 'Tue',
'wed' => 'Wed',
'thu' => 'Thu',
'fri' => 'Fri',
'sat' => 'Sat',
// Long day names
'sunday' => 'Sunday',
'monday' => 'Monday',
'tuesday' => 'Tuesday',
'wednesday' => 'Wednesday',
'thursday' => 'Thursday',
'friday' => 'Friday',
'saturday' => 'Saturday',
// Short month names
'jan' => 'Jan',
'feb' => 'Feb',
'mar' => 'Mar',
'apr' => 'Apr',
'may' => 'May',
'jun' => 'Jun',
'jul' => 'Jul',
'aug' => 'Aug',
'sep' => 'Sep',
'oct' => 'Oct',
'nov' => 'Nov',
'dec' => 'Dec',
// Long month names
'january' => 'January',
'february' => 'February',
'march' => 'March',
'april' => 'April',
'mayl' => 'May',
'june' => 'June',
'july' => 'July',
'august' => 'August',
'september' => 'September',
'october' => 'October',
'november' => 'November',
'december' => 'December'
);

View File

@@ -0,0 +1,33 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'file_not_found' => 'The specified file, %s, was not found. Please verify that files exist by using file_exists() before using them.',
'requires_GD2' => 'The Captcha library requires GD2 with FreeType support. Please see http://php.net/gd_info for more information.',
// Words of varying length for the Captcha_Word_Driver to pick from
// Note: use only alphanumeric characters
'words' => array
(
'cd', 'tv', 'it', 'to', 'be', 'or',
'sun', 'car', 'dog', 'bed', 'kid', 'egg',
'bike', 'tree', 'bath', 'roof', 'road', 'hair',
'hello', 'world', 'earth', 'beard', 'chess', 'water',
'barber', 'bakery', 'banana', 'market', 'purple', 'writer',
'america', 'release', 'playing', 'working', 'foreign', 'general',
'aircraft', 'computer', 'laughter', 'alphabet', 'kangaroo', 'spelling',
'architect', 'president', 'cockroach', 'encounter', 'terrorism', 'cylinders',
),
// Riddles for the Captcha_Riddle_Driver to pick from
// Note: use only alphanumeric characters
'riddles' => array
(
array('Do you hate spam? (yes or no)', 'yes'),
array('Are you a robot? (yes or no)', 'no'),
array('Fire is... (hot or cold)', 'hot'),
array('The season after fall is...', 'winter'),
array('Which day of the week is it today?', strftime('%A')),
array('Which month of the year are we in?', strftime('%B')),
),
);

View File

@@ -0,0 +1,34 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'there_can_be_only_one' => 'There can be only one instance of Kohana per page request',
'uncaught_exception' => 'Uncaught %s: %s in file %s on line %s',
'invalid_method' => 'Invalid method %s called in %s',
'invalid_property' => 'The %s property does not exist in the %s class.',
'log_dir_unwritable' => 'The log directory is not writable: %s',
'resource_not_found' => 'The requested %s, %s, could not be found',
'invalid_filetype' => 'The requested filetype, .%s, is not allowed in your view configuration file',
'view_set_filename' => 'You must set the the view filename before calling render',
'no_default_route' => 'Please set a default route in config/routes.php',
'no_controller' => 'Kohana was not able to determine a controller to process this request: %s',
'page_not_found' => 'The page you requested, %s, could not be found.',
'stats_footer' => 'Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Kohana v{kohana_version}.',
'error_file_line' => '<tt>%s <strong>[%s]:</strong></tt>',
'stack_trace' => 'Stack Trace',
'generic_error' => 'Unable to Complete Request',
'errors_disabled' => 'You can go to the <a href="%s">home page</a> or <a href="%s">try again</a>.',
// Drivers
'driver_implements' => 'The %s driver for the %s library must implement the %s interface',
'driver_not_found' => 'The %s driver for the %s library could not be found',
// Resource names
'config' => 'config file',
'controller' => 'controller',
'helper' => 'helper',
'library' => 'library',
'driver' => 'driver',
'model' => 'model',
'view' => 'view',
);

View File

@@ -0,0 +1,15 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'undefined_group' => 'The %s group is not defined in your configuration.',
'error' => 'There was an SQL error: %s',
'connection' => 'There was an error connecting to the database: %s',
'invalid_dsn' => 'The DSN you supplied is not valid: %s',
'must_use_set' => 'You must set a SET clause for your query.',
'must_use_where' => 'You must set a WHERE clause for your query.',
'must_use_table' => 'You must set a database table for your query.',
'table_not_found' => 'Table %s does not exist in your database.',
'not_implemented' => 'The method you called, %s, is not supported by this driver.',
'result_read_only' => 'Query results are read only.'
);

View File

@@ -0,0 +1,8 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'undefined_group' => 'The %s group is not defined in your configuration.',
'requires_mcrypt' => 'To use the Encrypt library, mcrypt must be enabled in your PHP installation',
'no_encryption_key' => 'To use the Encrypt library, you must set an encryption key in your config file'
);

View File

@@ -0,0 +1,16 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
E_KOHANA => array( 1, 'Framework Error', 'Please check the Kohana documentation for information about the following error.'),
E_PAGE_NOT_FOUND => array( 1, 'Page Not Found', 'The requested page was not found. It may have moved, been deleted, or archived.'),
E_DATABASE_ERROR => array( 1, 'Database Error', 'A database error occurred while performing the requested procedure. Please review the database error below for more information.'),
E_RECOVERABLE_ERROR => array( 1, 'Recoverable Error', 'An error was detected which prevented the loading of this page. If this problem persists, please contact the website administrator.'),
E_ERROR => array( 1, 'Fatal Error', ''),
E_USER_ERROR => array( 1, 'Fatal Error', ''),
E_PARSE => array( 1, 'Syntax Error', ''),
E_WARNING => array( 1, 'Warning Message', ''),
E_USER_WARNING => array( 1, 'Warning Message', ''),
E_STRICT => array( 2, 'Strict Mode Error', ''),
E_NOTICE => array( 2, 'Runtime Message', ''),
);

View File

@@ -0,0 +1,7 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'invalid_subject' => 'Attempt to attach invalid subject %s to %s failed: Subjects must extend the Event_Subject class',
'invalid_observer' => 'Attempt to attach invalid observer %s to %s failed: Observers must extend the Event_Observer class',
);

View File

@@ -0,0 +1,33 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'getimagesize_missing' => 'The Image library requires the getimagesize() PHP function, which is not available in your installation.',
'unsupported_method' => 'Your configured driver does not support the %s image transformation.',
'file_not_found' => 'The specified image, %s, was not found. Please verify that images exist by using file_exists() before manipulating them.',
'type_not_allowed' => 'The specified image, %s, is not an allowed image type.',
'invalid_width' => 'The width you specified, %s, is not valid.',
'invalid_height' => 'The height you specified, %s, is not valid.',
'invalid_dimensions' => 'The dimensions specified for %s are not valid.',
'invalid_master' => 'The master dimension specified is not valid.',
'invalid_flip' => 'The flip direction specified is not valid.',
'directory_unwritable' => 'The specified directory, %s, is not writable.',
// ImageMagick specific messages
'imagemagick' => array
(
'not_found' => 'The ImageMagick directory specified does not contain a required program, %s.',
),
// GraphicsMagick specific messages
'graphicsmagick' => array
(
'not_found' => 'The GraphicsMagick directory specified does not contain a required program, %s.',
),
// GD specific messages
'gd' => array
(
'requires_v2' => 'The Image library requires GD2. Please see http://php.net/gd_info for more information.',
),
);

View File

@@ -0,0 +1,3 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang['query_methods_not_allowed'] = 'Query methods cannot be used through ORM';

View File

@@ -0,0 +1,15 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'undefined_group' => 'The %s group is not defined in your pagination configuration.',
'page' => 'page',
'pages' => 'pages',
'item' => 'item',
'items' => 'items',
'of' => 'of',
'first' => 'first',
'last' => 'last',
'previous' => 'previous',
'next' => 'next',
);

View File

@@ -0,0 +1,15 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'benchmarks' => 'Benchmarks',
'post_data' => 'Post Data',
'no_post' => 'No post data',
'session_data' => 'Session Data',
'no_session' => 'No session data',
'queries' => 'Database Queries',
'no_queries' => 'No queries',
'no_database' => 'Database not loaded',
'cookie_data' => 'Cookie Data',
'no_cookie' => 'No cookie data',
);

View File

@@ -0,0 +1,6 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'invalid_session_name' => 'The session_name, %s, is invalid. It must contain only alphanumeric characters and underscores. Also at least one letter must be present.',
);

View File

@@ -0,0 +1,6 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'general_error' => 'An error occurred while sending the email message.'
);

View File

@@ -0,0 +1,6 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'not_writable' => 'The upload destination folder, %s, does not appear to be writable.',
);

View File

@@ -0,0 +1,41 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
// Class errors
'invalid_rule' => 'Invalid validation rule used: %s',
'i18n_array' => 'The %s i18n key must be an array to be used with the in_lang rule',
'not_callable' => 'Callback %s used for Validation is not callable',
// General errors
'unknown_error' => 'Unknown validation error while validating the %s field.',
'required' => 'The %s field is required.',
'min_length' => 'The %s field must be at least %d characters long.',
'max_length' => 'The %s field must be %d characters or fewer.',
'exact_length' => 'The %s field must be exactly %d characters.',
'in_array' => 'The %s field must be selected from the options listed.',
'matches' => 'The %s field must match the %s field.',
'valid_url' => 'The %s field must contain a valid URL.',
'valid_email' => 'The %s field must contain a valid email address.',
'valid_ip' => 'The %s field must contain a valid IP address.',
'valid_type' => 'The %s field must only contain %s characters.',
'range' => 'The %s field must be between specified ranges.',
'regex' => 'The %s field does not match accepted input.',
'depends_on' => 'The %s field depends on the %s field.',
// Upload errors
'user_aborted' => 'The %s file was aborted during upload.',
'invalid_type' => 'The %s file is not an allowed file type.',
'max_size' => 'The %s file you uploaded was too large. The maximum size allowed is %s.',
'max_width' => 'The %s file you uploaded was too big. The maximum allowed width is %spx.',
'max_height' => 'The %s file you uploaded was too big. The maximum allowed height is %spx.',
'min_width' => 'The %s file you uploaded was too small. The minimum allowed width is %spx.',
'min_height' => 'The %s file you uploaded was too small. The minimum allowed height is %spx.',
// Field types
'alpha' => 'alphabetical',
'alpha_numeric' => 'alphabetical and numeric',
'alpha_dash' => 'alphabetical, dash, and underscore',
'digit' => 'digit',
'numeric' => 'numeric',
);

View File

@@ -0,0 +1,10 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'undefined_group' => 'Grupa %s nie została zdefiniowana w konfiguracji.',
'extension_not_loaded' => 'Aby użyć tego sterownika musi zostać załadowane rozszerzenie PHP %s.',
'unwritable' => 'Wybrane w konfiguracji miejsce, %s, jest tylko do odczytu.',
'resources' => 'Zachowanie danych w pamięci podręcznej jest niemożliwe z powodu braku możliwości serializacji.',
'driver_error' => '%s',
);

View File

@@ -0,0 +1,59 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
// Two letter days
'su' => 'Nd',
'mo' => 'Pn',
'tu' => 'Wt',
'we' => 'Śr',
'th' => 'Cz',
'fr' => 'Pt',
'sa' => 'So',
// Short day names
'sun' => 'Nie',
'mon' => 'Pon',
'tue' => 'Wto',
'wed' => 'Śro',
'thu' => 'Czw',
'fri' => 'Pią',
'sat' => 'Sob',
// Long day names
'sunday' => 'Niedziela',
'monday' => 'Poniedziałek',
'tuesday' => 'Wtorek',
'wednesday' => 'Środa',
'thursday' => 'Czwartek',
'friday' => 'Piątek',
'saturday' => 'Sobota',
// Short month names
'jan' => 'Sty',
'feb' => 'Lut',
'mar' => 'Mar',
'apr' => 'Kwi',
'may' => 'Maj',
'jun' => 'Cze',
'jul' => 'Lip',
'aug' => 'Sie',
'sep' => 'Wrz',
'oct' => 'Paź',
'nov' => 'Lis',
'dec' => 'Gru',
// Long month names
'january' => 'Styczeń',
'february' => 'Luty',
'march' => 'Marzec',
'april' => 'Kwiecień',
'mayl' => 'Maj',
'june' => 'Czerwiec',
'july' => 'Lipiec',
'august' => 'Sierpień',
'september' => 'Wrzesień',
'october' => 'Październik',
'november' => 'Listopad',
'december' => 'Grudzień'
);

View File

@@ -0,0 +1,7 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'file_not_found' => 'Podany plik %s, nie został znaleziony. Sprawdź czy plik istnieje używając file_exists() przed wywołaniem.',
'requires_GD2' => 'Biblioteka Captcha wymaga biblioteki graficznej GD2 z obsługą FreeType. Więcej informacji pod: http://php.net/gd_info.',
);

View File

@@ -0,0 +1,34 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'there_can_be_only_one' => 'Na jedno wywołanie strony można powołać tylko jedną instancję Kohany.',
'uncaught_exception' => 'Nieobsługiwany %s: %s w pliku %s w lini %s',
'invalid_method' => 'Nieprawidłowa metoda %s wywołana w %s.',
'invalid_property' => 'Właściwość %s w klasie %s nie istnieje.',
'log_dir_unwritable' => 'Katalog zapisu dziennika w konfiguracji, wskazuje na położenie tylko do odczytu.',
'resource_not_found' => 'Żądany %s, %s, Nie może zostać znaleziony.',
'invalid_filetype' => 'Żądany typ pliku, .%s, w konfiguracji widoków nie jest podany jako dozwolony.',
'view_set_filename' => 'Musisz podać plik widoku przed wywołaniem funkcji render',
'no_default_route' => 'Proszę ustawić domyślny adres wywołania w config/routes.php.',
'no_controller' => 'Kohana nie była w stanie określić kontrolera obsługującego wywołanie: %s',
'page_not_found' => 'Wywołana strona, %s, nie może zostać znaleziona.',
'stats_footer' => 'Czas wywołania: {execution_time} sekund, użyto {memory_usage} MB pamięci. Wygenerowano przez Kohana v{kohana_version}.',
'error_file_line' => '<tt>%s <strong>[%s]:</strong></tt>',
'stack_trace' => 'Zrzut stosu (Stack Trace)',
'generic_error' => 'Nie można zakończyć żądania',
'errors_disabled' => 'Przejdź na <a href="%s">stronę główną</a> lub <a href="%s">spróbuj znowu</a>.',
// Drivers
'driver_implements' => 'Sterownik %s dla biblioteki %s musi posiadać implementację interfejsu %s',
'driver_not_found' => 'Nie znaleziono sterownika %s dla biblioteki %s',
// Resource names
'config' => 'plik konfiguracyjny',
'controller' => 'kontroler',
'helper' => 'pomocnik',
'library' => 'biblioteka',
'driver' => 'sterownik',
'model' => 'model',
'view' => 'widok',
);

View File

@@ -0,0 +1,15 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'undefined_group' => 'Brak definicji grupy % w konfiguracji.',
'error' => 'Wystąpił błąd SQL: %s',
'connection' => 'Wystąpił błąd podczas połączenia do bazy danych: %s',
'invalid_dsn' => 'Ustawiony DSN jest nieprawidłowy: %s',
'must_use_set' => 'Proszę ustawić sekcję SET dla zapytania.',
'must_use_where' => 'Proszę ustawić sekcję WHERE dla zapytania.',
'must_use_table' => 'Proszę wybrać tabelę dla zapytania.',
'table_not_found' => 'Tabeli %s nie ma w bazie danych.',
'not_implemented' => 'Wywołana metoda, %s, nie jest obsługiwana przez sterownik.',
'result_read_only' => 'Wynik zapytania jest tylko do odczytu.'
);

View File

@@ -0,0 +1,8 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'undefined_group' => 'Brak definicji grupy %s w konfiguracji.',
'requires_mcrypt' => 'Aby użyć biblioteki szyfrowania, należy włączyć mcrypt w konfiguracji PHP.',
'no_encryption_key' => 'Aby użyć biblioteki szyfrowania, należy zdefiniować klucz szyfrujący w pliku konfiguracji.',
);

View File

@@ -0,0 +1,16 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
E_KOHANA => array( 1, 'Błąd aplikacji', 'Proszę sprawdzić w dokumentacji Kohana informacje o tym błędzie.'),
E_PAGE_NOT_FOUND => array( 1, 'Strony nie znaleziono', 'Nie znaleziono wybranej strony. Mogła zostać przeniesiona, usunięta lub zarchiwizowana.'),
E_DATABASE_ERROR => array( 1, 'Błąd Bazy Danych', 'W bazie danych wystąpił błąd podczas próby wywołania zapytania. Proszę zapoznać się z opisem błędu poniżej.'),
E_RECOVERABLE_ERROR => array( 1, 'Nieoczekiwany błąd', 'Wystąpił błąd który uniemożliwił załadowanie strony. Jeśli problem się utrzymuje prosimy skontaktować się z administratorem strony.'),
E_ERROR => array( 1, 'Błąd krytyczny', ''),
E_USER_ERROR => array( 1, 'Błąd krytyczny', ''),
E_PARSE => array( 1, 'Błąd składni', ''),
E_WARNING => array( 1, 'Ostrzeżenie', ''),
E_USER_WARNING => array( 1, 'Ostrzeżenie', ''),
E_STRICT => array( 2, 'Błąd ścisłej notacji', ''),
E_NOTICE => array( 2, 'Błąd wykonania', ''),
);

View File

@@ -0,0 +1,7 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'invalid_subject' => 'Nieudana próba podłączenia niewłaściwego podmiotu %s do %s. Podmiot musi dziedziczyć po klasie Event_Subject.',
'invalid_observer' => 'Nieudana próba podłączenia niewłaściwego obserwatora %s do %s. Obserwator musi dziedziczyć po klasie Event_Observer.',
);

View File

@@ -0,0 +1,33 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'getimagesize_missing' => 'Biblioteka edycji grafiki wymaga funkcji PHP getimagesize(), która nie jest dostępna dla obecnej instalacji.',
'unsupported_method' => 'Biblioteka edycji grafiki nie posiada opcji: %s.',
'file_not_found' => 'Podana grafika %s, nie została znaleziona. Sprawdź proszę czy plik grafiki istnieje używając funkcji file_exists przed próbą transformacji.',
'type_not_allowed' => 'Podana grafika, %s, jest niedozwolonego typu.',
'invalid_width' => 'Podana szerokość, %s, jest nieprawidłowa.',
'invalid_height' => 'Podana wysokość, %s, jest nieprawidłowa.',
'invalid_dimensions' => 'Podane rozmiary dla %s są nieprawidłowe.',
'invalid_master' => 'Nadrzędne podane wymiary, nie są prawidłowe.',
'invalid_flip' => 'Podany kierunek obrotu jest nieprawidłowy.',
'directory_unwritable' => 'W podanym folderze, %s, zapis jest niedozwolony.',
// ImageMagick specific messages
'imagemagick' => array
(
'not_found' => 'Podany katalog ImageMagick nie zawiera wymaganego programu, %s.',
),
// GraphicsMagick specific messages
'graphicsmagick' => array
(
'not_found' => 'Podany katalog GraphicsMagick nie zawiera wymaganego programu, %s.',
),
// GD specific messages
'gd' => array
(
'requires_v2' => 'Biblioteka manipulacji obrazem wymaga GD2. Zobacz http://php.net/gd_info aby dowiedzieć się więcej.',
),
);

View File

@@ -0,0 +1,3 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang['query_methods_not_allowed'] = 'Korzystając z ORM nie można używać zapytań.';

View File

@@ -0,0 +1,15 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'undefined_group' => 'Grupa %s nie została zdefiniowana w konfiguracji paginacji.',
'page' => 'strona',
'pages' => 'stron',
'item' => 'element',
'items' => 'elementów',
'of' => 'z',
'first' => 'pierwsza',
'last' => 'ostatnia',
'previous' => 'poprzednia',
'next' => 'następna',
);

View File

@@ -0,0 +1,16 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'benchmarks' => 'Pomiar wydajności',
'post_data' => 'Dane typu POST',
'no_post' => 'Brak danych typu POST',
'session_data' => 'Dane sesji',
'no_session' => 'Brak danych sesji',
'queries' => 'Zapytania do bazy danych',
'no_queries' => 'Brak zapytań',
'no_database' => 'Baza danych nie jest załadowana',
'cookie_data' => 'Dane Ciasteczka',
'no_cookie' => 'Brak Ciasteczka',
);

View File

@@ -0,0 +1,6 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'invalid_session_name' => 'Nieprawidłowa session_name, %s. Powinna zawierać wyłącznie znaki alfanumeryczne i przynajmniej jedną literę.',
);

View File

@@ -0,0 +1,6 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'general_error' => 'Wystąpił nieznany błąd podczas wysyłania wiadomości.',
);

View File

@@ -0,0 +1,6 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'not_writable' => 'Nie posiadasz prawa zapisu do docelowego katalogu %s.',
);

View File

@@ -0,0 +1,41 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
// Class errors
'invalid_rule' => 'Użyto niepoprawnej reguły walidacji: %s',
'i18n_array' => 'Klucz %s z i18n musi być tablicą do użycia z zasadami in_lang.',
'not_callable' => 'Funkcja callback %s uzyta w walidacji nie może zostać wywołana.',
// General errors
'unknown_error' => 'Nieznany błąd walidacji podczas walidowania pola %s.',
'required' => 'Pole %s jest wymagane.',
'min_length' => 'Minimalna wymagana ilość znaków dla pola %s to %d.',
'max_length' => 'Maksymalana wymagana ilość znaków dla pola %s to %d.',
'exact_length' => 'Wymagana ilość znaków dla pola %s to dokładnie %d.',
'in_array' => 'Wartość pola %s musi zostać wybrana z listy.',
'matches' => 'Pole %s musi być identyczne z polem %s.',
'valid_url' => 'Pole %s musi zawierać poprawny adres URL, zaczynający się od %s://.',
'valid_email' => 'Pole %s musi zawierać poprawny adres email.',
'valid_ip' => 'Pole %s musi zawierać poprawny numer IP.',
'valid_type' => 'Pole %s może zawierać wyłącznie znaki typu %s.',
'range' => 'Pole %s musi się zawierać w określonym zakresie.',
'regex' => 'Pole %s nie odpowiada zdefiniowanej masce wprowadzania.',
'depends_on' => 'Pole %s jest zależne od pola %s.',
// Upload errors
'user_aborted' => 'Przerwano podczas wysyłania pliku %s.',
'invalid_type' => 'Plik %s ma nieprawidłowy typ.',
'max_size' => 'Rozmiar pliku %s przekracza dozwoloną wartość. Maksymalna wielkość to %s.',
'max_width' => 'Szerokość pliku %s przekracza dozwoloną wartość. Maksymalna szerokość to %spx.',
'max_height' => 'Wysokość pliku %s przekracza dozwoloną wartość. Maksymalna wysokość to %spx.',
'min_width' => 'Plik %s który próbujesz wysłać, jest zbyt mały. Minimalna dozwolona szerokość to %spx.',
'min_height' => 'Plik %s który próbujesz wysłać, jest zbyt mały. Minimalna dozwolona wysokość to %spx.',
// Field types
'alpha' => 'litera',
'alpha_numeric' => 'litera i/lub cyfra',
'alpha_dash' => 'litera, podkreślenie i myślnik',
'digit' => 'cyfra',
'numeric' => 'liczba',
);