snappymail/snappymail/v/0.0.0/app/localization/pt-PT/relativetimeformat.js
ner0 1921e4c5fd update Portuguese (Portugal), update langs.json
Also base pt language for other countries that might not default to either pt-BR or pt-PT
2022-07-26 17:47:24 +01:00

76 lines
1.3 KiB
JavaScript

{
long: {
year: {
past: {
one: "há {0} ano",
other: "há {0} anos"
},
future: {
one: "dentro de {0} ano",
other: "dentro de {0} anos"
}
},
month: {
past: {
one: "há {0} mês",
other: "há {0} meses"
},
future: {
one: "dentro de {0} mês",
other: "dentro de {0} meses"
}
},
week: {
past: {
one: "há {0} semana",
other: "há {0} semanas"
},
future: {
one: "dentro de {0} semana",
other: "dentro de {0} semanas"
}
},
day: {
past: {
one: "há {0} dia",
other: "há {0} dias"
},
future: {
one: "dentro de {0} dia",
other: "dentro de {0} dias"
}
},
hour: {
past: {
one: "há {0} hora",
other: "há {0} horas"
},
future: {
one: "dentro de {0} hora",
other: "dentro de {0} horas"
}
},
minute: {
past: {
one: "há {0} minuto",
other: "há {0} minutos"
},
future: {
one: "dentro de {0} minuto",
other: "dentro de {0} minutos"
}
},
second: {
past: {
one: "há {0} segundo",
other: "há {0} segundos"
},
future: {
one: "dentro de {0} segundo",
other: "dentro de {0} segundos"
}
}
},
/* 'zero', 'one', 'two', 'few', 'many', 'other' */
plural: n => 1 == n ? 'one' : 'other'
}