summaryrefslogtreecommitdiff
path: root/packages/frontend/src/scripts/timezones.ts
blob: c7582e06dad50abab9342d07efe60b45c3b7f41d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 * SPDX-FileCopyrightText: syuilo and misskey-project
 * SPDX-License-Identifier: AGPL-3.0-only
 */

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,
}];