diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-09-29 19:49:36 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-09-29 19:49:36 +0000 |
commit | 8e437b3125b7d55babc99901f3cfca85357b2546 (patch) | |
tree | 9cf91d59e11c03e4b1472adca3f302f5c4b2471b /applications/luci-qos/luasrc/model/cbi/qos | |
parent | 36608598b3ac1a27e43ace5eaa80bb04d5e47c91 (diff) |
* luci/app/qos: slight change in i18n handling to allow female "all" string for portuguese_brazilian translation
Diffstat (limited to 'applications/luci-qos/luasrc/model/cbi/qos')
-rw-r--r-- | applications/luci-qos/luasrc/model/cbi/qos/qos.lua | 4 | ||||
-rw-r--r-- | applications/luci-qos/luasrc/model/cbi/qos/qosmini.lua | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/applications/luci-qos/luasrc/model/cbi/qos/qos.lua b/applications/luci-qos/luasrc/model/cbi/qos/qos.lua index c1cfdb7ac..e051347ab 100644 --- a/applications/luci-qos/luasrc/model/cbi/qos/qos.lua +++ b/applications/luci-qos/luasrc/model/cbi/qos/qos.lua @@ -82,6 +82,6 @@ p.rmempty = true ports = s:option(Value, "ports", translate("ports")) ports.rmempty = true -ports:value("", translate("all")) +ports:value("", translate("allf", translate("all"))) -return m
\ No newline at end of file +return m diff --git a/applications/luci-qos/luasrc/model/cbi/qos/qosmini.lua b/applications/luci-qos/luasrc/model/cbi/qos/qosmini.lua index f8a6bb588..a1825505b 100644 --- a/applications/luci-qos/luasrc/model/cbi/qos/qosmini.lua +++ b/applications/luci-qos/luasrc/model/cbi/qos/qosmini.lua @@ -75,6 +75,6 @@ p.rmempty = true ports = s:option(Value, "ports", translate("ports")) ports.rmempty = true -ports:value("", translate("all")) +ports:value("", translate("allf", translate("all"))) -return m
\ No newline at end of file +return m |