diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-01-09 11:25:23 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-01-09 11:25:23 +0100 |
commit | c8909a6bf8150e1798fe205acbbcfa088f9da5cb (patch) | |
tree | 048a584ee9592929aeec139715ce08af0061d653 /applications/luci-app-radicale/luasrc/model | |
parent | 96b8cbdc1696230a864b44402aaea4d3163f76ec (diff) |
luci-app-radicale: remove redundant header name translations
Fixes: #3483
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-radicale/luasrc/model')
-rw-r--r-- | applications/luci-app-radicale/luasrc/model/cbi/radicale.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/applications/luci-app-radicale/luasrc/model/cbi/radicale.lua b/applications/luci-app-radicale/luasrc/model/cbi/radicale.lua index c610478bcb..c5c68686fd 100644 --- a/applications/luci-app-radicale/luasrc/model/cbi/radicale.lua +++ b/applications/luci-app-radicale/luasrc/model/cbi/radicale.lua @@ -715,7 +715,7 @@ end -- Access_Control_Allow_Origin ------------------------------------------------- local heo = hea:option( DynamicList, "Access_Control_Allow_Origin" ) -heo.title = translate("Access-Control-Allow-Origin") +heo.title = "Access-Control-Allow-Origin" heo.description = nil function heo.parse(self, section, novld) CTRL.value_parse(self, section, novld) @@ -723,7 +723,7 @@ end -- Access_Control_Allow_Methods ------------------------------------------------ local hem = hea:option( DynamicList, "Access_Control_Allow_Methods" ) -hem.title = translate("Access-Control-Allow-Methods") +hem.title = "Access-Control-Allow-Methods" hem.description = nil function hem.parse(self, section, novld) CTRL.value_parse(self, section, novld) @@ -731,7 +731,7 @@ end -- Access_Control_Allow_Headers ------------------------------------------------ local heh = hea:option( DynamicList, "Access_Control_Allow_Headers" ) -heh.title = translate("Access-Control-Allow-Headers") +heh.title = "Access-Control-Allow-Headers" heh.description = nil function heh.parse(self, section, novld) CTRL.value_parse(self, section, novld) @@ -739,7 +739,7 @@ end -- Access_Control_Expose_Headers ----------------------------------------------- local hee = hea:option( DynamicList, "Access_Control_Expose_Headers" ) -hee.title = translate("Access-Control-Expose-Headers") +hee.title = "Access-Control-Expose-Headers" hee.description = nil function hee.parse(self, section, novld) CTRL.value_parse(self, section, novld) |