Skip to content

Commit

Permalink
Goodreads - fix casing for id remove feature
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwidude68 committed Jun 13, 2024
1 parent 9209194 commit 7b16590
Show file tree
Hide file tree
Showing 14 changed files with 67 additions and 63 deletions.
4 changes: 4 additions & 0 deletions goodreads/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Goodreads Change Log

## [1.8.2] - 2024-06-13
### Fixed
- Fix casing of goodreads identifier in code so right-click remove in calibre feature will work (Terisa).

## [1.8.1] - 2023-03-24
### Fixed
- Author metadata change of just taking the primary contributor (first) when a book has no contributors with a role of Author like comics.
Expand Down
4 changes: 2 additions & 2 deletions goodreads/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Goodreads(Source):
name = 'Goodreads'
description = 'Downloads metadata and covers from Goodreads'
author = 'Grant Drake'
version = (1, 8, 1)
version = (1, 8, 2)
minimum_calibre_version = (2, 0, 0)

capabilities = frozenset(['identify', 'cover'])
Expand Down Expand Up @@ -73,7 +73,7 @@ def config_widget(self):
def get_book_url(self, identifiers):
goodreads_id = identifiers.get(self.ID_NAME, None)
if goodreads_id:
return ('Goodreads', goodreads_id,
return ('goodreads', goodreads_id,
'%s/book/show/%s' % (Goodreads.BASE_URL, goodreads_id))

def id_from_url(self, url):
Expand Down
10 changes: 5 additions & 5 deletions goodreads/translations/de.po
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2022-10-09 14:46+0100\n"
"POT-Creation-Date: 2024-03-24 17:59+1000\n"
"PO-Revision-Date: 2022-09-07 15:49+0000\n"
"Last-Translator: Dustin Steiner, 2022\n"
"Language-Team: German (https://app.transifex.com/calibre/teams/19337/de/)\n"
Expand Down Expand Up @@ -99,22 +99,22 @@ msgstr ""
msgid "Copy to clipboard"
msgstr "In Zwischenablage kopieren"

#: ..\common\common_widgets.py:93
#: ..\common\common_widgets.py:105
msgid "Undefined"
msgstr "Unbestimmt"

#: ..\common\common_widgets.py:148
#: ..\common\common_widgets.py:160
msgid "Restart required"
msgstr "Neustart erforderlich"

#: ..\common\common_widgets.py:149
#: ..\common\common_widgets.py:161
msgid ""
"Title image not found - you must restart Calibre before using this plugin!"
msgstr ""
"Titelbild nicht gefunden - Sie müssen Calibre neu starten, bevor Sie dieses "
"Plugin verwenden können!"

#: ..\common\common_widgets.py:222
#: ..\common\common_widgets.py:234
msgid "Create new column"
msgstr "Neue Spalte erstellen"

Expand Down
10 changes: 5 additions & 5 deletions goodreads/translations/es.po
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2022-10-09 14:46+0100\n"
"POT-Creation-Date: 2024-03-24 17:59+1000\n"
"PO-Revision-Date: 2022-09-07 15:49+0000\n"
"Last-Translator: Jellby <[email protected]>, 2024\n"
"Language-Team: Spanish (https://app.transifex.com/calibre/teams/19337/es/)\n"
Expand Down Expand Up @@ -94,22 +94,22 @@ msgstr "Se ha borrado la configuración del complemento en esta biblioteca."
msgid "Copy to clipboard"
msgstr "Copiar al portapapeles"

#: ..\common\common_widgets.py:93
#: ..\common\common_widgets.py:105
msgid "Undefined"
msgstr "Indefinido"

#: ..\common\common_widgets.py:148
#: ..\common\common_widgets.py:160
msgid "Restart required"
msgstr "Reinicio requerido"

#: ..\common\common_widgets.py:149
#: ..\common\common_widgets.py:161
msgid ""
"Title image not found - you must restart Calibre before using this plugin!"
msgstr ""
"No se encontró la imagen del título. ¡Debe reiniciar calibre antes de usar "
"este complemento!"

#: ..\common\common_widgets.py:222
#: ..\common\common_widgets.py:234
msgid "Create new column"
msgstr "Crear nueva columna"

Expand Down
10 changes: 5 additions & 5 deletions goodreads/translations/fr.po
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2022-10-09 14:46+0100\n"
"POT-Creation-Date: 2024-03-24 17:59+1000\n"
"PO-Revision-Date: 2022-09-07 15:49+0000\n"
"Last-Translator: lentrad <[email protected]>, 2022\n"
"Language-Team: French (https://app.transifex.com/calibre/teams/19337/fr/)\n"
Expand Down Expand Up @@ -98,22 +98,22 @@ msgstr ""
msgid "Copy to clipboard"
msgstr "Copier dans le presse-papier"

#: ..\common\common_widgets.py:93
#: ..\common\common_widgets.py:105
msgid "Undefined"
msgstr "Indéfini"

#: ..\common\common_widgets.py:148
#: ..\common\common_widgets.py:160
msgid "Restart required"
msgstr "Redémarrage nécessaire"

#: ..\common\common_widgets.py:149
#: ..\common\common_widgets.py:161
msgid ""
"Title image not found - you must restart Calibre before using this plugin!"
msgstr ""
"L'image d'icone n'a pas était trouvée - vous devez redémarrer Calibre avant "
"d'utiliser ce plugin !"

#: ..\common\common_widgets.py:222
#: ..\common\common_widgets.py:234
msgid "Create new column"
msgstr "Créer une nouvelle colonne"

Expand Down
10 changes: 5 additions & 5 deletions goodreads/translations/it.po
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2022-10-09 14:46+0100\n"
"POT-Creation-Date: 2024-03-24 17:59+1000\n"
"PO-Revision-Date: 2022-09-07 15:49+0000\n"
"Last-Translator: Antonino Ursino <[email protected]>, 2023\n"
"Language-Team: Italian (https://app.transifex.com/calibre/teams/19337/it/)\n"
Expand Down Expand Up @@ -97,22 +97,22 @@ msgstr ""
msgid "Copy to clipboard"
msgstr "Copia negli appunti "

#: ..\common\common_widgets.py:93
#: ..\common\common_widgets.py:105
msgid "Undefined"
msgstr "Non definito"

#: ..\common\common_widgets.py:148
#: ..\common\common_widgets.py:160
msgid "Restart required"
msgstr "Riavvio richiesto"

#: ..\common\common_widgets.py:149
#: ..\common\common_widgets.py:161
msgid ""
"Title image not found - you must restart Calibre before using this plugin!"
msgstr ""
"Immagine del titolo non trovata - Devi riavviare Calibre prima di utilizzare"
" questo plugin!"

#: ..\common\common_widgets.py:222
#: ..\common\common_widgets.py:234
msgid "Create new column"
msgstr "Crea una nuova colonna "

Expand Down
10 changes: 5 additions & 5 deletions goodreads/translations/lv.po
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2022-10-09 14:46+0100\n"
"POT-Creation-Date: 2024-03-24 17:59+1000\n"
"PO-Revision-Date: 2022-09-07 15:49+0000\n"
"Last-Translator: ciepina <[email protected]>, 2023\n"
"Language-Team: Latvian (https://app.transifex.com/calibre/teams/19337/lv/)\n"
Expand Down Expand Up @@ -88,22 +88,22 @@ msgstr "Visi šī spraudņa iestatījumi bibliotēkā ir notīrīti."
msgid "Copy to clipboard"
msgstr "Kopēt starpliktuvē"

#: ..\common\common_widgets.py:93
#: ..\common\common_widgets.py:105
msgid "Undefined"
msgstr "Nenoteikts"

#: ..\common\common_widgets.py:148
#: ..\common\common_widgets.py:160
msgid "Restart required"
msgstr "Nepieciešams restarts"

#: ..\common\common_widgets.py:149
#: ..\common\common_widgets.py:161
msgid ""
"Title image not found - you must restart Calibre before using this plugin!"
msgstr ""
"Vāka attēls nav atrasts - pirms šī spraudņa izmantošanas ir jārestartē "
"Calibre!"

#: ..\common\common_widgets.py:222
#: ..\common\common_widgets.py:234
msgid "Create new column"
msgstr "Izveidot jaunu kolonnu"

Expand Down
12 changes: 6 additions & 6 deletions goodreads/translations/nl.po
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# peter <luc@ditbenik.be>, 2022
# peter <klm@ditbenik.be>, 2022
# Mario Moens <[email protected]>, 2022
# W.P.M.E. Hofland <[email protected]>, 2022
# M. de Boer <[email protected]>, 2023
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2022-10-09 14:46+0100\n"
"POT-Creation-Date: 2024-03-24 17:59+1000\n"
"PO-Revision-Date: 2022-09-07 15:49+0000\n"
"Last-Translator: M. de Boer <[email protected]>, 2023\n"
"Language-Team: Dutch (https://app.transifex.com/calibre/teams/19337/nl/)\n"
Expand Down Expand Up @@ -94,22 +94,22 @@ msgstr "Alle instellingen voor de plugin in deze bibliotheek zijn gewist."
msgid "Copy to clipboard"
msgstr "Kopieer naar klembord"

#: ..\common\common_widgets.py:93
#: ..\common\common_widgets.py:105
msgid "Undefined"
msgstr "Niet gedefinieerd"

#: ..\common\common_widgets.py:148
#: ..\common\common_widgets.py:160
msgid "Restart required"
msgstr "Opnieuw opstarten vereist"

#: ..\common\common_widgets.py:149
#: ..\common\common_widgets.py:161
msgid ""
"Title image not found - you must restart Calibre before using this plugin!"
msgstr ""
"Titelafbeelding niet gevonden - u moet Calibre opnieuw opstarten voordat u "
"deze plug-in gebruikt!"

#: ..\common\common_widgets.py:222
#: ..\common\common_widgets.py:234
msgid "Create new column"
msgstr "Nieuwe kolom maken"

Expand Down
10 changes: 5 additions & 5 deletions goodreads/translations/pl.po
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2022-10-09 14:46+0100\n"
"POT-Creation-Date: 2024-03-24 17:59+1000\n"
"PO-Revision-Date: 2022-09-07 15:49+0000\n"
"Last-Translator: konrad … <[email protected]>, 2022\n"
"Language-Team: Polish (https://app.transifex.com/calibre/teams/19337/pl/)\n"
Expand Down Expand Up @@ -99,22 +99,22 @@ msgstr ""
msgid "Copy to clipboard"
msgstr "Kopiuj do schowka"

#: ..\common\common_widgets.py:93
#: ..\common\common_widgets.py:105
msgid "Undefined"
msgstr "Nieokreślony"

#: ..\common\common_widgets.py:148
#: ..\common\common_widgets.py:160
msgid "Restart required"
msgstr "Wymagane ponowne uruchomienie"

#: ..\common\common_widgets.py:149
#: ..\common\common_widgets.py:161
msgid ""
"Title image not found - you must restart Calibre before using this plugin!"
msgstr ""
"Nie znaleziono obrazu okładki. Aby móc korzystać z tej wtyczki, musisz "
"uruchomić Calibre ponownie!"

#: ..\common\common_widgets.py:222
#: ..\common\common_widgets.py:234
msgid "Create new column"
msgstr "Utwórz nową kolumnę"

Expand Down
10 changes: 5 additions & 5 deletions goodreads/translations/pt_BR.po
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2022-10-09 14:46+0100\n"
"POT-Creation-Date: 2024-03-24 17:59+1000\n"
"PO-Revision-Date: 2022-09-07 15:49+0000\n"
"Last-Translator: Cm Fy, 2022\n"
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/calibre/teams/19337/pt_BR/)\n"
Expand Down Expand Up @@ -93,22 +93,22 @@ msgstr "Todas as configurações deste plugin nesta biblioteca foram limpas."
msgid "Copy to clipboard"
msgstr "Copiar para a área de transferência"

