From 54f802d2681537efa31b4c662a1c5846801523eb Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Tue, 28 Jul 2015 15:33:11 +1200 Subject: Script to generate translations --- tools/translate.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 tools/translate.py diff --git a/tools/translate.py b/tools/translate.py new file mode 100755 index 000000000..69c55979b --- /dev/null +++ b/tools/translate.py @@ -0,0 +1,34 @@ +#!/usr/bin/python + +import re +import os + +path = '../web/l10n/' + +files = [f for f in os.listdir(path) if os.path.isfile(path + f) and f.endswith('.js') and not f.endswith('en.js')] +for f in files: + f = path + f + + dict = {} + + for line in open(f).read().splitlines(): + match = re.search(" (\\w+): '(.+)'(,)?", line) + if match: + dict[match.group(1)] = match.group(2) + + out = open(f, 'w') + + for line in open(path + 'en.js').read().splitlines(): + match = re.search(" (\\w+): '(.+)'(,)?", line) + if match: + if dict.has_key(match.group(1)): + value = dict[match.group(1)] + else: + value = match.group(2) + ' (*)' + + out.write(' ' + match.group(1) + ": '" + value + "'") + if match.group(3) is not None: + out.write(',') + out.write('\n') + else: + out.write(line + '\n') -- cgit v1.2.3