diff --git a/applications/luci-app-commands/ucode/template/commands.ut b/applications/luci-app-commands/ucode/template/commands.ut
index 956a1fd98b..8e5ce0b486 100644
--- a/applications/luci-app-commands/ucode/template/commands.ut
+++ b/applications/luci-app-commands/ucode/template/commands.ut
@@ -44,8 +44,8 @@
if (legend && output)
{
output.innerHTML =
- ' ' +
- '{{ _("Waiting for command to complete...") }}'
+ '
' +
+ '{{ _('Waiting for command to complete...') }}'
;
legend.parentNode.style.display = 'block';
@@ -57,20 +57,20 @@
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(
'
# %h\n%h%h
' +
- ' ',
+ ' ',
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 = '{{ _("Failed to execute command!") }}';
+ output.innerHTML = '{{ _('Failed to execute command!') }}';
}
location.hash = '#output';
@@ -114,7 +114,7 @@
legend.style.display = 'none';
output.parentNode.style.display = 'block';
output.innerHTML = String.format(
- ' ',
+ ' ',
link, link, link_nodownload, link_nodownload
);
@@ -134,14 +134,14 @@