2014-09-22 21:15:33 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright (C) 2009-2012 Damien Churchill <damoxc@gmail.com>
|
|
|
|
#
|
|
|
|
# This file is part of Deluge and is licensed under GNU General Public License 3.0, or later, with
|
|
|
|
# the additional special exception to link portions of this program with the OpenSSL library.
|
|
|
|
# See LICENSE for more details.
|
|
|
|
#
|
|
|
|
|
|
|
|
"""Script to parse javascript files for translation strings and generate gettext.js"""
|
|
|
|
|
2017-02-12 11:26:31 +00:00
|
|
|
from __future__ import print_function, unicode_literals
|
2015-10-23 23:58:14 +00:00
|
|
|
|
2009-04-07 17:54:57 +00:00
|
|
|
import os
|
|
|
|
import re
|
2015-08-20 17:51:09 +00:00
|
|
|
|
2015-08-22 12:04:37 +00:00
|
|
|
WEBUI_JS_DIR = 'deluge/ui/web/js/deluge-all'
|
|
|
|
# Enabling Debug adds file and line number as comments to the gettext file.
|
|
|
|
DEBUG = False
|
|
|
|
|
|
|
|
|
2016-05-11 21:36:42 +00:00
|
|
|
def check_missing_markup(js_dir):
|
|
|
|
"""Search js to check for missed translation markup."""
|
|
|
|
|
|
|
|
# A list of common extjs attributes that are usually marked for translation.
|
|
|
|
attr_list = [
|
|
|
|
"text: '",
|
|
|
|
"msg: '",
|
|
|
|
"title: '",
|
|
|
|
"fieldLabel: '",
|
|
|
|
"boxLabel: '",
|
|
|
|
"tooltip: '",
|
|
|
|
"header: '",
|
|
|
|
"defaultText: '",
|
|
|
|
"unit: '",
|
|
|
|
r"setText\('",
|
|
|
|
r"addButton\('",
|
|
|
|
]
|
|
|
|
|
|
|
|
# Don't match against any of these chars at start of string value.
|
|
|
|
except_chars = "' &#"
|
|
|
|
|
|
|
|
# A list of strings that should be skipped shuold the match contain them.
|
2016-11-03 21:26:46 +00:00
|
|
|
skip = ['HTTP:']
|
2016-05-11 21:36:42 +00:00
|
|
|
|
|
|
|
# Create a list of the matching strings to search for with the except_chars appended to each one.
|
|
|
|
string_re = re.compile(
|
2016-11-03 21:26:46 +00:00
|
|
|
'(' + ')|('.join(['%s[^' + except_chars + "].*'"]*len(attr_list)) % tuple(attr_list) + ')'
|
2016-05-11 21:36:42 +00:00
|
|
|
)
|
2015-08-22 12:04:37 +00:00
|
|
|
|
|
|
|
strings = {}
|
|
|
|
for root, dnames, files in os.walk(js_dir):
|
|
|
|
for filename in files:
|
2016-05-11 21:36:42 +00:00
|
|
|
if os.path.splitext(filename)[1] != '.js':
|
|
|
|
continue
|
|
|
|
for lineno, line in enumerate(open(os.path.join(root, filename))):
|
|
|
|
for match in string_re.finditer(line):
|
|
|
|
for string in match.groups():
|
|
|
|
# Ignore string that contains only digits or specificied strings in skip.
|
2016-11-13 15:09:30 +00:00
|
|
|
if not string or string.split('\'')[1].isdigit() or any(x in string for x in skip):
|
2016-05-11 21:36:42 +00:00
|
|
|
continue
|
2015-08-22 12:04:37 +00:00
|
|
|
locations = strings.get(string, [])
|
2016-05-11 21:36:42 +00:00
|
|
|
locations.append((os.path.join(root, filename), str(lineno + 1)))
|
2015-08-22 12:04:37 +00:00
|
|
|
strings[string] = locations
|
2016-05-11 21:36:42 +00:00
|
|
|
return strings
|
|
|
|
|
|
|
|
|
|
|
|
def create_gettext_js(js_dir):
|
|
|
|
string_re = re.compile('_\\(\'(.*?)\'\\)')
|
|
|
|
strings = {}
|
|
|
|
for root, dnames, files in os.walk(js_dir):
|
|
|
|
for filename in files:
|
|
|
|
if os.path.splitext(filename)[1] != '.js':
|
|
|
|
continue
|
|
|
|
for lineno, line in enumerate(open(os.path.join(root, filename))):
|
|
|
|
for match in string_re.finditer(line):
|
|
|
|
string = match.group(1)
|
|
|
|
locations = strings.get(string, [])
|
|
|
|
locations.append((os.path.basename(filename), lineno + 1))
|
|
|
|
strings[string] = locations
|
2015-08-22 12:04:37 +00:00
|
|
|
|
2017-02-23 11:53:39 +00:00
|
|
|
gettext_tpl = (
|
|
|
|
'GetText={maps:{},'
|
|
|
|
'add:function(string,translation){this.maps[string]=translation},'
|
|
|
|
'get:function(string){if (this.maps[string]){string=this.maps[string]} return string}};'
|
|
|
|
'function _(string){return GetText.get(string)}')
|
2015-08-22 12:04:37 +00:00
|
|
|
|
|
|
|
gettext_file = os.path.join(os.path.dirname(js_dir), 'gettext.js')
|
|
|
|
with open(gettext_file, 'w') as fp:
|
|
|
|
fp.write(gettext_tpl)
|
2016-10-31 18:54:10 +00:00
|
|
|
for key in sorted(strings):
|
2015-08-22 12:04:37 +00:00
|
|
|
if DEBUG:
|
2015-08-25 12:20:14 +00:00
|
|
|
fp.write('\n// %s\n' % ', '.join(['%s:%s' % x for x in strings[key]]))
|
|
|
|
fp.write('''GetText.add('%(key)s','${escape(_("%(key)s"))}')\n''' % locals())
|
2015-12-26 16:25:16 +00:00
|
|
|
return gettext_file
|
2015-08-22 12:04:37 +00:00
|
|
|
|
2016-11-16 22:18:18 +00:00
|
|
|
|
2015-08-22 12:04:37 +00:00
|
|
|
if __name__ == '__main__':
|
2016-05-07 11:09:57 +00:00
|
|
|
gettext_fname = create_gettext_js(WEBUI_JS_DIR)
|
2016-11-13 15:09:30 +00:00
|
|
|
print('Created: %s' % gettext_fname)
|
2016-05-11 21:36:42 +00:00
|
|
|
missed_markup = check_missing_markup(WEBUI_JS_DIR)
|
|
|
|
if missed_markup:
|
2016-11-03 21:26:46 +00:00
|
|
|
print('Possible missed text for translation markup:')
|
2016-05-11 21:36:42 +00:00
|
|
|
for text, filenames in missed_markup.iteritems():
|
|
|
|
for filename_lineno in filenames:
|
2016-11-03 21:26:46 +00:00
|
|
|
print('{0:<58} {1}'.format(':'.join(filename_lineno), text))
|