81 lines
2.0 KiB
PHP
81 lines
2.0 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Authentication Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used during authentication for various
|
|
| messages that we need to display to the user. You are free to modify
|
|
| these language lines according to your application's requirements.
|
|
|
|
|
*/
|
|
|
|
'week_start_select' => 'Wybierz dzień tygodnia',
|
|
'week_start' => 'Tydzień zaczyna się w',
|
|
'today' => 'Dzisiaj',
|
|
'clear' => 'Wyczyść',
|
|
'days' => [
|
|
'sunday' => 'Niedziela',
|
|
'monday' => 'Poniedziałek',
|
|
'tuesday' => 'Wtorek',
|
|
'wednesday' => 'Środa',
|
|
'thursday' => 'Czwartek',
|
|
'friday' => 'Piątek',
|
|
'saturday' => 'Sobota',
|
|
],
|
|
|
|
'short_days' => [
|
|
'sunday' => 'Nd',
|
|
'monday' => 'Pon',
|
|
'tuesday' => 'Wt',
|
|
'wednesday' => 'Śr',
|
|
'thursday' => 'Czw',
|
|
'friday' => 'Pt',
|
|
'saturday' => 'Sob',
|
|
],
|
|
|
|
'min_days' => [
|
|
'sunday' => 'Ni',
|
|
'monday' => 'Po',
|
|
'tuesday' => 'Wt',
|
|
'wednesday' => 'Śr',
|
|
'thursday' => 'Cz',
|
|
'friday' => 'Pt',
|
|
'saturday' => 'So',
|
|
],
|
|
|
|
'months' => [
|
|
'january' => 'Styczeń',
|
|
'february' => 'Luty',
|
|
'march' => 'Marzec',
|
|
'april' => 'Kwiecień',
|
|
'may' => 'Maj',
|
|
'june' => 'Czerwiec',
|
|
'july' => 'Lipiec',
|
|
'august' => 'Sierpień',
|
|
'september' => 'Wrzesień',
|
|
'october' => 'Październik',
|
|
'november' => 'Listopad',
|
|
'december' => 'Grudzień',
|
|
],
|
|
|
|
'months_short' => [
|
|
'january' => 'Sty',
|
|
'february' => 'Lut',
|
|
'march' => 'Mar',
|
|
'april' => 'Kwi',
|
|
'may' => 'Maj',
|
|
'june' => 'Cze',
|
|
'july' => 'Lip',
|
|
'august' => 'Sie',
|
|
'september' => 'Wrz',
|
|
'october' => 'Paź',
|
|
'november' => 'List',
|
|
'december' => 'Gru',
|
|
],
|
|
|
|
];
|