Update langs-list-check

Was failing with `sw720dp-v21` directory that contained a `dimens.xml`
file. Also sorted output to make it easier to compare while here.
This commit is contained in:
Peter Serwylo 2017-03-08 08:40:15 +11:00
parent 2eab1d0e6d
commit c3b8134be7

View File

@ -26,7 +26,7 @@ for d in glob.glob(os.path.join('src', 'main', 'res', 'values-*')):
lang = d[len(os.path.join('src', 'main', 'res', 'values-')):]
if not lang:
continue
if re.match('^v[0-9]+$', lang):
if re.match('^sw[0-9]+dp|v[0-9]+$', lang):
continue
if lang == 'ldrtl':
continue
@ -34,8 +34,8 @@ for d in glob.glob(os.path.join('src', 'main', 'res', 'values-*')):
continue
trans.add(lang)
print("In the settings array: %s" % ' '.join(prefs))
print("Actually translated: %s" % ' '.join(trans))
print("In the settings array: %s" % ' '.join(sorted(prefs)))
print("Actually translated: %s" % ' '.join(sorted(trans)))
missing = []
for lang in trans: