blob: 09221e0aab6a13c064fcb968b5af9b1ce1e7326e [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3/**
4 * This file is part of the Carbon package.
5 *
6 * (c) Brian Nesbitt <brian@nesbot.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11return array_replace_recursive(require __DIR__.'/bs.php', [
12 'meridiem' => ['пре подне', 'поподне'],
13 'weekdays' => ['недјеља', 'понедјељак', 'уторак', 'сриједа', 'четвртак', 'петак', 'субота'],
14 'weekdays_short' => ['нед', 'пон', 'уто', 'сри', 'чет', 'пет', 'суб'],
15 'weekdays_min' => ['нед', 'пон', 'уто', 'сри', 'чет', 'пет', 'суб'],
16 'months' => ['јануар', 'фебруар', 'март', 'април', 'мај', 'јуни', 'јули', 'аугуст', 'септембар', 'октобар', 'новембар', 'децембар'],
17 'months_short' => ['јан', 'феб', 'мар', 'апр', 'мај', 'јун', 'јул', 'ауг', 'сеп', 'окт', 'нов', 'дец'],
18 'first_day_of_week' => 1,
19 'formats' => [
20 'LT' => 'HH:mm',
21 'LTS' => 'HH:mm:ss',
22 'L' => 'D.M.YYYY.',
23 'LL' => 'DD.MM.YYYY.',
24 'LLL' => 'DD. MMMM YYYY. HH:mm',
25 'LLLL' => 'dddd, DD. MMMM YYYY. HH:mm',
26 ],
27]);