diff options
author | Daniel Golle <daniel@makrotopia.org> | 2013-02-26 13:21:54 +0000 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2013-02-26 13:21:54 +0000 |
commit | 36986ee5fedf9a826730fef4e30340954e65f646 (patch) | |
tree | d5c828ff38e2fa08ab7bbad3dc7ed8ce62f9ccb1 /modules | |
parent | 90aca063ae0f786523c3937b3fd1adb190a5e1ac (diff) |
modules/admin-full: generalize field descriptions in system status page
LuCI is not only used on routers. When running on a NAS or you-name-it
non-router hardware, refering to "Router Name" and "Router Model" in the
system information page was confusing to some users.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/admin-full/luasrc/view/admin_status/index.htm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/admin-full/luasrc/view/admin_status/index.htm b/modules/admin-full/luasrc/view/admin_status/index.htm index bb85517e0..98b6592e1 100644 --- a/modules/admin-full/luasrc/view/admin_status/index.htm +++ b/modules/admin-full/luasrc/view/admin_status/index.htm @@ -529,8 +529,8 @@ You may obtain a copy of the License at <legend><%:System%></legend> <table width="100%" cellspacing="10"> - <tr><td width="33%"><%:Router Name%></td><td><%=luci.sys.hostname() or "?"%></td></tr> - <tr><td width="33%"><%:Router Model%></td><td><%=pcdata(model or "?")%></td></tr> + <tr><td width="33%"><%:Hostname%></td><td><%=luci.sys.hostname() or "?"%></td></tr> + <tr><td width="33%"><%:Model%></td><td><%=pcdata(model or "?")%></td></tr> <tr><td width="33%"><%:Firmware Version%></td><td> <%=pcdata(luci.version.distname)%> <%=pcdata(luci.version.distversion)%> / <%=pcdata(luci.version.luciname)%> (<%=pcdata(luci.version.luciversion)%>) |