edcd46dd67
Signed-off-by: snipe <snipe@snipe.net>
79 lines
2.0 KiB
PHP
79 lines
2.0 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Authentication Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used during authentication for various
|
|
| messages that we need to display to the user. You are free to modify
|
|
| these language lines according to your application's requirements.
|
|
|
|
|
*/
|
|
|
|
'today' => '今天',
|
|
'clear' => '清空',
|
|
'days' => [
|
|
'sunday' => '星期日',
|
|
'monday' => '星期一',
|
|
'tuesday' => '星期二',
|
|
'wednesday' => '星期三',
|
|
'thursday' => '星期四',
|
|
'friday' => '星期五',
|
|
'saturday' => '星期六',
|
|
],
|
|
|
|
'short_days' => [
|
|
'sunday' => '周日',
|
|
'monday' => '周一',
|
|
'tuesday' => '周二',
|
|
'wednesday' => '周三',
|
|
'thursday' => '周四',
|
|
'friday' => '周五',
|
|
'saturday' => '周六',
|
|
],
|
|
|
|
'min_days' => [
|
|
'sunday' => '日',
|
|
'monday' => '一',
|
|
'tuesday' => '二',
|
|
'wednesday' => '三',
|
|
'thursday' => '四',
|
|
'friday' => '五',
|
|
'saturday' => '六',
|
|
],
|
|
|
|
'months' => [
|
|
'january' => '一月',
|
|
'february' => '二月',
|
|
'march' => '三月',
|
|
'april' => '四月',
|
|
'may' => '五月',
|
|
'june' => '六月',
|
|
'july' => '七月',
|
|
'august' => '八月',
|
|
'september' => '九月',
|
|
'october' => '十月',
|
|
'november' => '十一月',
|
|
'december' => '十二月',
|
|
],
|
|
|
|
'months_short' => [
|
|
'january' => '1月',
|
|
'february' => '2月',
|
|
'march' => '3月',
|
|
'april' => '4月',
|
|
'may' => '5月',
|
|
'june' => '6月',
|
|
'july' => '7月',
|
|
'august' => '8月',
|
|
'september' => '9月',
|
|
'october' => '10月',
|
|
'november' => '11月',
|
|
'december' => '12月',
|
|
],
|
|
|
|
);
|