<?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: 
 * - Josh Soref 
 * - JD Isaacks 
 * - C?t?lin Georgescu 
 * - Valentin Iva?cu (oriceon) 
 */ 
return [ 
    'year' => ':count an|:count ani|:count ani', 
    'a_year' => 'un an|:count ani|:count ani', 
    'y' => ':count a.', 
    'month' => ':count lun?|:count luni|:count luni', 
    'a_month' => 'o lun?|:count luni|:count luni', 
    'm' => ':count l.', 
    'week' => ':count s?pt?mân?|:count s?pt?mâni|:count s?pt?mâni', 
    'a_week' => 'o s?pt?mân?|:count s?pt?mâni|:count s?pt?mâni', 
    'w' => ':count s?p.', 
    'day' => ':count zi|:count zile|:count zile', 
    'a_day' => 'o zi|:count zile|:count zile', 
    'd' => ':count z.', 
    'hour' => ':count or?|:count ore|:count ore', 
    'a_hour' => 'o or?|:count ore|:count ore', 
    'h' => ':count o.', 
    'minute' => ':count minut|:count minute|:count minute', 
    'a_minute' => 'un minut|:count minute|:count minute', 
    'min' => ':count m.', 
    'second' => ':count secund?|:count secunde|:count secunde', 
    'a_second' => 'câteva secunde|:count secunde|:count secunde', 
    's' => ':count sec.', 
    'ago' => ':time în urm?', 
    'from_now' => 'peste :time', 
    'after' => 'peste :time', 
    'before' => 'acum :time', 
    'diff_yesterday' => 'ieri', 
    'diff_tomorrow' => 'mâine', 
    'formats' => [ 
        'LT' => 'H:mm', 
        'LTS' => 'H:mm:ss', 
        'L' => 'DD.MM.YYYY', 
        'LL' => 'D MMMM YYYY', 
        'LLL' => 'D MMMM YYYY H:mm', 
        'LLLL' => 'dddd, D MMMM YYYY H:mm', 
    ], 
    'calendar' => [ 
        'sameDay' => '[azi la] LT', 
        'nextDay' => '[mâine la] LT', 
        'nextWeek' => 'dddd [la] LT', 
        'lastDay' => '[ieri la] LT', 
        'lastWeek' => '[fosta] dddd [la] LT', 
        'sameElse' => 'L', 
    ], 
    'months' => ['ianuarie', 'februarie', 'martie', 'aprilie', 'mai', 'iunie', 'iulie', 'august', 'septembrie', 'octombrie', 'noiembrie', 'decembrie'], 
    'months_short' => ['ian.', 'feb.', 'mar.', 'apr.', 'mai', 'iun.', 'iul.', 'aug.', 'sept.', 'oct.', 'nov.', 'dec.'], 
    'weekdays' => ['duminic?', 'luni', 'mar?i', 'miercuri', 'joi', 'vineri', 'sâmb?t?'], 
    'weekdays_short' => ['dum', 'lun', 'mar', 'mie', 'joi', 'vin', 'sâm'], 
    'weekdays_min' => ['du', 'lu', 'ma', 'mi', 'jo', 'vi', 'sâ'], 
    'first_day_of_week' => 1, 
    'day_of_first_week_of_year' => 1, 
    'list' => [', ', ' ?i '], 
    'meridiem' => ['a.m.', 'p.m.'], 
]; 
 
 |