| 
<?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:
 * - Franēois B
 * - JD Isaacks
 * - Fadion Dashi
 */
 return [
 'year' => ':count vit|:count vjet',
 'a_year' => 'njė vit|:count vite',
 'y' => ':count v.',
 'month' => ':count muaj',
 'a_month' => 'njė muaj|:count muaj',
 'm' => ':count muaj',
 'week' => ':count javė',
 'a_week' => ':count javė|:count javė',
 'w' => ':count j.',
 'day' => ':count ditė',
 'a_day' => 'njė ditė|:count ditė',
 'd' => ':count d.',
 'hour' => ':count orė',
 'a_hour' => 'njė orė|:count orė',
 'h' => ':count o.',
 'minute' => ':count minutė|:count minuta',
 'a_minute' => 'njė minutė|:count minuta',
 'min' => ':count min.',
 'second' => ':count sekondė|:count sekonda',
 'a_second' => 'disa sekonda|:count sekonda',
 's' => ':count s.',
 'ago' => ':time mė parė',
 'from_now' => 'nė :time',
 'after' => ':time pas',
 'before' => ':time para',
 'diff_now' => 'tani',
 'diff_yesterday' => 'dje',
 'diff_tomorrow' => 'nesėr',
 'diff_before_yesterday' => 'pardje',
 'diff_after_tomorrow' => 'pasnesėr',
 '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' => '[Sot nė] LT',
 'nextDay' => '[Nesėr nė] LT',
 'nextWeek' => 'dddd [nė] LT',
 'lastDay' => '[Dje nė] LT',
 'lastWeek' => 'dddd [e kaluar nė] LT',
 'sameElse' => 'L',
 ],
 'ordinal' => ':number.',
 'meridiem' => ['PD', 'MD'],
 'months' => ['janar', 'shkurt', 'mars', 'prill', 'maj', 'qershor', 'korrik', 'gusht', 'shtator', 'tetor', 'nėntor', 'dhjetor'],
 'months_short' => ['jan', 'shk', 'mar', 'pri', 'maj', 'qer', 'kor', 'gus', 'sht', 'tet', 'nėn', 'dhj'],
 'weekdays' => ['e diel', 'e hėnė', 'e martė', 'e mėrkurė', 'e enjte', 'e premte', 'e shtunė'],
 'weekdays_short' => ['die', 'hėn', 'mar', 'mėr', 'enj', 'pre', 'sht'],
 'weekdays_min' => ['d', 'h', 'ma', 'mė', 'e', 'p', 'sh'],
 'first_day_of_week' => 1,
 'day_of_first_week_of_year' => 4,
 'list' => [', ', ' dhe '],
 ];
 
 |