Added more reliable Lua2XML Converter for translations
This commit is contained in:
parent
77b05af325
commit
95006a1f11
1 changed files with 20 additions and 0 deletions
20
build/i18n-lua2xml.lua
Executable file
20
build/i18n-lua2xml.lua
Executable file
|
@ -0,0 +1,20 @@
|
|||
#!/usr/bin/lua
|
||||
local util = require "luci.util"
|
||||
|
||||
local x = {}
|
||||
local f = loadfile(arg[1])
|
||||
setfenv(f, x)
|
||||
f()
|
||||
|
||||
print '<?xml version="1.0" encoding="utf-8"?>'
|
||||
print ''
|
||||
print '<i18n:msgs xmlns:i18n="http://luci.freifunk-halle.net/2008/i18n#" xmlns="http://www.w3.org/1999/xhtml">'
|
||||
print ''
|
||||
|
||||
for k, v in util.kspairs(x) do
|
||||
print ('<i18n:msg xml:id="%s">%s</i18n:msg>' % {k, util.pcdata(v)})
|
||||
end
|
||||
|
||||
print ''
|
||||
print '</i18n:msgs>'
|
||||
|
Loading…
Reference in a new issue