summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-base/luasrc/sys/zoneinfo/tzoffset.lua
blob: e63e2a6958c0bcf05cac2409648d79aec3168829 (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
-- Licensed to the public under the Apache License 2.0.

module "luci.sys.zoneinfo.tzoffset"

OFFSET = {
	gmt   =      0,	-- GMT
	eat   =  10800,	-- EAT
	cet   =   3600,	-- CET
	wat   =   3600,	-- WAT
	cat   =   7200,	-- CAT
	eet   =   7200,	-- EET
	sast  =   7200,	-- SAST
	hst   = -36000,	-- HST
	hdt   = -32400,	-- HDT
	akst  = -32400,	-- AKST
	akdt  = -28800,	-- AKDT
	ast   = -14400,	-- AST
	est   = -18000,	-- EST
	cst   = -21600,	-- CST
	cdt   = -18000,	-- CDT
	mst   = -25200,	-- MST
	mdt   = -21600,	-- MDT
	pst   = -28800,	-- PST
	pdt   = -25200,	-- PDT
	nst   = -12600,	-- NST
	ndt   =  -9000,	-- NDT
	nzst  =  43200,	-- NZST
	nzdt  =  46800,	-- NZDT
	hkt   =  28800,	-- HKT
	wib   =  25200,	-- WIB
	wit   =  32400,	-- WIT
	ist   =   7200,	-- IST
	idt   =  10800,	-- IDT
	pkt   =  18000,	-- PKT
	wita  =  28800,	-- WITA
	kst   =  32400,	-- KST
	jst   =  32400,	-- JST
	wet   =      0,	-- WET
	acst  =  34200,	-- ACST
	acdt  =  37800,	-- ACDT
	aest  =  36000,	-- AEST
	awst  =  28800,	-- AWST
	msk   =  10800,	-- MSK
	sst   = -39600,	-- SST
}