mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-05 23:47:03 +03:00
Also base pt language for other countries that might not default to either pt-BR or pt-PT
76 lines
1.3 KiB
JavaScript
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'
|
|
}
|