mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 20:49:20 +03:00
69 lines
1.1 KiB
JSON
69 lines
1.1 KiB
JSON
{
|
|
long: {
|
|
year: {
|
|
past: {
|
|
one: "il y a {0} an",
|
|
other: "il y a {0} ans"
|
|
},
|
|
future: {
|
|
one: "dans {0} an",
|
|
other: "dans {0} ans"
|
|
}
|
|
},
|
|
month: {
|
|
past: "il y a {0} mois",
|
|
future: "dans {0} mois"
|
|
},
|
|
week: {
|
|
past: {
|
|
one: "il y a {0} semaine",
|
|
other: "il y a {0} semaines"
|
|
},
|
|
future: {
|
|
one: "dans {0} semaine",
|
|
other: "dans {0} semaines"
|
|
}
|
|
},
|
|
day: {
|
|
past: {
|
|
one: "il y a {0} jour",
|
|
other: "il y a {0} jours"
|
|
},
|
|
future: {
|
|
one: "dans {0} jour",
|
|
other: "dans {0} jours"
|
|
}
|
|
},
|
|
hour: {
|
|
past: {
|
|
one: "il y a {0} heure",
|
|
other: "il y a {0} heures"
|
|
},
|
|
future: {
|
|
one: "dans {0} heure",
|
|
other: "dans {0} heures"
|
|
}
|
|
},
|
|
minute: {
|
|
past: {
|
|
one: "il y a {0} minute",
|
|
other: "il y a {0} minutes"
|
|
},
|
|
future: {
|
|
one: "dans {0} minute",
|
|
other: "dans {0} minutes"
|
|
}
|
|
},
|
|
second: {
|
|
past: {
|
|
one: "il y a {0} seconde",
|
|
other: "il y a {0} secondes"
|
|
},
|
|
future: {
|
|
one: "dans {0} seconde",
|
|
other: "dans {0} secondes"
|
|
}
|
|
}
|
|
},
|
|
plural: n => 1 == n ? 'one' : 'other'
|
|
}
|