-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding support for Kuwait governorates (#231)
Add support for Kuwait governorates.
- Loading branch information
1 parent
edaf9d5
commit 985f757
Showing
4 changed files
with
46 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import unicode_literals | ||
|
||
from django.utils.translation import ugettext_lazy as _ | ||
|
||
# List of governorates as defined by ISO_3166-2 | ||
# For reference; see https://en.wikipedia.org/wiki/ISO_3166-2:KW | ||
# Note that these are governorates and not subdivisions | ||
|
||
# These are the English names | ||
GOVERNORATE_CHOICES = ( | ||
('AH', _('Ahmadi')), | ||
('FA', _('Farwaniyah')), | ||
('JA', _('Jahra')), | ||
('KU', _('Capital')), | ||
('HA', _('Hawalli')), | ||
('MU', _('Mubarak Al Kabir')), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters