if (legend && output)
{
output.innerHTML =
- '<img src="{{ resource }}/icons/loading.gif" alt="{{ _('Loading') }}" style="vertical-align:middle" /> ' +
- '{{ _('Waiting for command to complete...') }}'
+ '<img src="{{ resource }}/icons/loading.gif" alt="{{ _("Loading") }}" style="vertical-align:middle" /> ' +
+ '{{ _("Waiting for command to complete...") }}'
;
legend.parentNode.style.display = 'block';
if (st)
{
if (st.binary)
- st.stdout = '[{{ _('Binary data not displayed, download instead.') }}]';
+ st.stdout = '[{{ _("Binary data not displayed, download instead.") }}]';
legend.style.display = 'none';
output.innerHTML = String.format(
'<pre><strong># %h\n</strong>%h<span style="color:red">%h</span></pre>' +
- '<div class="alert-message warning">%s ({{ _('Code:') }} %d)</div>',
+ '<div class="alert-message warning">%s ({{ _("Code:") }} %d)</div>',
st.command, st.stdout, st.stderr,
- (st.exitcode == 0) ? '{{ _('Command successful') }}' : '{{ _('Command failed') }}',
+ (st.exitcode == 0) ? '{{ _("Command successful") }}' : '{{ _("Command failed") }}',
st.exitcode);
}
else
{
legend.style.display = 'none';
- output.innerHTML = '<span class="error">{{ _('Failed to execute command!') }}</span>';
+ output.innerHTML = '<span class="error">{{ _("Failed to execute command!") }}</span>';
}
location.hash = '#output';
legend.style.display = 'none';
output.parentNode.style.display = 'block';
output.innerHTML = String.format(
- '<div class="alert-message"><p>{{ _('Download execution result') }} <a href="%s">%s</a></p><p>{{ _('Or display result') }} <a href="%s">%s</a></p></div>',
+ '<div class="alert-message"><p>{{ _("Download execution result") }} <a href="%s">%s</a></p><p>{{ _("Or display result") }} <a href="%s">%s</a></p></div>',
link, link, link_nodownload, link_nodownload
);
<form method="get" action="{{ entityencode(FULL_REQUEST_URI) }}">
<div class="cbi-map">
- <h2 name="content">{{ _('Custom Commands') }}</h2>
+ <h2 name="content">{{ _("Custom Commands") }}</h2>
{% if (length(commands) == 0): %}
<div class="cbi-section">
<div class="table cbi-section-table">
<div class="tr cbi-section-table-row">
<p>
- <em>{{ _('This section contains no values yet') }}</em>
+ <em>{{ _("This section contains no values yet") }}</em>
</p>
</div>
</div>
{% for (let command in commands): %}
<div class="commandbox">
<h3>{{ entityencode(command.name) }}</h3>
- <p>{{ _('Command:') }} <code>{{ entityencode(command.command) }}</code></p>
+ <p>{{ _("Command:") }} <code>{{ entityencode(command.command) }}</code></p>
{% if (command.param == "1"): %}
- <p>{{ _('Arguments:') }} <input type="text" id="{{ command['.name'] }}" /></p>
+ <p>{{ _("Arguments:") }} <input type="text" id="{{ command['.name'] }}" /></p>
{% endif %}
<div>
- <button class="cbi-button cbi-button-apply" onclick="command_run(event, '{{ command['.name'] }}')">{{ _('Run') }}</button>
- <button class="cbi-button cbi-button-download" onclick="command_download(event, '{{ command['.name'] }}')">{{ _('Download') }}</button>
+ <button class="cbi-button cbi-button-apply" onclick="command_run(event, '{{ command['.name'] }}')">{{ _("Run") }}</button>
+ <button class="cbi-button cbi-button-download" onclick="command_download(event, '{{ command['.name'] }}')">{{ _("Download") }}</button>
{% if (command.public == "1"): %}
- <button class="cbi-button cbi-button-link" onclick="command_link(event, '{{ command['.name'] }}')">{{ _('Link') }}</button>
+ <button class="cbi-button cbi-button-link" onclick="command_link(event, '{{ command['.name'] }}')">{{ _("Link") }}</button>
{% endif %}
</div>
</div>
</div>
<fieldset class="cbi-section" style="display:none">
- <legend id="command-rc-legend">{{ _('Collecting data...') }}</legend>
+ <legend id="command-rc-legend">{{ _("Collecting data...") }}</legend>
<span id="command-rc-output"></span>
</fieldset>
</form>
<div class="alert alert-success" role="alert">
{% if (exitcode == 0): %}
- {{ _('Command executed successfully.') }}
+ {{ _("Command executed successfully.") }}
{% else %}
- {{ sprintf(_('Command exited with status code %d'), exitcode) }}
+ {{ sprintf(_("Command exited with status code %d"), exitcode) }}
{% endif %}
</div>
{% if (length(stdout)): %}
- <h3>{{ _('Standard Output') }}</h3>
+ <h3>{{ _("Standard Output") }}</h3>
<pre>{{ entityencode(stdout) }}</pre>
{% endif %}
{% if (length(stderr)): %}
- <h3>{{ _('Standard Error') }}</h3>
+ <h3>{{ _("Standard Error") }}</h3>
<pre>{{ entityencode(stderr) }}</pre>
{% endif %}