Files
web.ems/phpMyAdmin/templates/display/export/options_output_charset.twig
agtuser 16a3fd1e1b init
2024-11-11 17:56:00 +08:00

17 lines
529 B
Twig
Executable File

<li>
<label for="select_charset" class="desc">
{% trans 'Character set of the file:' %}
</label>
<select id="select_charset" name="charset" size="1">
{% for charset in encodings %}
<option value="{{ charset }}"
{%- if (export_charset is empty and charset == 'utf-8')
or charset == export_charset %}
selected
{%- endif %}>
{{- charset -}}
</option>
{% endfor %}
</select>
</li>