mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-31 04:59:21 +03:00
76 lines
1.2 KiB
JSON
76 lines
1.2 KiB
JSON
{
|
|
long: {
|
|
year: {
|
|
past: {
|
|
one: "{0} year ago",
|
|
other: "{0} years ago"
|
|
},
|
|
future: {
|
|
one: "in {0} year",
|
|
other: "in {0} years"
|
|
}
|
|
},
|
|
month: {
|
|
past: {
|
|
one: "{0} month ago",
|
|
other: "{0} months ago"
|
|
},
|
|
future: {
|
|
one: "in {0} month",
|
|
other: "in {0} months"
|
|
}
|
|
},
|
|
week: {
|
|
past: {
|
|
one: "{0} week ago",
|
|
other: "{0} weeks ago"
|
|
},
|
|
future: {
|
|
one: "in {0} week",
|
|
other: "in {0} weeks"
|
|
}
|
|
},
|
|
day: {
|
|
past: {
|
|
one: "{0} day ago",
|
|
other: "{0} days ago"
|
|
},
|
|
future: {
|
|
one: "in {0} day",
|
|
other: "in {0} days"
|
|
}
|
|
},
|
|
hour: {
|
|
past: {
|
|
one: "{0} hour ago",
|
|
other: "{0} hours ago"
|
|
},
|
|
future: {
|
|
one: "in {0} hour",
|
|
other: "in {0} hours"
|
|
}
|
|
},
|
|
minute: {
|
|
past: {
|
|
one: "{0} minute ago",
|
|
other: "{0} minutes ago"
|
|
},
|
|
future: {
|
|
one: "in {0} minute",
|
|
other: "in {0} minutes"
|
|
}
|
|
},
|
|
second: {
|
|
past: {
|
|
one: "{0} second ago",
|
|
other: "{0} seconds ago"
|
|
},
|
|
future: {
|
|
one: "in {0} second",
|
|
other: "in {0} seconds"
|
|
}
|
|
}
|
|
},
|
|
// 'zero', 'one', 'two', 'few', 'many', 'other'
|
|
plural: n => 1 == n ? 'one' : 'other'
|
|
}
|