layout-main.twig
3.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<form id="wpml-ls-settings-form" name="wpml_ls_settings_form">
<input type="hidden" name="wpml-ls-refresh-on-browser-back-button" id="wpml-ls-refresh-on-browser-back-button" value="no">
{% if notifications.css_not_loaded %}
<div class="wpml-ls-message notice notice-info">
<p>{{ notifications.css_not_loaded }}</p>
</div>
{% endif %}
<div id="wpml-language-switcher-options" class="js-wpml-ls-section wpml-section">
<div class="wpml-section-header">
<h3>{{ strings.options.section_title }}</h3>
<p>{{ strings.options.section_description }}</p>
</div>
<div class="js-setting-group wpml-ls-settings-group wpml-section-content">
{% include 'section-options.twig' %}
</div>
</div>
<div id="wpml-language-switcher-menus" class="js-wpml-ls-section wpml-section">
<div class="wpml-section-header">
<h3>
{{ strings.menus.section_title }}
</h3>
{% include 'save-notification.twig' %}
</div>
<div class="js-setting-group wpml-ls-settings-group wpml-section-content">
{% include 'section-menus.twig' %}
</div>
</div>
<div id="wpml-language-switcher-sidebars" class="js-wpml-ls-section wpml-section">
<div class="wpml-section-header">
<h3>
{{ strings.sidebars.section_title }}
</h3>
{% include 'save-notification.twig' %}
</div>
<div class="js-setting-group wpml-ls-settings-group wpml-section-content">
{% include 'section-sidebars.twig' %}
</div>
</div>
<div id="wpml-language-switcher-footer" class="js-wpml-ls-section wpml-section">
<div class="wpml-section-header">
<h3>
{{ strings.footer.section_title }}
{% include 'tooltip.twig' with { "content": strings.tooltips.show_in_footer } %}
</h3>
</div>
<div class="js-setting-group wpml-ls-settings-group wpml-section-content">
{% include 'section-footer.twig' %}
</div>
</div>
<div id="wpml-language-switcher-post-translations" class="js-wpml-ls-section wpml-section">
<div class="wpml-section-header">
<h3>
{{ strings.post_translations.section_title }}
{% include 'tooltip.twig' with { "content": strings.tooltips.section_post_translations } %}
</h3>
</div>
<div class="js-setting-group wpml-ls-settings-group wpml-section-content">
{% include 'section-post-translations.twig' %}
</div>
</div>
<div id="wpml-language-switcher-shortcode-action" class="js-wpml-ls-section wpml-section"
{% if not setup_complete %} style="display:none;"{% endif %}>
<div class="wpml-section-header">
<h3>
{{ strings.shortcode_actions.section_title }}
{#{% include 'tooltip.twig' with { "content": strings.tooltips.section_shortcode_action } %}#}
</h3>
{% include 'save-notification.twig' %}
</div>
<div class="js-setting-group wpml-ls-settings-group wpml-section-content">
{% include 'section-shortcode-action.twig' %}
</div>
</div>
{% include 'setup-wizard-buttons.twig' %}
{% include 'dialog-box.twig' %}
</form>