X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=build%2Fuvl2i18n.lua;h=ee57c83ea54d3fa9ffcd8670ad6e8ca6c9434204;hb=141aea7e42f86bec142633aacd6c8681dde3e86d;hp=771b26dd733ef978a0c4f0554b7f5545ac505ecf;hpb=935d29415e8514cf588923f6019334b2ab869783;p=project%2Fluci.git diff --git a/build/uvl2i18n.lua b/build/uvl2i18n.lua index 771b26dd7..ee57c83ea 100755 --- a/build/uvl2i18n.lua +++ b/build/uvl2i18n.lua @@ -8,7 +8,7 @@ require("luci.uvl") local shm = luci.uvl.UVL():get_scheme(arg[1]) for s, o in luci.util.kspairs(shm.sections) do - print( string.format( '%s_%s = %q', shm.name, s:gsub("_",""), o.title ) ) + print( string.format( '%s_%s = %q', shm.name, s:gsub("_",""), o.title or s ) ) if o.description and #o.description > 0 then print( string.format( @@ -18,7 +18,7 @@ for s, o in luci.util.kspairs(shm.sections) do for v, o in luci.util.kspairs(shm.variables[s]) do print( string.format( - '%s_%s_%s = %q', shm.name, s:gsub("_",""), v:gsub("_",""), o.title + '%s_%s_%s = %q', shm.name, s:gsub("_",""), v:gsub("_",""), o.title or v ) ) if o.description and #o.description > 0 then