From a3e7e6e20f2f01e98e1e3c9b5d7b54c74a1a2649 Mon Sep 17 00:00:00 2001 From: fturmel <4009209+fturmel@users.noreply.github.com> Date: Thu, 29 Jul 2021 01:06:48 -0400 Subject: [PATCH] Fix unescaped formating string in sk locale (#2540) (closes #2083) Fixed an edge case in the Slovak locale caused by unescaped character. --- src/locale/sk/_lib/formatRelative/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locale/sk/_lib/formatRelative/index.js b/src/locale/sk/_lib/formatRelative/index.js index cbe159e794..e97b919967 100644 --- a/src/locale/sk/_lib/formatRelative/index.js +++ b/src/locale/sk/_lib/formatRelative/index.js @@ -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" }