options_output_charset.twig 529 B

12345678910111213141516
  1. <li>
  2. <label for="select_charset" class="desc">
  3. {% trans 'Character set of the file:' %}
  4. </label>
  5. <select id="select_charset" name="charset" size="1">
  6. {% for charset in encodings %}
  7. <option value="{{ charset }}"
  8. {%- if (export_charset is empty and charset == 'utf-8')
  9. or charset == export_charset %}
  10. selected
  11. {%- endif %}>
  12. {{- charset -}}
  13. </option>
  14. {% endfor %}
  15. </select>
  16. </li>