first commit

This commit is contained in:
2023-09-12 21:41:04 +02:00
commit 3361a7f053
13284 changed files with 2116755 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<div class="automatically_load_mo_file clearfix">
<ul>
<li>
<label for="theme_localization_load_textdomain">
<input {{ theme_localization_load_textdomain.checked }}
type="checkbox"id="theme_localization_load_textdomain"
name="theme_localization_load_textdomain"
value="{{ theme_localization_load_textdomain.value }}"
>
{{ theme_localization_load_textdomain.label }}
</label>
</li>
<li class="wpml-gettext-theme-domain-name">
{{ gettext_theme_domain_name.label }}
<input type="text"
name="gettext_theme_domain_name"
value="{{ gettext_theme_domain_name.value }}"
{% if not theme_localization_load_textdomain.checked %} disabled="disabled"{% endif %}
>
</li>
</ul>
</div>

View File

@@ -0,0 +1,42 @@
<div class="wpml-section">
<div class="wpml-section-header">
<h3>{{ section_label }}</h3>
</div>
<div class="wpml-section-content">
<input type="hidden" id="{{ nonce_field }}" name="{{ nonce_field }}" value="{{ nonce_value }}">
<div class="top">
<ul>
{% for option in top_options %}
<li>
{% if option.template %}
{% include option.template with option.model %}
{% else %}
<label for="{{ option.name }}">
<input type="{{ option.type }}" {{ option.checked }}
name="{{ option.name }}" id="{{ option.name }}"
value="{{ option.value }}"
>
{{ option.label }}
</label>
{% if option.tooltip %}
<a class="otgs-ico-help js-otgs-popover-tooltip"
data-tippy-zindex="999999"
title="{{ option.tooltip }}"></a>
{% endif %}
{% endif %}
</li>
{% endfor %}
</ul>
</div>
<input id="wpml-js-theme-plugin-save-option" type="button" class="other-options-save button button-primary" value="{{ button_label }}">
<span id="wpml-js-theme-plugin-options-spinner" class="spinner"></span><span class="wpml-ajax-response" id="wpml-js-theme-plugin-options-response"></span>
</div>
</div>
<div class="wpml-scanning-progress" title="{{ scanning_results_title }}">
<span style="display: none" class="wpml-scanning-progress-msg">{{ scanning_progress_msg }}</span><div class="spinner"></div>
<div class="wpml-scanning-results"></div>
</div>