mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-09 09:27:03 +03:00
31 lines
463 B
JavaScript
31 lines
463 B
JavaScript
{
|
|
year: {
|
|
past: "{0}年前",
|
|
future: "{0}年后"
|
|
},
|
|
month: {
|
|
past: "{0}个月前",
|
|
future: "{0}个月后"
|
|
},
|
|
week: {
|
|
past: "{0}周前",
|
|
future: "{0}周后"
|
|
},
|
|
day: {
|
|
past: "{0}天前",
|
|
future: "{0}天后"
|
|
},
|
|
hour: {
|
|
past: "{0}小时前",
|
|
future: "{0}小时后"
|
|
},
|
|
minute: {
|
|
past: "{0}分钟前",
|
|
future: "{0}分钟后"
|
|
},
|
|
second: {
|
|
past: "{0}秒钟前",
|
|
future: "{0}秒钟后"
|
|
},
|
|
plural: n => 1 == n ? 'one' : 'other'
|
|
}
|