25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

17 satır
529 B

  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>