Changeset 8847

Show
Ignore:
Timestamp:
07/01/12 21:05:05 (12 months ago)
Author:
dgolle
Message:

Cosmetic changes to the terminology in the UI:
Replace references to the device running LuCI as being a "router", as that is
not necessarily the case.

Location:
luci/trunk/modules
Files:
11 modified

Legend:

Unmodified
Added
Removed
  • luci/trunk/modules/admin-full/luasrc/model/cbi/admin_network/vlan.lua

    r8379 r8847  
    1414]]-- 
    1515 
    16 m = Map("network", translate("Switch"), translate("The network ports on your router can be combined to several <abbr title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can communicate directly with each other. <abbr title=\"Virtual Local Area Network\">VLAN</abbr>s are often used to separate different network segments. Often there is by default one Uplink port for a connection to the next greater network like the internet and other ports for a local network.")) 
     16m = Map("network", translate("Switch"), translate("The network ports on this device can be combined to several <abbr title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can communicate directly with each other. <abbr title=\"Virtual Local Area Network\">VLAN</abbr>s are often used to separate different network segments. Often there is by default one Uplink port for a connection to the next greater network like the internet and other ports for a local network.")) 
    1717 
    1818m.uci:foreach("network", "switch", 
  • luci/trunk/modules/admin-full/luasrc/view/admin_network/diagnostics.htm

    r6770 r8847  
    3131            output.innerHTML = 
    3232                '<img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" style="vertical-align:middle" /> ' + 
    33                 '<%:Waiting for router...%>' 
     33                '<%:Waiting for command to complete...%>' 
    3434            ; 
    3535 
  • luci/trunk/modules/admin-full/luasrc/view/admin_network/iface_overview.htm

    r8791 r8847  
    4141<script type="text/javascript">//<![CDATA[ 
    4242    function iface_shutdown(id, reconnect) { 
    43         if (!reconnect && !confirm(String.format('<%_Really shutdown interface "%s" ?\nYou might lose access to this router if you are connected via this interface.%>', id))) 
     43        if (!reconnect && !confirm(String.format('<%_Really shutdown interface "%s" ?\nYou might lose access to this device if you are connected via this interface.%>', id))) 
    4444            return; 
    4545 
     
    5454        { 
    5555            s.parentNode.style.display = 'block'; 
    56             s.innerHTML = '<%:Waiting for router...%>'; 
     56            s.innerHTML = '<%:Waiting for changes to be applied...%>'; 
    5757        } 
    5858 
     
    210210    <legend><%:Reconnecting interface%></legend> 
    211211    <img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" style="vertical-align:middle" /> 
    212     <span id="ifc-rc-status"><%:Waiting for router...%></span> 
     212    <span id="ifc-rc-status"><%:Waiting for changes to be applied...%></span> 
    213213</fieldset> 
    214214 
     
    248248                        <input type="button" class="cbi-button cbi-button-reset" style="width:100px" onclick="iface_shutdown('<%=net[1]%>', false)" title="<%:Shutdown this interface%>" value="<%:Stop%>" /> 
    249249                        <input type="button" class="cbi-button cbi-button-edit" style="width:100px" onclick="location.href='<%=luci.dispatcher.build_url("admin/network/network", net[1])%>'" title="<%:Edit this interface%>" value="<%:Edit%>" id="<%=net[1]%>-ifc-edit" /> 
    250                         <input type="button" class="cbi-button cbi-button-remove" style="width:100px" onclick="if (confirm('<%:Really delete this interface? The deletion cannot be undone!\nYou might lose access to this router if you are connected via this interface.%>')) location.href='<%=luci.dispatcher.build_url("admin/network/iface_delete", net[1])%>'" title="<%:Delete this interface%>" value="<%:Delete%>" /> 
     250                        <input type="button" class="cbi-button cbi-button-remove" style="width:100px" onclick="if (confirm('<%:Really delete this interface? The deletion cannot be undone!\nYou might lose access to this device if you are connected via this interface.%>')) location.href='<%=luci.dispatcher.build_url("admin/network/iface_delete", net[1])%>'" title="<%:Delete this interface%>" value="<%:Delete%>" /> 
    251251                    </td> 
    252252                </tr> 
  • luci/trunk/modules/admin-full/luasrc/view/admin_network/wifi_overview.htm

    r8321 r8847  
    128128        var reconnect = (toggle.getAttribute('active') == 'false'); 
    129129 
    130         if (!reconnect && !confirm(String.format('<%:Really shutdown network ?\nYou might lose access to this router if you are connected via this interface.%>'))) 
     130        if (!reconnect && !confirm(String.format('<%:Really shutdown network ?\nYou might lose access to this device if you are connected via this interface.%>'))) 
    131131            return; 
    132132 
     
    137137        { 
    138138            s.parentNode.style.display = 'block'; 
    139             s.innerHTML = '<%:Waiting for router...%>'; 
     139            s.innerHTML = '<%:Waiting for changes to be applied...%>'; 
    140140        } 
    141141 
     
    351351    <legend><%:Reconnecting interface%></legend> 
    352352    <img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" style="vertical-align:middle" /> 
    353     <span id="iw-rc-status"><%:Waiting for router...%></span> 
     353    <span id="iw-rc-status"><%:Waiting for changes to be applied...%></span> 
    354354</fieldset> 
    355355 
     
    389389                        <input id="<%=net:id()%>-iw-toggle" type="button" class="cbi-button cbi-button-reload" style="width:100px" onclick="wifi_shutdown('<%=net:id()%>', this)" title="<%:Delete this network%>" value="<%:Enable%>" /> 
    390390                        <input type="button" class="cbi-button cbi-button-edit" style="width:100px" onclick="location.href='<%=net:adminlink()%>'" title="<%:Edit this network%>" value="<%:Edit%>" /> 
    391                         <input type="button" class="cbi-button cbi-button-remove" style="width:100px" onclick="if (confirm('<%:Really delete this wireless network? The deletion cannot be undone!\nYou might lose access to this router if you are connected via this network.%>')) location.href='<%=luci.dispatcher.build_url("admin/network/wireless_delete", net:ifname())%>'" title="<%:Delete this network%>" value="<%:Remove%>" /> 
     391                        <input type="button" class="cbi-button cbi-button-remove" style="width:100px" onclick="if (confirm('<%:Really delete this wireless network? The deletion cannot be undone!\nYou might lose access to this device if you are connected via this network.%>')) location.href='<%=luci.dispatcher.build_url("admin/network/wireless_delete", net:ifname())%>'" title="<%:Delete this network%>" value="<%:Remove%>" /> 
    392392                    </td> 
    393393                </tr> 
  • luci/trunk/modules/admin-full/luasrc/view/admin_system/applyreboot.htm

    r7773 r8847  
    4242                    <p> 
    4343                        <img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" style="vertical-align:middle" /> 
    44                         <%:Waiting for router...%> 
     44                        <%:Waiting for changes to be applied...%> 
    4545                    </p> 
    4646                </fieldset> 
  • luci/trunk/modules/admin-mini/luasrc/view/mini/backup.htm

    r7523 r8847  
    1616<h2><a id="content" name="content"><%:System%></a></h2> 
    1717<h3><%:Backup / Restore%></h3> 
    18 <p><%:Here you can backup and restore your router configuration and - if possible - reset the router to the default settings.%></p> 
     18<p><%:Here you can backup and restore your configuration and - if possible - reset this device to the default settings.%></p> 
    1919<br /> 
    2020<div> 
     
    2222    <li><a href="<%=REQUEST_URI%>?backup=kthxbye"><%:Create backup%></a></li> 
    2323    <% if reset_avail then -%> 
    24     <li><a href="<%=REQUEST_URI%>?reset=yarly" onclick="return confirm('<%:Proceed reverting all settings and resetting to firmware defaults?%>')"><%:Reset router to defaults%></a></li> 
     24    <li><a href="<%=REQUEST_URI%>?reset=yarly" onclick="return confirm('<%:Proceed reverting all settings and resetting to firmware defaults?%>')"><%:Reset this device to defaults%></a></li> 
    2525    <% end -%> 
    2626    </ul> 
  • luci/trunk/modules/admin-mini/luasrc/view/mini/index.htm

    r5453 r8847  
    1616<p><%_This is the administration area of <abbr title="Lua Configuration Interface">LuCI</abbr>.%></p> 
    1717<p><%_<abbr title="Lua Configuration Interface">LuCI</abbr> is a free, flexible, and user friendly graphical interface for configuring OpenWrt Kamikaze.%><br /> 
    18 <%:On the following pages you can adjust all important settings of your router.%></p> 
     18<%:On the following pages you can adjust all important settings of this device.%></p> 
    1919<p><%:As we always want to improve this interface we are looking forward to your feedback and suggestions.%></p> 
    20 <p><%:And now have fun with your router!%></p> 
     20<p><%:And now have fun with your OpenWrt device!%></p> 
    2121<p><em><strong><a href="<%=controller%>/about"><%_The <abbr title="Lua Configuration Interface">LuCI</abbr> Team%></a></strong></em></p> 
  • luci/trunk/modules/niu/luasrc/model/cbi/niu/network/ddns1.lua

    r5544 r8847  
    1515local nxo = require "nixio" 
    1616 
    17 m = Map("ddns", translate("Dynamic DNS"), translate("Dynamic DNS allows that your router can be reached with a fixed hostname while having a dynamically changing IP-Address.")) 
     17m = Map("ddns", translate("Dynamic DNS"), translate("Dynamic DNS allows that this device can be reached with a fixed hostname while having a dynamically changing IP-Address.")) 
    1818 
    1919s = m:section(TypedSection, "service", "") 
  • luci/trunk/modules/niu/luasrc/model/cbi/niu/network/lan1.lua

    r5598 r8847  
    2525If you have a DHCP-Server in this network you may also choose DHCP for address configuration.]]) 
    2626or translate("These settings affect the devices in your local network. ".. 
    27 "Usually you do not need to change anything here for your router to work correctly.")) 
     27"Usually you do not need to change anything here for this device to work correctly.")) 
    2828 
    2929s = m:section(NamedSection, "lan", "interface", "Network Settings") 
  • luci/trunk/modules/niu/luasrc/view/niu/network/warn_ip_change.htm

    r5540 r8847  
    88 
    99<div style="color: red">Warning! The device IP-address has been changed.<br /> 
    10 The router will be available in a few seconds at <a href="<%=url%>"><%=url%></a></div> 
     10It will be available in a few seconds at <a href="<%=url%>"><%=url%></a></div> 
    1111<br /> 
  • luci/trunk/modules/niu/luasrc/view/niu/system/backup.htm

    r7523 r8847  
    1616<h2><a id="content" name="content"><%:System%></a></h2> 
    1717<h3><%:Backup / Restore%></h3> 
    18 <p><%:Here you can backup and restore your router configuration and - if possible - reset the router to the default settings.%></p> 
     18<p><%:Here you can backup and restore your configuration and - if possible - reset this device to the default settings.%></p> 
    1919<br /> 
    2020<div> 
     
    2222    <li><a href="<%=REQUEST_URI%>?backup=kthxbye"><%:Create backup%></a></li> 
    2323    <% if reset_avail then -%> 
    24     <li><a href="<%=REQUEST_URI%>?reset=yarly" onclick="return confirm('<%:Proceed reverting all settings and resetting to firmware defaults?%>')"><%:Reset router to defaults%></a></li> 
     24    <li><a href="<%=REQUEST_URI%>?reset=yarly" onclick="return confirm('<%:Proceed reverting all settings and resetting to firmware defaults?%>')"><%:Reset to defaults%></a></li> 
    2525    <% end -%> 
    2626    </ul>