1
1
mirror of https://github.com/renbaoshuo/S2OJ.git synced 2025-02-13 19:36:42 +00:00
2022-10-04 16:31:08 +08:00

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 . '秒';
},
];