Browse Source

Remove warnings caused by '\x00'

Manually unescape '\x00' for the time being, removing spurious warnings.
Yuri D'Elia 3 years ago
parent
commit
90a9e350c0
1 changed files with 3 additions and 0 deletions
  1. 3 0
      lang/lang-check.py

+ 3 - 0
lang/lang-check.py

@@ -45,6 +45,9 @@ def parse_txt(lang, no_warning):
             source = src.readline()[:-1].strip('"')
             #print (source) #Debug
             translation = src.readline()[:-1].strip('"')
+            if translation == '\\x00':
+                # crude hack to handle intentionally-empty translations
+                translation = ''
             #print (translation) #Debug
 #Wrap text to 20 chars and rows
             wrapper = textwrap.TextWrapper(width=20)