|
Revision 7294, 344 bytes
(checked in by mtredinnick, 7 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 |
from django.utils.translation import gettext_lazy as _ |
|---|
| 2 |
|
|---|
| 3 |
PROVINCE_CHOICES = ( |
|---|
| 4 |
('EC', _('Eastern Cape')), |
|---|
| 5 |
('FS', _('Free State')), |
|---|
| 6 |
('GP', _('Gauteng')), |
|---|
| 7 |
('KN', _('KwaZulu-Natal')), |
|---|
| 8 |
('LP', _('Limpopo')), |
|---|
| 9 |
('MP', _('Mpumalanga')), |
|---|
| 10 |
('NC', _('Northern Cape')), |
|---|
| 11 |
('NW', _('North West')), |
|---|
| 12 |
('WC', _('Western Cape')), |
|---|
| 13 |
) |
|---|