diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-10-31 19:26:07 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-10-31 19:26:07 +0000 |
commit | cffba70b2ebff664e385f077d30cf701cab49a70 (patch) | |
tree | f5d22dd86b44e051c1c74797c3584e101d1f566a /applications/luci-openvpn | |
parent | b2671410bf5468443d6eb49f525d6c3e3fd7e28f (diff) |
all: translation fixes in templates
Diffstat (limited to 'applications/luci-openvpn')
-rw-r--r-- | applications/luci-openvpn/luasrc/view/openvpn/pageswitch.htm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/applications/luci-openvpn/luasrc/view/openvpn/pageswitch.htm b/applications/luci-openvpn/luasrc/view/openvpn/pageswitch.htm index 0d036a9ab..9276fe3cd 100644 --- a/applications/luci-openvpn/luasrc/view/openvpn/pageswitch.htm +++ b/applications/luci-openvpn/luasrc/view/openvpn/pageswitch.htm @@ -15,23 +15,23 @@ $Id$ <fieldset class="cbi-section"> <legend> - <a href="<%=luci.dispatcher.build_url("admin", "services", "openvpn")%>"><%:openvpn_overview Overview%></a> » + <a href="<%=luci.dispatcher.build_url("admin", "services", "openvpn")%>"><%:Overview%></a> » <%=luci.i18n.translatef("Instance \"%s\"", self.instance)%> </legend> <% if self.mode == "basic" then %> - <a href="<%=luci.dispatcher.build_url("admin", "services", "openvpn", "advanced", self.instance)%>"><%:openvpn_switch_advanced Switch to advanced configuration »%></a> + <a href="<%=luci.dispatcher.build_url("admin", "services", "openvpn", "advanced", self.instance)%>"><%:Switch to advanced configuration »%></a> <% else %> - <a href="<%=luci.dispatcher.build_url("admin", "services", "openvpn", "basic", self.instance)%>"><%:openvpn_switch_basic « Switch to basic configuration%></a> + <a href="<%=luci.dispatcher.build_url("admin", "services", "openvpn", "basic", self.instance)%>"><%:« Switch to basic configuration%></a> <hr style="margin:0.5em 0" /> - <%:openvpn_confcategory Configuration category%>: + <%:Configuration category%>: <% for i, c in ipairs(self.categories) do %> <% if c == self.category then %> - <strong><%=translate("openvpn_%s" % c, c)%></strong> + <strong><%=translate(c)%></strong> <% else %> <a href="<%=luci.dispatcher.build_url( "admin", "services", "openvpn", "advanced", self.instance, c - )%>"><%=translate("openvpn_%s" % c, c)%></a> + )%>"><%=translate(c)%></a> <% end %> <% if next(self.categories, i) then %>|<% end %> <% end %> |