| 
<?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
 * - Andre Polykanine A.K.A. Menelion Elensúlë
 * - JD Isaacks
 */
 return [
 'year' => ':count n?m',
 'a_year' => '{1}m?t n?m|]1, Inf[:count n?m',
 'y' => ':count n?m',
 'month' => ':count tháng',
 'a_month' => '{1}m?t tháng|]1, Inf[:count tháng',
 'm' => ':count tháng',
 'week' => ':count tu?n',
 'a_week' => '{1}m?t tu?n|]1, Inf[:count tu?n',
 'w' => ':count tu?n',
 'day' => ':count ngày',
 'a_day' => '{1}m?t ngày|]1, Inf[:count ngày',
 'd' => ':count ngày',
 'hour' => ':count gi?',
 'a_hour' => '{1}m?t gi?|]1, Inf[:count gi?',
 'h' => ':count gi?',
 'minute' => ':count phút',
 'a_minute' => '{1}m?t phút|]1, Inf[:count phút',
 'min' => ':count phút',
 'second' => ':count giây',
 'a_second' => '{1}vài giây|]1, Inf[:count giây',
 's' => ':count giây',
 'ago' => ':time tr??c',
 'from_now' => ':time t?i',
 'after' => ':time sau',
 'before' => ':time tr??c',
 'formats' => [
 'LT' => 'HH:mm',
 'LTS' => 'HH:mm:ss',
 'L' => 'DD/MM/YYYY',
 'LL' => 'D MMMM [n?m] YYYY',
 'LLL' => 'D MMMM [n?m] YYYY HH:mm',
 'LLLL' => 'dddd, D MMMM [n?m] YYYY HH:mm',
 ],
 'calendar' => [
 'sameDay' => '[Hôm nay lúc] LT',
 'nextDay' => '[Ngày mai lúc] LT',
 'nextWeek' => 'dddd [tu?n t?i lúc] LT',
 'lastDay' => '[Hôm qua lúc] LT',
 'lastWeek' => 'dddd [tu?n tr??c lúc] LT',
 'sameElse' => 'L',
 ],
 'meridiem' => ['SA', 'CH'],
 'months' => ['tháng 1', 'tháng 2', 'tháng 3', 'tháng 4', 'tháng 5', 'tháng 6', 'tháng 7', 'tháng 8', 'tháng 9', 'tháng 10', 'tháng 11', 'tháng 12'],
 'months_short' => ['Th01', 'Th02', 'Th03', 'Th04', 'Th05', 'Th06', 'Th07', 'Th08', 'Th09', 'Th10', 'Th11', 'Th12'],
 'weekdays' => ['ch? nh?t', 'th? hai', 'th? ba', 'th? t?', 'th? n?m', 'th? sáu', 'th? b?y'],
 'weekdays_short' => ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'],
 'weekdays_min' => ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'],
 'first_day_of_week' => 1,
 'day_of_first_week_of_year' => 4,
 'list' => [', ', ' và '],
 ];
 
 |