|
Revision 7294, 0.6 kB
(checked in by mtredinnick, 5 months ago)
|
Added "svn:eol-style native" to every text file in the tree (*.txt, *.html,
*.py, *.xml and AUTHORS, etc). Added "svn:ignore *.pyc" to some directories in
tests/regressiontests/ that were previously missing it.
Fixed #6545, #6801.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
# -*- coding: utf-8 -*- |
|---|
| 2 |
from django.utils.translation import ugettext_lazy as _ |
|---|
| 3 |
|
|---|
| 4 |
REGION_CHOICES = ( |
|---|
| 5 |
('AN', _('Andalusia')), |
|---|
| 6 |
('AR', _('Aragon')), |
|---|
| 7 |
('O', _('Principality of Asturias')), |
|---|
| 8 |
('IB', _('Balearic Islands')), |
|---|
| 9 |
('PV', _('Basque Country')), |
|---|
| 10 |
('CN', _('Canary Islands')), |
|---|
| 11 |
('S', _('Cantabria')), |
|---|
| 12 |
('CM', _('Castile-La Mancha')), |
|---|
| 13 |
('CL', _('Castile and Leon')), |
|---|
| 14 |
('CT', _('Catalonia')), |
|---|
| 15 |
('EX', _('Extremadura')), |
|---|
| 16 |
('GA', _('Galicia')), |
|---|
| 17 |
('LO', _('La Rioja')), |
|---|
| 18 |
('M', _('Madrid')), |
|---|
| 19 |
('MU', _('Region of Murcia')), |
|---|
| 20 |
('NA', _('Foral Community of Navarre')), |
|---|
| 21 |
('VC', _('Valencian Community')), |
|---|
| 22 |
) |
|---|