conf-warn.twig
5 years ago
media.twig
1 year ago
multi_currencies.twig
5 years ago
plugins-status.twig
1 year ago
products.twig
1 year ago
status.twig
5 years ago
store-pages.twig
5 years ago
taxonomies.twig
5 years ago
conf-warn.twig
47 lines
| 1 | {% if( ( xml_config_errors is not empty ) or ( miss_slug_lang is not empty ) ) %} |
| 2 | <div class="wcml-section"> |
| 3 | <div class="wcml-section-header"> |
| 4 | <h3> |
| 5 | {{ strings.conf }} |
| 6 | </h3> |
| 7 | </div> |
| 8 | <div class="wcml-section-content"> |
| 9 | <ul class="wcml-status-list"> |
| 10 | {% if miss_slug_lang is not empty %} |
| 11 | <li> |
| 12 | <i class="otgs-ico-warning"></i> |
| 13 | {{ strings.base_not_trnsl }} |
| 14 | <ul class="wcml-lang-list"> |
| 15 | {% for miss_lang in miss_slug_lang %} |
| 16 | <li> |
| 17 | <span class="wpml-title-flag"> |
| 18 | <img src="{{ get_flag_url( miss_lang.code ) }}" alt="{{ miss_lang.english_name|e }}" /> |
| 19 | </span> |
| 20 | {{ miss_lang.display_name|capitalize }} |
| 21 | </li> |
| 22 | {% endfor %} |
| 23 | </ul> |
| 24 | <a class="button-secondary" href="{{ slugs_tab }}"> |
| 25 | {{ strings.trsl_urls }} |
| 26 | </a> |
| 27 | </li> |
| 28 | {% endif %} |
| 29 | |
| 30 | {% if xml_config_errors is not empty %} |
| 31 | <li class="wcml_xml_config_warnings"> |
| 32 | <i class="otgs-ico-warning"></i> |
| 33 | <strong>{{ strings.over_sett }}</strong> |
| 34 | <p> |
| 35 | {{ strings.check_conf|raw|format( strings.cont_set )|raw }} |
| 36 | </p> |
| 37 | <ul> |
| 38 | {% for error in xml_config_errors %} |
| 39 | <li>{{ error|raw }}</li> |
| 40 | {% endfor %} |
| 41 | </ul> |
| 42 | </li> |
| 43 | {% endif %} |
| 44 | </ul> |
| 45 | </div> |
| 46 | </div> |
| 47 | {% endif %} |