forked from openlp/openlp
- Removed the unrequired %s complications from "No Bibles installed"
This commit is contained in:
parent
dcfcd3e576
commit
0a0a87078b
@ -269,8 +269,8 @@ class BibleManager(RegistryProperties):
|
|||||||
if not bible:
|
if not bible:
|
||||||
if show_error:
|
if show_error:
|
||||||
self.main_window.information_message(
|
self.main_window.information_message(
|
||||||
('%s' % UiStrings().BibleNoBiblesTitle),
|
UiStrings().BibleNoBiblesTitle,
|
||||||
('%s' % UiStrings().BibleNoBibles))
|
UiStrings().BibleNoBibles)
|
||||||
return None
|
return None
|
||||||
# Get the language for books.
|
# Get the language for books.
|
||||||
language_selection = self.get_language_selection(bible)
|
language_selection = self.get_language_selection(bible)
|
||||||
@ -313,8 +313,8 @@ class BibleManager(RegistryProperties):
|
|||||||
# If no bibles are installed, message is given.
|
# If no bibles are installed, message is given.
|
||||||
if not bible:
|
if not bible:
|
||||||
self.main_window.information_message(
|
self.main_window.information_message(
|
||||||
('%s' % UiStrings().BibleNoBiblesTitle),
|
UiStrings().BibleNoBiblesTitle,
|
||||||
('%s' % UiStrings().BibleNoBibles))
|
UiStrings().BibleNoBibles)
|
||||||
return None
|
return None
|
||||||
# Check if the bible or second_bible is a web bible.
|
# Check if the bible or second_bible is a web bible.
|
||||||
web_bible = self.db_cache[bible].get_object(BibleMeta, 'download_source')
|
web_bible = self.db_cache[bible].get_object(BibleMeta, 'download_source')
|
||||||
|
Loading…
Reference in New Issue
Block a user