diff options
author | Paul Donald <newtwen+github@gmail.com> | 2024-07-27 21:56:02 +0200 |
---|---|---|
committer | Paul Donald <newtwen+github@gmail.com> | 2024-07-27 21:56:02 +0200 |
commit | 119fd22ebfcbccfb46e3298db81a1b4c5861a143 (patch) | |
tree | 75f6e54c20e535d54c02a1a4f3f1ff093b80bcd4 /applications/luci-app-commands/ucode/template/commands_public.ut | |
parent | 7154efa1bedabdc6a35c07665909da9a5669e842 (diff) |
luci-app-commands: replace i18n single quotes with double-quotes
Closes #7213
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
Diffstat (limited to 'applications/luci-app-commands/ucode/template/commands_public.ut')
-rw-r--r-- | applications/luci-app-commands/ucode/template/commands_public.ut | 8 |
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 aef072f802..a3d4707aac 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 %} |