summaryrefslogtreecommitdiff
path: root/packages/client/src/scripts/timezones.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-12-27 14:36:33 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-12-27 14:36:33 +0900
commit9384f5399da39e53855beb8e7f8ded1aa56bf72e (patch)
treece5959571a981b9c4047da3c7b3fd080aa44222c /packages/client/src/scripts/timezones.ts
parentwip: retention for dashboard (diff)
downloadmisskey-9384f5399da39e53855beb8e7f8ded1aa56bf72e.tar.gz
misskey-9384f5399da39e53855beb8e7f8ded1aa56bf72e.tar.bz2
misskey-9384f5399da39e53855beb8e7f8ded1aa56bf72e.zip
rename: client -> frontend
Diffstat (limited to 'packages/client/src/scripts/timezones.ts')
-rw-r--r--packages/client/src/scripts/timezones.ts49
1 files changed, 0 insertions, 49 deletions
diff --git a/packages/client/src/scripts/timezones.ts b/packages/client/src/scripts/timezones.ts
deleted file mode 100644
index 8ce07323f6..0000000000
--- a/packages/client/src/scripts/timezones.ts
+++ /dev/null
@@ -1,49 +0,0 @@
-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,
-}];