summaryrefslogtreecommitdiffhomepage
path: root/applications
diff options
context:
space:
mode:
authorManuel Munz <freifunk@somakoma.de>2011-01-14 19:54:37 +0000
committerManuel Munz <freifunk@somakoma.de>2011-01-14 19:54:37 +0000
commitcd34034b871b5391b14866a2fc761f00069bce2e (patch)
tree62a405859b82ead7d2e151e495ba6782de41d0e5 /applications
parentd5511036aa88bb244899aadb9f29891e1fe63ca5 (diff)
applications/initmgr: i18n-scan didn't like the sring formatting with brackets
Diffstat (limited to 'applications')
-rw-r--r--applications/luci-initmgr/luasrc/model/cbi/startup.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/applications/luci-initmgr/luasrc/model/cbi/startup.lua b/applications/luci-initmgr/luasrc/model/cbi/startup.lua
index 1856a1532..f30470602 100644
--- a/applications/luci-initmgr/luasrc/model/cbi/startup.lua
+++ b/applications/luci-initmgr/luasrc/model/cbi/startup.lua
@@ -15,8 +15,7 @@ You may obtain a copy of the License at
local fs = require "nixio.fs"
local rc = "/etc/rc.local"
-f = SimpleForm("rc", translate("Local Startup"), translate([[This is the content of /etc/rc.local. Insert your own commands here
- (in front of 'exit 0') to execute them at the end of the boot process.]]))
+f = SimpleForm("rc", translate("Local Startup"), translate("This is the content of /etc/rc.local. Insert your own commands here (in front of 'exit 0') to execute them at the end of the boot process."))
t = f:field(TextValue, "rcs")
t.rmempty = true