Skip to content

Commit

Permalink
Fix unescaped formating string in sk locale (#2540) (closes #2083)
Browse files Browse the repository at this point in the history
Fixed an edge case in the Slovak locale caused by unescaped character.
  • Loading branch information
fturmel committed Jul 29, 2021
1 parent 4449d2b commit a3e7e6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/locale/sk/_lib/formatRelative/index.js
Expand Up @@ -41,7 +41,7 @@ function nextWeek(day) {
case 0: /* Sun */
case 4: /* Wed */
case 6 /* Sat */:
return "'budúcu' " + weekday + " 'o' p"
return "'budúcu " + weekday + " o' p"
default:
return "'budúci' eeee 'o' p"
}
Expand Down

0 comments on commit a3e7e6e

Please sign in to comment.