summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-statistics/luasrc/statistics/i18n.lua
blob: 865839524cf756b471849c97bc1378435e0c4878 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
--[[

Luci statistics - diagram i18n helper
(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net>

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

$Id$

]]--

module("luci.statistics.i18n", package.seeall)

require("luci.util")
require("luci.i18n")


Instance = luci.util.class()


function Instance.__init__( self, graph )
	self.i18n  = luci.i18n
	self.graph = graph

	-- XXX: compat hack
	self.i18n.load("statistics.en")
end

function Instance._subst( self, str, val )
	str = str:gsub( "%%H",  self.graph.opts.host or "" )
	str = str:gsub( "%%pn", val.plugin or "" )
	str = str:gsub( "%%pi", val.pinst  or "" )
	str = str:gsub( "%%dt", val.dtype  or "" )
	str = str:gsub( "%%di", val.dinst  or "" )
	str = str:gsub( "%%ds", val.dsrc   or "" )

	return str
end

function Instance.title( self, plugin, pinst, dtype, dinst )

	local title = self.i18n.translate(
		string.format( "stat_dg_title_%s_%s_%s", plugin, pinst, dtype ),
		self.i18n.translate(
			string.format( "stat_dg_title_%s_%s", plugin, pinst ),
			self.i18n.translate(
				string.format( "stat_dg_title_%s__%s", plugin, dtype ),
				self.i18n.translate(
					string.format( "stat_dg_title_%s", plugin ),
					self.graph:_mkpath( plugin, pinst, dtype )
				)
			)
		)
	)

	return self:_subst( title, { 
		plugin = plugin,
		pinst  = pinst,
		dtype  = dtype,
		dinst  = dinst
	} )

end

function Instance.label( self, plugin, pinst, dtype, dinst )

	local label = self.i18n.translate(
		string.format( "stat_dg_label_%s_%s_%s", plugin, pinst, dtype ),
		self.i18n.translate(
			string.format( "stat_dg_label_%s_%s", plugin, pinst ),
			self.i18n.translate(
				string.format( "stat_dg_label_%s__%s", plugin, dtype ),
				self.i18n.translate(
					string.format( "stat_dg_label_%s", plugin ),
					self.graph:_mkpath( plugin, pinst, dtype )
				)
			)
		)
	)

	return self:_subst( label, { 
		plugin = plugin,
		pinst  = pinst,
		dtype  = dtype,
		dinst  = dinst
	} )

end

function Instance.ds( self, source )

	local label = self.i18n.translate(
		string.format( "stat_ds_%s_%s_%s", source.type, source.instance, source.ds ),
		self.i18n.translate(
			string.format( "stat_ds_%s_%s", source.type, source.instance ),
			self.i18n.translate(
				string.format( "stat_ds_label_%s__%s", source.type, source.ds ),
				self.i18n.translate(
					string.format( "stat_ds_%s", source.type ),
					source.type .. "_" .. source.instance:gsub("[^%w]","_") .. "_" .. source.ds
				)
			)
		)
	)

	return self:_subst( label, { 
		dtype = source.type,
		dinst = source.instance,
		dsrc  = source.ds
	} )
end