Skip to content

Commit

Permalink
Correctly map language code
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed Oct 11, 2016
1 parent c6bdb57 commit ce3d53f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/list-translated-languages
Expand Up @@ -35,6 +35,8 @@ def main():
for lang in data:
if lang['translated_percent'] > THRESHOLD:
code = lang['code'].replace('_', '-').lower()
if code == 'be-latn':
code = 'be@latin'
languages.append(code)
languages.sort()
print 'Expected setup:'
Expand Down

0 comments on commit ce3d53f

Please sign in to comment.