2012-02-27 10:28:33 +01:00
|
|
|
from django.core.management.base import BaseCommand, CommandError
|
|
|
|
from lang.models import Language
|
|
|
|
from translate.lang import data
|
|
|
|
|
2012-02-27 16:12:14 +01:00
|
|
|
EXTRALANGS = [
|
|
|
|
('ur', 'Urdu', 2, '(n != 1)'),
|
2012-02-27 16:25:17 +01:00
|
|
|
('uz@latin', 'Uzbek (latin)', 1, '0'),
|
|
|
|
('uz', 'Uzbek', 1, '0'),
|
|
|
|
('sr@latin', 'Serbian (latin)', 3, '(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)'),
|
|
|
|
('be@latin', 'Belarusian (latin)', 3, '(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)'),
|
2012-02-27 16:12:14 +01:00
|
|
|
]
|
|
|
|
|
2012-02-27 10:28:33 +01:00
|
|
|
class Command(BaseCommand):
|
|
|
|
help = 'Populates language definitions'
|
|
|
|
|
|
|
|
def handle(self, *args, **options):
|
|
|
|
for code, props in data.languages.items():
|
|
|
|
lang, created = Language.objects.get_or_create(
|
2012-02-27 16:25:17 +01:00
|
|
|
code = code)
|
2012-03-01 10:36:50 +01:00
|
|
|
lang.name = props[0].split(';')[-1]
|
2012-02-27 16:25:17 +01:00
|
|
|
lang.nplurals = props[1]
|
|
|
|
lang.pluralequation = props[2]
|
|
|
|
lang.save()
|
2012-02-27 16:12:14 +01:00
|
|
|
for props in EXTRALANGS:
|
|
|
|
lang, created = Language.objects.get_or_create(
|
2012-02-27 16:25:17 +01:00
|
|
|
code = props[0])
|
|
|
|
lang.name = props[1]
|
|
|
|
lang.nplurals = props[2]
|
|
|
|
lang.pluralequation = props[3]
|
|
|
|
lang.save()
|
2012-02-27 10:28:33 +01:00
|
|
|
|