| 
<?php
 /**
 * This file is part of the Carbon package.
 *
 * (c) Brian Nesbitt <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
 
 /**
 * Authors:
 * - szl_PL locale Przemyslaw Buczkowski [email protected]
 */
 return array_replace_recursive(require __DIR__.'/en.php', [
 'formats' => [
 'L' => 'DD.MM.YYYY',
 ],
 'months' => ['styczy?', 'luty', 'merc', 'kwjeciy?', 'moj', 'czyrwjy?', 'lipjy?', 'siyrpjy?', 'wrzesiy?', 'pa?dziernik', 'listopad', 'grudziy?'],
 'months_short' => ['sty', 'lut', 'mer', 'kwj', 'moj', 'czy', 'lip', 'siy', 'wrz', 'pa?', 'lis', 'gru'],
 'weekdays' => ['niydziela', 'py?dzi?ek', 'wt?rek', 'strz?da', 'sztwortek', 'pj?ntek', 'sob?ta'],
 'weekdays_short' => ['niy', 'py?', 'wt?', 'str', 'szt', 'pj?', 'sob'],
 'weekdays_min' => ['niy', 'py?', 'wt?', 'str', 'szt', 'pj?', 'sob'],
 'first_day_of_week' => 1,
 'day_of_first_week_of_year' => 4,
 
 'year' => ':count rok',
 'y' => ':count rok',
 'a_year' => ':count rok',
 
 'month' => ':count mje??nc',
 'm' => ':count mje??nc',
 'a_month' => ':count mje??nc',
 
 'week' => ':count Tyd?y?',
 'w' => ':count Tyd?y?',
 'a_week' => ':count Tyd?y?',
 
 'day' => ':count d?y?',
 'd' => ':count d?y?',
 'a_day' => ':count d?y?',
 
 'hour' => ':count godzina',
 'h' => ':count godzina',
 'a_hour' => ':count godzina',
 
 'minute' => ':count Minuta',
 'min' => ':count Minuta',
 'a_minute' => ':count Minuta',
 
 'second' => ':count Sek?nda',
 's' => ':count Sek?nda',
 'a_second' => ':count Sek?nda',
 ]);
 
 |