Merge pull request #1252 from musashino205/mwan3-fix-status

luci-app-mwan3: Add translate strings in update_status()
This commit is contained in:
Hannu Nyman 2017-07-25 08:36:52 +03:00 committed by GitHub
commit f450c0403d
4 changed files with 38 additions and 11 deletions

View file

@ -24,7 +24,7 @@
<script type="text/javascript">//<![CDATA[ <script type="text/javascript">//<![CDATA[
var stxhr = new XHR(); var stxhr = new XHR();
function update_status(tool, task) function update_status(tool, task, task_name)
{ {
var iface = document.getElementById('mwaniface').value; var iface = document.getElementById('mwaniface').value;
var output = document.getElementById('diag_output'); var output = document.getElementById('diag_output');
@ -33,7 +33,7 @@
{ {
output.innerHTML = output.innerHTML =
'<img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" style="padding: 20px; vertical-align: middle;" /> ' + '<img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" style="padding: 20px; vertical-align: middle;" /> ' +
String.format("<%:Waiting for MWAN to %s...%>", task) String.format("<%:Waiting for MWAN to %s...%>", task_name)
; ;
} }
else else
@ -70,20 +70,20 @@
<% for z in interfaceNames:gmatch("[^ ]+") do -%><option value="<%=z%>"><%=z%></option><%- end %> <% for z in interfaceNames:gmatch("[^ ]+") do -%><option value="<%=z%>"><%=z%></option><%- end %>
</select> </select>
<div id="buttoncss"> <div id="buttoncss">
<input type="button" value="<%:Ping default gateway%>" class="cbi-button cbi-button-apply" onclick="update_status('ping', 'gateway')" /> <input type="button" value="<%:Ping default gateway%>" class="cbi-button cbi-button-apply" onclick="update_status('ping', 'gateway', null)" />
<input type="button" value="<%:Ping tracking IP%>" class="cbi-button cbi-button-apply" onclick="update_status('ping', 'track_ip')" /> <input type="button" value="<%:Ping tracking IP%>" class="cbi-button cbi-button-apply" onclick="update_status('ping', 'track_ip', null)" />
<input type="button" value="<%:Check IP rules%>" class="cbi-button cbi-button-apply" onclick="update_status('rulechk', null)" /> <input type="button" value="<%:Check IP rules%>" class="cbi-button cbi-button-apply" onclick="update_status('rulechk', null, null)" />
<input type="button" value="<%:Check routing table%>" class="cbi-button cbi-button-apply" onclick="update_status('routechk', null)" /> <input type="button" value="<%:Check routing table%>" class="cbi-button cbi-button-apply" onclick="update_status('routechk', null, null)" />
<input type="button" value="<%:Hotplug ifup%>" class="cbi-button cbi-button-apply" onclick="update_status('hotplug', 'ifup')" /> <input type="button" value="<%:Hotplug ifup%>" class="cbi-button cbi-button-apply" onclick="update_status('hotplug', 'ifup', null)" />
<input type="button" value="<%:Hotplug ifdown%>" class="cbi-button cbi-button-apply" onclick="update_status('hotplug', 'ifdown')" /> <input type="button" value="<%:Hotplug ifdown%>" class="cbi-button cbi-button-apply" onclick="update_status('hotplug', 'ifdown', null)" />
</div> </div>
</fieldset> </fieldset>
<fieldset id="diag_select" class="cbi-section"> <fieldset id="diag_select" class="cbi-section">
<legend><%:MWAN Service Control%></legend> <legend><%:MWAN Service Control%></legend>
<div id="buttoncss"> <div id="buttoncss">
<input type="button" value="<%:Restart MWAN%>" class="cbi-button cbi-button-apply" onclick="update_status('service', 'restart')" /> <input type="button" value="<%:Restart MWAN%>" class="cbi-button cbi-button-apply" onclick="update_status('service', 'restart', '<%:restart%>')" />
<input type="button" value="<%:Stop MWAN%>" class="cbi-button cbi-button-apply" onclick="update_status('service', 'stop')" /> <input type="button" value="<%:Stop MWAN%>" class="cbi-button cbi-button-apply" onclick="update_status('service', 'stop', '<%:stop%>')" />
<input type="button" value="<%:Start MWAN%>" class="cbi-button cbi-button-apply" onclick="update_status('service', 'start')" /> <input type="button" value="<%:Start MWAN%>" class="cbi-button cbi-button-apply" onclick="update_status('service', 'start', '<%:start%>')" />
</div> </div>
</fieldset> </fieldset>
<fieldset class="cbi-section" style="display:none"> <fieldset class="cbi-section" style="display:none">

View file

@ -613,6 +613,15 @@ msgstr "ifup"
msgid "never" msgid "never"
msgstr "never" msgstr "never"
msgid "restart"
msgstr ""
msgid "start"
msgstr ""
msgid "stop"
msgstr ""
msgid "unreachable (reject)" msgid "unreachable (reject)"
msgstr "unreachable (reject)" msgstr "unreachable (reject)"

View file

@ -514,5 +514,14 @@ msgstr ""
msgid "never" msgid "never"
msgstr "" msgstr ""
msgid "restart"
msgstr ""
msgid "start"
msgstr ""
msgid "stop"
msgstr ""
msgid "unreachable (reject)" msgid "unreachable (reject)"
msgstr "" msgstr ""

View file

@ -550,5 +550,14 @@ msgstr "ifup"
msgid "never" msgid "never"
msgstr "从不" msgstr "从不"
msgid "restart"
msgstr ""
msgid "start"
msgstr ""
msgid "stop"
msgstr ""
msgid "unreachable (reject)" msgid "unreachable (reject)"
msgstr "不可达(拒绝)" msgstr "不可达(拒绝)"