#: ..\common\common_widgets.py:93
#: ..\common\common_widgets.py:105
msgid "Undefined"
msgstr "Não definido"

#: ..\common\common_widgets.py:148
#: ..\common\common_widgets.py:160
msgid "Restart required"
msgstr "Reinicialização requerida"

#: ..\common\common_widgets.py:149
#: ..\common\common_widgets.py:161
msgid ""
"Title image not found - you must restart Calibre before using this plugin!"
msgstr ""
"Imagem do título não encontrada - você deve reiniciar o Calbre antes de "
"utilizar este plugin!"

#: ..\common\common_widgets.py:222
#: ..\common\common_widgets.py:234
msgid "Create new column"
msgstr "Criar nova coluna"

Expand Down
10 changes: 5 additions & 5 deletions goodreads/translations/ru.po
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2022-10-09 14:46+0100\n"
"POT-Creation-Date: 2024-03-24 17:59+1000\n"
"PO-Revision-Date: 2022-09-07 15:49+0000\n"
"Last-Translator: ashed <[email protected]>, 2023\n"
"Language-Team: Russian (https://app.transifex.com/calibre/teams/19337/ru/)\n"
Expand Down Expand Up @@ -89,22 +89,22 @@ msgstr "Все настройки для этого плагина в этой
msgid "Copy to clipboard"
msgstr "Копировать в Буфер обмена"

