mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 20:49:20 +03:00
75 lines
1.2 KiB
JSON
75 lines
1.2 KiB
JSON
{
|
|
long: {
|
|
year: {
|
|
past: {
|
|
one: "hace {0} año",
|
|
other: "hace {0} años"
|
|
},
|
|
future: {
|
|
one: "dentro de {0} año",
|
|
other: "dentro de {0} años"
|
|
}
|
|
},
|
|
month: {
|
|
past: {
|
|
one: "hace {0} mes",
|
|
other: "hace {0} meses"
|
|
},
|
|
future: {
|
|
one: "dentro de {0} mes",
|
|
other: "dentro de {0} meses"
|
|
}
|
|
},
|
|
week: {
|
|
past: {
|
|
one: "hace {0} semana",
|
|
other: "hace {0} semanas"
|
|
},
|
|
future: {
|
|
one: "dentro de {0} semana",
|
|
other: "dentro de {0} semanas"
|
|
}
|
|
},
|
|
day: {
|
|
past: {
|
|
one: "hace {0} día",
|
|
other: "hace {0} días"
|
|
},
|
|
future: {
|
|
one: "dentro de {0} día",
|
|
other: "dentro de {0} días"
|
|
}
|
|
},
|
|
hour: {
|
|
past: {
|
|
one: "hace {0} hora",
|
|
other: "hace {0} horas"
|
|
},
|
|
future: {
|
|
one: "dentro de {0} hora",
|
|
other: "dentro de {0} horas"
|
|
}
|
|
},
|
|
minute: {
|
|
past: {
|
|
one: "hace {0} minuto",
|
|
other: "hace {0} minutos"
|
|
},
|
|
future: {
|
|
one: "dentro de {0} minuto",
|
|
other: "dentro de {0} minutos"
|
|
}
|
|
},
|
|
second: {
|
|
past: {
|
|
one: "hace {0} segundo",
|
|
other: "hace {0} segundos"
|
|
},
|
|
future: {
|
|
one: "dentro de {0} segundo",
|
|
other: "dentro de {0} segundos"
|
|
}
|
|
}
|
|
},
|
|
plural: n => 1 == n ? 'one' : 'other'
|
|
}
|