HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/dinamo-shop/wp-content/plugins/woocommerce-multilingual/templates/status/taxonomies.twig
<div class="wcml-section wc-missing-translation-section">
    <div class="wcml-section-header">
        <h3>
            {{ strings.tax_missing }}
            <i class="otgs-ico-help wcml-tip" data-tip="{{ strings.run_site|e }}"></i>
        </h3>
    </div>
    <div class="wcml-section-content js-tax-translation">
        <ul class="wcml-status-list wcml-tax-translation-list">
            {% set no_tax_to_update = true %}
            {% for taxonomy in taxonomies %}
			    {% set no_tax_to_update = false %}
                <li class="js-tax-translation-{{ taxonomy.tax }}">
                    {% if taxonomy.untranslated %}
                        {% if taxonomy.fully_trans %}
                            <i class="otgs-ico-ok"></i>
                            {{ strings.not_req_trnsl|format( taxonomy.name ) }}
                        {% else %}
                            <i class="otgs-ico-warning"></i>
                            {% if( taxonomy.untranslated == 1) %}
                                {{ strings.miss_trnsl_one|format( taxonomy.untranslated, taxonomy.name_singular ) }}
                            {% else %}
                                {{ strings.miss_trnsl_more|format( taxonomy.untranslated, taxonomy.name ) }}
                            {% endif %}
                            <a class="button button-secondary button-small" href="{{ taxonomy.url }}">
                                {{ strings.trnsl|format( taxonomy.name ) }}
                            </a>
                        {% endif %}
                    {% else %}
                        <i class="otgs-ico-ok"></i>
                        {{ strings.all_trnsl|format( taxonomy.name ) }}
                    {% endif %}
                </li>
            {% endfor %}
            {% if no_tax_to_update %}
                <li>
                    <i class="otgs-ico-ok"></i>
                    {{ strings.not_to_trnsl }}
                </li>
            {% endif %}
        </ul>
        <span>{{ strings.conf_warning|raw }}</span>
    </div>
</div>