mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-03 22:47:03 +03:00
73 lines
1 KiB
JavaScript
73 lines
1 KiB
JavaScript
{
|
|
year: {
|
|
past: {
|
|
one: "{0} anno fa",
|
|
other: "{0} anni fa"
|
|
},
|
|
future: {
|
|
one: "tra {0} anno",
|
|
other: "tra {0} anni"
|
|
}
|
|
},
|
|
month: {
|
|
past: {
|
|
one: "{0} mese fa",
|
|
other: "{0} mesi fa"
|
|
},
|
|
future: {
|
|
one: "tra {0} mese",
|
|
other: "tra {0} mesi"
|
|
}
|
|
},
|
|
week: {
|
|
past: {
|
|
one: "{0} settimana fa",
|
|
other: "{0} settimane fa"
|
|
},
|
|
future: {
|
|
one: "tra {0} settimana",
|
|
other: "tra {0} settimane"
|
|
}
|
|
},
|
|
day: {
|
|
past: {
|
|
one: "{0} giorno fa",
|
|
other: "{0} giorni fa"
|
|
},
|
|
future: {
|
|
one: "tra {0} giorno",
|
|
other: "tra {0} giorni"
|
|
}
|
|
},
|
|
hour: {
|
|
past: {
|
|
one: "{0} ora fa",
|
|
other: "{0} ore fa"
|
|
},
|
|
future: {
|
|
one: "tra {0} ora",
|
|
other: "tra {0} ore"
|
|
}
|
|
},
|
|
minute: {
|
|
past: {
|
|
one: "{0} minuto fa",
|
|
other: "{0} minuti fa"
|
|
},
|
|
future: {
|
|
one: "tra {0} minuto",
|
|
other: "tra {0} minuti"
|
|
}
|
|
},
|
|
second: {
|
|
past: {
|
|
one: "{0} secondo fa",
|
|
other: "{0} secondi fa"
|
|
},
|
|
future: {
|
|
one: "tra {0} secondo",
|
|
other: "tra {0} secondi"
|
|
}
|
|
},
|
|
plural: n => 1 == n ? 'one' : 'other'
|
|
}
|