From 5dc8d1e97c5df268efaedc495b9dc21200c4ef08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Eduardo=20Jer=C3=A9z=20Gir=C3=B3n?= Date: Sun, 21 Jul 2024 22:50:59 -0600 Subject: [PATCH] Add GMT timezone to Timezones list --- internal/data/timezones.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/internal/data/timezones.go b/internal/data/timezones.go index f2e50dd..fc0d9f4 100644 --- a/internal/data/timezones.go +++ b/internal/data/timezones.go @@ -14,6 +14,12 @@ var Timezones = []Timezone{ Name: "(GMT+00:00) UTC", Utc: "+00:00", }, + { + Label: "GMT (GMT+00:00)", + TzCode: "GMT", + Name: "(GMT+00:00) GMT", + Utc: "+00:00", + }, { Label: "Pacific/Midway (GMT-11:00)", TzCode: "Pacific/Midway",