summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-travelmate
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-travelmate')
-rw-r--r--applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm4
-rw-r--r--applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm28
-rw-r--r--applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm32
-rw-r--r--applications/luci-app-travelmate/po/ja/travelmate.po12
-rw-r--r--applications/luci-app-travelmate/po/pt-br/travelmate.po9
-rw-r--r--applications/luci-app-travelmate/po/ru/travelmate.po12
-rw-r--r--applications/luci-app-travelmate/po/templates/travelmate.pot9
7 files changed, 63 insertions, 43 deletions
diff --git a/applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm b/applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm
index 6cbeaffde6..c40bdeeb59 100644
--- a/applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm
+++ b/applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm
@@ -6,10 +6,10 @@ This is free software, licensed under the Apache License, Version 2.0
<%+header%>
<div class="cbi-map">
- <fieldset class="cbi-section">
+ <div class="cbi-section">
<div class="cbi-section-descr"><%:This form shows the syslog output, pre-filtered for travelmate related messages only.%></div>
<textarea id="logread_id" style="width: 100%; height: 450px; border: 1px solid #cccccc; padding: 5px; font-size: 12px; font-family: monospace; resize: none;" readonly="readonly" wrap="off" rows="<%=content:cmatch("\n")+2%>"><%=content:pcdata()%></textarea>
- </fieldset>
+ </div>
</div>
<script type="text/javascript">
diff --git a/applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm b/applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm
index bee6fcb360..ffacc2f6df 100644
--- a/applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm
+++ b/applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm
@@ -11,19 +11,21 @@ This is free software, licensed under the Apache License, Version 2.0
<%+header%>
+<script type="text/javascript" src="<%=resource%>/cbi.js"></script>
+
<div class="cbi-map">
<div class="cbi-map-descr">
<%=translatef("Provides an overview of all configured uplinks for the travelmate interface (%s). You can edit, delete or re-order existing uplinks or scan for a new one. The currently used uplink is emphasized in blue.", trmiface)%>
</div>
-<fieldset class="cbi-section">
- <div class="table cbi-section-table" style="empty-cells:hide">
+<div class="cbi-section">
+ <div class="table cbi-section-table">
<div class="tr cbi-section-table-titles">
- <div class="th cbi-section-table-cell" style="text-align:left"><%:Device%></div>
- <div class="th cbi-section-table-cell" style="text-align:left"><%:SSID%></div>
- <div class="th cbi-section-table-cell" style="text-align:left"><%:BSSID%></div>
- <div class="th cbi-section-table-cell" style="text-align:left"><%:Encryption%></div>
- <div class="th cbi-section-table-cell" style="text-align:center" colspan="2"><%:Actions%></div>
+ <div class="th left"><%:Device%></div>
+ <div class="th left"><%:SSID%></div>
+ <div class="th left"><%:BSSID%></div>
+ <div class="th left"><%:Encryption%></div>
+ <div class="th center">&#160;</div>
</div>
<%
uci:foreach("wireless", "wifi-iface", function(s)
@@ -45,11 +47,9 @@ This is free software, licensed under the Apache License, Version 2.0
<div class="td" style="<%=style%>"><%=ssid%></div>
<div class="td" style="<%=style%>"><%=bssid%></div>
<div class="td" style="<%=style%>"><%=encryption%></div>
- <div class="td cbi-value-field" style="width:80px">
- <input class="cbi-button cbi-button-up" type="button" value="" onclick="location.href='<%=luci.dispatcher.build_url('admin/services/travelmate/wifiorder')%>?cfg=<%=section%>&amp;dir=up'" alt="<%:Move up%>" title="<%:Move up%>"/>
- <input class="cbi-button cbi-button-down" type="button" value="" onclick="location.href='<%=luci.dispatcher.build_url('admin/services/travelmate/wifiorder')%>?cfg=<%=section%>&amp;dir=down'" alt="<%:Move down%>" title="<%:Move down%>"/>
- </div>
- <div class="td cbi-value-field" style="width:150px">
+ <div class="td cbi-section-actions">
+ <input class="cbi-button cbi-button-up" type="button" value="<%:Up%>" onclick="location.href='<%=luci.dispatcher.build_url('admin/services/travelmate/wifiorder')%>?cfg=<%=section%>&amp;dir=up'" alt="<%:Move up%>" title="<%:Move up%>"/>
+ <input class="cbi-button cbi-button-down" type="button" value="<%:Down%>" onclick="location.href='<%=luci.dispatcher.build_url('admin/services/travelmate/wifiorder')%>?cfg=<%=section%>&amp;dir=down'" alt="<%:Move down%>" title="<%:Move down%>"/>
<input type="button" class="cbi-button cbi-button-edit" onclick="location.href='<%=luci.dispatcher.build_url('admin/services/travelmate/wifiedit')%>?cfg=<%=section%>'" title="<%:Edit this Uplink%>" value="<%:Edit%>"/>
<input type="button" class="cbi-button cbi-button-remove" onclick="location.href='<%=luci.dispatcher.build_url('admin/services/travelmate/wifidelete')%>?cfg=<%=section%>'" title="<%:Delete this Uplink%>" value="<%:Delete%>"/>
</div>
@@ -59,7 +59,7 @@ This is free software, licensed under the Apache License, Version 2.0
end)
%>
</div>
-</fieldset>
+</div>
<div class="cbi-page-actions right">
<%
uci:foreach("wireless", "wifi-device", function(s)
@@ -68,7 +68,7 @@ This is free software, licensed under the Apache License, Version 2.0
<form class="inline" action="<%=luci.dispatcher.build_url('admin/services/travelmate/wifiscan')%>" method="post">
<input type="hidden" name="device" value="<%=device%>"/>
<input type="hidden" name="token" value="<%=token%>"/>
- <input type="submit" class="cbi-button cbi-button-find" title="<%:Find and join network on%> <%=device%>" value="<%:Scan%> <%=device%>"/>
+ <input type="submit" class="cbi-button cbi-button-action important" title="<%:Find and join network on%> <%=device%>" value="<%:Scan%> <%=device%>"/>
</form>
<%
end)
diff --git a/applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm b/applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm
index 81182b99b4..57efd97376 100644
--- a/applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm
+++ b/applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm
@@ -39,31 +39,33 @@ This is free software, licensed under the Apache License, Version 2.0
<%+header%>
+<script type="text/javascript" src="<%=resource%>/cbi.js"></script>
+
<div class="cbi-map">
<h2 name="content"><%:Wireless Scan%></h2>
- <fieldset class="cbi-section">
- <div class="table cbi-section-table" style="empty-cells:hide">
+ <div class="cbi-section">
+ <div class="table cbi-section-table">
<div class="tr cbi-section-table-titles">
- <div class="th cbi-section-table-cell" style="text-align:left"><%:Uplink SSID%></div>
- <div class="th cbi-section-table-cell" style="text-align:left"><%:Uplink BSSID%></div>
- <div class="th cbi-section-table-cell" style="text-align:left"><%:Encryption%></div>
- <div class="th cbi-section-table-cell" style="text-align:left" colspan="2"><%:Signal strength%></div>
+ <div class="th left"><%:Uplink SSID%></div>
+ <div class="th left"><%:Uplink BSSID%></div>
+ <div class="th left"><%:Encryption%></div>
+ <div class="th left"><%:Signal strength%></div>
</div>
<% for i, net in ipairs(iw.scanlist or { }) do %>
<div class="tr cbi-section-table-row cbi-rowstyle-1">
- <div class="td cbi-value-field" style="text-align:left">
+ <div class="td left">
<%=net.ssid and utl.pcdata(net.ssid) or "<em>%s</em>" % translate("hidden")%>
</div>
- <div class="td cbi-value-field" style="text-align:left">
+ <div class="td left">
<%=net.bssid and utl.pcdata(net.bssid)%>
</div>
- <div class="td cbi-value-field" style="text-align:left">
+ <div class="td left">
<%=format_wifi_encryption(net.encryption)%>
</div>
- <div class="td cbi-value-field" style="text-align:left">
+ <div class="td left">
<%=percent_wifi_signal(net)%> %
</div>
- <div class="td cbi-value-field" style="width:100px;text-align:right">
+ <div class="td cbi-section-actions">
<form class="inline" action="<%=luci.dispatcher.build_url('admin/services/travelmate/wifiadd')%>" method="post">
<input type="hidden" name="token" value="<%=token%>"/>
<input type="hidden" name="device" value="<%=utl.pcdata(dev)%>"/>
@@ -80,16 +82,16 @@ This is free software, licensed under the Apache License, Version 2.0
</div>
<% end %>
</div>
- </fieldset>
+ </div>
<div class="cbi-page-actions right">
+ <form class="inline" action="<%=luci.dispatcher.build_url('admin/services/travelmate/stations')%>" method="get">
+ <input class="cbi-button cbi-button-reset" type="submit" value="<%:Back to overview%>"/>
+ </form>
<form class="inline" action="<%=luci.dispatcher.build_url('admin/services/travelmate/wifiscan')%>" method="post">
<input type="hidden" name="token" value="<%=token%>"/>
<input type="hidden" name="device" value="<%=utl.pcdata(dev)%>"/>
<input class="cbi-button cbi-input-find" type="submit" value="<%:Repeat scan%>"/>
</form>
- <form class="inline" action="<%=luci.dispatcher.build_url('admin/services/travelmate/stations')%>" method="post">
- <input class="cbi-button cbi-button-reset" type="submit" value="<%:Back to overview%>"/>
- </form>
</div>
</div>
diff --git a/applications/luci-app-travelmate/po/ja/travelmate.po b/applications/luci-app-travelmate/po/ja/travelmate.po
index 6a46ea3c87..f1d1220b7c 100644
--- a/applications/luci-app-travelmate/po/ja/travelmate.po
+++ b/applications/luci-app-travelmate/po/ja/travelmate.po
@@ -12,9 +12,6 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"Language: ja\n"
-msgid "Actions"
-msgstr "操作"
-
msgid "Add Uplink"
msgstr "アップリンクの追加"
@@ -86,6 +83,9 @@ msgstr "このアップリンクを削除"
msgid "Device"
msgstr "デバイス"
+msgid "Down"
+msgstr ""
+
msgid "EAP-Method"
msgstr "EAP メソッド"
@@ -339,6 +339,9 @@ msgstr "トリガ遅延"
msgid "Unknown"
msgstr "不明"
+msgid "Up"
+msgstr ""
+
msgid "Uplink / Trigger interface"
msgstr "アップリンク / トリガー インターフェース"
@@ -386,3 +389,6 @@ msgstr "(ステルス)"
msgid "n/a"
msgstr "利用不可"
+
+#~ msgid "Actions"
+#~ msgstr "操作"
diff --git a/applications/luci-app-travelmate/po/pt-br/travelmate.po b/applications/luci-app-travelmate/po/pt-br/travelmate.po
index 6bf65b9370..2bed677d35 100644
--- a/applications/luci-app-travelmate/po/pt-br/travelmate.po
+++ b/applications/luci-app-travelmate/po/pt-br/travelmate.po
@@ -12,9 +12,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"Language: pt_BR\n"
-msgid "Actions"
-msgstr ""
-
msgid "Add Uplink"
msgstr ""
@@ -80,6 +77,9 @@ msgstr ""
msgid "Device"
msgstr ""
+msgid "Down"
+msgstr ""
+
msgid "EAP-Method"
msgstr ""
@@ -310,6 +310,9 @@ msgstr ""
msgid "Unknown"
msgstr ""
+msgid "Up"
+msgstr ""
+
msgid "Uplink / Trigger interface"
msgstr ""
diff --git a/applications/luci-app-travelmate/po/ru/travelmate.po b/applications/luci-app-travelmate/po/ru/travelmate.po
index 8b25e9b139..d3dbd24752 100644
--- a/applications/luci-app-travelmate/po/ru/travelmate.po
+++ b/applications/luci-app-travelmate/po/ru/travelmate.po
@@ -15,9 +15,6 @@ msgstr ""
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
-msgid "Actions"
-msgstr "Действия"
-
msgid "Add Uplink"
msgstr "Подключение к сети"
@@ -85,6 +82,9 @@ msgstr "Удалить сеть"
msgid "Device"
msgstr "Устройство"
+msgid "Down"
+msgstr ""
+
msgid "EAP-Method"
msgstr "Метод EAP"
@@ -333,6 +333,9 @@ msgstr ""
msgid "Unknown"
msgstr "Неизвестно"
+msgid "Up"
+msgstr ""
+
msgid "Uplink / Trigger interface"
msgstr "Включить интерфейс<br />внешней сети"
@@ -381,6 +384,9 @@ msgstr "скрытый"
msgid "n/a"
msgstr "нет данных"
+#~ msgid "Actions"
+#~ msgstr "Действия"
+
#~ msgid "Add Interface"
#~ msgstr "Добавить интерфейс"
diff --git a/applications/luci-app-travelmate/po/templates/travelmate.pot b/applications/luci-app-travelmate/po/templates/travelmate.pot
index f4f3418422..b3e80e3c96 100644
--- a/applications/luci-app-travelmate/po/templates/travelmate.pot
+++ b/applications/luci-app-travelmate/po/templates/travelmate.pot
@@ -1,9 +1,6 @@
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
-msgid "Actions"
-msgstr ""
-
msgid "Add Uplink"
msgstr ""
@@ -69,6 +66,9 @@ msgstr ""
msgid "Device"
msgstr ""
+msgid "Down"
+msgstr ""
+
msgid "EAP-Method"
msgstr ""
@@ -299,6 +299,9 @@ msgstr ""
msgid "Unknown"
msgstr ""
+msgid "Up"
+msgstr ""
+
msgid "Uplink / Trigger interface"
msgstr ""