relative-time-format
Version:
A convenient Intl.RelativeTimeFormat polyfill
82 lines • 1.64 kB
JavaScript
export default {
"locale": "pl",
"style": "narrow",
"year": {
"previous": "w zeszłym roku",
"current": "w tym roku",
"next": "w przyszłym roku",
"past": {
"one": "{0} rok temu",
"few": "{0} lata temu",
"many": "{0} lat temu",
"other": "{0} roku temu"
},
"future": {
"one": "za {0} rok",
"few": "za {0} lata",
"many": "za {0} lat",
"other": "za {0} roku"
}
},
"quarter": {
"previous": "w zeszłym kwartale",
"current": "w tym kwartale",
"next": "w przyszłym kwartale",
"past": "{0} kw. temu",
"future": "za {0} kw."
},
"month": {
"previous": "w zeszłym mies.",
"current": "w tym mies.",
"next": "w przyszłym mies.",
"past": "{0} mies. temu",
"future": "za {0} mies."
},
"week": {
"previous": "w zeszłym tyg.",
"current": "w tym tyg.",
"next": "w przyszłym tyg.",
"past": {
"one": "{0} tydz. temu",
"other": "{0} tyg. temu"
},
"future": {
"one": "za {0} tydz.",
"other": "za {0} tyg."
}
},
"day": {
"previous": "wcz.",
"previous-2": "przedwczoraj",
"current": "dziś",
"next": "jutro",
"next-2": "pojutrze",
"past": {
"one": "{0} dzień temu",
"few": "{0} dni temu",
"many": "{0} dni temu",
"other": "{0} dnia temu"
},
"future": {
"one": "za {0} dzień",
"few": "za {0} dni",
"many": "za {0} dni",
"other": "za {0} dnia"
}
},
"hour": {
"current": "ta godzina",
"past": "{0} g. temu",
"future": "za {0} g."
},
"minute": {
"current": "ta minuta",
"past": "{0} min temu",
"future": "za {0} min"
},
"second": {
"current": "teraz",
"past": "{0} s temu",
"future": "za {0} s"
}
}