/django/contrib/localflavor/ro/ro_counties.py
https://code.google.com/p/mango-py/ · Python · 52 lines · 45 code · 0 blank · 7 comment · 0 complexity · 82e7e935c9350779e0bc89d01b45231a MD5 · raw file
- # -*- coding: utf-8 -*-
- """
- A list of Romanian counties as `choices` in a formfield.
- This exists as a standalone file so that it's only imported into memory when
- explicitly needed.
- """
- COUNTIES_CHOICES = (
- ('AB', u'Alba'),
- ('AR', u'Arad'),
- ('AG', u'Arge?'),
- ('BC', u'Bac?u'),
- ('BH', u'Bihor'),
- ('BN', u'Bistri?a-N?s?ud'),
- ('BT', u'Boto?ani'),
- ('BV', u'Bra?ov'),
- ('BR', u'Br?ila'),
- ('B', u'Bucure?ti'),
- ('BZ', u'Buz?u'),
- ('CS', u'Cara?-Severin'),
- ('CL', u'C?l?ra?i'),
- ('CJ', u'Cluj'),
- ('CT', u'Constan?a'),
- ('CV', u'Covasna'),
- ('DB', u'Dâmbovi?a'),
- ('DJ', u'Dolj'),
- ('GL', u'Gala?i'),
- ('GR', u'Giurgiu'),
- ('GJ', u'Gorj'),
- ('HR', u'Harghita'),
- ('HD', u'Hunedoara'),
- ('IL', u'Ialomi?a'),
- ('IS', u'Ia?i'),
- ('IF', u'Ilfov'),
- ('MM', u'Maramure?'),
- ('MH', u'Mehedin?i'),
- ('MS', u'Mure?'),
- ('NT', u'Neam?'),
- ('OT', u'Olt'),
- ('PH', u'Prahova'),
- ('SM', u'Satu Mare'),
- ('SJ', u'S?laj'),
- ('SB', u'Sibiu'),
- ('SV', u'Suceava'),
- ('TR', u'Teleorman'),
- ('TM', u'Timi?'),
- ('TL', u'Tulcea'),
- ('VS', u'Vaslui'),
- ('VL', u'Vâlcea'),
- ('VN', u'Vrancea'),
- )