Skip to content
Snippets Groups Projects
Unverified Commit f9d54932 authored by Leo Balter's avatar Leo Balter Committed by GitHub
Browse files

Merge pull request #1681 from Ms2ger/rtf-pl-fix

Intl.RelativeTimeFormat: Fix copy/paste errors in Polish tests.
parents fcefbc79 c82ea326
No related branches found
No related tags found
No related merge requests found
......@@ -18,9 +18,9 @@ function always(s) {
// https://www.unicode.org/cldr/charts/33/summary/pl.html#1419
const units = {
"second": always("s"),
"second": always("sek."),
"minute": always("min"),
"hour": always("g."),
"hour": always("godz."),
"day": {
"many": "dni",
"few": "dni",
......
......@@ -28,9 +28,9 @@ function always(s) {
// https://www.unicode.org/cldr/charts/33/summary/pl.html#1419
const units = {
"second": always("sek."),
"second": always("s"),
"minute": always("min"),
"hour": always("godz."),
"hour": always("g."),
"day": {
"many": "dni",
"few": "dni",
......@@ -51,7 +51,7 @@ const units = {
};
const rtf = new Intl.RelativeTimeFormat("pl-PL", {
"style": "short",
"style": "narrow",
});
assert.sameValue(typeof rtf.formatToParts, "function", "formatToParts should be supported");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment