forked from openlp/openlp
fix bug in autocompleter from bible quicksearch. The option Application language now shows the correct language and not only English.
This commit is contained in:
parent
3820c18eda
commit
8f21fdfad5
@ -509,7 +509,8 @@ class BibleMediaItem(MediaManagerItem):
|
|||||||
for book in book_data:
|
for book in book_data:
|
||||||
data = BiblesResourcesDB.get_book_by_id(
|
data = BiblesResourcesDB.get_book_by_id(
|
||||||
book.book_reference_id)
|
book.book_reference_id)
|
||||||
books.append(data[u'name'] + u' ')
|
books.append(unicode(
|
||||||
|
booknames[data[u'abbreviation']]) + u' ')
|
||||||
elif language_selection == LanguageSelection.English:
|
elif language_selection == LanguageSelection.English:
|
||||||
for book in book_data:
|
for book in book_data:
|
||||||
data = BiblesResourcesDB.get_book_by_id(
|
data = BiblesResourcesDB.get_book_by_id(
|
||||||
|
Loading…
Reference in New Issue
Block a user