relative-time-format
Version:
A convenient Intl.RelativeTimeFormat polyfill
102 lines • 1.79 kB
JavaScript
export default {
"locale": "lb",
"style": "short",
"year": {
"previous": "lescht Joer",
"current": "dëst Joer",
"next": "nächst Joer",
"past": {
"one": "virun {0} J.",
"other": "viru(n) {0} J."
},
"future": {
"one": "an {0} J.",
"other": "a(n) {0} J."
}
},
"quarter": {
"previous": "last quarter",
"current": "this quarter",
"next": "next quarter",
"past": {
"one": "virun {0} Q.",
"other": "viru(n) {0} Q."
},
"future": {
"one": "an {0} Q.",
"other": "a(n) {0} Q."
}
},
"month": {
"previous": "leschte Mount",
"current": "dëse Mount",
"next": "nächste Mount",
"past": {
"one": "virun {0} M.",
"other": "viru(n) {0} M."
},
"future": {
"one": "an {0} M.",
"other": "a(n) {0} M."
}
},
"week": {
"previous": "lescht Woch",
"current": "dës Woch",
"next": "nächst Woch",
"past": {
"one": "virun {0} W.",
"other": "viru(n) {0} W."
},
"future": {
"one": "an {0} W.",
"other": "a(n) {0} W."
}
},
"day": {
"previous": "gëschter",
"current": "haut",
"next": "muer",
"past": {
"one": "virun {0} D.",
"other": "viru(n) {0} D."
},
"future": {
"one": "an {0} D.",
"other": "a(n) {0} D."
}
},
"hour": {
"current": "this hour",
"past": {
"one": "virun {0} St.",
"other": "viru(n) {0} St."
},
"future": {
"one": "an {0} St.",
"other": "a(n) {0} St."
}
},
"minute": {
"current": "this minute",
"past": {
"one": "virun {0} Min.",
"other": "viru(n) {0} Min."
},
"future": {
"one": "an {0} Min.",
"other": "a(n) {0} Min."
}
},
"second": {
"current": "now",
"past": {
"one": "virun {0} Sek.",
"other": "viru(n) {0} Sek."
},
"future": {
"one": "an {0} Sek.",
"other": "a(n) {0} Sek."
}
}
}