luci-app-commands: replace i18n single quotes with double-quotes
authorPaul Donald <newtwen+github@gmail.com>
Sat, 27 Jul 2024 19:56:02 +0000 (21:56 +0200)
committerPaul Donald <newtwen+github@gmail.com>
Sat, 27 Jul 2024 19:56:02 +0000 (21:56 +0200)
Closes #7213

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
applications/luci-app-commands/ucode/template/commands.ut
applications/luci-app-commands/ucode/template/commands_public.ut

index 8e5ce0b4862de7f75cdd97ec9f116be576a2b62c..956a1fd98bb0261245105fccff1452c6fa765db6 100644 (file)
@@ -44,8 +44,8 @@
                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>
index aef072f8026a3e89e78a8e1e499dad7a995404d6..a3d4707aac4f671bab6828a4dd3be4f4b29e6607 100644 (file)
 
 <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 %}