From 3fbfd0246990aa4977e2c703b6bacfe02b0c25bb Mon Sep 17 00:00:00 2001 From: Dan Herszfang Date: Mon, 13 Jul 2026 16:20:12 +0300 Subject: [PATCH] Fix trailing comma in en.default.schema.json The trailing comma after the "text_style" object makes the locale schema file invalid JSON, which breaks strict JSON parsers and translation tooling. --- locales/en.default.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locales/en.default.schema.json b/locales/en.default.schema.json index 2dfbc2f7d..712158cf7 100644 --- a/locales/en.default.schema.json +++ b/locales/en.default.schema.json @@ -72,6 +72,6 @@ "title": "Title", "subtitle": "Subtitle", "normal": "Normal text" - }, + } } }