summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-commands/ucode/template/commands_public.ut
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2024-07-28 00:21:19 +0200
committerJo-Philipp Wich <jo@mein.io>2024-07-28 00:21:24 +0200
commit1021ecef108532b0d9af3409cf754b842e344b20 (patch)
tree778ebe822a97f224360bcd2d870dd981766cfa58 /applications/luci-app-commands/ucode/template/commands_public.ut
parent119fd22ebfcbccfb46e3298db81a1b4c5861a143 (diff)
Revert "luci-app-commands: replace i18n single quotes with double-quotes"
This reverts commit 119fd22ebfcbccfb46e3298db81a1b4c5861a143. The commit is ineffective and does not solve the reported issue. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-commands/ucode/template/commands_public.ut')
-rw-r--r--applications/luci-app-commands/ucode/template/commands_public.ut8
1 files changed, 4 insertions, 4 deletions
diff --git a/applications/luci-app-commands/ucode/template/commands_public.ut b/applications/luci-app-commands/ucode/template/commands_public.ut
index a3d4707aac..aef072f802 100644
--- a/applications/luci-app-commands/ucode/template/commands_public.ut
+++ b/applications/luci-app-commands/ucode/template/commands_public.ut
@@ -29,19 +29,19 @@
<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 %}