<?php
/**
* This file is part of the Carbon package.
*
* (c) Brian Nesbitt <brian@nesbot.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Authors:
* - Wac?aw Jacek
* - François B
* - Tim Fish
* - Serhan Apayd?n
* - Massimiliano Caniparoli
* - JD Isaacks
* - Jakub Szwacz
* - Jan
* - Paul
* - damlys
* - Marek (marast78)
* - Peter (UnrulyNatives)
*/
return [
'year' => ':count rok|:count lata|:count lat',
'a_year' => 'rok|:count lata|:count lat',
'y' => ':countr|:countl',
'month' => ':count miesi?c|:count miesi?ce|:count miesi?cy',
'a_month' => 'miesi?c|:count miesi?ce|:count miesi?cy',
'm' => ':countmies',
'week' => ':count tydzie?|:count tygodnie|:count tygodni',
'a_week' => 'tydzie?|:count tygodnie|:count tygodni',
'w' => ':counttyg',
'day' => ':count dzie?|:count dni|:count dni',
'a_day' => 'dzie?|:count dni|:count dni',
'd' => ':countd',
'hour' => ':count godzina|:count godziny|:count godzin',
'a_hour' => 'godzina|:count godziny|:count godzin',
'h' => ':countg',
'minute' => ':count minuta|:count minuty|:count minut',
'min' => ':countm',
'a_minute' => 'minuta|:count minuty|:count minut',
'second' => ':count sekunda|:count sekundy|:count sekund',
'a_second' => '{1}kilka sekund|:count sekunda|:count sekundy|:count sekund',
's' => ':counts',
'ago' => ':time temu',
'from_now' => 'za :time',
'after' => ':time po',
'before' => ':time przed',
'diff_now' => 'przed chwil?',
'diff_yesterday' => 'wczoraj',
'diff_tomorrow' => 'jutro',
'diff_before_yesterday' => 'przedwczoraj',
'diff_after_tomorrow' => 'pojutrze',
'formats' => [
'LT' => 'HH:mm',
'LTS' => 'HH:mm:ss',
'L' => 'DD.MM.YYYY',
'LL' => 'D MMMM YYYY',
'LLL' => 'D MMMM YYYY HH:mm',
'LLLL' => 'dddd, D MMMM YYYY HH:mm',
],
'calendar' => [
'sameDay' => '[Dzi? o] LT',
'nextDay' => '[Jutro o] LT',
'nextWeek' => function (\Carbon\CarbonInterface $date) {
switch ($date->dayOfWeek) {
case 0:
return '[W niedziel? o] LT';
case 2:
return '[We wtorek o] LT';
case 3:
return '[W ?rod? o] LT';
case 6:
return '[W sobot? o] LT';
default:
return '[W] dddd [o] LT';
}
},
'lastDay' => '[Wczoraj o] LT',
'lastWeek' => function (\Carbon\CarbonInterface $date) {
switch ($date->dayOfWeek) {
case 0:
return '[W zesz?? niedziel? o] LT';
case 3:
return '[W zesz?? ?rod? o] LT';
case 6:
return '[W zesz?? sobot? o] LT';
default:
return '[W zesz?y] dddd [o] LT';
}
},
'sameElse' => 'L',
],
'ordinal' => ':number.',
'months' => ['stycznia', 'lutego', 'marca', 'kwietnia', 'maja', 'czerwca', 'lipca', 'sierpnia', 'wrze?nia', 'pa?dziernika', 'listopada', 'grudnia'],
'months_standalone' => ['stycze?', 'luty', 'marzec', 'kwiecie?', 'maj', 'czerwiec', 'lipiec', 'sierpie?', 'wrzesie?', 'pa?dziernik', 'listopad', 'grudzie?'],
'months_short' => ['sty', 'lut', 'mar', 'kwi', 'maj', 'cze', 'lip', 'sie', 'wrz', 'pa?', 'lis', 'gru'],
'months_regexp' => '/DD?o?\.?(\[[^\[\]]*\]|\s)+MMMM?/',
'weekdays' => ['niedziela', 'poniedzia?ek', 'wtorek', '?roda', 'czwartek', 'pi?tek', 'sobota'],
'weekdays_short' => ['ndz', 'pon', 'wt', '?r', 'czw', 'pt', 'sob'],
'weekdays_min' => ['Nd', 'Pn', 'Wt', '?r', 'Cz', 'Pt', 'So'],
'first_day_of_week' => 1,
'day_of_first_week_of_year' => 4,
'list' => [', ', ' i '],
'meridiem' => ['przed po?udniem', 'po po?udniu'],
];
|