Hi! I'm starting to implement an Adwords integration in my application and I ran into some time zones that were not available in your official list (
https://developers.google.com/adwords/api/docs/appendix/timezones).
Most of them I can map to an equivalent time zone, but I could not find one for
Asia/Kolkata (GMT +05:30)Here's my current mapping:
{
'Etc/UTC' => 'Etc/GMT',
'Europe/Volgograd' => 'Europe/Moscow',
'Asia/Kolkata' => '?',
'Asia/Kathmandu' => 'Asia/Katmandu',
'Asia/Srednekolymsk' => 'Pacific/Norfolk',
}
Is there another timezone I could use in place of Europe/Kolkata?
Thank you!