From 8bd2e09bde8440f9f55034f5d3e58ee62609227b Mon Sep 17 00:00:00 2001 From: Lio <43543556+LioZam@users.noreply.github.com> Date: Mon, 23 Nov 2020 21:53:58 +0100 Subject: [PATCH] Bugfix in ko/front.json (#12790) In weblate we have the allert: Weblate could not parse the translation files while updating the translations. The following occurrences were found: Filename Error website/common/locales/ko/front.json JSONDecodeError('Expecting property name enclosed in double quotes: line 19 column 1 (char 805)',) I deleted the trailing comma (so that no further entry is expected). --- website/common/locales/ko/front.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/common/locales/ko/front.json b/website/common/locales/ko/front.json index 500e677941..0adc5cab0a 100644 --- a/website/common/locales/ko/front.json +++ b/website/common/locales/ko/front.json @@ -15,5 +15,5 @@ "footerCompany": "회사", "footerDevs": "개발자들", "communityExtensions": "Add-ons & Extensions\n(그냥 링크 같음)", - "clearBrowserData": "브라우저 데이터 없애기", + "clearBrowserData": "브라우저 데이터 없애기" }