diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-08-05 23:51:15 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-08-05 23:51:15 +0900 |
| commit | 2cd70b80a21de9bf072af726449480c8d229440c (patch) | |
| tree | 7e74e2155857802a515d4917c6ed30d9f93ebd7d /packages/client/src/scripts | |
| parent | feat(client): improve widget (diff) | |
| download | sharkey-2cd70b80a21de9bf072af726449480c8d229440c.tar.gz sharkey-2cd70b80a21de9bf072af726449480c8d229440c.tar.bz2 sharkey-2cd70b80a21de9bf072af726449480c8d229440c.zip | |
enhance(client): improve clock widgets
Diffstat (limited to 'packages/client/src/scripts')
| -rw-r--r-- | packages/client/src/scripts/timezones.ts | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/packages/client/src/scripts/timezones.ts b/packages/client/src/scripts/timezones.ts new file mode 100644 index 0000000000..8ce07323f6 --- /dev/null +++ b/packages/client/src/scripts/timezones.ts @@ -0,0 +1,49 @@ +export const timezones = [{ + name: 'UTC', + abbrev: 'UTC', + offset: 0, +}, { + name: 'Europe/Berlin', + abbrev: 'CET', + offset: 60, +}, { + name: 'Asia/Tokyo', + abbrev: 'JST', + offset: 540, +}, { + name: 'Asia/Seoul', + abbrev: 'KST', + offset: 540, +}, { + name: 'Asia/Shanghai', + abbrev: 'CST', + offset: 480, +}, { + name: 'Australia/Sydney', + abbrev: 'AEST', + offset: 600, +}, { + name: 'Australia/Darwin', + abbrev: 'ACST', + offset: 570, +}, { + name: 'Australia/Perth', + abbrev: 'AWST', + offset: 480, +}, { + name: 'America/New_York', + abbrev: 'EST', + offset: -300, +}, { + name: 'America/Mexico_City', + abbrev: 'CST', + offset: -360, +}, { + name: 'America/Phoenix', + abbrev: 'MST', + offset: -420, +}, { + name: 'America/Los_Angeles', + abbrev: 'PST', + offset: -480, +}]; |