[WebUI] Update gettext script to find any missed marked-up text

Added a new function to the gettext script that will check common
extjs attributes for missing markup text strings and print the result.
This commit is contained in:
Calum Lind 2016-05-11 22:36:42 +01:00
parent 9adc9f886c
commit bf8f71f215
1 changed files with 59 additions and 7 deletions

View File

@ -20,19 +20,65 @@ WEBUI_JS_DIR = 'deluge/ui/web/js/deluge-all'
DEBUG = False
def create_gettext_js(js_dir):
string_re = re.compile('_\\(\'(.*?)\'\\)')
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.
skip = ["HTTP:"]
# Create a list of the matching strings to search for with the except_chars appended to each one.
string_re = re.compile(
"(" + ")|(".join(["%s[^" + except_chars + "].*'"]*len(attr_list)) % tuple(attr_list) + ")"
)
strings = {}
for root, dnames, files in os.walk(js_dir):
for filename in files:
if os.path.splitext(filename)[1] == '.js':
for lineno, line in enumerate(open(os.path.join(root, filename))):
for match in string_re.finditer(line):
string = match.group(1)
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.
if not string or string.split("'")[1].isdigit() or any(x in string for x in skip):
continue
locations = strings.get(string, [])
locations.append((os.path.basename(filename), lineno + 1))
locations.append((os.path.join(root, filename), str(lineno + 1)))
strings[string] = locations
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
gettext_tpl = '''GetText={maps:{},\
add:function(string,translation) {this.maps[string]=translation},\
@ -52,3 +98,9 @@ def create_gettext_js(js_dir):
if __name__ == '__main__':
gettext_fname = create_gettext_js(WEBUI_JS_DIR)
print("Created '%s'" % gettext_fname)
missed_markup = check_missing_markup(WEBUI_JS_DIR)
if missed_markup:
print("Possible missed text for translation markup:")
for text, filenames in missed_markup.iteritems():
for filename_lineno in filenames:
print("{0:<58} {1}".format(':'.join(filename_lineno), text))