/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

  1. # -*- coding: utf-8 -*-
  2. """
  3. A list of Romanian counties as `choices` in a formfield.
  4. This exists as a standalone file so that it's only imported into memory when
  5. explicitly needed.
  6. """
  7. COUNTIES_CHOICES = (
  8. ('AB', u'Alba'),
  9. ('AR', u'Arad'),
  10. ('AG', u'Arge?'),
  11. ('BC', u'Bac?u'),
  12. ('BH', u'Bihor'),
  13. ('BN', u'Bistri?a-N?s?ud'),
  14. ('BT', u'Boto?ani'),
  15. ('BV', u'Bra?ov'),
  16. ('BR', u'Br?ila'),
  17. ('B', u'Bucure?ti'),
  18. ('BZ', u'Buz?u'),
  19. ('CS', u'Cara?-Severin'),
  20. ('CL', u'C?l?ra?i'),
  21. ('CJ', u'Cluj'),
  22. ('CT', u'Constan?a'),
  23. ('CV', u'Covasna'),
  24. ('DB', u'Dâmbovi?a'),
  25. ('DJ', u'Dolj'),
  26. ('GL', u'Gala?i'),
  27. ('GR', u'Giurgiu'),
  28. ('GJ', u'Gorj'),
  29. ('HR', u'Harghita'),
  30. ('HD', u'Hunedoara'),
  31. ('IL', u'Ialomi?a'),
  32. ('IS', u'Ia?i'),
  33. ('IF', u'Ilfov'),
  34. ('MM', u'Maramure?'),
  35. ('MH', u'Mehedin?i'),
  36. ('MS', u'Mure?'),
  37. ('NT', u'Neam?'),
  38. ('OT', u'Olt'),
  39. ('PH', u'Prahova'),
  40. ('SM', u'Satu Mare'),
  41. ('SJ', u'S?laj'),
  42. ('SB', u'Sibiu'),
  43. ('SV', u'Suceava'),
  44. ('TR', u'Teleorman'),
  45. ('TM', u'Timi?'),
  46. ('TL', u'Tulcea'),
  47. ('VS', u'Vaslui'),
  48. ('VL', u'Vâlcea'),
  49. ('VN', u'Vrancea'),
  50. )