diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2017-08-19 12:51:35 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-19 12:51:35 +0300 |
commit | ad81dc1889843ef295984a7d0ad714f154eaed9c (patch) | |
tree | 25669d7817c2e96a5ba8abc93694e63a8fa8027b /applications/luci-app-dnscrypt-proxy/luasrc | |
parent | 2163284cf7c5d1484a9703cc283619f2a58549f1 (diff) | |
parent | b02330d28cfc2e5f6a563e4747f24a702ae799cd (diff) |
Merge pull request #1313 from musashino205/dcp-add-ja
luci-app-dnscrypt-proxy: Add Japanese translation
Diffstat (limited to 'applications/luci-app-dnscrypt-proxy/luasrc')
-rw-r--r-- | applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua b/applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua index de23ba00da..602076ce0e 100644 --- a/applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua +++ b/applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua @@ -41,7 +41,7 @@ end -- Trigger selection -s = m:section(TypedSection, "global", "General options") +s = m:section(TypedSection, "global", translate("General options")) s.anonymous = true -- Main dnscrypt-proxy resource list @@ -69,7 +69,7 @@ end -- Trigger settings -t = s:option(DynamicList, "procd_trigger", "Startup Trigger", +t = s:option(DynamicList, "procd_trigger", translate("Startup Trigger"), translate("By default the DNSCrypt-Proxy startup will be triggered by ifup events of multiple network interfaces. ") .. translate("To restrict the trigger, add only the relevant network interface(s). ") .. translate("Usually the 'wan' interface should work for most users.")) @@ -85,7 +85,7 @@ t.rmempty = true -- Mandatory options per instance -s = m:section(TypedSection, "dnscrypt-proxy", "Instance options") +s = m:section(TypedSection, "dnscrypt-proxy", translate("Instance options")) s.anonymous = true s.addremove = true |