
* chore: 著作権とライセンスについての情報を各ファイルに追加する * chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * chore: Add SPDX-License-Identifier [skip ci] * add missing SPDX-License-Identifier * remove unused file --------- Co-authored-by: Shun Sakai <sorairolake@protonmail.ch> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> Co-authored-by: Chocolate Pie <106949016+chocolate-pie@users.noreply.github.com>
55 lines
863 B
TypeScript
55 lines
863 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* 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,
|
|
}];
|