1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-10-17 08:37:39 +00:00

Added missing translation strings

Update German Translation
This commit is contained in:
Ozzieisaacs
2022-05-01 13:24:11 +02:00
parent cde51e743a
commit ae5053e072
44 changed files with 18356 additions and 15692 deletions

View File

@@ -805,7 +805,7 @@ def save_cover_from_url(url, book_path):
img = advocate.get(url, timeout=(10, 200), allow_redirects=False) # ToDo: Error Handling
else:
log.error("python module advocate is not installed but is needed")
return False, _("Python module 'advocate' is not installed but is needed for cover downloads")
return False, _("Python module 'advocate' is not installed but is needed for cover uploads")
img.raise_for_status()
return save_cover(img, book_path)
except (socket.gaierror,