snappymail/rainloop/v/0.0.0/app/localization/relativetimeformat/fr.json
djmaze 3bfe2c67d1 Droppped momentjs in favor of Intl
Uses a fallback for Intl.RelativeTimeFormat in Date.prototype.fromNow
2020-10-15 10:45:18 +02:00

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'
}