Skip to content

Commit

Permalink
Remove translatable text from __init__.py files as they never get tra…
Browse files Browse the repository at this point in the history
…nslated for calibre startup time reasons.
  • Loading branch information
Grant Drake committed Sep 20, 2022
1 parent 2d02175 commit 5407e92
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion baen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
class Baen(Source):

name = 'Baen'
description = _('Downloads metadata and covers from Baen')
description = 'Downloads metadata and covers from Baen'
author = 'Grant Drake'
version = (1, 1, 0)
minimum_calibre_version = (2, 0, 0)
Expand Down
2 changes: 1 addition & 1 deletion fantastic_fiction/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
class FantasticFiction(Source):

name = 'Fantastic Fiction'
description = _('Downloads metadata and covers from FantasticFiction.com')
description = 'Downloads metadata and covers from FantasticFiction.com'
author = 'Grant Drake'
version = (1, 6, 0)
minimum_calibre_version = (2, 85, 1)
Expand Down
2 changes: 1 addition & 1 deletion fantastic_fiction_adults/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
class FantasticFictionAdults(Source):

name = 'Fantastic Fiction Adults'
description = _('Downloads metadata and covers from ffadultsonly.com')
description = 'Downloads metadata and covers from ffadultsonly.com'
author = 'Grant Drake'
version = (1, 3, 0)
minimum_calibre_version = (2, 85, 1)
Expand Down
2 changes: 1 addition & 1 deletion fictiondb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
class FictionDB(Source):

name = 'FictionDB'
description = _('Downloads metadata and covers from fictiondb.com')
description = 'Downloads metadata and covers from fictiondb.com'
author = 'Grant Drake'
version = (1, 3, 0)
minimum_calibre_version = (2, 85, 1)
Expand Down
2 changes: 1 addition & 1 deletion goodreads_sync/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ActionGoodreadsSync(InterfaceActionBase):
calibre utilities to run without needing to load the GUI libraries.
'''
name = 'Goodreads Sync'
description = _('Sync from Calibre with the shelves of your GoodReads.com account')
description = 'Sync from Calibre with the shelves of your GoodReads.com account'
supported_platforms = ['windows', 'osx', 'linux']
author = 'Grant Drake'
version = (1, 16, 0)
Expand Down

0 comments on commit 5407e92

Please sign in to comment.