1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-12-08 09:18:06 +00:00
Added missing translation for "select option"
This commit is contained in:
OzzieIsaacs
2018-09-03 19:12:15 +02:00
parent db9561db89
commit 0bcb20f674
14 changed files with 2443 additions and 2439 deletions

View File

@@ -33,14 +33,14 @@
<div class="text-left">
<label class="control-label" for="book_format_from">{{_('Convert from:')}}</label>
<select class="form-control" name="book_format_from" id="book_format_from">
<option disabled selected value> -- select an option -- </option>
<option disabled selected value> -- {{_('select an option')}} -- </option>
{% for file in book.data %}
<option>{{file.format}} </option>
{% endfor %}
</select>
<label class="control-label" for="book_format_to">{{_('Convert to:')}}</label>
<select class="form-control" name="book_format_to" id="book_format_to">
<option disabled selected value> -- select an option -- </option>
<option disabled selected value> -- {{_('select an option')}} -- </option>
{% for format in conversion_formats %}
<option>{{format|upper}} </option>
{% endfor %}