S2OJ/web/app/locale/time/zh-cn.php
Baoshuo 8a288ceff5
All checks were successful
continuous-integration/drone/push Build is passing
feat: last active at
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 . '秒';
},
];