mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-10 11:58:40 +00:00
27 lines
447 B
PHP
27 lines
447 B
PHP
<?php
|
|
return [
|
|
'ago' => '前',
|
|
'left' => '后',
|
|
'x years' => function($x) {
|
|
return $x . ' 年';
|
|
},
|
|
'x months' => function($x) {
|
|
return $x . ' 月';
|
|
},
|
|
'x weeks' => function($x) {
|
|
return $x . ' 周';
|
|
},
|
|
'x days' => function($x) {
|
|
return $x . ' 天';
|
|
},
|
|
'x hours' => function($x) {
|
|
return $x . ' 小时';
|
|
},
|
|
'x minutes' => function($x) {
|
|
return $x . ' 分钟';
|
|
},
|
|
'x seconds' => function($x) {
|
|
return $x . '秒';
|
|
},
|
|
];
|