<?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: 
 * - Arnas Udovi?ius [email protected] 
 */ 
return array_replace_recursive(require __DIR__.'/en.php', [ 
    'formats' => [ 
        'L' => 'YYYY.MM.DD', 
    ], 
    'months' => ['saus?', 'vasar?', 'kuova', 'balond?', 'gego??s', 'b?r?el?', 'lëpas', 'rogpj?t?', 'siej?s', 'spal?', 'lapkr?st?', 'gr?d?'], 
    'months_short' => ['Sau', 'Vas', 'Kuo', 'Bal', 'Geg', 'B?r', 'Lëp', 'Rgp', 'Sie', 'Spa', 'Lap', 'Grd'], 
    'weekdays' => ['nediel?s dëna', 'panedielis', 'oterninks', 'sereda', '?etvergs', 'petn???', 'sobata'], 
    'weekdays_short' => ['Nd', 'Pn', 'Ot', 'Sr', '?t', 'Pt', 'Sb'], 
    'weekdays_min' => ['Nd', 'Pn', 'Ot', 'Sr', '?t', 'Pt', 'Sb'], 
    'first_day_of_week' => 1, 
    'day_of_first_week_of_year' => 4, 
 
    'minute' => ':count ma?os', // less reliable 
    'min' => ':count ma?os', // less reliable 
    'a_minute' => ':count ma?os', // less reliable 
 
    'year' => ':count met?', 
    'y' => ':count met?', 
    'a_year' => ':count met?', 
 
    'month' => ':count mienou', 
    'm' => ':count mienou', 
    'a_month' => ':count mienou', 
 
    'week' => ':count nediel?', 
    'w' => ':count nediel?', 
    'a_week' => ':count nediel?', 
 
    'day' => ':count d?na', 
    'd' => ':count d?na', 
    'a_day' => ':count d?na', 
 
    'hour' => ':count ad?na', 
    'h' => ':count ad?na', 
    'a_hour' => ':count ad?na', 
 
    'second' => ':count Sekond?', 
    's' => ':count Sekond?', 
    'a_second' => ':count Sekond?', 
]); 
 
 |