- Removed the unrequired %s complications from "No Bibles installed"

This commit is contained in:
suutari-olli 2016-05-21 01:02:40 +03:00
parent dcfcd3e576
commit 0a0a87078b
1 changed files with 4 additions and 4 deletions

View File

@ -269,8 +269,8 @@ class BibleManager(RegistryProperties):
if not bible:
if show_error:
self.main_window.information_message(
('%s' % UiStrings().BibleNoBiblesTitle),
('%s' % UiStrings().BibleNoBibles))
UiStrings().BibleNoBiblesTitle,
UiStrings().BibleNoBibles)
return None
# Get the language for books.
language_selection = self.get_language_selection(bible)
@ -313,8 +313,8 @@ class BibleManager(RegistryProperties):
# If no bibles are installed, message is given.
if not bible:
self.main_window.information_message(
('%s' % UiStrings().BibleNoBiblesTitle),
('%s' % UiStrings().BibleNoBibles))
UiStrings().BibleNoBiblesTitle,
UiStrings().BibleNoBibles)
return None
# Check if the bible or second_bible is a web bible.
web_bible = self.db_cache[bible].get_object(BibleMeta, 'download_source')