From 41a96d49caf0cac8343ec115db3b6b8ca80508a9 Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Fri, 28 Jul 2023 19:10:28 +0400 Subject: [PATCH] Bugfix: date locale --- src/components/Article.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Article.astro b/src/components/Article.astro index c07965f..3afbe25 100644 --- a/src/components/Article.astro +++ b/src/components/Article.astro @@ -21,7 +21,7 @@ const { preview = false, } = Astro.props; -const locale = 'ru'; +const locale = 'ru-RU'; ---