luci-app-openvpn: fix advanced mode page switcher translation
[project/luci.git] / applications / luci-app-openvpn / luasrc / view / openvpn / pageswitch.htm
index 7d88b844ab4cbfdbb73d47b69d9d8821ac7dead8..07927630855b4f9c4851d48bc88938b66203f4e8 100644 (file)
                <%=luci.i18n.translatef("Instance \"%s\"", self.instance)%>
        </h3>
        <% if self.mode == "basic" then %>
-               <a href="<%=url('admin/vpn/openvpn/advanced', self.instance, "Service")%>"><%:Switch to advanced configuration%> &#187;</a><p/>
+               <a href="<%=url('admin/vpn/openvpn/advanced', self.instance)%>"><%:Switch to advanced configuration%> &#187;</a><p/>
                <hr />
        <% elseif self.mode == "advanced" then %>
                <a href="<%=url('admin/vpn/openvpn/basic', self.instance)%>"><%:Switch to basic configuration%> &#187;</a><p/>
                <hr />
                <%:Configuration category%>:
                <% for i, c in ipairs(self.categories) do %>
-                       <% if c == self.category then %>
-                               <strong><%=translate(c)%></strong>
+                       <% if c.id == self.category then %>
+                               <strong><%=c.title%></strong>
                        <% else %>
-                               <a href="<%=luci.dispatcher.build_url("admin", "vpn", "openvpn", "advanced", self.instance, c)%>"><%=translate(c)%></a>
+                               <a href="<%=luci.dispatcher.build_url("admin", "vpn", "openvpn", "advanced", self.instance, c.id)%>"><%=c.title%></a>
                        <% end %>
                        <% if next(self.categories, i) then %>|<% end %>
                <% end %>