-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlanguage_update_strings.py
executable file
·42 lines (30 loc) · 1.26 KB
/
language_update_strings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os import path
from settings import LANGUAGES
BASE_DIR = path.normpath(path.dirname(__file__))
'''
A locale name, either a language specification of the form ll or a
combined language and country specification of the form ll_CC.
Examples: it, de_AT, es, pt_BR.
Note the underscore in some of them and the case of the part located
to its right.
#List supported languages
On Ubuntu: cat /usr/share/i18n/SUPPORTED
#More info about language tags
RFC 5646: http://www.rfc-editor.org/rfc/rfc5646.txt
LANGTAG: http://www.langtag.net
W3C: http://www.w3.org/International
'''
import commands
print '\n*****************'
print 'Checking new strings...'
print 'Updatings language files...\n'
for lang in LANGUAGES:
if commands.getstatusoutput('django-admin makemessages -l '+lang[0])[0]==0:#creates german (de) .po
print lang[1] + ' strings updated at \'locale/'+lang[0]+'/LC_MESSAGES/django.po\''
elif commands.getstatusoutput('django-admin.py makemessages -l '+lang[0])[0]==0:#creates german (de) .po
print lang[1] + ' strings updated at \'locale/'+lang[0]+'/LC_MESSAGES/django.po\''
else:
print lang[1] + ' strings couldn\'t be updated at \'locale/'+lang[0]+'/LC_MESSAGES/django.po\''
print '*****************\n'