From ceb027beed13fa825917b24e7b62a2e0f0c4af84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20B=C3=B6sch-Plepelits?= Date: Thu, 29 Mar 2018 21:31:38 +0200 Subject: [PATCH] categories-to-lang: not translated -> add empty string (instead of null) --- bin/categories-to-lang | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/categories-to-lang b/bin/categories-to-lang index 551e9009..ba386983 100755 --- a/bin/categories-to-lang +++ b/bin/categories-to-lang @@ -103,7 +103,7 @@ function writeTranslationFiles () { let data = {} allIds.forEach(function (id) { - data[id] = null + data[id] = '' }) let keys = Object.keys(all[lang])