11f4afe871ea302287ee02d3b5188f8e43600737
[project/luci.git] / src / ffluci / i18n.lua
1 --[[
2 FFLuCI - Internationalisation
3
4 Description:
5 A very minimalistic but yet effective internationalisation module
6
7 FileId:
8 $Id$
9
10 License:
11 Copyright 2008 Steven Barth <steven@midlink.org>
12
13 Licensed under the Apache License, Version 2.0 (the "License");
14 you may not use this file except in compliance with the License.
15 You may obtain a copy of the License at 
16
17         http://www.apache.org/licenses/LICENSE-2.0 
18
19 Unless required by applicable law or agreed to in writing, software
20 distributed under the License is distributed on an "AS IS" BASIS,
21 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 See the License for the specific language governing permissions and
23 limitations under the License.
24
25 ]]--
26
27 module("ffluci.i18n", package.seeall)
28
29 require("ffluci.config")
30
31 table   = {}
32 i18ndir = ffluci.config.path .. "/i18n/"
33
34 -- Clears the translation table
35 function clear()
36         table = {}
37 end
38
39 -- Loads a translation and copies its data into the global translation table
40 function load(file)
41         local f = loadfile(i18ndir .. file)
42         if f then
43                 setfenv(f, table)
44                 f()
45                 return true
46         else
47                 return false
48         end
49 end
50
51 -- Same as load but autocompletes the filename with .LANG from config.lang
52 function loadc(file)
53         return load(file .. "." .. ffluci.config.main.lang)
54 end
55
56 -- Returns the i18n-value defined by "key" or if there is no such: "default"
57 function translate(key, default)
58         return table[key] or default
59 end