You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lookup for full time is done by abbreviated name, so this happens:
loc, _ := time.LoadLocation("Asia/Jerusalem")
datetime := time.Date(2016, 02, 03, 9, 0, 1, 0, loc)
l := en_US.New()
fmt.Println(l.FmtTimeFull(datetime)) // 9:00:01 am India Standard Time
The text was updated successfully, but these errors were encountered:
Timezone abbrivations are (sadly) not unique, e.g. IST is (Israel/India/Irish) Standard Time.
(https://en.wikipedia.org/wiki/List_of_time_zone_abbreviations)
Related issue elsewhere: osTicket/osTicket#3583
Lookup for full time is done by abbreviated name, so this happens:
The text was updated successfully, but these errors were encountered: