Modified the script so that it merges existing strings with new ones if the keys are identical.

This commit is contained in:
Timofey 2016-11-01 19:50:56 +03:00 committed by Ilya Grechuhin
parent 21c20645de
commit acccb19696

View file

@ -9,7 +9,7 @@ from sys import argv
TransAndKey = namedtuple("TransAndKey", "translation, key")
TRANSLATION = re.compile(r"([a-z]{2}|zh-Han[st])\s*=\s*.*$", re.S | re.MULTILINE)
TRANSLATION = re.compile(r"([a-z]{2}|zh-Han[st]|en-GB)\s*=\s*.*$", re.S | re.MULTILINE)
MANY_DOTS = re.compile(r"\.{4,}")
SPACE_PUNCTUATION = re.compile(r"\s[.,?!:;]")
PLACEHOLDERS = re.compile(r"(%\d*\$@|%[@dqus]|\^)")
@ -67,12 +67,13 @@ class StringsTxt:
self.keys_in_order.append(line)
continue
if line.startswith("["):
if line in self.translations:
print("Duplicate key {}".format(line))
continue
# if line in self.translations:
# print("Duplicate key {}".format(line))
# continue
self.translations[line] = {}
current_key = line
self.keys_in_order.append(current_key)
if current_key not in self.keys_in_order:
self.keys_in_order.append(current_key)
if TRANSLATION.match(line):
lang, tran = self._parse_lang_and_translation(line)