#: ..\common\common_widgets.py:93
#: ..\common\common_widgets.py:105
msgid "Undefined"
msgstr "Не определено"

#: ..\common\common_widgets.py:148
#: ..\common\common_widgets.py:160
msgid "Restart required"
msgstr "Требуется перезапуск"

#: ..\common\common_widgets.py:149
#: ..\common\common_widgets.py:161
msgid ""
"Title image not found - you must restart Calibre before using this plugin!"
msgstr ""
"Изображение обложки не найдено - перед использованием нужно перезапустить "
"calibre!"

#: ..\common\common_widgets.py:222
#: ..\common\common_widgets.py:234
msgid "Create new column"
msgstr "Создать новый столбец"

Expand Down
10 changes: 5 additions & 5 deletions goodreads/translations/ta.po
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2022-10-09 14:46+0100\n"
"POT-Creation-Date: 2024-03-24 17:59+1000\n"
"PO-Revision-Date: 2022-09-07 15:49+0000\n"
"Last-Translator: தமிழ்நேரம் <[email protected]>, 2023\n"
"Language-Team: Tamil (https://app.transifex.com/calibre/teams/19337/ta/)\n"
Expand Down Expand Up @@ -90,22 +90,22 @@ msgstr "இந்த நூலகத்தில் இந்த சொருக
msgid "Copy to clipboard"
msgstr "கிளிப்போர்டுக்கு நகலெடுக்கவும்"

#: ..\common\common_widgets.py:93
#: ..\common\common_widgets.py:105
msgid "Undefined"
msgstr "வரையறுக்கப்படவில்லை"

#: ..\common\common_widgets.py:148
#: ..\common\common_widgets.py:160
msgid "Restart required"
msgstr "மறுதொடக்கம் தேவை"

#: ..\common\common_widgets.py:149
#: ..\common\common_widgets.py:161
msgid ""
"Title image not found - you must restart Calibre before using this plugin!"
msgstr ""
"தலைப்பு படம் கிடைக்கவில்லை - இந்த சொருகி பயன்படுத்துவதற்கு முன்பு நீங்கள் "
"காலிபரை மறுதொடக்கம் செய்ய வேண்டும்!"

#: ..\common\common_widgets.py:222
#: ..\common\common_widgets.py:234
msgid "Create new column"
msgstr "புதிய நெடுவரிசையை உருவாக்கவும்"

Expand Down
Loading

0 comments on commit 7b16590

Please sign in to comment.