themes, i18n: fix double encoded entities (#114)
authorJo-Philipp Wich <jow@openwrt.org>
Thu, 25 Mar 2010 13:46:17 +0000 (13:46 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Thu, 25 Mar 2010 13:46:17 +0000 (13:46 +0000)
po/fr/base.po
themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm
themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm

index 58e1840..3587fef 100644 (file)
@@ -552,13 +552,13 @@ msgstr "Pare-Feu"
 #, fuzzy
 msgid "Firewall Settings"
 msgstr ""
-"Ici, vous trouverez des informations sur l&#39;é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."
 
 #, fuzzy
 msgid "Firewall Status"
 msgstr ""
-"Ici, vous trouverez des informations sur l&#39;é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."
 
 msgid "Firmware image"
@@ -733,7 +733,7 @@ msgstr "Interface"
 #, fuzzy
 msgid "Interface Status"
 msgstr ""
-"Ici, vous trouverez des informations sur l&#39;é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."
 
 msgid "Interfaces"
index 5a19934..33998da 100644 (file)
@@ -96,7 +96,7 @@ local function submenu(prefix, node)
                                local href = controller .. prefix .. v.name .. "/"
                                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)
 %></li>
 <%-
@@ -122,7 +122,7 @@ if cattree and cattree.nodes then
                        local href = controller.."/"..category.."/"..k.name.."/"
                        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)
 %></li><% end
        end
@@ -133,7 +133,7 @@ end
 <ul id="modemenu"><%
 for k,node in pairs(tree.nodes) do
        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
 %>
index 831e315..6e1853e 100644 (file)
@@ -96,7 +96,7 @@ local function submenu(prefix, node)
                                local href = controller .. prefix .. v.name .. "/"
                                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)
 %></li>
 <%-
@@ -122,7 +122,7 @@ if cattree and cattree.nodes then
                        local href = controller.."/"..category.."/"..k.name.."/"
                        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)
 %></li><% end
        end
@@ -133,7 +133,7 @@ end
 <ul id="modemenu"><%
 for k,node in pairs(tree.nodes) do
        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
 %>