<?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: 
 * - Philippe Vaucher 
 * - Tsutomu Kuroda 
 * - tjku 
 * - valdas406 
 * - Justas Palumickas 
 * - Max Melentiev 
 * - Andrius Janauskas 
 * - Juanito Fatas 
 * - Akira Matsuda 
 * - Christopher Dell 
 * - Enrique Vidal 
 * - Simone Carletti 
 * - Aaron Patterson 
 * - Nicolás Hock Isaza 
 * - Laurynas Butkus 
 * - Sven Fuchs 
 * - Dominykas Tij?naitis 
 * - Justinas Bolys 
 * - Ri?ardas 
 * - Kirill Chalkin 
 * - Rolandas 
 * - Justinas (Gamesh) 
 */ 
return [ 
    'year' => ':count metus|:count metus|:count met?', 
    'y' => ':count m.', 
    'month' => ':count m?nes?|:count m?nesius|:count m?nesi?', 
    'm' => ':count m?n.', 
    'week' => ':count savait?|:count savaites|:count savai?i?', 
    'w' => ':count sav.', 
    'day' => ':count dien?|:count dienas|:count dien?', 
    'd' => ':count d.', 
    'hour' => ':count valand?|:count valandas|:count valand?', 
    'h' => ':count val.', 
    'minute' => ':count minut?|:count minutes|:count minu?i?', 
    'min' => ':count min.', 
    'second' => ':count sekund?|:count sekundes|:count sekund?i?', 
    's' => ':count sek.', 
    'second_from_now' => ':count sekund?s|:count sekund?i?|:count sekund?i?', 
    'minute_from_now' => ':count minut?s|:count minu?i?|:count minu?i?', 
    'hour_from_now' => ':count valandos|:count valand?|:count valand?', 
    'day_from_now' => ':count dienos|:count dien?|:count dien?', 
    'week_from_now' => ':count savait?s|:count savai?i?|:count savai?i?', 
    'month_from_now' => ':count m?nesio|:count m?nesi?|:count m?nesi?', 
    'year_from_now' => ':count met?', 
    'ago' => 'prie? :time', 
    'from_now' => 'u? :time', 
    'after' => 'po :time', 
    'before' => ':time nuo dabar', 
    'first_day_of_week' => 1, 
    'day_of_first_week_of_year' => 4, 
    'diff_now' => 'k? tik', 
    'diff_yesterday' => 'vakar', 
    'diff_tomorrow' => 'rytoj', 
    'diff_before_yesterday' => 'u?vakar', 
    'diff_after_tomorrow' => 'poryt', 
    'period_recurrences' => 'kart?|:count kart?', 
    'period_interval' => 'kiekvien? :interval', 
    'period_start_date' => 'nuo :date', 
    'period_end_date' => 'iki :date', 
    'months' => ['sausis', 'vasaris', 'kovas', 'balandis', 'gegu??', 'bir?elis', 'liepa', 'rugpj?tis', 'rugs?jis', 'spalis', 'lapkritis', 'gruodis'], 
    'months_short' => ['sau', 'vas', 'kov', 'bal', 'geg', 'bir', 'lie', 'rgp', 'rgs', 'spa', 'lap', 'gru'], 
    'weekdays' => ['sekmadienis', 'pirmadienis', 'antradienis', 'tre?iadienis', 'ketvirtadienis', 'penktadienis', '?e?tadienis'], 
    'weekdays_short' => ['sek', 'pir', 'ant', 'tre', 'ket', 'pen', '?e?'], 
    'weekdays_min' => ['se', 'pi', 'an', 'tr', 'ke', 'pe', '?e'], 
    'list' => [', ', ' ir '], 
    'formats' => [ 
        'LT' => 'HH:mm', 
        'LTS' => 'HH:mm:ss', 
        'L' => 'YYYY-MM-DD', 
        'LL' => 'MMMM DD, YYYY', 
        'LLL' => 'DD MMM HH:mm', 
        'LLLL' => 'MMMM DD, YYYY HH:mm', 
    ], 
    'meridiem' => ['prie?piet', 'popiet'], 
]; 
 
 |