Created
December 19, 2014 19:51
-
-
Save stupidbodo/5edd1d26c57fa37c4f98 to your computer and use it in GitHub Desktop.
Timezone Choices
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
TIMEZONE_CHOICES = ( | |
('US/Hawaii', '(UTC-1000) Hawaii time'), | |
('America/Atka', '(UTC-0900) Alaska time'), | |
('Pacific/Pitcairn', '(UTC-0800) Pitcairn time'), | |
('America/Dawson', '(UTC-0700) Dawson time'), | |
('America/Dawson_Creek', '(UTC-0700) Dawson Creek time'), | |
('America/Hermosillo', '(UTC-0700) Hermosillo time'), | |
('America/Los_Angeles', '(UTC-0700) Los Angeles time'), | |
('America/Vancouver', '(UTC-0700) Vancouver time'), | |
('America/Phoenix', '(UTC-0700) Phoenix time'), | |
('America/Costa_Rica', '(UTC-0600) Costa Rica time'), | |
('America/Denver', '(UTC-0600) Denver time'), | |
('America/El_Salvador', '(UTC-0600) El Salvador time'), | |
('America/Guatemala', '(UTC-0600) Guatemala time'), | |
('Chile/EasterIsland', '(UTC-0600) Easter Island time'), | |
('America/Chicago', '(UTC-0500) Chicago time'), | |
('America/Jamaica', '(UTC-0500) Jamaica time'), | |
('America/Mexico_City', '(UTC-0500) Mexico City time'), | |
('America/Panama', '(UTC-0500) Panama time'), | |
('EST', '(UTC-0500) Eastern Standard Time'), | |
('America/Detroit', '(UTC-0400) Detroit time'), | |
('America/Dominica', '(UTC-0400) Dominica time'), | |
('America/Grenada', '(UTC-0400) Grenada time'), | |
('America/Guyana', '(UTC-0400) Guyana time'), | |
('America/Louisville', '(UTC-0400) Louisville time'), | |
('America/Martinique', '(UTC-0400) Martinique time'), | |
('America/Montreal', '(UTC-0400) Montreal time'), | |
('America/New_York', '(UTC-0400) New_York time'), | |
('America/Puerto_Rico', '(UTC-0400) Puerto Rico time'), | |
('America/Toronto', '(UTC-0400) Toronto time'), | |
('America/Buenos_Aires', '(UTC-0300) Buenos Aires time'), | |
('America/Sao_Paulo', '(UTC-0300) Sao Paulo time'), | |
('Atlantic/Bermuda', '(UTC-0300) Bermuda time'), | |
('America/St_Johns', '(UTC-0230) St Johns time'), | |
('America/Noronha', '(UTC-0200) Noronha time'), | |
('Atlantic/Cape_Verde', '(UTC-0100) Cap _Verde time'), | |
('Universal', '(UTC+0000) Universal Time'), | |
('Europe/Dublin', '(UTC+0100) Dublin time'), | |
('Europe/Isle_of_Man', '(UTC+0100) Isle of Man time'), | |
('Europe/Lisbon', '(UTC+0100) Lisbon time'), | |
('Europe/London', '(UTC+0100) London time'), | |
('Europe/Amsterdam', '(UTC+0200) Amsterdam time'), | |
('Europe/Belgrade', '(UTC+0200) Belgrade time'), | |
('Europe/Berlin', '(UTC+0200) Berlin time'), | |
('Europe/Bratislava', '(UTC+0200) Bratislava time'), | |
('Europe/Brussels', '(UTC+0200) Brussels time'), | |
('Europe/Budapest', '(UTC+0200) Budapest time'), | |
('Europe/Copenhagen', '(UTC+0200) Copenhagen time'), | |
('Europe/Luxembourg', '(UTC+0200) Luxembourg time'), | |
('Europe/Madrid', '(UTC+0200) Madrid time'), | |
('Europe/Monaco', '(UTC+0200) Monaco time'), | |
('Europe/Oslo', '(UTC+0200) Oslo time'), | |
('Europe/Paris', '(UTC+0200) Paris time'), | |
('Europe/Prague', '(UTC+0200) Prague time'), | |
('Europe/Rome', '(UTC+0200) Rome time'), | |
('Europe/San_Marino', '(UTC+0200) San Marino time'), | |
('Europe/Stockholm', '(UTC+0200) Stockholm time'), | |
('Europe/Vatican', '(UTC+0200) Vatican time'), | |
('Europe/Vienna', '(UTC+0200) Vienna time'), | |
('Europe/Warsaw', '(UTC+0200) Warsaw time'), | |
('Europe/Zurich', '(UTC+0200) Zurich time'), | |
('Asia/Istanbul', '(UTC+0300) Istanbul time'), | |
('Asia/Jerusalem', '(UTC+0300) Jerusalem time'), | |
('Asia/Kuwait', '(UTC+0300) Kuwait time'), | |
('Asia/Qatar', '(UTC+0300) Qatar time'), | |
('Asia/Tel_Aviv', '(UTC+0300) Tel Aviv time'), | |
('Europe/Athens', '(UTC+0300) Athens time'), | |
('Europe/Helsinki', '(UTC+0300) Helsinki time'), | |
('Europe/Kiev', '(UTC+0300) Kiev time'), | |
('Asia/Dubai', '(UTC+0400) Dubai time'), | |
('Europe/Moscow', '(UTC+0400) Moscow time'), | |
('Indian/Mauritius', '(UTC+0400) Mauritius time'), | |
('Asia/Tehran', '(UTC+0430) Tehran time'), | |
('Indian/Maldives', '(UTC+0500) Maldives time'), | |
('Asia/Kolkata ', '(UTC+0530) Kolkata time'), | |
('Asia/Dacca', '(UTC+0600) Dacca time'), | |
('Asia/Dhaka', '(UTC+0600) Dhaka time'), | |
('Asia/Bangkok', '(UTC+0700) Bangkok time'), | |
('Asia/Ho_Chi_Minh', '(UTC+0700) Ho Chi Minh time'), | |
('Asia/Jakarta', '(UTC+0700) Jakarta time'), | |
('Asia/Brunei', '(UTC+0800) Brunei time'), | |
('Asia/Hong_Kong', '(UTC+0800) Hong Kong time'), | |
('Asia/Kuala_Lumpur', '(UTC+0800) Kuala Lumpur time'), | |
('Asia/Macau', '(UTC+0800) Macau time'), | |
('Asia/Manila', '(UTC+0800) Manila time'), | |
('Asia/Shanghai', '(UTC+0800) Shanghai time'), | |
('Asia/Singapore', '(UTC+0800) Singapore time'), | |
('Asia/Taipei', '(UTC+0800) Taipei time'), | |
('Australia/Perth', '(UTC+0800) Perth time'), | |
('Asia/Pyongyang', '(UTC+0900) Pyongyang time'), | |
('Asia/Seoul', '(UTC+0900) Seoul time'), | |
('Asia/Tokyo', '(UTC+0900) Tokyo time'), | |
('Australia/Adelaide', '(UTC+0930) Adelaide time'), | |
('Australia/Melbourne', '(UTC+1000) Melbourne time'), | |
('Australia/Sydney', '(UTC+1000) Sydney time'), | |
('Pacific/Noumea', '(UTC+1100) Noumea time'), | |
('Pacific/Fiji', '(UTC+1200) Fiji time') | |
) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment