Basque relativetimeformat.js

Basque translation on relativetimeformat.js
This commit is contained in:
Olloki 2022-11-24 12:51:29 +01:00 committed by GitHub
parent 29473045f8
commit b29055a825
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,75 @@
{
long: {
year: {
past: {
one: "duela urtebete",
other: "duela {0} urte"
},
future: {
one: "urtebete barru",
other: "{0} urte barru"
}
},
month: {
past: {
one: "duela hilabete",
other: "duela {0} hilabete"
},
future: {
one: "hilabete barru",
other: "{0} hilabete barru"
}
},
week: {
past: {
one: "duela astebete",
other: "duela {0} aste"
},
future: {
one: "astebete barru",
other: "{0} aste barru"
}
},
day: {
past: {
one: "duela egun bat",
other: "duela {0} egun"
},
future: {
one: "egun bat barru",
other: "{0} egun barru"
}
},
hour: {
past: {
one: "duela ordubete",
other: "duela {0} ordu"
},
future: {
one: "ordubete barru",
other: "{0} ordu barru"
}
},
minute: {
past: {
one: "duela minutu {0}",
other: "duela {0} minutu"
},
future: {
one: "minutu {0} barru",
other: "{0} minutu barru"
}
},
second: {
past: {
one: "duela segundo {0}",
other: "duela {0} segundo"
},
future: {
one: "segundo {0} barru",
other: "{0} segundo barru"
}
}
},
plural: n => 1 == n ? 'one' : 'other'
}