blob: 9c05d5a8d97fffeb90744f02ad2eccf4e1291956 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3/**
4 * This file is part of the Carbon package.
5 *
6 * (c) Brian Nesbitt <brian@nesbot.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12/*
13 * Authors:
14 * - monkeycon
15 * - François B
16 * - Jason Katz-Brown
17 * - Serhan Apaydın
18 * - Matt Johnson
19 * - JD Isaacks
20 * - Zeno Zeng
21 * - Chris Hemp
22 * - shankesgk2
23 */
24return array_merge(require __DIR__.'/zh.php', [
25 'formats' => [
26 'LT' => 'HH:mm',
27 'LTS' => 'HH:mm:ss',
28 'L' => 'YYYY/MM/DD',
29 'LL' => 'YYYY年M月D日',
30 'LLL' => 'YYYY年M月D日Ah点mm分',
31 'LLLL' => 'YYYY年M月D日ddddAh点mm分',
32 ],
33]);