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
products.twig
37 lines
| 1 | <div class="wcml-section wc-products-section"> |
| 2 | <div class="wcml-section-header"> |
| 3 | <h3> |
| 4 | {{ strings.products_missing }} |
| 5 | </h3> |
| 6 | </div> |
| 7 | <div class="wcml-section-content"> |
| 8 | <ul class="wcml-status-list wcml-plugins-status-list"> |
| 9 | {% if products is empty %} |
| 10 | <li> |
| 11 | <i class="otgs-ico-ok"></i> |
| 12 | {{ strings.not_to_trnsl }} |
| 13 | </li> |
| 14 | {% else %} |
| 15 | {% for product in products %} |
| 16 | <li> |
| 17 | <i class="otgs-ico-warning"></i> |
| 18 | <span class="wpml-title-flag"> |
| 19 | {{ product.flag|raw }} |
| 20 | </span> |
| 21 | {% if(product.count == 1) %} |
| 22 | {{ strings.miss_trnsl_one|format( product.count, product.display_name ) }} |
| 23 | {% else %} |
| 24 | {{ strings.miss_trnsl_more|format( product.count, product.display_name ) }} |
| 25 | {% endif %} |
| 26 | </li> |
| 27 | {% endfor %} |
| 28 | |
| 29 | <p> |
| 30 | <a class="button-secondary aligncenter" href="{{ trnsl_link }}"> |
| 31 | {{ strings.transl }} |
| 32 | </a> |
| 33 | </p> |
| 34 | {% endif %} |
| 35 | </ul> |
| 36 | </div> |
| 37 | </div> |