Welcome to mirror list, hosted at ThFree Co, Russian Federation.

options_output_charset.twig « export « display « templates - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd316bf9166403386a7a3be154a6e8c64b995a49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<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>