themes, i18n: fix double encoded entities (#114)
This commit is contained in:
parent
88f92d1dd8
commit
c9cbd9fe29
3 changed files with 9 additions and 9 deletions
|
@ -552,13 +552,13 @@ msgstr "Pare-Feu"
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Firewall Settings"
|
msgid "Firewall Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ici, vous trouverez des informations sur l'état actuel du système comme "
|
"Ici, vous trouverez des informations sur l'état actuel du système comme "
|
||||||
"la fréquence processeur, utilisation mémoire et trafic réseau."
|
"la fréquence processeur, utilisation mémoire et trafic réseau."
|
||||||
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Firewall Status"
|
msgid "Firewall Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ici, vous trouverez des informations sur l'état actuel du système comme "
|
"Ici, vous trouverez des informations sur l'état actuel du système comme "
|
||||||
"la fréquence processeur, utilisation mémoire et trafic réseau."
|
"la fréquence processeur, utilisation mémoire et trafic réseau."
|
||||||
|
|
||||||
msgid "Firmware image"
|
msgid "Firmware image"
|
||||||
|
@ -733,7 +733,7 @@ msgstr "Interface"
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Interface Status"
|
msgid "Interface Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ici, vous trouverez des informations sur l'état actuel du système comme "
|
"Ici, vous trouverez des informations sur l'état actuel du système comme "
|
||||||
"la fréquence processeur, utilisation mémoire et trafic réseau."
|
"la fréquence processeur, utilisation mémoire et trafic réseau."
|
||||||
|
|
||||||
msgid "Interfaces"
|
msgid "Interfaces"
|
||||||
|
|
|
@ -96,7 +96,7 @@ local function submenu(prefix, node)
|
||||||
local href = controller .. prefix .. v.name .. "/"
|
local href = controller .. prefix .. v.name .. "/"
|
||||||
href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href
|
href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href
|
||||||
%>
|
%>
|
||||||
<li><a<% if nnode._menu_selected then %> class="active"<%end%> href="<%=pcdata(href)%>"><%=pcdata(striptags(nnode.title))%></a><%-
|
<li><a<% if nnode._menu_selected then %> class="active"<%end%> href="<%=pcdata(href)%>"><%=striptags(nnode.title)%></a><%-
|
||||||
submenu(prefix .. v.name .. "/", nnode)
|
submenu(prefix .. v.name .. "/", nnode)
|
||||||
%></li>
|
%></li>
|
||||||
<%-
|
<%-
|
||||||
|
@ -122,7 +122,7 @@ if cattree and cattree.nodes then
|
||||||
local href = controller.."/"..category.."/"..k.name.."/"
|
local href = controller.."/"..category.."/"..k.name.."/"
|
||||||
href = (k.query) and href .. luci.http.build_querystring(k.query) or href
|
href = (k.query) and href .. luci.http.build_querystring(k.query) or href
|
||||||
%>
|
%>
|
||||||
<li><a<% if node._menu_selected then %> class="preactive"<%end%> href="<%=pcdata(href)%>"><%=pcdata(striptags(node.title))%></a><%
|
<li><a<% if node._menu_selected then %> class="preactive"<%end%> href="<%=pcdata(href)%>"><%=striptags(node.title)%></a><%
|
||||||
submenu("/" .. category .. "/" .. k.name .. "/", node)
|
submenu("/" .. category .. "/" .. k.name .. "/", node)
|
||||||
%></li><% end
|
%></li><% end
|
||||||
end
|
end
|
||||||
|
@ -133,7 +133,7 @@ end
|
||||||
<ul id="modemenu"><%
|
<ul id="modemenu"><%
|
||||||
for k,node in pairs(tree.nodes) do
|
for k,node in pairs(tree.nodes) do
|
||||||
if node.title and not node.hidden then %>
|
if node.title and not node.hidden then %>
|
||||||
<li><a<% if request[1] == k then %> class="active"<%end%> href="<%=controller%>/<%=k%>/"><%=pcdata(striptags(node.title))%></a></li><%
|
<li><a<% if request[1] == k then %> class="active"<%end%> href="<%=controller%>/<%=k%>/"><%=striptags(node.title)%></a></li><%
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
%>
|
%>
|
||||||
|
|
|
@ -96,7 +96,7 @@ local function submenu(prefix, node)
|
||||||
local href = controller .. prefix .. v.name .. "/"
|
local href = controller .. prefix .. v.name .. "/"
|
||||||
href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href
|
href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href
|
||||||
%>
|
%>
|
||||||
<li><a<% if nnode._menu_selected then %> class="active"<%end%> href="<%=pcdata(href)%>"><%=pcdata(striptags(nnode.title))%></a><%-
|
<li><a<% if nnode._menu_selected then %> class="active"<%end%> href="<%=pcdata(href)%>"><%=striptags(nnode.title)%></a><%-
|
||||||
submenu(prefix .. v.name .. "/", nnode)
|
submenu(prefix .. v.name .. "/", nnode)
|
||||||
%></li>
|
%></li>
|
||||||
<%-
|
<%-
|
||||||
|
@ -122,7 +122,7 @@ if cattree and cattree.nodes then
|
||||||
local href = controller.."/"..category.."/"..k.name.."/"
|
local href = controller.."/"..category.."/"..k.name.."/"
|
||||||
href = (k.query) and href .. luci.http.build_querystring(k.query) or href
|
href = (k.query) and href .. luci.http.build_querystring(k.query) or href
|
||||||
%>
|
%>
|
||||||
<li><a<% if node._menu_selected then %> class="preactive"<%end%> href="<%=pcdata(href)%>"><%=pcdata(striptags(node.title))%></a><%
|
<li><a<% if node._menu_selected then %> class="preactive"<%end%> href="<%=pcdata(href)%>"><%=striptags(node.title)%></a><%
|
||||||
submenu("/" .. category .. "/" .. k.name .. "/", node)
|
submenu("/" .. category .. "/" .. k.name .. "/", node)
|
||||||
%></li><% end
|
%></li><% end
|
||||||
end
|
end
|
||||||
|
@ -133,7 +133,7 @@ end
|
||||||
<ul id="modemenu"><%
|
<ul id="modemenu"><%
|
||||||
for k,node in pairs(tree.nodes) do
|
for k,node in pairs(tree.nodes) do
|
||||||
if node.title and not node.hidden then %>
|
if node.title and not node.hidden then %>
|
||||||
<li><a<% if request[1] == k then %> class="active"<%end%> href="<%=controller%>/<%=k%>/"><%=pcdata(striptags(node.title))%></a></li><%
|
<li><a<% if request[1] == k then %> class="active"<%end%> href="<%=controller%>/<%=k%>/"><%=striptags(node.title)%></a></li><%
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
%>
|
%>
|
||||||
|
|
Loading…
Reference in a new issue