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
cps
templates
translations
de/LC_MESSAGES
es/LC_MESSAGES
fr/LC_MESSAGES
it/LC_MESSAGES
ja/LC_MESSAGES
km/LC_MESSAGES
nl/LC_MESSAGES
pl/LC_MESSAGES
ru/LC_MESSAGES
zh_Hans_CN/LC_MESSAGES
web.py
messages.pot

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 %}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1780,6 +1780,10 @@ def search():
term = request.args.get("query").strip().lower()
if term:
entries = get_search_results(term)
ids = list()
for element in entries:
ids.append(element.id)
ub.searched_ids[current_user.id] = ids
return render_title_template('search.html', searchterm=term, entries=entries, page="search")
else:
return render_title_template('search.html', searchterm="", page="search")

File diff suppressed because it is too large Load Diff