From dc7fbce4f7eb2760bb214005cdb687293925130f Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 28 May 2023 13:21:26 +0200 Subject: [PATCH 01/15] changed style property of container --- cps/templates/http_error.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cps/templates/http_error.html b/cps/templates/http_error.html index 8330bf08..3415205e 100644 --- a/cps/templates/http_error.html +++ b/cps/templates/http_error.html @@ -20,7 +20,7 @@ {% endif %} -
+

{{instance}}

From 860443079de7a4da504345684a1cec97b7d6dadf Mon Sep 17 00:00:00 2001 From: Ozzie Isaacs Date: Mon, 5 Jun 2023 14:41:03 +0200 Subject: [PATCH 02/15] Fix for (#2802) search request fails with error after browser session closed and currently returns all results --- cps/search.py | 20 +++++++++++++------- cps/web.py | 2 +- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/cps/search.py b/cps/search.py index 096b2928..4eee2206 100644 --- a/cps/search.py +++ b/cps/search.py @@ -375,13 +375,19 @@ def render_prepare_search_form(cc): def render_search_results(term, offset=None, order=None, limit=None): - join = db.books_series_link, db.Books.id == db.books_series_link.c.book, db.Series - entries, result_count, pagination = calibre_db.get_search_results(term, - config, - offset, - order, - limit, - *join) + if term: + join = db.books_series_link, db.Books.id == db.books_series_link.c.book, db.Series + entries, result_count, pagination = calibre_db.get_search_results(term, + config, + offset, + order, + limit, + *join) + else: + entries = list() + order = [None, None] + pagination = result_count = None + return render_title_template('search.html', searchterm=term, pagination=pagination, diff --git a/cps/web.py b/cps/web.py index 789edd3d..51ff32b3 100755 --- a/cps/web.py +++ b/cps/web.py @@ -396,7 +396,7 @@ def render_books_list(data, sort_param, book_id, page): elif data == "archived": return render_archived_books(page, order) elif data == "search": - term = (request.args.get('query') or '') + term = request.args.get('query', None) offset = int(int(config.config_books_per_page) * (page - 1)) return render_search_results(term, offset, order, config.config_books_per_page) elif data == "advsearch": From 4e6c9c2703c229c0eed65a098172ba965f9acfea Mon Sep 17 00:00:00 2001 From: boosh Date: Tue, 13 Jun 2023 06:23:53 +0000 Subject: [PATCH 03/15] Update README.md Link to the raw download URL of the metadata.db file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ac9a8d8..7d30ba8d 100755 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ Refer to the Wiki for additional installation examples: [manual installation](ht 1. Open your browser and navigate to `http://localhost:8083` or `http://localhost:8083/opds` for the OPDS catalog 2. Log in with the default admin credentials -3. If you don't have a Calibre database, you can use [this database](https://github.com/janeczku/calibre-web/blob/master/library/metadata.db) (move it out of the Calibre-Web folder to prevent overwriting during updates) +3. If you don't have a Calibre database, you can use [this database](https://github.com/janeczku/calibre-web/raw/master/library/metadata.db) (move it out of the Calibre-Web folder to prevent overwriting during updates) 4. Set `Location of Calibre database` to the path of the folder containing your Calibre library (metadata.db) and click "Save" 5. Optionally, use Google Drive to host your Calibre library by following the [Google Drive integration guide](https://github.com/janeczku/calibre-web/wiki/G-Drive-Setup#using-google-drive-integration) 6. Configure your Calibre-Web instance via the admin page, referring to the [Basic Configuration](https://github.com/janeczku/calibre-web/wiki/Configuration#basic-configuration) and [UI Configuration](https://github.com/janeczku/calibre-web/wiki/Configuration#ui-configuration) guides From 4b4c0daab09534e96238031f1acf8fe88ccab508 Mon Sep 17 00:00:00 2001 From: Ozzie Isaacs Date: Sun, 18 Jun 2023 18:30:01 +0200 Subject: [PATCH 04/15] Update testresults --- test/Calibre-Web TestSummary_Linux.html | 208 +++++++++++++----------- 1 file changed, 114 insertions(+), 94 deletions(-) diff --git a/test/Calibre-Web TestSummary_Linux.html b/test/Calibre-Web TestSummary_Linux.html index a67aac78..81b17007 100644 --- a/test/Calibre-Web TestSummary_Linux.html +++ b/test/Calibre-Web TestSummary_Linux.html @@ -37,20 +37,20 @@
-

Start Time: 2023-05-27 20:05:01

+

Start Time: 2023-06-18 11:18:49

-

Stop Time: 2023-05-28 03:05:40

+

Stop Time: 2023-06-18 17:27:42

-

Duration: 5h 54 min

+

Duration: 5h 10 min

@@ -471,15 +471,15 @@ - + TestCli - 12 - 11 - 1 + 13 + 13 + 0 0 0 - Detail + Detail @@ -503,33 +503,11 @@ - +
TestCli - test_change_password
- -
- FAIL -
- - - - + PASS @@ -590,7 +568,7 @@ AssertionError: [] is not true -
TestCli - test_no_database
+
TestCli - test_logfile
PASS @@ -599,7 +577,7 @@ AssertionError: [] is not true -
TestCli - test_settingsdb_not_writeable
+
TestCli - test_no_database
PASS @@ -607,6 +585,15 @@ AssertionError: [] is not true + +
TestCli - test_settingsdb_not_writeable
+ + PASS + + + + +
TestCli - test_writeonly_static_files
@@ -1197,13 +1184,13 @@ AssertionError: [] is not true TestEditBooks - 36 + 37 35 0 0 - 1 + 2 - Detail + Detail @@ -1382,7 +1369,7 @@ AssertionError: [] is not true -
TestEditBooks - test_rename_uppercase_lowercase
+
TestEditBooks - test_rename_upper_lowercase
@@ -1395,6 +1382,32 @@ AssertionError: [] is not true onclick="document.getElementById('div_st13.20').style.display='none'">
+
+
For some reason it works, but during test it fails, only if executed in debugger it works
+
+
+
+ + + + + + + + +
TestEditBooks - test_rename_uppercase_lowercase
+ + +
+ SKIP +
+ + From 500758050cd0e113d761256b69d6442e6e0def5c Mon Sep 17 00:00:00 2001 From: Ozzie Isaacs Date: Sun, 25 Jun 2023 11:32:09 +0200 Subject: [PATCH 05/15] Fixed typo in German translation --- cps/translations/cs/LC_MESSAGES/messages.mo | Bin 35581 -> 35581 bytes cps/translations/cs/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/de/LC_MESSAGES/messages.mo | Bin 61434 -> 61446 bytes cps/translations/de/LC_MESSAGES/messages.po | 76 +++++++++--------- cps/translations/el/LC_MESSAGES/messages.mo | Bin 52107 -> 52107 bytes cps/translations/el/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/es/LC_MESSAGES/messages.mo | Bin 46435 -> 46435 bytes cps/translations/es/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/fi/LC_MESSAGES/messages.mo | Bin 24553 -> 24553 bytes cps/translations/fi/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/fr/LC_MESSAGES/messages.mo | Bin 50582 -> 50582 bytes cps/translations/fr/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/gl/LC_MESSAGES/messages.mo | Bin 55805 -> 55805 bytes cps/translations/gl/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/hu/LC_MESSAGES/messages.mo | Bin 22520 -> 22520 bytes cps/translations/hu/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/id/LC_MESSAGES/messages.mo | Bin 53509 -> 53509 bytes cps/translations/id/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/it/LC_MESSAGES/messages.mo | Bin 63038 -> 63038 bytes cps/translations/it/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/ja/LC_MESSAGES/messages.mo | Bin 59135 -> 59135 bytes cps/translations/ja/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/km/LC_MESSAGES/messages.mo | Bin 22267 -> 22267 bytes cps/translations/km/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/ko/LC_MESSAGES/messages.mo | Bin 50776 -> 50776 bytes cps/translations/ko/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/nl/LC_MESSAGES/messages.mo | Bin 45724 -> 45724 bytes cps/translations/nl/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/no/LC_MESSAGES/messages.mo | Bin 36091 -> 36091 bytes cps/translations/no/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/pl/LC_MESSAGES/messages.mo | Bin 47333 -> 47333 bytes cps/translations/pl/LC_MESSAGES/messages.po | 66 +++++++-------- .../pt_BR/LC_MESSAGES/messages.mo | Bin 55992 -> 55992 bytes .../pt_BR/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/ru/LC_MESSAGES/messages.mo | Bin 42944 -> 42944 bytes cps/translations/ru/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/sv/LC_MESSAGES/messages.mo | Bin 44473 -> 44473 bytes cps/translations/sv/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/tr/LC_MESSAGES/messages.mo | Bin 20150 -> 20150 bytes cps/translations/tr/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/uk/LC_MESSAGES/messages.mo | Bin 22473 -> 22473 bytes cps/translations/uk/LC_MESSAGES/messages.po | 66 +++++++-------- cps/translations/vi/LC_MESSAGES/messages.mo | Bin 29512 -> 29512 bytes cps/translations/vi/LC_MESSAGES/messages.po | 66 +++++++-------- .../zh_Hans_CN/LC_MESSAGES/messages.mo | Bin 55414 -> 55414 bytes .../zh_Hans_CN/LC_MESSAGES/messages.po | 66 +++++++-------- .../zh_Hant_TW/LC_MESSAGES/messages.mo | Bin 44351 -> 44351 bytes .../zh_Hant_TW/LC_MESSAGES/messages.po | 66 +++++++-------- messages.pot | 66 +++++++-------- 49 files changed, 830 insertions(+), 830 deletions(-) diff --git a/cps/translations/cs/LC_MESSAGES/messages.mo b/cps/translations/cs/LC_MESSAGES/messages.mo index d8f71e385e9bd7c952fa92b57f2c3b5469af12f7..53237a5d9e64e7be762d0fc537f30af641bedff3 100644 GIT binary patch delta 28 kcmex6mFe$PrVTm)yk@#arV56JR>lU}21c7L1CCe$0FfgJ5&!@I delta 28 kcmex6mFe$PrVTm)ye7KF1`39jR>tPq2F9B$1CCe$0Fh}48~^|S diff --git a/cps/translations/cs/LC_MESSAGES/messages.po b/cps/translations/cs/LC_MESSAGES/messages.po index 8ca52b5f..d66a3b47 100644 --- a/cps/translations/cs/LC_MESSAGES/messages.po +++ b/cps/translations/cs/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2020-06-09 21:11+0100\n" "Last-Translator: Lukas Heroudek \n" "Language: cs_CZ\n" @@ -44,8 +44,8 @@ msgstr "Neznámý příkaz" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Kniha byla úspěšně zařazena do fronty pro odeslání na %(eReadermail)s" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Neznámý" @@ -129,7 +129,7 @@ msgstr "" msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "" @@ -294,8 +294,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -529,122 +529,122 @@ msgstr "není nainstalováno" msgid "Execution permissions missing" msgstr "Chybí povolení k exekuci" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, fuzzy, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "Vlastní sloupec %(column)d neexistuje v databázi" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Žádné" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Jejda! Vybraná kniha není k dispozici. Soubor neexistuje nebo není přístupný" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "Metadata úspěšně aktualizována" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "Soubor %(file)s nahrán" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Chybí zdrojový nebo cílový formát pro převod" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Kniha byla úspěšně zařazena do fronty pro převod do %(book_format)s" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Při převodu této knihy došlo k chybě: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Nahraná kniha pravděpodobně existuje v knihovně, zvažte prosím změnu před nahráním nové: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s není platným jazykem" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Soubor s příponou '%(ext)s' nelze odeslat na tento server" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "Soubor, který má být odeslán musí mít příponu" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Soubor %(filename)s nemohl být uložen do dočasného adresáře" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Nepodařilo se přesunout soubor obalu %(file)s: %(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "Formát knihy úspěšně smazán" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "Kniha úspěšně smazána" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "upravit metadata" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Nepodařilo se vytvořit cestu %(path)s (oprávnění odepřeno)." -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Uložení souboru %(file)s se nezdařilo." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Formát souboru %(ext)s přidán do %(book)s" @@ -1078,7 +1078,7 @@ msgstr "" msgid "Show Books List" msgstr "" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/de/LC_MESSAGES/messages.mo b/cps/translations/de/LC_MESSAGES/messages.mo index c6615502bb7a0d681b405c06ba9c6529b346a952..57f76057bdaaef47f73662a852c7eb40ca02652f 100644 GIT binary patch delta 4409 zcmY+`e^l4i9mnxIK?DRuke`BlAwUr`AQAbcn4NbzMs5p15G3L=zzsMIw_-M) z#~cj#z?dO86*ayFv+&>t#{E;{KMc4S$o$ay3?|WEj?ZB=hM;eqF{S9jUbqQ0aScY| zMVyG=V?K_qH)asNieb1D{jeFe;fwWdWAbQpF)$p5Y%`_@7Na*VM}J&}n)o#gz*bDe zZ&4WuX|VGoIX;gH@ICazJs5=hQ460z7v6BwNTAVkyD{;Yikf%^Dg))tcnyZrKY>HA z9W_zp4!fgN45U9C_5Nhk(Uzi)?oC{V+fnZi`kT#&yO4$#17)ZeS7I{OU>csmap<*^ zAaM$I$JwX_=b{f5qjp-3zWB29d>!_uUxixdFe<|*(Sy=4Ei}e6a2_XPe4{ZDSb{qH z-=mJ83;W>DcG*;hVsH9M7=zguinCA~Sc1`5g@f@URKPbe4j*7T>zkO}HWkzHaUQ&c zI=gppB-W#L-i6xPL+82g9y=b1N^v48kS9=q%*82KhAPHmI0*wkGA0TOFogBZavFVc z18PUL7>WBZ2QT0#4BKlnH4DS&zl%EKCY+6Js0DJHY%Tp3wc|P*fFGmYyMejbZ6Em` zO(Tzn&g2zT5w1f8vJG_$4mtgks0mt8XZ<}!;R9zpV!ts%>8GORS%9jQbr_5rQR~#8 zZqbMP$^TdyO$=yC||{X_{IUZF#~Dra0c3(A3nqo#)A&p9S=aAX&$OJon}$+RhDyy^^u$V3(Y%h@;g|Rb-oh9R{JXuDDX0(AZ!iIm zIODf*H2sXj_Uu<+cly<+oxg`V68AA0-Dq4w?clQ0?|H;V9Du_aAB*~MtVT_|2eZ+9 zV$3wiLG5eR)qfA8aoka3QgA-1M&87!y8q2I^r4A6#`hnmVaS z`yRKc%RmK`=eQJO>Hihu@C0gyotS|hCv4ScV-o!`9IE^OCmKr`xPS^|%1Qf2qXL!c zI-G!~Pyt4LYKv?JYKK*rkDcg=>CLv-vQV`$3B7R+_QZKO2$x_a>zlXLz}?sjTO8X_ zJGkrUbIKN1G^!ZWQ4>x?Rrk}Vg&+I2V7Tv1WWEyf5hT|-! zUxK=Jzr#TM3u?jLs09vV4?O2Qzl1unPSkw&o$;X4`qWausEp1;6?55X@*huQ3j-;5 z028na{V?K;{WF<}x@KeXQ7pt{T#o~A4|?HM^ue2`fbXJ;)$6Qv0xIxI$E|0{zly7l z0i~`PRb*eFCio7O>h3KzfG7;6KNPjo@u;0n$KLo7Y92QR;9Aszo1F0)^rv5kdcR3O z)WA_xl9Yd^4&>>QQHZ40R-@@u%;>7xwz)ppNtxsK6>wwe$y6 zV2#Lib(`ZfwD4`z8Fry|b{|!2p6Bh61fn7zgncjF7( z41+G%`#%t4b^oW)Pz{u#J{+%OI5wgt`V19dD@I~FYDeZvTN6D|0VSYzmW3{ygj#SB zYW~%zd8;uLn=qL5O$!aBxWoCuLsUw`FWL#lpuTJc7=tTOXS@|P@pja$IfKg356*Mn zuj~=^Llt8pMqoOQ!^!B*r?Htv7PjI9jJ#y8)jUk1zaACPE*y;4obk|ByVE?>cp(nM zO4PMHiZOTxbu>Y3_S-)Kb=0M8V@s7h|i)@|2676(SfRsfXnvG!%-8( zqmC*W^p_yQJSHI72hD>m?-Uvb-%EM#B^4=OMb8&N54MP;B1m8s~j?ca!J zQ9F7Ab>;`r1J61A3+PGzHtLq#L0#MXsABcFYRs>(mz#!)XDvR7TTqdAqKf1$=Ad7@ z{WClcm9e!Lg^j4^E!ZD}zOmnnEOgOdfjWvU*bfh5cWg&}nA|sMc+&VcstCD1Ow_!a(MR|HT^ib1 z9co9XPzzl_1@;4~xcqL~??WVd)6YeAV8);epFh|>9_pT_+_v+LM`dOzK7uo` z8si|3y zrzEGOZJe{FukZgx(lQ%fUh_mk%;>_BqJ^&fCCiEymJ}^nx@dmUB3I$k;^Jo)ytuHa jxOn4N?`QiL{ohD@ZJL*Tt6@fMermUas~V~<&F=kQF<(F< delta 4396 zcmY+{dsNm%9>?*?2N3W9kT2X5y!H#&f&z9Rslp-1&iZ4vwK;ic4`5hT}~v$IuUr3BnDiiEB^+ zAH&&r1@mxXJ#*r-I2hkYH#VU*e5~GMOb(4+2BzZZkBsS$kD@P@VgOd4CVmbBu@y(* zc??D020Kr*<6=~RZ=n~~VF)&$7CwNn*x{iulEy8J$M}!!#QCTbC_|0cU1h{qRxLPRr0AS3A$w;%NF+sC9OsPIw=>4Eb-NaSsEB@m?JKS7Rb^87{@& zqEgU{VfX{;DE)TX;)})@`YAXF=b|=HghR0kQ}6>+z?~R}eK?-=O~`J06f-fM2alj~ z_XnJgTTwgjMeXdm^ZceW9`Knx;z(2=<57Vu!27TSRg8@|2VI{V6O9EJ&iba5Mif?J zFusjL@FUE^BbbZ+jrOGG;$ZrlQ8}*12k``Ifz&;=W`2X(@fJ+Lk5TV+U^e~>J$KPa z-)nR7B&yifq5^prbqjVn{e7qjT2Z;ag3;LLjJx+4Gl70QYMuvBwXzmN@p)A4Yf!i7 z&-*z4yJ^%jpdH>o?I`bA1@IJVq4m!A+c=H>XQ&2E^q{4G>UJdHH^(KwFUL7UURg^Ku&FYT8x6ZPR(gPOPwr{MQE zAIG-XomHYv<`}B_zrmrHb&$fuMW`Bi3FqnlH__0CCj5{wlW`_4!FA}57f})Sp(YOe z${t-JDxh@7$L{fJ75>$HtL2E*v5;xx=d{q8wbl~@Or(DX2c!2H zd;f>xaNYmAX{ZK@QIWrh5x5;S(SB5btvCeRQ9Jq`Bk>k0pop_}XUP~#KL@qo64d-_ zQ1foWL0FHWtZ!Oq=!nlbKe&!M(gEk}1d~x;wgQa7Rj3?Sqb7b2b!!fwa(mTzeiN0V z;0{}ik*I(ZFdt{2Cy&OgZ3Qz7rj&+UR%Q=G={%C<2wL z7}R$m8TH;moQx0SL%11p@h6PMtR9a&lEpptk4XiN;=vBo5uZTq^b+c%f-l&=5x+$3 zXalO6ccKdqIsK!kzXj(}DdJU7m}!c%H!m2C7hzUqBVf*O-OopZ3pi zHtNKl!D!rpdVUZ`qff8>UZh|w{W4T4s&E+YMsGZgLFnnC;YFhlRfIpFs@eaNt@apH zAepGt6yR`Nf%@WAqjLW)Dm87W6X|sP4)wm*WgB1=>f~~9sP2Cm4ZW}t712AW9M+>7 zJ5VXOf|@AoYrDfF%%=Z1sz|q^51zy^*nzqY{jb>6M&LC1b5QfXf_}RHH8ixdt*9OC zM=f*`71%XYahY%I_aP8{>82q&Fqs&Oze1&C4QeB=qXPU3>Qj3W^*tDL)drA)0jzJP z&`@sju|FDLqH&KC{Lj`;l{n7Nm? zsEy|I@lUrOjhPI%aGvA+s2narJ+H(#+=!#F9#w?x4ZFs@F+U(9IXyKtZE|M%#H7^p z>cuZa`DY}jO^8h!pP4$oVciQeMn>kXtSBmeqG;vn(q%=Zu}fC3T2;8bq`0X0Pt_N8 bOmY9;KvM0vhQivsG}rXztqt#YJ{bHz(B3)7 diff --git a/cps/translations/de/LC_MESSAGES/messages.po b/cps/translations/de/LC_MESSAGES/messages.po index 78eb33b9..9226d1a4 100644 --- a/cps/translations/de/LC_MESSAGES/messages.po +++ b/cps/translations/de/LC_MESSAGES/messages.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" -"PO-Revision-Date: 2023-04-16 15:05+0200\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" +"PO-Revision-Date: 2023-06-25 11:29+0200\n" "Last-Translator: Ozzie Isaacs\n" "Language: de\n" "Language-Team: \n" @@ -42,8 +42,8 @@ msgstr "Unbekannter Befehl" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Bücher wurden für Metadaten Backup eingereiht, für das Ergebnis bitte Aufgaben überprüfen" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Unbekannt" @@ -126,7 +126,7 @@ msgstr "Keine gültige Sprache gewählt" msgid "No Valid Book Language Given" msgstr "Keine gültige Buchsprache gewählt" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "Parameter wurde nicht gefunden" @@ -286,8 +286,8 @@ msgid "Success! Gmail Account Verified." msgstr "G-Mail Konto verifiziert." #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -515,122 +515,122 @@ msgstr "Nicht installiert" msgid "Execution permissions missing" msgstr "Ausführeberechtigung fehlt" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "Benutzerdefinierte Spalte Nr. %(column)d ist nicht in Calibre Datenbank vorhanden" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Keine" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Öffnen des Buchs fehlgeschlagen. Datei existiert nicht oder ist nicht zugänglich" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "Benutzer hat keine Berechtigung Cover hochzuladen" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "IDs unterscheiden nicht Groß-Kleinschreibung, alte ID wird überschrieben" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "Metadaten wurden erfolgreich aktualisiert" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "Fehler beim editieren des Buches: {}" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "Datei %(file)s hochgeladen" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Quell- oder Zielformat für Konvertierung fehlt" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Buch wurde erfolgreich für die Konvertierung nach %(book_format)s eingereiht" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Es trat ein Fehler beim Konvertieren des Buches auf: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Das hochgeladene Buch existiert evtl. schon in der Bibliothek: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "'%(langname)s' ist keine gültige Sprache" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Dateiendung '%(ext)s' kann nicht auf diesen Server hochgeladen werden" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "Dateien müssen eine Erweiterung haben, um hochgeladen zu werden" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Die Datei %(filename)s konnte nicht im temporären Ordner gespeichert werden" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Fehler beim Verschieben der Cover Datei %(file)s: %(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "Buch Format erfolgreich gelöscht" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "Buch erfolgreich gelöscht" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "Keine Erlaubnis zum Bücher löschen" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "Metadaten editieren" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s ist keine gültige Zahl, Eintrag wird ignoriert" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "Benutzer hat kein Recht zusätzliche Dateiformate hochzuladen" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Fehler beim Erzeugen des Pfads %(path)s (Zugriff verweigert)" -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Fehler beim Speichern der Datei %(file)s." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Dateiformat %(ext)s zu %(book)s hinzugefügt" @@ -1048,7 +1048,7 @@ msgstr "Bücherliste" msgid "Show Books List" msgstr "Zeige Bücherliste" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 @@ -1774,7 +1774,7 @@ msgstr "Sortiere nach Buchdatum, Neuestes zuerst" #: cps/templates/author.html:27 cps/templates/index.html:75 #: cps/templates/search.html:32 cps/templates/shelf.html:21 msgid "Sort according to book date, oldest first" -msgstr "Sortiere nach Buchdatum, Aältestes zuerst" +msgstr "Sortiere nach Buchdatum, Ältestes zuerst" #: cps/templates/author.html:28 cps/templates/index.html:76 #: cps/templates/search.html:33 cps/templates/shelf.html:22 @@ -3180,7 +3180,7 @@ msgstr "Serien ausschließen" #: cps/templates/search_form.html:95 msgid "Exclude Shelves" -msgstr "Bücherregal ausschließen" +msgstr "Bücherregale ausschliessen" #: cps/templates/search_form.html:115 msgid "Exclude Languages" @@ -3188,11 +3188,11 @@ msgstr "Sprachen ausschließen" #: cps/templates/search_form.html:126 msgid "Extensions" -msgstr "Erweiterungen" +msgstr "Datei Erweiterungen" #: cps/templates/search_form.html:134 msgid "Exclude Extensions" -msgstr "Erweiterungen ausschließen" +msgstr "Datei Erweiterungen ausschliessen" #: cps/templates/search_form.html:144 msgid "Rating Above" diff --git a/cps/translations/el/LC_MESSAGES/messages.mo b/cps/translations/el/LC_MESSAGES/messages.mo index 913499e0af42c7655cf9ab5352b8a31530d3b261..f8773c72e288a3041eb2658e68422a4d5955c472 100644 GIT binary patch delta 28 kcmeC4&fGnndBd7eUNc=IQw2jqD`Nv~1EbA5LobyA0EcP`hX4Qo delta 28 kcmeC4&fGnndBd7eUK3qo0|i4%D`RtQ1LMs*LobyA0Ee&%kpKVy diff --git a/cps/translations/el/LC_MESSAGES/messages.po b/cps/translations/el/LC_MESSAGES/messages.po index 3c375ab0..5a7aa4c3 100644 --- a/cps/translations/el/LC_MESSAGES/messages.po +++ b/cps/translations/el/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Depountis Georgios\n" "Language: el\n" @@ -44,8 +44,8 @@ msgstr "Άγνωστη εντολή" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Το βιβλίο έχει επιτυχώς μπει σε σειρά για αποστολή στο %(eReadermail)s" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "ʼΑγνωστο" @@ -129,7 +129,7 @@ msgstr "" msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "" @@ -294,8 +294,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -529,122 +529,122 @@ msgstr "δεν εγκαταστάθηκε" msgid "Execution permissions missing" msgstr "Λείπουν άδειες εκτέλεσης" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, fuzzy, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "Η ειδικά προσαρμοσμένη στήλη No.%(column)d δεν υπάρχει στο επίπεδο βάσης δεδομένων" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Κανένα" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Oυπς! Ο επιλεγμένος τίτλος βιβλίου δεν είναι διαθέσιμος. Το αρχείο δεν υπάρχει ή δεν είναι προσβάσιμο" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "Τα αναγνωριστικά δεν έχουν Διάκριση Πεζών-Κεφαλαίων Γραμμάτων, Αντικατάσταση Παλιού Αναγνωριστικού" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "Τα μεταδεδομένα ενημερώθηκαν επιτυχώς" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "Το αρχείο %(file)s ανέβηκε" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Η δομή πηγής ή προορισμού για μετατροπή λείπει" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Το βιβλίο είναι σε σειρά επιτυχώς για μετατροπή σε %(book_format)s" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Υπήρξε ένα σφάλμα στη μετατροπή αυτού του βιβλίου: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Το βιβλίο που ανέβηκε πιθανόν να υπάρχει στη βιβλιοθήκη, σκέψου να το αλλάξεις πριν ανεβάσεις νέο: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s δεν είναι μια έγκυρη γλώσσα" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Η επέκταση αρχείου '%(ext)s' δεν επιτρέπεται να ανέβει σε αυτό το διακομιστή" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "Το αρχείο προς ανέβασμα πρέπει να έχει μια επέκταση" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Το αρχείο %(filename)s δεν μπόρεσε να αποθηκευτεί σε temp dir" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Αποτυχία Μετακίνησης Αρχείου Φόντου %(file)s: %(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "Η μορφή βιβλίου Διαγράφηκε Επιτυχώς" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "Το Βιβλίο Διαγράφηκε Επιτυχώς" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "επεξεργασία μεταδεδομένων" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Αποτυχεία δημιουργίας πορείας %(path)s (Η άδεια απορρήφθηκε)." -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Αποτυχία αποθήκευσης αρχείου %(file)s." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Μορφή αρχείου %(ext)s προστέθηκε σε %(book)s" @@ -1078,7 +1078,7 @@ msgstr "Λίστα Βιβλίων" msgid "Show Books List" msgstr "Προβολή Λίστας Βιβλίων" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/es/LC_MESSAGES/messages.mo b/cps/translations/es/LC_MESSAGES/messages.mo index 13fcbf2e194355a1036c8bbcb8be8b1ff387caa8..8d36c5158e44b49d7f8d53cb22a5be512754a751 100644 GIT binary patch delta 28 kcmaF-is|tyrVU-Gyk@#arV56JR>lU}21c8wr=IZ#0H@{(ivR!s delta 28 kcmaF-is|tyrVU-Gye7KF1`39jR>tPq2F9DGr=IZ#0H`bql>h($ diff --git a/cps/translations/es/LC_MESSAGES/messages.po b/cps/translations/es/LC_MESSAGES/messages.po index 9708a108..d85409e5 100644 --- a/cps/translations/es/LC_MESSAGES/messages.po +++ b/cps/translations/es/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2020-05-25 17:22+0200\n" "Last-Translator: minakmostoles \n" "Language: es\n" @@ -48,8 +48,8 @@ msgstr "Comando desconocido" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Puesto en cola un correo electrónico de prueba enviado a %(email)s, por favor, comprueba el resultado en Tareas" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Desconocido" @@ -133,7 +133,7 @@ msgstr "No hay un sitio válido" msgid "No Valid Book Language Given" msgstr "No se ha indicado un idioma válido para el libro" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "Parámetro no encontrado" @@ -298,8 +298,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -533,122 +533,122 @@ msgstr "no instalado" msgid "Execution permissions missing" msgstr "Faltan permisos de ejecución" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, fuzzy, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "Columna personalizada No.%(column)d no existe en la base de datos calibre" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Ninguno" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "oh, oh, el libro seleccionado no está disponible. El archivo no existe o no es accesible" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "Los identificadores no distinguen entre mayúsculas y minúsculas, sobrescribiendo el identificador antiguo" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "Metadatos actualizados con éxito" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "El fichero %(file)s ha sido subido" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Falta la fuente o el formato de destino para la conversión" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Libro puesto a la cola para su conversión a %(book_format)s" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Ocurrió un error al convertir este libro: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "El libro cargado probablemente existe en la biblioteca, considera cambiarlo antes de subirlo de nuevo: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s no es un idioma válido" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "No se permite subir archivos con la extensión '%(ext)s' a este servidor" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "El archivo a subir debe tener una extensión" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "El archivo %(filename)s no pudo salvarse en el directorio temporal (Temp Dir)" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Fallo al mover el archivo de cubierta %(file)s: %(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "Formato de libro eliminado con éxito" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "Libro eliminado con éxito" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "editar metadatos" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex) no es un número válido, saltando" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Fallo al crear la ruta %(path)s (permiso denegado)" -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Fallo al guardar el archivo %(file)s." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Archivo con formato %(ext)s añadido a %(book)s" @@ -1083,7 +1083,7 @@ msgstr "Lista de Libros" msgid "Show Books List" msgstr "Mostrar Lista de Libros" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/fi/LC_MESSAGES/messages.mo b/cps/translations/fi/LC_MESSAGES/messages.mo index ef6b133b5b31fd8b24d126369ba17dd3ff8864eb..d5654067eead51a1718888b4a5335f82ed15f7fb 100644 GIT binary patch delta 28 kcmaF4pYi2>#tlC#c+GT;Oce|bt&9z{4U9IkT0T(&0HYrXu>b%7 delta 28 kcmaF4pYi2>#tlC#cujPT4HOJ5t&GjJ4U9LlT0T(&0Hb9Iy8r+H diff --git a/cps/translations/fi/LC_MESSAGES/messages.po b/cps/translations/fi/LC_MESSAGES/messages.po index 68c8f391..5a04d16c 100644 --- a/cps/translations/fi/LC_MESSAGES/messages.po +++ b/cps/translations/fi/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2020-01-12 13:56+0100\n" "Last-Translator: Samuli Valavuo \n" "Language: fi\n" @@ -45,8 +45,8 @@ msgstr "" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Kirja lisätty onnistuneeksi lähetettäväksi osoitteeseen %(eReadermail)s" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Tuntematon" @@ -130,7 +130,7 @@ msgstr "" msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "" @@ -294,8 +294,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -527,122 +527,122 @@ msgstr "ei asennettu" msgid "Execution permissions missing" msgstr "" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Ei mitään" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Virhe eKirjan avaamisessa. Tiedostoa ei ole tai se ei ole saatavilla:" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "Metadata päivitetty onnistuneesti" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "Tiedosto %(file)s tallennettu" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Lähteen tai kohteen tiedostomuoto puuttuu" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Kirja lisätty muutosjonoon muotoon %(book_format)s" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Kirjan muunnoksessa tapahtui virhe: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s ei ole kelvollinen kieli" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Tiedostopääte '%(ext)s' ei ole sallittujen palvelimelle ladattavien listalla" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "Ladattavalla tiedostolla on oltava tiedostopääte" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "muokkaa metadataa" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Polun %(path)s luonti epäonnistui (Ei oikeutta)." -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Tiedoston %(file)s tallennus epäonnistui." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Tiedostoformaatti %(ext)s lisätty %(book)s" @@ -1074,7 +1074,7 @@ msgstr "" msgid "Show Books List" msgstr "" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/fr/LC_MESSAGES/messages.mo b/cps/translations/fr/LC_MESSAGES/messages.mo index b8e127b16e1bea8d198b0ff238ae5521002a3925..58da2b5a671ea7e26db754546ee72a62df18023f 100644 GIT binary patch delta 28 jcmbQ%%{;A}dBcwkUNc=IQw2jqD`Nv~1EbBXnG<6Gi`EG0 delta 28 jcmbQ%%{;A}dBcwkUK3qo0|i4%D`RtQ1LMuCnG<6Gj2sB` diff --git a/cps/translations/fr/LC_MESSAGES/messages.po b/cps/translations/fr/LC_MESSAGES/messages.po index 38cbb462..3a1e0fe3 100644 --- a/cps/translations/fr/LC_MESSAGES/messages.po +++ b/cps/translations/fr/LC_MESSAGES/messages.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2020-06-07 06:47+0200\n" "Last-Translator: \n" "Language: fr\n" @@ -60,8 +60,8 @@ msgstr "Commande inconnue" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Teste les courriels en file d’attente pour l’envoi à %(email)s, veuillez vérifier le résultat des tâches" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Inconnu" @@ -145,7 +145,7 @@ msgstr "Aucun paramètre régional valide n’est donné" msgid "No Valid Book Language Given" msgstr "Aucune langue de livre valide donnée" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "Paramètre non trouvé" @@ -310,8 +310,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -545,122 +545,122 @@ msgstr "non installé" msgid "Execution permissions missing" msgstr "Les permissions d'exécutions manquantes" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, fuzzy, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "La colonne personnalisée No.%(column)d n'existe pas dans la base de données calibre" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Aucun" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Erreur d'ouverture du livre numérique. Le fichier n'existe pas ou n'est pas accessible" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "Les identificateurs ne sont pas sensibles à la casse, écrasant l’ancien identificateur" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "Les métadonnées ont bien été mises à jour" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "Le fichier %(file)s a été téléchargé" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Le format de conversion de la source ou de la destination est manquant" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Le livre a été mis avec succès en file de traitement pour conversion vers %(book_format)s" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Une erreur est survenue au cours de la conversion du livre : %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Le fichier téléchargé existe probablement dans la librairie, veuillez le modifier avant de le télécharger de nouveau: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s n'est pas une langue valide" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "L’extension de fichier '%(ext)s' n’est pas autorisée pour être déposée sur ce serveur" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "Pour être déposé le fichier doit avoir une extension" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Le fichier %(filename)s ne peut pas être sauvegardé dans le répertoire temporaire" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Impossible de déplacer le fichier de couverture %(file)s: %(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "Le format du livre a été supprimé avec succès" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "Le livre a été supprimé avec succès" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "Vous n’avez par les permissions pour supprimer les livres" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "modifier les métadonnées" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s n’est pas un nombre valide, ignoré" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Impossible de créer le chemin %(path)s (Permission refusée)." -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Échec de la sauvegarde du fichier %(file)s." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Le format de fichier %(ext)s a été ajouté à %(book)s" @@ -1095,7 +1095,7 @@ msgstr "Liste des livres" msgid "Show Books List" msgstr "Montrer la liste des livres" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/gl/LC_MESSAGES/messages.mo b/cps/translations/gl/LC_MESSAGES/messages.mo index 1c5582e75593e19cabee2698c10d2a0f59eef1d2..81a94e4306724705ba6e7d2a9569fef16e0d1d3d 100644 GIT binary patch delta 28 jcmeynnfdQ#<_+~#yk@#arV56JR>lU}21c8EstV%)qOJ-Y delta 28 jcmeynnfdQ#<_+~#ye7KF1`39jR>tPq2F9CvstV%)qVx(T diff --git a/cps/translations/gl/LC_MESSAGES/messages.po b/cps/translations/gl/LC_MESSAGES/messages.po index ca8bb962..b51cc719 100644 --- a/cps/translations/gl/LC_MESSAGES/messages.po +++ b/cps/translations/gl/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2022-08-11 16:46+0200\n" "Last-Translator: pollitor \n" "Language: gl\n" @@ -43,8 +43,8 @@ msgstr "Orde descoñecida" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Posto en cola un correo electrónico de proba enviado a %(email)s, por favor, comproba o resultado nas Tarefas" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Descoñecido" @@ -127,7 +127,7 @@ msgstr "Non hai unha localización válida" msgid "No Valid Book Language Given" msgstr "Non se indicou unha lingua válida para o libro" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "Parámetro non atopado" @@ -287,8 +287,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -517,122 +517,122 @@ msgstr "non instalado" msgid "Execution permissions missing" msgstr "Faltan permisos de execución" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "Columna personalizada No.%(column)d non existe na base de datos calibre" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Ningún" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "oh, oh, o libro seleccionado non está disponible. O arquivo non existe ou non está accesible" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "O usuario non ten permisos para subir a cuberta" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "Os identificadores non distinguen entre maiúsculas e minúsculas, sobrescribindo o identificador antigo" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "Metadatos actualizados con éxito" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "Erro editando libro: {}" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "O ficheiro %(file)s subiuse" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Falta a fonte ou o formato de destino para a conversión" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Libro posto na cola para a súa conversión a %(book_format)s" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Houbo un erro ao convertir este libro: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "O libro cargado probablemente existe na biblioteca, considera cambialo antes de subilo outra vez: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s non é unha lingua válida" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Non se permite subir arquivos coa extensión '%(ext)s' a este servidor" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "O arquivo que se vai cargar debe ter unha extensión" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "El archivo %(filename)s non puido gravarse no directorio temporal (Temp Dir)" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Fallo ao mover o arquivo de cuberta %(file)s: %(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "Formato de libro eliminado con éxito" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "Libro eliminado con éxito" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "Vostede non ten permisos para borrar libros" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "editar metadatos" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s non é un número válido, saltando" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "O usuario non ten permisos para cargar formatos de ficheiro adicionais" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Fallo ao crear a ruta %(path)s (permiso denegado)" -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Fallo ao gardar o arquivo %(file)s." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Arquivo con formato %(ext)s engadido a %(book)s" @@ -1064,7 +1064,7 @@ msgstr "Lista de libros" msgid "Show Books List" msgstr "Mostrar lista de libros" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/hu/LC_MESSAGES/messages.mo b/cps/translations/hu/LC_MESSAGES/messages.mo index 3833ff50730b98c60cde2996ef303b1419e2f977..745f7e7dfb74ac777838730a7a47f6d37553fbcc 100644 GIT binary patch delta 28 kcmeydp7FlU}21c8u4ezP}0FQnM#Q*>R delta 28 kcmeydp7FtPq2F9DE4ezP}0FT57&j0`b diff --git a/cps/translations/hu/LC_MESSAGES/messages.po b/cps/translations/hu/LC_MESSAGES/messages.po index e540cec4..6ab684f4 100644 --- a/cps/translations/hu/LC_MESSAGES/messages.po +++ b/cps/translations/hu/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2019-04-06 23:36+0200\n" "Last-Translator: \n" "Language: hu\n" @@ -44,8 +44,8 @@ msgstr "" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Ismeretlen" @@ -129,7 +129,7 @@ msgstr "" msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "" @@ -293,8 +293,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -526,122 +526,122 @@ msgstr "nincs telepítve" msgid "Execution permissions missing" msgstr "" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Nincs" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Hiba történt az e-könyv megnyitásakor. A fájl nem létezik vagy nem érhető el:" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "A metaadatok sikeresen frissültek" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Az átalakításhoz hiányzik a forrás- vagy a célformátum!" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "A könyv sikeresen átalakításra lett jelölve a következő formátumra: %(book_format)s" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Hiba történt a könyv átalakításakor: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "A(z) %(langname)s nem érvényes nyelv" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "A(z) \"%(ext)s\" kiterjesztésű fájlok feltöltése nincs engedélyezve ezen a szerveren." -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "A feltöltendő fájlnak kiterjesztéssel kell rendelkeznie!" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "Metaadatok szerkesztése" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Nem sikerült létrehozni az elérési utat (engedély megtagadva): %(path)s." -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Nem sikerült elmenteni a %(file)s fájlt." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "A(z) %(ext)s fájlformátum hozzáadva a könyvhez: %(book)s." @@ -1073,7 +1073,7 @@ msgstr "" msgid "Show Books List" msgstr "" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/id/LC_MESSAGES/messages.mo b/cps/translations/id/LC_MESSAGES/messages.mo index 748cfaf286ad360d0eb7cfcba0bda9ebdaff12b6..cefb6de3459af90a8c51478ba970a77a3ec63b9a 100644 GIT binary patch delta 28 jcmZo&#N4`wdBeFXUNc=IQw2jqD`Nv~1EbBitF*!Zjgtvj delta 28 jcmZo&#N4`wdBeFXUK3qo0|i4%D`RtQ1LMuNtF*!ZjoAre diff --git a/cps/translations/id/LC_MESSAGES/messages.po b/cps/translations/id/LC_MESSAGES/messages.po index a97bed32..3380b28c 100644 --- a/cps/translations/id/LC_MESSAGES/messages.po +++ b/cps/translations/id/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2023-01-21 10:00+0700\n" "Last-Translator: Arief Hidayat\n" "Language: id\n" @@ -45,8 +45,8 @@ msgstr "Perintah tidak diketahui" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Uji email diantrean untuk dikirim ke %(email), harap periksa Tasks untuk hasilnya" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Tidak diketahui" @@ -129,7 +129,7 @@ msgstr "Tidak Ada Lokal yang Valid Diberikan" msgid "No Valid Book Language Given" msgstr "Tidak Ada Bahasa Buku yang Valid Diberikan" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "Parameter tidak ditemukan" @@ -289,8 +289,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -519,122 +519,122 @@ msgstr "belum dipasang" msgid "Execution permissions missing" msgstr "Izin eksekusi hilang" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "Kolom Kustom No.%(column)d tidak ada di basis data kaliber" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Tidak ada" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Ups! Judul buku yang dipilih tidak tersedia. Berkas tidak ada atau tidak dapat diakses" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "Pengguna tidak berhak mengganti sampul" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "IDは大文字小文字を区別しません。元のIDを上書きします" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "Metadata berhasil diperbarui" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "Kesalahan pengeditan buku: {}" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "Berkas %(file)s telah diunggah" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Format sumber atau tujuan untuk konversi tidak ada" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Buku berhasil diantrekan untuk dikonversi ke %(book_format)s" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Terjadi kesalahan saat mengonversi buku ini: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Buku yang diunggah mungkin ada di perpustakaan, pertimbangkan untuk mengubahnya sebelum mengunggah yang baru: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "'%(langname)s' bukan bahasa yang valid" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Ekstensi berkas '%(ext)s' tidak diizinkan untuk diunggah ke server ini" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "Berkas yang akan diunggah harus memiliki ekstensi" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Berkas %(filename)s tidak dapat disimpan ke direktori temp" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Gagal Memindahkan Berkas Sampul %(file)s: %(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "Format Buku Berhasil Dihapus" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "Buku Berhasil Dihapus" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "Anda tidak memiliki izin untuk menghapus buku" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "edit metadata" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s dilewati karena bukan angka yang valid" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "Pengguna tidak memiliki izin untuk mengunggah format berkas tambahan" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Gagal membuat jalur %(path)s (Izin ditolak)." -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Gagal menyimpan berkas %(file)s." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Format berkas %(ext)s ditambahkan ke %(book)s" @@ -1067,7 +1067,7 @@ msgstr "Daftar Buku" msgid "Show Books List" msgstr "Tampilkan Daftar Buku" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/it/LC_MESSAGES/messages.mo b/cps/translations/it/LC_MESSAGES/messages.mo index 2f337e99865cae3fbd5fdcc6346507bc4f95e10d..f861bb3a180c4bb2bdfc2f1f723f5afc2dd17012 100644 GIT binary patch delta 28 kcmdn@hI!u`<_!Vuyk@#arV56JR>lU}21c7>+aKlu0G@#gO8@`> delta 28 kcmdn@hI!u`<_!Vuye7KF1`39jR>tPq2F9CX+aKlu0G`JRRR910 diff --git a/cps/translations/it/LC_MESSAGES/messages.po b/cps/translations/it/LC_MESSAGES/messages.po index 8ab8a6b5..0567aacc 100644 --- a/cps/translations/it/LC_MESSAGES/messages.po +++ b/cps/translations/it/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2023-04-18 09:04+0200\n" "Last-Translator: Massimo Pissarello \n" "Language: it\n" @@ -42,8 +42,8 @@ msgstr "Comando sconosciuto" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Tutto OK! Libri in coda per il backup dei metadati, controlla le attività per il risultato" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Sconosciuto" @@ -126,7 +126,7 @@ msgstr "Nessuna lingua valida indicata" msgid "No Valid Book Language Given" msgstr "Nessuna lingua valida per il libro" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "Parametro non trovato" @@ -286,8 +286,8 @@ msgid "Success! Gmail Account Verified." msgstr "Tutto OK! Account Gmail verificato." #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -515,122 +515,122 @@ msgstr "non installato" msgid "Execution permissions missing" msgstr "Mancano i permessi di esecuzione" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "La colonna personalizzata no.%(column)d non esiste nel database di Calibre" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Nessuna" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Il libro selezionato non è disponibile. Il file non esiste o non è accessibile" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "L'utente non ha i permessi per caricare le copertine" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "Gli identificatori non fanno distinzione tra maiuscole e minuscole, sovrascrivendo il vecchio identificatore" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "I metadati sono stati aggiornati con successo" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "Errore durante la modifica del libro: {}" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "Il file %(file)s è stato caricato" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Mancano o il formato sorgente o quello di destinazione, entrambi necessari alla conversione" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Libro accodato con successo per essere convertito in %(book_format)s" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Si è verificato un errore durante la conversione del libro: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Probabilmente il libro caricato esiste già nella libreria, cambialo prima di caricarlo nuovamente:" -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s non è una lingua valida" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Non è consentito caricare file con l'estensione '%(ext)s' su questo server" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "Il file da caricare deve avere un'estensione" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Il file %(filename)s non può essere salvato nella cartella temporanea" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Impossibile spostare il file della copertina %(file)s: %(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "Il formato del libro è stato eliminato con successo" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "Il libro è stato eliminato con successo" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "Mancano le autorizzazioni per eliminare i libri" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "modifica i metadati" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s non è un numero valido, lo salto" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "L'utente non ha i permessi per caricare formati di file aggiuntivi" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Impossibile creare il percorso %(path)s (autorizzazione negata)." -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Il salvataggio del file %(file)s non è riuscito." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Ho aggiunto il formato %(ext)s al libro %(book)s" @@ -1048,7 +1048,7 @@ msgstr "Elenco libri" msgid "Show Books List" msgstr "Mostra l'elenco dei libri" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/ja/LC_MESSAGES/messages.mo b/cps/translations/ja/LC_MESSAGES/messages.mo index 08b87aed155a94c71266307a2108ea0d2de73f5b..fe1fb265e8c6bcd32c9dee3cd237f39f37549112 100644 GIT binary patch delta 28 kcmex=mihl#<_(cmyk@#arV56JR>lU}21c9Hs%GW@0Ho~-Jpcdz delta 28 kcmex=mihl#<_(cmye7KF1`39jR>tPq2F9Dys%GW@0HreuM*si- diff --git a/cps/translations/ja/LC_MESSAGES/messages.po b/cps/translations/ja/LC_MESSAGES/messages.po index f0a76eab..0b5e07cc 100644 --- a/cps/translations/ja/LC_MESSAGES/messages.po +++ b/cps/translations/ja/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2018-02-07 02:20-0500\n" "Last-Translator: subdiox \n" "Language: ja\n" @@ -45,8 +45,8 @@ msgstr "不明なコマンド" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "%(email)s へのテストメール送信がキューに追加されました。結果を見るにはタスクを確認してください" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "不明" @@ -129,7 +129,7 @@ msgstr "有効な言語設定がありません" msgid "No Valid Book Language Given" msgstr "有効な本の言語がありません" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "パラメータが見つかりません" @@ -289,8 +289,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -519,122 +519,122 @@ msgstr "インストールされていません" msgid "Execution permissions missing" msgstr "実行権限がありません" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "カスタムカラムの%(column)d列目がcalibreのDBに存在しません" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "なし" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "選択した本は利用できません。ファイルが存在しないか、アクセスできません" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "ユーザーは表紙をアップロードする権限がありません" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "IDは大文字小文字を区別しません。元のIDを上書きします" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "メタデータを更新しました" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "本編集中のエラー: {}" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "ファイル %(file)s をアップロードしました" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "変換元の形式または変換後の形式が指定されていません" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "本の %(book_format)s への変換がキューに追加されました" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "この本の変換中にエラーが発生しました: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "アップロードした本はすでにライブラリに存在します。新しくアップロードする前に変更を加えてください: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "'%(langname)s' は有効な言語ではありません" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "ファイル拡張子 '%(ext)s' をこのサーバーにアップロードすることは許可されていません" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "アップロードするファイルには拡張子が必要です" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "ファイル %(filename)s は一時フォルダに保存できませんでした" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "表紙ファイル %(file)s の移動に失敗しました: %(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "本の形式を削除しました" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "本を削除しました" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "本を削除する権限がありません" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "メタデータを編集" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s は有効な数字ではありません。スキップします" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "新たなファイル形式をアップロードする権限がありません" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "%(path)s の作成に失敗しました (Permission denied)。" -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "ファイル %(file)s を保存できません。" -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "ファイル形式 %(ext)s が %(book)s に追加されました" @@ -1067,7 +1067,7 @@ msgstr "本の一覧" msgid "Show Books List" msgstr "本の一覧を表示" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/km/LC_MESSAGES/messages.mo b/cps/translations/km/LC_MESSAGES/messages.mo index 050448091c70acb4ab2ce4716c34599be180ecac..7efdb5868a92c7374efe0706c0c2a702afc6e6ac 100644 GIT binary patch delta 28 jcmeypmhtym#tpTKyk@#arV56JR>lU}21c8^6bnrOm{kcV delta 28 jcmeypmhtym#tpTKye7KF1`39jR>tPq2F9Da6bnrOn41YQ diff --git a/cps/translations/km/LC_MESSAGES/messages.po b/cps/translations/km/LC_MESSAGES/messages.po index 8aeffbe1..69e3ff13 100644 --- a/cps/translations/km/LC_MESSAGES/messages.po +++ b/cps/translations/km/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2018-08-27 17:06+0700\n" "Last-Translator: \n" "Language: km_KH\n" @@ -46,8 +46,8 @@ msgstr "" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "សៀវភៅបានចូលជួរសម្រាប់ផ្ញើទៅ %(eReadermail)s ដោយជោគជ័យ" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "មិនដឹង" @@ -131,7 +131,7 @@ msgstr "" msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "" @@ -295,8 +295,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -527,122 +527,122 @@ msgstr "មិនបានតម្លើង" msgid "Execution permissions missing" msgstr "" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "គ្មាន" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "ឯកសារប្រភេទ '%(ext)s' មិនត្រូវបានអនុញ្ញាតឲអាប់ឡូដទៅម៉ាស៊ីន server នេះទេ" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "ឯកសារដែលត្រូវអាប់ឡូដត្រូវមានកន្ទុយឯកសារ" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "កែប្រែទិន្នន័យមេតា" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "មិនអាចបង្កើតទីតាំង %(path)s (ពុំមានសិទ្ធិ)។" -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "មិនអាចរក្សាទុកឯកសារ %(file)s ។" -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "ឯកសារទម្រង់ %(ext)s ត្រូវបានបន្ថែមទៅ %(book)s" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Show Books List" msgstr "" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/ko/LC_MESSAGES/messages.mo b/cps/translations/ko/LC_MESSAGES/messages.mo index ca7a68ee167dc3e3fc1617b4f75918bbb6782189..81efe794b107364e3a15dec613195d01f85c5cb0 100644 GIT binary patch delta 28 jcmcc7!+fKMdBgt#UNc=IQw2jqD`Nv~1EbA6g+8GGnu!TQ delta 28 jcmcc7!+fKMdBgt#UK3qo0|i4%D`RtQ1LMs+g+8GGn$HPL diff --git a/cps/translations/ko/LC_MESSAGES/messages.po b/cps/translations/ko/LC_MESSAGES/messages.po index 073071d5..d23634f5 100644 --- a/cps/translations/ko/LC_MESSAGES/messages.po +++ b/cps/translations/ko/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/calibre-web\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2022-01-10 11:30+0900\n" "Last-Translator: 내맘대로의 EPUBGUIDE.NET \n" "Language: ko\n" @@ -44,8 +44,8 @@ msgstr "알 수 없는 명령" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "%(email)s에 테스트를 위한 이메일을 보냄. 결과 확인 필요" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "알 수 없음" @@ -128,7 +128,7 @@ msgstr "유효한 로케일이 아님" msgid "No Valid Book Language Given" msgstr "제공된 책의 언어가 유효하지 않음" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "매개변수를 찾을 수 없음" @@ -288,8 +288,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -518,122 +518,122 @@ msgstr "설치되지 않음" msgid "Execution permissions missing" msgstr "실행 권한 누락" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, fuzzy, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "사용자 정의 열 번호 %(column)d이(가) calibre 데이터베이스에 없습니다" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "None" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "선택한 책 제목을 사용할 수 없습니다. 파일이 존재하지 않거나 액세스할 수 없습니다" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "식별자는 대소문자를 구분하지 않으며 이전 식별자를 덮어씁니다" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "메타데이터가 성공적으로 업데이트되었습니다" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "파일 %(file)s 업로드됨" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "변환을 위한 소스 또는 대상 형식이 누락되었습니다" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "책이 %(book_format)s(으)로 변환하기 위해 대기 중입니다" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "이 책을 변환하는 동안 오류가 발생했습니다: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "업로드한 책이 라이브러리에 있을 수 있음. 새로 업로드하기 전에 확인 필요: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "'%(langname)s'은(는) 유효한 언어가 아닙니다" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "파일 확장자 '%(ext)s'은(는) 이 서버에 업로드할 수 없습니다" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "업로드할 파일에는 확장자가 있어야 합니다" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "파일 %(filename)s을(를) 임시 디렉토리에 저장할 수 없습니다" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "표지 파일%(file)s를 이동하지 못했습니다.:%(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "책 형식이 성공적으로 삭제되었습니다" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "책이 성공적으로 삭제되었습니다" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "메타데이터 편집" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s은(는) 유효한 숫자가 아닙니다. 건너뜁니다" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "%(path)s 경로를 생성하지 못했습니다(권한이 없음)." -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "%(file)s 파일을 저장하지 못했습니다." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "파일 형식 %(ext)s이(가) %(book)s에 추가되었습니다" @@ -1068,7 +1068,7 @@ msgstr "책 목록" msgid "Show Books List" msgstr "책 목록 보기" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/nl/LC_MESSAGES/messages.mo b/cps/translations/nl/LC_MESSAGES/messages.mo index 2dd97a926833b32c6b8b29bb2391463ff3e25b93..07cb826f57819301b26fb7139c3c6f3f356d34d2 100644 GIT binary patch delta 28 jcmbR9lxfaWrVU)_yk@#arV56JR>lU}21c93(_6g(i%tPq2F9Dk(_6g(i\n" "Language: nl\n" @@ -46,8 +46,8 @@ msgstr "Onbekende opdracht" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Test E-Mail wordt verzonden naar %(email)s, controleer de taken voor het resultaat" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Onbekend" @@ -131,7 +131,7 @@ msgstr "Geen geldige locale is opgegeven" msgid "No Valid Book Language Given" msgstr "Geen geldige boek taal is opgegeven" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "Parameter is niet gevonden" @@ -295,8 +295,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -530,122 +530,122 @@ msgstr "niet geïnstalleerd" msgid "Execution permissions missing" msgstr "Kan programma niet uitvoeren" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, fuzzy, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "Aangepaste kolom Nr.%(column)d bestaat niet in de Calibre Database" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Geen" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Oeps! Geselecteerd boek is niet beschikbaar. Bestand bestaat niet of is niet toegankelijk" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "Identificatoren zijn niet hoofdlettergevoelig, overschrijf huidige identificatoren" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "De metagegevens zijn bijgewerkt" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "Bestand %(file)s geüpload" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Bron- of doelformaat ontbreekt voor conversie" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Het boek is in de wachtrij geplaatst voor conversie naar %(book_format)s" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Er is een fout opgetreden bij het converteren van dit boek: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Geüpload boek staat mogelijk al in de bibliotheek, controleer alvorens door te gaan: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s is geen geldige taal" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "De bestandsextensie '%(ext)s' is niet toegestaan op deze server" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "Het te uploaden bestand moet voorzien zijn van een extensie" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Bestand %(filename)s kon niet opgeslagen worden in de tijdelijke map" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Omslag %(file)s niet verplaatst: %(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "Het boekformaat is verwijderd" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "Het boek is verwijderd" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "metagegevens bewerken" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s is geen geldig nummer, sla het over" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Kan de locatie '%(path)s' niet aanmaken (niet gemachtigd)." -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Kan %(file)s niet opslaan." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Bestandsformaat %(ext)s toegevoegd aan %(book)s" @@ -1080,7 +1080,7 @@ msgstr "Boekenlijst" msgid "Show Books List" msgstr "Boekenlijst tonen" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/no/LC_MESSAGES/messages.mo b/cps/translations/no/LC_MESSAGES/messages.mo index 03d1fec1535cd61c0e85dab81b9adeae746d613a..868c7500e02e9cda1abef56e7cf42cf64482ada0 100644 GIT binary patch delta 28 jcmex8lj-+NrVTkkyk@#arV56JR>lU}21c7JgPN=Wmv0GJ delta 28 jcmex8lj-+NrVTkkye7KF1`39jR>tPq2F9B!gPN=Wm$eCE diff --git a/cps/translations/no/LC_MESSAGES/messages.po b/cps/translations/no/LC_MESSAGES/messages.po index 4db030d2..671fa5a4 100644 --- a/cps/translations/no/LC_MESSAGES/messages.po +++ b/cps/translations/no/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2023-01-06 11:00+0000\n" "Last-Translator: Vegard Fladby \n" "Language: no\n" @@ -45,8 +45,8 @@ msgstr "Ukjent kommando" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Test e-post i kø for sending til %(email)s, sjekk Oppgaver for resultat" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Ukjent" @@ -129,7 +129,7 @@ msgstr "Ingen gyldig lokalitet gitt" msgid "No Valid Book Language Given" msgstr "Ikke oppgitt gyldig bokspråk" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "Parameter ikke funnet" @@ -290,8 +290,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, fuzzy, python-format @@ -525,123 +525,123 @@ msgstr "ikke installert" msgid "Execution permissions missing" msgstr "Utførelsestillatelser mangler" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "Egendefinert kolonnenr.%(column)d finnes ikke i caliber-databasen" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Ingen" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 #, fuzzy msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Oops! Den valgte boktittelen er utilgjengelig. Filen eksisterer ikke eller er ikke tilgjengelig" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "Brukeren har ingen rettigheter til å laste opp cover" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "Identifikatorer skiller ikke mellom store og små bokstaver, overskriver gammel identifikator" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "Metadata ble oppdatert" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "Feil ved redigering av bok: {}" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "Fil %(file)s lastet opp" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Kilde- eller målformat for konvertering mangler" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Boken ble satt i kø for konvertering til %(book_format)s" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Det oppsto en feil ved konvertering av denne boken: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Opplastet bok finnes sannsynligvis i biblioteket, vurder å endre før du laster opp ny: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "'%(langname)s' er ikke et gyldig språk" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Filtypen «%(ext)s» er ikke tillatt å lastes opp til denne serveren" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "Filen som skal lastes opp må ha en utvidelse" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Filen %(filename)s kunne ikke lagres i midlertidig dir" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Kunne ikke flytte omslagsfil %(file)s: %(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "Bokformatet er slettet" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "Boken ble slettet" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "Du mangler tillatelser til å slette bøker" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "redigere metadata" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s er ikke et gyldig tall, hopper over" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "Brukeren har ingen rettigheter til å laste opp flere filformater" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Kunne ikke opprette banen %(path)s (Tillatelse nektet)." -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Kunne ikke lagre filen %(file)s." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Filformat %(ext)s lagt til %(book)s" @@ -1074,7 +1074,7 @@ msgstr "Bøker Liste" msgid "Show Books List" msgstr "Vis bokliste" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/pl/LC_MESSAGES/messages.mo b/cps/translations/pl/LC_MESSAGES/messages.mo index 10ba6f1e994ce42efba725469cf28abd700791ed..da92f6d25d001c359e82662c2478f09f0a8e5f9d 100644 GIT binary patch delta 28 kcmaF*k?HA2rVV@3dChc\n" "Language: pl\n" @@ -47,8 +47,8 @@ msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Testowy e-mail czeka w kolejce do wysłania do %(email)s, sprawdź zadania, aby uzyskać wynik" # ??? -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Nieznany" @@ -132,7 +132,7 @@ msgstr "Nie podano prawidłowej lokalizacji" msgid "No Valid Book Language Given" msgstr "Nie podano obowiązującego języka książki" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "Nie znaleziono parametru" @@ -295,8 +295,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -531,122 +531,122 @@ msgstr "nie zainstalowane" msgid "Execution permissions missing" msgstr "Brak uprawnienia do wykonywania pliku" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, fuzzy, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "Niestandardowa kolumna No.%(column)d nie istnieje w bazie calibre" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Brak" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Błąd otwierania e-booka. Plik nie istnieje lub jest niedostępny" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "W identyfikatorach nie jest rozróżniana wielkość liter, nadpisywanie starego identyfikatora" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "Metadane zostały pomyślnie zaktualizowane" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "Wysłano plik %(file)s" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Brak formatu źródłowego lub docelowego do konwersji" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Książka została pomyślnie umieszczona w zadaniach do konwersji %(book_format)s" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Podczas konwersji książki wystąpił błąd: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Wysłana książka prawdopodobnie istnieje w bibliotece, rozważ zmianę przed przesłaniem nowej: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s nie jest prawidłowym językiem" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Rozszerzenie pliku '%(ext)s' nie jest dozwolone do wysłania na ten serwer" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "Plik do wysłania musi mieć rozszerzenie" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Nie można zapisać pliku %(filename)s w katalogu tymczasowym" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Nie udało się przenieść pliku okładki %(file)s:%(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "Plik książki w wybranym formacie został usunięty" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "Książka została usunięta" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "edytuj metadane" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s nie jest poprawną liczbą, pomijanie" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Nie udało się utworzyć łącza %(path)s (Odmowa dostępu)." -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Nie można zapisać pliku %(file)s." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Format pliku %(ext)s dodany do %(book)s" @@ -1084,7 +1084,7 @@ msgstr "Lista książek" msgid "Show Books List" msgstr "Pokaż listę książek" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/pt_BR/LC_MESSAGES/messages.mo b/cps/translations/pt_BR/LC_MESSAGES/messages.mo index feebce8534a939b0a0e00da5decaa55bb9034d05..0f9c471f6f04bcc790b95706ad4670ac5f854924 100644 GIT binary patch delta 28 jcmdn7m3hZj<_%6&yk@#arV56JR>lU}21c9xt1=S+j>icV delta 28 jcmdn7m3hZj<_%6&ye7KF1`39jR>tPq2F9EHt1=S+j|~YQ diff --git a/cps/translations/pt_BR/LC_MESSAGES/messages.po b/cps/translations/pt_BR/LC_MESSAGES/messages.po index 2edd5224..1bfe783b 100644 --- a/cps/translations/pt_BR/LC_MESSAGES/messages.po +++ b/cps/translations/pt_BR/LC_MESSAGES/messages.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: br\n" @@ -42,8 +42,8 @@ msgstr "Comando desconhecido" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "E-mail de teste enfileirado para envio para %(email)s, verifique o resultado em Tarefas" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Desconhecido" @@ -126,7 +126,7 @@ msgstr "Nenhum Idioma Válido Fornecido" msgid "No Valid Book Language Given" msgstr "Nenhum Idioma do Livro Válido Fornecido" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "Parametro não encontrado" @@ -286,8 +286,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -516,122 +516,122 @@ msgstr "não instalado" msgid "Execution permissions missing" msgstr "Faltam as permissões de execução" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "A Coluna Personalizada No.%(column)d não existe no banco de dados do calibre" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Nenhum" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Oops! O Livro selecionado não está disponível. O arquivo não existe ou não é acessível" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "Usuário não tem permissão para fazer upload da capa" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "Os identificadores não diferenciam maiúsculas de minúsculas, substituindo o identificador antigo" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "Metadados atualizados com sucesso" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "Erro ao editar o livro: {}" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "Arquivo %(file)s enviado" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Formato de origem ou destino para conversão ausente" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Livro enfileirado com sucesso para conversão em %(book_format)s" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Ocorreu um erro ao converter este livro: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "O livro carregado provavelmente existe na biblioteca, considere alterar antes de carregar novo: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s não é um idioma válido" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "A extensão de arquivo '%(ext)s' não pode ser enviada para este servidor" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "O arquivo a ser carregado deve ter uma extensão" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "O arquivo %(filename)s não pôde ser salvo no diretório temporário" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Falha ao mover arquivo de capa %(file)s: %(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "Formato do Livro Apagado com Sucesso" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "Livro Apagado com Sucesso" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "Você não tem permissão para apagar livros" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "editar metadados" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s não é um número válido, ignorando" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "Usuário não tem direitos para fazer upload de formatos de arquivo adicionais" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Falha ao criar o caminho %(path)s (Permission denied)." -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Falha ao armazenar o arquivo %(file)s." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Formato de arquivo %(ext)s adicionado a %(book)s" @@ -1064,7 +1064,7 @@ msgstr "Lista de Livros" msgid "Show Books List" msgstr "Mostrar Lista de Livros" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/ru/LC_MESSAGES/messages.mo b/cps/translations/ru/LC_MESSAGES/messages.mo index e137ee09e9b89e15084dd2c02b4660968cc58a46..1fd9ddece7b9586eccb8cb615daddfa8e7d0a0e0 100644 GIT binary patch delta 28 kcmX?bp6S4OrVZacdChclU}21c7D(-yb`0FR&u>i_@% delta 28 kcmdman`!55rVTu4ye7KF1`39jR>tPq2F9Bu(-yb`0FUMf^#A|> diff --git a/cps/translations/sv/LC_MESSAGES/messages.po b/cps/translations/sv/LC_MESSAGES/messages.po index 49629984..f146fcec 100644 --- a/cps/translations/sv/LC_MESSAGES/messages.po +++ b/cps/translations/sv/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2021-05-13 11:00+0000\n" "Last-Translator: Jonatan Nyberg \n" "Language: sv\n" @@ -45,8 +45,8 @@ msgstr "Okänt kommando" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Testa e-post i kö för att skicka till %(email)s, vänligen kontrollera Uppgifter för resultat" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Okänd" @@ -129,7 +129,7 @@ msgstr "Inget giltigt språk anges" msgid "No Valid Book Language Given" msgstr "Inget giltigt bokspråk anges" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "Parameter hittades inte" @@ -293,8 +293,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -527,122 +527,122 @@ msgstr "inte installerad" msgid "Execution permissions missing" msgstr "Körningstillstånd saknas" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, fuzzy, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "Anpassad kolumn n.%(column)d finns inte i calibre-databasen" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Ingen" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Hoppsan! Vald boktitel är inte tillgänglig. Filen finns inte eller är inte tillgänglig" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "Identifierare är inte skiftlägeskänsliga, skriver över gammal identifierare" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "Metadata uppdaterades" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "Filen %(file)s uppladdad" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Källa eller målformat för konvertering saknas" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Boken är i kö för konvertering till %(book_format)s" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Det gick inte att konvertera den här boken: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Uppladdad bok finns förmodligen i biblioteket, överväg att ändra innan du laddar upp nya: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s är inte ett giltigt språk" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Filändelsen '%(ext)s' får inte laddas upp till den här servern" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "Filen som ska laddas upp måste ha en ändelse" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Filen %(filename)s kunde inte sparas i temp dir" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Det gick inte att flytta omslagsfil %(file)s: %(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "Bokformat har tagits bort" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "Boken har tagits bort" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "redigera metadata" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Det gick inte att skapa sökväg %(path)s (behörighet nekad)." -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Det gick inte att lagra filen %(file)s." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Filformatet %(ext)s lades till %(book)s" @@ -1077,7 +1077,7 @@ msgstr "Boklista" msgid "Show Books List" msgstr "Visa boklista" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/tr/LC_MESSAGES/messages.mo b/cps/translations/tr/LC_MESSAGES/messages.mo index 0dec09253d2c3c885a3adf1ac40c79d8fade2777..e6962d95e73d900c1e52d25d6f2ee4a903af3daa 100644 GIT binary patch delta 28 jcmdlsmvP%%#toW!yk@#arV56JR>lU}21c9B^coZZf7}P^ delta 28 jcmdlsmvP%%#toW!ye7KF1`39jR>tPq2F9Ds^coZZfFcL< diff --git a/cps/translations/tr/LC_MESSAGES/messages.po b/cps/translations/tr/LC_MESSAGES/messages.po index 47e48e23..5308c6eb 100644 --- a/cps/translations/tr/LC_MESSAGES/messages.po +++ b/cps/translations/tr/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2020-04-23 22:47+0300\n" "Last-Translator: iz \n" "Language: tr\n" @@ -45,8 +45,8 @@ msgstr "" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "%(eReadermail)s'a gönderilmek üzere başarıyla sıraya alındı" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Bilinmeyen" @@ -129,7 +129,7 @@ msgstr "" msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "" @@ -290,8 +290,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -524,122 +524,122 @@ msgstr "yüklü değil" msgid "Execution permissions missing" msgstr "" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Hiçbiri" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "Metaveri başarıyla güncellendi" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "%(file)s dosyası yüklendi" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Dönüştürme için kaynak ya da hedef biçimi eksik" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "eKitap %(book_format)s formatlarına dönüştürülmek üzere başarıyla sıraya alındı" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Bu eKitabı dönüştürürken bir hata oluştu: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Yüklenen eKitap muhtemelen kitaplıkta zaten var. Yenisini yüklemeden değiştirmeyi düşünün: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s geçerli bir dil değil" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "'%(ext)s' uzantılı dosyaların bu sunucuya yüklenmesine izin verilmiyor" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "Yüklenecek dosyanın mutlaka bir uzantısı olması gerekli" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "%(filename)s dosyası geçici dizine kaydedilemedi" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "metaveri düzenle" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "%(path)s dizini oluşturulamadı. (İzin reddedildi)" -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "%(file)s dosyası kaydedilemedi." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "%(book)s kitabına %(ext)s dosya biçimi eklendi" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Show Books List" msgstr "" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/uk/LC_MESSAGES/messages.mo b/cps/translations/uk/LC_MESSAGES/messages.mo index 6108e073045dd5d3cae899b149c35a752c3a749f..5d097244412685c88a729f692db7ec6c41500800 100644 GIT binary patch delta 28 jcmX@Pp7G>*#tnX&yk@#arV56JR>lU}21c8sHS_cUiggHZ delta 28 jcmX@Pp7G>*#tnX&ye7KF1`39jR>tPq2F9DCHS_cUin|DU diff --git a/cps/translations/uk/LC_MESSAGES/messages.po b/cps/translations/uk/LC_MESSAGES/messages.po index 27e2f167..4e997182 100644 --- a/cps/translations/uk/LC_MESSAGES/messages.po +++ b/cps/translations/uk/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/calibre-web\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2017-04-30 00:47+0300\n" "Last-Translator: ABIS Team \n" "Language: uk\n" @@ -43,8 +43,8 @@ msgstr "Невідома команда" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Невідомий" @@ -128,7 +128,7 @@ msgstr "" msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "" @@ -292,8 +292,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -524,122 +524,122 @@ msgstr "не встановлено" msgid "Execution permissions missing" msgstr "" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "Ні" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Неможливо відкрити книгу. Файл не існує або немає доступу." -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "Завантажувальний файл повинен мати розширення" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "змінити метадані" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "" -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "" -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "" @@ -1068,7 +1068,7 @@ msgstr "Список книжок" msgid "Show Books List" msgstr "" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/vi/LC_MESSAGES/messages.mo b/cps/translations/vi/LC_MESSAGES/messages.mo index 02c4525a3be7fd57827e479315587b1d043bd26c..98bc1b6f0066eef8d15024c07caa01e21afaa0c9 100644 GIT binary patch delta 28 kcmX@{jPb-X#tpmddChc\n" "Language: vi\n" @@ -41,8 +41,8 @@ msgstr "Lệnh không tồn tại" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Không rõ" @@ -125,7 +125,7 @@ msgstr "Địa chỉ cung cấp không hợp lệ" msgid "No Valid Book Language Given" msgstr "Ngôn ngữ sách không hợp lệ" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "Tham số không tồn tại" @@ -285,8 +285,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -515,122 +515,122 @@ msgstr "chưa cài đặt" msgid "Execution permissions missing" msgstr "" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "None" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "Metadata đã được cập nhật thành công" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "File %(file)s đã được tải lên" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "Thiếu định dạng nguồn hoặc đích để convert" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Có lỗi xảy ra khi chuyển đổi định dạng cho sach: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s không phải là ngôn ngữ hợp lệ" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "" -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "Lưu file thất bại %(file)s." -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "" @@ -1063,7 +1063,7 @@ msgstr "Danh sách sách" msgid "Show Books List" msgstr "Hiển thị danh sách sách" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.mo b/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.mo index b9d968157509c6475102da848f5ce50c121d30ea..d5c442eb3cd05d5f1d94efb22795f6ed917b3baa 100644 GIT binary patch delta 28 jcmeyif%)48<_%`;yk@#arV56JR>lU}21c8m+l>POnj#5A delta 28 jcmeyif%)48<_%`;ye7KF1`39jR>tPq2F9D6+l>POnrI15 diff --git a/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.po b/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.po index 81d85445..833ec1bc 100644 --- a/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.po +++ b/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: 2020-09-27 22:18+0800\n" "Last-Translator: xlivevil \n" "Language: zh_CN\n" @@ -42,8 +42,8 @@ msgstr "未知命令" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "成功!书籍已排队进行元数据备份,请检查任务列表以获取结果" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "未知" @@ -126,7 +126,7 @@ msgstr "无可用本地化" msgid "No Valid Book Language Given" msgstr "无有效书籍语言" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "参数未找到" @@ -286,8 +286,8 @@ msgid "Success! Gmail Account Verified." msgstr "Gmail 账户验证成功" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -515,122 +515,122 @@ msgstr "未安装" msgid "Execution permissions missing" msgstr "缺少执行权限" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "自定义列号:%(column)d 在 Calibre 数据库中不存在" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "无" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "糟糕!选择书名无法打开。文件不存在或者文件不可访问" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "用户没有权限上传封面" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "标识符不区分大小写,覆盖旧标识符" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "已成功更新元数据" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "编辑书籍时出错: {}" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "文件 %(file)s 已上传" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "转换的源格式或目的格式缺失" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "书籍已经被成功加入 %(book_format)s 格式转换队列" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "转换此书籍时出现错误: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "上传的书籍可能已经存在,建议修改后重新上传: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "'%(langname)s' 不是一种有效语言" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "不能上传文件扩展名为“%(ext)s”的文件到此服务器" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "要上传的文件必须具有扩展名" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "文件 %(filename)s 无法保存到临时目录" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "移动封面文件失败 %(file)s:%(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "书籍的此格式副本已成功删除" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "书籍已成功删除" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "您没有删除书籍的权限" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "编辑元数据" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s 不是一个有效的数值,忽略" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "用户没有权限上传其他文件格式" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "创建路径 %(path)s 失败 (权限不足)" -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "保存文件 %(file)s 失败" -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "已添加 %(ext)s 格式到 %(book)s" @@ -1048,7 +1048,7 @@ msgstr "书籍列表" msgid "Show Books List" msgstr "显示书籍列表" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/cps/translations/zh_Hant_TW/LC_MESSAGES/messages.mo b/cps/translations/zh_Hant_TW/LC_MESSAGES/messages.mo index 5a06b4c51529684d2c5ff155bea4d2aced6570e5..ea17467266648496f91e7b2180b64cf162c52c38 100644 GIT binary patch delta 28 kcmdmgi)sHYrVY\n" "Language: zh_TW\n" @@ -45,8 +45,8 @@ msgstr "未知命令" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "發送給%(email)s的測試郵件已進入隊列。請檢查任務結果" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "未知" @@ -129,7 +129,7 @@ msgstr "無可用本地化" msgid "No Valid Book Language Given" msgstr "無有效書籍語言" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "參數未找到" @@ -289,8 +289,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -521,122 +521,122 @@ msgstr "未安裝" msgid "Execution permissions missing" msgstr "缺少執行權限" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, fuzzy, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "自定義列號:%(column)d在Calibre數據庫中不存在" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "無" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "糟糕!選擇書名無法打開。文件不存在或者文件不可訪問" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "標識符不區分大小寫,覆蓋舊標識符" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "已成功更新元數據" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "文件 %(file)s 已上傳" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "轉換的來源或目的格式不存在" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "書籍已經被成功加入到 %(book_format)s 格式轉換隊列" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "轉換此書籍時出現錯誤: %(res)s" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "上傳的書籍可能已經存在,建議修改後重新上傳: " -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s 不是一種有效語言" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "不能上傳文件附檔名為“%(ext)s”的文件到此服務器" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "要上傳的文件必須具有附檔名" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "文件 %(filename)s 無法保存到臨時目錄" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "移動封面文件失敗 %(file)s:%(error)s" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "書籍格式已成功刪除" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "書籍已成功刪除" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "編輯元數據" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s 不是一個有效的數值,忽略" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "創建路徑 %(path)s 失敗(權限拒絕)。" -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "保存文件 %(file)s 失敗。" -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "已添加 %(ext)s 格式到 %(book)s" @@ -1071,7 +1071,7 @@ msgstr "書籍列表" msgid "Show Books List" msgstr "顯示書籍列表" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 diff --git a/messages.pot b/messages.pot index dadecfa5..a6ad0891 100644 --- a/messages.pot +++ b/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-30 19:37+0300\n" +"POT-Creation-Date: 2023-06-25 11:30+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,8 +41,8 @@ msgstr "" msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "" -#: cps/admin.py:202 cps/editbooks.py:577 cps/editbooks.py:579 -#: cps/editbooks.py:615 cps/editbooks.py:632 cps/editbooks.py:1241 +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "" @@ -125,7 +125,7 @@ msgstr "" msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:530 cps/editbooks.py:443 +#: cps/admin.py:530 cps/editbooks.py:444 msgid "Parameter not found" msgstr "" @@ -285,8 +285,8 @@ msgid "Success! Gmail Account Verified." msgstr "" #: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 -#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:229 -#: cps/editbooks.py:305 cps/editbooks.py:1203 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 #: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 #: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 #, python-format @@ -514,122 +514,122 @@ msgstr "" msgid "Execution permissions missing" msgstr "" -#: cps/db.py:731 cps/search.py:137 cps/web.py:731 +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 #, python-format msgid "Custom Column No.%(column)d does not exist in calibre database" msgstr "" -#: cps/db.py:972 cps/templates/config_edit.html:204 +#: cps/db.py:990 cps/templates/config_edit.html:204 #: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 #: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 #: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 msgid "None" msgstr "" -#: cps/editbooks.py:110 cps/editbooks.py:896 cps/web.py:525 cps/web.py:1522 +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 #: cps/web.py:1566 cps/web.py:1611 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "" -#: cps/editbooks.py:154 cps/editbooks.py:1224 +#: cps/editbooks.py:155 cps/editbooks.py:1225 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:174 cps/editbooks.py:717 +#: cps/editbooks.py:175 cps/editbooks.py:718 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:216 +#: cps/editbooks.py:217 msgid "Metadata successfully updated" msgstr "" -#: cps/editbooks.py:234 +#: cps/editbooks.py:235 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:291 +#: cps/editbooks.py:292 #, python-format msgid "File %(file)s uploaded" msgstr "" -#: cps/editbooks.py:319 +#: cps/editbooks.py:320 msgid "Source or destination format for conversion missing" msgstr "" -#: cps/editbooks.py:327 +#: cps/editbooks.py:328 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "" -#: cps/editbooks.py:331 +#: cps/editbooks.py:332 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "" -#: cps/editbooks.py:636 +#: cps/editbooks.py:637 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:691 cps/editbooks.py:1016 +#: cps/editbooks.py:692 cps/editbooks.py:1017 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "" -#: cps/editbooks.py:729 cps/editbooks.py:1164 +#: cps/editbooks.py:730 cps/editbooks.py:1165 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "" -#: cps/editbooks.py:733 cps/editbooks.py:1168 +#: cps/editbooks.py:734 cps/editbooks.py:1169 msgid "File to be uploaded must have an extension" msgstr "" -#: cps/editbooks.py:741 +#: cps/editbooks.py:742 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:761 +#: cps/editbooks.py:762 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "" -#: cps/editbooks.py:818 cps/editbooks.py:820 +#: cps/editbooks.py:819 cps/editbooks.py:821 msgid "Book Format Successfully Deleted" msgstr "" -#: cps/editbooks.py:827 cps/editbooks.py:829 +#: cps/editbooks.py:828 cps/editbooks.py:830 msgid "Book Successfully Deleted" msgstr "" -#: cps/editbooks.py:881 +#: cps/editbooks.py:882 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:931 +#: cps/editbooks.py:932 msgid "edit metadata" msgstr "" -#: cps/editbooks.py:980 +#: cps/editbooks.py:981 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1159 +#: cps/editbooks.py:1160 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1180 +#: cps/editbooks.py:1181 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "" -#: cps/editbooks.py:1185 +#: cps/editbooks.py:1186 #, python-format msgid "Failed to store file %(file)s." msgstr "" -#: cps/editbooks.py:1209 +#: cps/editbooks.py:1210 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "" @@ -1047,7 +1047,7 @@ msgstr "" msgid "Show Books List" msgstr "" -#: cps/search.py:48 cps/search.py:392 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:33 cps/templates/index.xml:11 #: cps/templates/layout.html:46 cps/templates/layout.html:49 #: cps/templates/search_form.html:226 From fdd1410b0620ebf0c73271f2bb2d5f6883c06f2f Mon Sep 17 00:00:00 2001 From: Ozzie Isaacs Date: Sun, 9 Jul 2023 10:01:48 +0200 Subject: [PATCH 06/15] Improved pathchooser --- cps/admin.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cps/admin.py b/cps/admin.py index 82fc196e..a1b65640 100644 --- a/cps/admin.py +++ b/cps/admin.py @@ -33,6 +33,7 @@ from functools import wraps from urllib.parse import urlparse from flask import Blueprint, flash, redirect, url_for, abort, request, make_response, send_from_directory, g, Response +from flask import Markup from flask_login import login_required, current_user, logout_user from flask_babel import gettext as _ from flask_babel import get_locale, format_time, format_datetime, format_timedelta @@ -1035,7 +1036,8 @@ def pathchooser(): for f in folders: try: - data = {"name": f, "fullpath": os.path.join(cwd, f)} + sanitized_f = str(Markup.escape(f)) + data = {"name": sanitized_f, "fullpath": os.path.join(cwd, sanitized_f)} data["sort"] = data["fullpath"].lower() except Exception: continue From a256bd5260b6cea7e3c33aa3293865d4312ceec0 Mon Sep 17 00:00:00 2001 From: Ozzie Isaacs Date: Sun, 9 Jul 2023 10:23:56 +0200 Subject: [PATCH 07/15] Password is not returned in smtp settings --- cps/admin.py | 6 ++++-- cps/templates/config_edit.html | 2 +- cps/templates/email_edit.html | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/cps/admin.py b/cps/admin.py index a1b65640..2e235c2c 100644 --- a/cps/admin.py +++ b/cps/admin.py @@ -1296,7 +1296,8 @@ def update_mailsettings(): else: _config_int(to_save, "mail_port") _config_int(to_save, "mail_use_ssl") - _config_string(to_save, "mail_password_e") + if "mail_password_e" in to_save: + _config_string(to_save, "mail_password_e") _config_int(to_save, "mail_size", lambda y: int(y) * 1024 * 1024) config.mail_server = to_save.get('mail_server', "").strip() config.mail_from = to_save.get('mail_from', "").strip() @@ -1780,7 +1781,8 @@ def _configuration_update_helper(): # Goodreads configuration _config_checkbox(to_save, "config_use_goodreads") _config_string(to_save, "config_goodreads_api_key") - _config_string(to_save, "config_goodreads_api_secret_e") + if "config_goodreads_api_secret_e" in to_save: + _config_string(to_save, "config_goodreads_api_secret_e") if services.goodreads_support: services.goodreads_support.connect(config.config_goodreads_api_key, config.config_goodreads_api_secret_e, diff --git a/cps/templates/config_edit.html b/cps/templates/config_edit.html index b11ca1b5..e259ac2f 100644 --- a/cps/templates/config_edit.html +++ b/cps/templates/config_edit.html @@ -160,7 +160,7 @@
- +
{% endif %} diff --git a/cps/templates/email_edit.html b/cps/templates/email_edit.html index ffd0dea4..eaaecb18 100644 --- a/cps/templates/email_edit.html +++ b/cps/templates/email_edit.html @@ -49,7 +49,7 @@
- +
From 074687c330e891aab28ba3061e7a19fffb016622 Mon Sep 17 00:00:00 2001 From: Horus68 Date: Tue, 25 Jul 2023 11:29:20 +0100 Subject: [PATCH 08/15] Create pt-PT translation Translation to european portuguese - pt-PT portuguese (Portugal) Note: messages.mo not created as file was translated directly in browser --- .../pt_PT/LC_MESSAGES/messages.po | 3479 +++++++++++++++++ 1 file changed, 3479 insertions(+) create mode 100644 cps/translations/pt_PT/LC_MESSAGES/messages.po diff --git a/cps/translations/pt_PT/LC_MESSAGES/messages.po b/cps/translations/pt_PT/LC_MESSAGES/messages.po new file mode 100644 index 00000000..e6cdf588 --- /dev/null +++ b/cps/translations/pt_PT/LC_MESSAGES/messages.po @@ -0,0 +1,3479 @@ +# Translation to portuguese (Portugal) for Calibre-Web. +# This file is distributed under the same license as the Calibre-Web +msgid "" +msgstr "" +"Project-Id-Version: Calibre-Web\n" +"Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" +"POT-Creation-Date: 2023-07-25 11:30+0100\n" +"PO-Revision-Date: 2023-07-25 11:30+0100\n" +"Last-Translator: horus68 \n" +"Language: pt\n" +"Language-Team: pt-PT <>\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.11.0\n" + +#: cps/about.py:84 +msgid "Statistics" +msgstr "Estatísticas" + +#: cps/admin.py:145 +#, fuzzy +msgid "Server restarted, please reload page." +msgstr "Servidor reiniciado, por favor, refresque a página" + +#: cps/admin.py:147 +#, fuzzy +msgid "Performing Server shutdown, please close window." +msgstr "A encerrar o servidor, por favor, feche a janela" + +#: cps/admin.py:155 +msgid "Success! Database Reconnected" +msgstr "Sucesso! Base de dados religada" + +#: cps/admin.py:158 +msgid "Unknown command" +msgstr "Comando desconhecido" + +#: cps/admin.py:169 +#, fuzzy +msgid "Success! Books queued for Metadata Backup, please check Tasks for result" +msgstr "Sucesso! Livros enviados para lista de espera para cópia de segurança de metadados. Por favor, verifique o resultado em Tarefas" + +#: cps/admin.py:202 cps/editbooks.py:578 cps/editbooks.py:580 +#: cps/editbooks.py:616 cps/editbooks.py:633 cps/editbooks.py:1242 +#: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 +msgid "Unknown" +msgstr "Desconhecido" + +#: cps/admin.py:227 +msgid "Admin page" +msgstr "Página de administração" + +#: cps/admin.py:247 +msgid "Basic Configuration" +msgstr "Configuração básica" + +#: cps/admin.py:285 +msgid "UI Configuration" +msgstr "Configuração de IU" + +#: cps/admin.py:319 cps/templates/admin.html:51 +msgid "Edit Users" +msgstr "Editar utilizadores" + +#: cps/admin.py:363 cps/opds.py:494 cps/templates/grid.html:14 +#: cps/templates/list.html:13 +msgid "All" +msgstr "Tudo" + +#: cps/admin.py:390 cps/admin.py:1399 +msgid "User not found" +msgstr "Utilizador não encontrado" + +#: cps/admin.py:404 +msgid "{} users deleted successfully" +msgstr "{} utilizadores eliminados com sucesso" + +#: cps/admin.py:427 cps/templates/config_view_edit.html:133 +#: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 +msgid "Show All" +msgstr "Mostrar tudo" + +#: cps/admin.py:448 cps/admin.py:454 +msgid "Malformed request" +msgstr "Pedido mal construído" + +#: cps/admin.py:466 cps/admin.py:2016 +msgid "Guest Name can't be changed" +msgstr "Nome do convidado não pode ser alterado" + +#: cps/admin.py:478 +msgid "Guest can't have this role" +msgstr "Convidado não pode ter esta função" + +#: cps/admin.py:490 cps/admin.py:1970 +msgid "No admin user remaining, can't remove admin role" +msgstr "Nenhum utilizador administrador restante, impossível remover a função de administrador" + +#: cps/admin.py:494 cps/admin.py:508 +msgid "Value has to be true or false" +msgstr "Valor tem de ser verdadeiro ou falso" + +#: cps/admin.py:496 +msgid "Invalid role" +msgstr "Função inválida" + +#: cps/admin.py:500 +msgid "Guest can't have this view" +msgstr "O convidado não podr ter esta vista" + +#: cps/admin.py:510 +msgid "Invalid view" +msgstr "Vista inválida" + +#: cps/admin.py:513 +msgid "Guest's Locale is determined automatically and can't be set" +msgstr "O idioma do convidado é detetado automaticamente e não pode ser alterado" + +#: cps/admin.py:517 +msgid "No Valid Locale Given" +msgstr "Nenhum idioma válido fornecido" + +#: cps/admin.py:528 +msgid "No Valid Book Language Given" +msgstr "Não foi indicado um idioma de livro válido" + +#: cps/admin.py:530 cps/editbooks.py:444 +msgid "Parameter not found" +msgstr "Parâmetro não encontrado" + +#: cps/admin.py:567 +msgid "Invalid Read Column" +msgstr "Coluna Lido é inválida" + +#: cps/admin.py:573 +msgid "Invalid Restricted Column" +msgstr "Coluna Restrito é inválida" + +#: cps/admin.py:593 cps/admin.py:1841 +msgid "Calibre-Web configuration updated" +msgstr "Configuração do Calibre-Web atualizada" + +#: cps/admin.py:605 +msgid "Do you really want to delete the Kobo Token?" +msgstr "Quer realmente apagar a Kobo Token?" + +#: cps/admin.py:607 +msgid "Do you really want to delete this domain?" +msgstr "Quer realmente eliminar este domínio?" + +#: cps/admin.py:609 +msgid "Do you really want to delete this user?" +msgstr "Quer realmente apagar este utilizador?" + +#: cps/admin.py:611 +msgid "Are you sure you want to delete this shelf?" +msgstr "Tem a certeza de que quer apagar essa estante?" + +#: cps/admin.py:613 +msgid "Are you sure you want to change locales of selected user(s)?" +msgstr "Tem a certeza de que quer alterar o idioma dos utilizadores selecionados?" + +#: cps/admin.py:615 +msgid "Are you sure you want to change visible book languages for selected user(s)?" +msgstr "Tem a certeza de que quer alterar os idiomas de livros visíveis para os utilizadores selecionados?" + +#: cps/admin.py:617 +msgid "Are you sure you want to change the selected role for the selected user(s)?" +msgstr "Tem a certeza de que quer alterar a função selecionada para os utilizadores selecionados?" + +#: cps/admin.py:619 +msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" +msgstr "Tem a certeza de que quer alterar as restrições selecionadas para os utilizadores selecionados?" + +#: cps/admin.py:621 +msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" +msgstr "Tem a certeza de de que quer alterar as restrições de visibilidade selecionadas para os utilizadores selecionados?" + +#: cps/admin.py:624 +msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" +msgstr "Tem a certeza de que quer alterar o comportamento de sincronização da estante para os utilizadores selecionados?" + +#: cps/admin.py:626 +msgid "Are you sure you want to change Calibre library location?" +msgstr "Tem a certeza de que quer alterar a localização da biblioteca Calibre?" + +#: cps/admin.py:628 +msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" +msgstr "O Calibre-Web irá procurar por capas atualizadas e atualizará as miniaturas das capas. Isto poderá demorar um pouco" + +#: cps/admin.py:631 +msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" +msgstr "Tem a certeza de que deseja apagar a base de dados de sincronização do Calibre-Web para forçar uma sincronização completa com seu Kobo Reader?" + +#: cps/admin.py:874 cps/admin.py:880 cps/admin.py:890 cps/admin.py:900 +#: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 +#: cps/templates/user_table.html:58 +msgid "Deny" +msgstr "Negar" + +#: cps/admin.py:876 cps/admin.py:882 cps/admin.py:892 cps/admin.py:902 +#: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 +#: cps/templates/user_table.html:61 +msgid "Allow" +msgstr "Permitir" + +#: cps/admin.py:917 +msgid "{} sync entries deleted" +msgstr "{} entradas de sincronização eliminadas" + +#: cps/admin.py:965 +msgid "Tag not found" +msgstr "Etiqueta não encontrada" + +#: cps/admin.py:977 +msgid "Invalid Action" +msgstr "Ação inválida" + +#: cps/admin.py:1106 +msgid "client_secrets.json Is Not Configured For Web Application" +msgstr "client_secrets.json não está configurado para aplicação Web" + +#: cps/admin.py:1151 +msgid "Logfile Location is not Valid, Please Enter Correct Path" +msgstr "A localização do ficheiro de historial não é válida. Por favor, digite um caminho correto" + +#: cps/admin.py:1157 +msgid "Access Logfile Location is not Valid, Please Enter Correct Path" +msgstr "A localização do ficheiro de historial não é válida. Por favor, digite um caminho correto" + +#: cps/admin.py:1191 +msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" +msgstr "Digite um fornecedor LDAP, porta, DN e identificador de objeto do utilizador" + +#: cps/admin.py:1197 +msgid "Please Enter a LDAP Service Account and Password" +msgstr "Por favor, digite uma conta de serviço LDAP e senha" + +#: cps/admin.py:1200 +msgid "Please Enter a LDAP Service Account" +msgstr "Por favor, digite uma conta de serviço LDAP" + +#: cps/admin.py:1205 +#, python-format +msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" +msgstr "O filtro de objeto de grupo LDAP precisa de ter um identificador de formato \"%s\"" + +#: cps/admin.py:1207 +msgid "LDAP Group Object Filter Has Unmatched Parenthesis" +msgstr "Filtro de objeto de grupo LDAP tem parênteses não coincidentes" + +#: cps/admin.py:1211 +#, python-format +msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" +msgstr "O filtro de objeto de utilizador LDAP precisa de ter um identificador de formato \"%s\"" + +#: cps/admin.py:1213 +msgid "LDAP User Object Filter Has Unmatched Parenthesis" +msgstr "Filtro de objeto de utilizador LDAP tem parênteses não coincidentes" + +#: cps/admin.py:1220 +#, python-format +msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" +msgstr "O filtro de utilizador membro do LDAP precisa ter um identificador de formato \"%s\"" + +#: cps/admin.py:1222 +msgid "LDAP Member User Filter Has Unmatched Parenthesis" +msgstr "Filtro de utilizador de membro LDAP tem parênteses incomparáveis" + +#: cps/admin.py:1229 +msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" +msgstr "LDAP Certificado CA: Localização inválida de certificado ou chave. Por favor, digite um caminho correto" + +#: cps/admin.py:1260 cps/templates/admin.html:53 +msgid "Add New User" +msgstr "Adicionar utilizador" + +#: cps/admin.py:1269 cps/templates/admin.html:100 +msgid "Edit Email Server Settings" +msgstr "Editar configurações do servidor de email" + +#: cps/admin.py:1288 +msgid "Success! Gmail Account Verified." +msgstr "Sucesso! Conta Gmail verificada" + +#: cps/admin.py:1307 cps/admin.py:1310 cps/admin.py:1692 cps/admin.py:1825 +#: cps/admin.py:1923 cps/admin.py:2044 cps/editbooks.py:230 +#: cps/editbooks.py:306 cps/editbooks.py:1204 cps/shelf.py:82 cps/shelf.py:142 +#: cps/shelf.py:185 cps/shelf.py:235 cps/shelf.py:272 cps/shelf.py:346 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1481 +#, python-format +msgid "Oops! Database Error: %(error)s." +msgstr "Erro de base de dados: %(error)s." + +#: cps/admin.py:1317 +#, python-format +msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" +msgstr "Email de teste enviado para lista de espera para envio para %(email)s. Por favor, verifique o resultado em Tarefas" + +#: cps/admin.py:1320 +#, python-format +msgid "There was an error sending the Test e-mail: %(res)s" +msgstr "Ocorreu um erro ao enviar o email de teste: %(res)s" + +#: cps/admin.py:1322 +msgid "Please configure your e-mail address first..." +msgstr "Por favor, primeiro configure seu endereço de email..." + +#: cps/admin.py:1324 +msgid "Email Server Settings updated" +msgstr "Atualização das configurações do servidor de email" + +#: cps/admin.py:1347 cps/templates/admin.html:195 +msgid "Edit Scheduled Tasks Settings" +msgstr "Editar configurações de tarefas agendadas" + +#: cps/admin.py:1359 +msgid "Invalid start time for task specified" +msgstr "Hora de início inválida para a tarefa especificada" + +#: cps/admin.py:1364 +msgid "Invalid duration for task specified" +msgstr "Duração inválida para a tarefa especificada" + +#: cps/admin.py:1374 +msgid "Scheduled tasks settings updated" +msgstr "Foram atualizadas as configurações de tarefas agendadas" + +#: cps/admin.py:1384 cps/admin.py:1433 cps/admin.py:2040 cps/web.py:1281 +msgid "Oops! An unknown error occurred. Please try again later." +msgstr "Ocorreu um erro desconhecido. Por favor, tente novamente mais tarde." + +#: cps/admin.py:1388 +msgid "Settings DB is not Writeable" +msgstr "Configuaração da DB não é gravável" + +#: cps/admin.py:1418 cps/admin.py:2032 +#, python-format +msgid "Edit User %(nick)s" +msgstr "Editar utilizador %(nick)s" + +#: cps/admin.py:1430 +#, fuzzy, python-format +msgid "Success! Password for user %(user)s reset" +msgstr "Sucesso! Senha do utilizador %(user)s redefinida" + +#: cps/admin.py:1436 +#, fuzzy +msgid "Oops! Please configure the SMTP mail settings." +msgstr "Por favor, configure primeiro as configurações de correio SMTP..." + +#: cps/admin.py:1447 +msgid "Logfile viewer" +msgstr "Visualizador do historial" + +#: cps/admin.py:1513 +msgid "Requesting update package" +msgstr "A solicitar pacote de atualização" + +#: cps/admin.py:1514 +msgid "Downloading update package" +msgstr "A descarregar pacote de atualização" + +#: cps/admin.py:1515 +msgid "Unzipping update package" +msgstr "A descomprimir pacote de atualização" + +#: cps/admin.py:1516 +msgid "Replacing files" +msgstr "A substituir ficheiros" + +#: cps/admin.py:1517 +msgid "Database connections are closed" +msgstr "As ligações à base de dados estão fechadas" + +#: cps/admin.py:1518 +msgid "Stopping server" +msgstr "A parar o servidor" + +#: cps/admin.py:1519 +msgid "Update finished, please press okay and reload page" +msgstr "Atualização concluída, pressione OK e refresque a página" + +#: cps/admin.py:1520 cps/admin.py:1521 cps/admin.py:1522 cps/admin.py:1523 +#: cps/admin.py:1524 cps/admin.py:1525 +msgid "Update failed:" +msgstr "Atualização falhou:" + +#: cps/admin.py:1520 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +msgid "HTTP Error" +msgstr "Erro HTTP" + +#: cps/admin.py:1521 cps/updater.py:391 cps/updater.py:628 +msgid "Connection error" +msgstr "Erro de ligação" + +#: cps/admin.py:1522 cps/updater.py:393 cps/updater.py:630 +msgid "Timeout while establishing connection" +msgstr "Tempo limite ao estabelecer a ligação" + +#: cps/admin.py:1523 cps/updater.py:395 cps/updater.py:632 +msgid "General error" +msgstr "Erro geral" + +#: cps/admin.py:1524 +msgid "Update file could not be saved in temp dir" +msgstr "Ficheiro de atualização não pode ser guardado na pasta temporária" + +#: cps/admin.py:1525 +msgid "Files could not be replaced during update" +msgstr "Não foi possível substituir ficheiros durante a atualização" + +#: cps/admin.py:1549 +msgid "Failed to extract at least One LDAP User" +msgstr "Falha ao extrair pelo menos um utilizador LDAP" + +#: cps/admin.py:1594 +msgid "Failed to Create at Least One LDAP User" +msgstr "Falha ao criar pelo menos um utilizador LDAP" + +#: cps/admin.py:1607 +#, python-format +msgid "Error: %(ldaperror)s" +msgstr "Erro: %(ldaperror)s" + +#: cps/admin.py:1611 +msgid "Error: No user returned in response of LDAP server" +msgstr "Erro: Nenhum utilizador devolvido na resposta do servidor LDAP" + +#: cps/admin.py:1644 +msgid "At Least One LDAP User Not Found in Database" +msgstr "No mínimo um utilizador LDAP não encontrado no base de dados" + +#: cps/admin.py:1646 +msgid "{} User Successfully Imported" +msgstr "{} utilizador importado com sucesso" + +#: cps/admin.py:1704 +msgid "DB Location is not Valid, Please Enter Correct Path" +msgstr "A localização da base de dados não é válida. Por favor, digite o caminho correto" + +#: cps/admin.py:1724 +msgid "DB is not Writeable" +msgstr "DB não é gravável" + +#: cps/admin.py:1737 +msgid "Keyfile Location is not Valid, Please Enter Correct Path" +msgstr "Localização do ficheiro de chaves não é válida. Por favor, digite o caminho correto" + +#: cps/admin.py:1741 +msgid "Certfile Location is not Valid, Please Enter Correct Path" +msgstr "Localização do ficheiro de certificados não é válida. Por favor, digite o caminho correto" + +#: cps/admin.py:1812 +msgid "Password length has to be between 1 and 40" +msgstr "A dimensão da senha deve estar entre 1 e 40" + +#: cps/admin.py:1864 +msgid "Database Settings updated" +msgstr "Configurações da base de dados atualizadas" + +#: cps/admin.py:1872 +msgid "Database Configuration" +msgstr "Configuração da base de dados" + +#: cps/admin.py:1887 cps/web.py:1255 +msgid "Oops! Please complete all fields." +msgstr "Por favor, preencha todos os campos!" + +#: cps/admin.py:1896 +msgid "E-mail is not from valid domain" +msgstr "O email não é de um domínio válido" + +#: cps/admin.py:1902 +msgid "Add new user" +msgstr "Adicionar novo utilizador" + +#: cps/admin.py:1913 +#, python-format +msgid "User '%(user)s' created" +msgstr "Criado utilizador '%(user)s'" + +#: cps/admin.py:1919 +msgid "Oops! An account already exists for this Email. or name." +msgstr "Já existe uma conta para este endereço de email ou nome." + +#: cps/admin.py:1949 +#, python-format +msgid "User '%(nick)s' deleted" +msgstr "Utilizador '%(nick)s' eliminado" + +#: cps/admin.py:1952 +msgid "Can't delete Guest User" +msgstr "Impossível eliminar convidado" + +#: cps/admin.py:1955 +msgid "No admin user remaining, can't delete user" +msgstr "Nenhum utilizador administrador restante, não é possível eliminar o utilizador" + +#: cps/admin.py:2010 cps/web.py:1430 +msgid "Email can't be empty and has to be a valid Email" +msgstr "O email não pode estar vazio e tem de ser válido" + +#: cps/admin.py:2036 +#, python-format +msgid "User '%(nick)s' updated" +msgstr "Utilizador '%(nick)s' atualizado" + +#: cps/converter.py:31 +msgid "not installed" +msgstr "não instalado" + +#: cps/converter.py:32 +msgid "Execution permissions missing" +msgstr "Falta de permissões de execução" + +#: cps/db.py:749 cps/search.py:137 cps/web.py:731 +#, python-format +msgid "Custom Column No.%(column)d does not exist in calibre database" +msgstr "A coluna personalizada No.%(column)d não existe na base de dados do Calibre" + +#: cps/db.py:990 cps/templates/config_edit.html:204 +#: cps/templates/config_view_edit.html:62 cps/templates/email_edit.html:41 +#: cps/web.py:558 cps/web.py:592 cps/web.py:665 cps/web.py:692 cps/web.py:973 +#: cps/web.py:1003 cps/web.py:1040 cps/web.py:1068 cps/web.py:1107 +msgid "None" +msgstr "Nenhum" + +#: cps/editbooks.py:111 cps/editbooks.py:897 cps/web.py:525 cps/web.py:1522 +#: cps/web.py:1566 cps/web.py:1611 +msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" +msgstr "Oops! O Livro selecionado não está disponível. O ficheiro não existe ou não está acessível" + +#: cps/editbooks.py:155 cps/editbooks.py:1225 +msgid "User has no rights to upload cover" +msgstr "Utilizador não tem permissão para carregar capas" + +#: cps/editbooks.py:175 cps/editbooks.py:718 +msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" +msgstr "Os identificadores não diferenciam maiúsculas de minúsculas, substituindo o identificador antigo" + +#: cps/editbooks.py:217 +msgid "Metadata successfully updated" +msgstr "Metadados atualizados com sucesso" + +#: cps/editbooks.py:235 +msgid "Error editing book: {}" +msgstr "Erro ao editar o livro: {}" + +#: cps/editbooks.py:292 +#, python-format +msgid "File %(file)s uploaded" +msgstr "Ficheiro %(file)s enviado" + +#: cps/editbooks.py:320 +msgid "Source or destination format for conversion missing" +msgstr "Formato de origem ou destino para conversão está em falta" + +#: cps/editbooks.py:328 +#, python-format +msgid "Book successfully queued for converting to %(book_format)s" +msgstr "Livro enviado com sucesso para lista de espera de conversão para %(book_format)s" + +#: cps/editbooks.py:332 +#, python-format +msgid "There was an error converting this book: %(res)s" +msgstr "Ocorreu um erro ao converter este livro: %(res)s" + +#: cps/editbooks.py:637 +msgid "Uploaded book probably exists in the library, consider to change before upload new: " +msgstr "O livro carregado provavelmente existe na biblioteca, considere alterar antes de carregar novo: " + +#: cps/editbooks.py:692 cps/editbooks.py:1017 +#, python-format +msgid "'%(langname)s' is not a valid language" +msgstr "%(langname)s não é um idioma válido" + +#: cps/editbooks.py:730 cps/editbooks.py:1165 +#, python-format +msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" +msgstr "A extensão de ficheiro '%(ext)s' não pode ser enviada para este servidor" + +#: cps/editbooks.py:734 cps/editbooks.py:1169 +msgid "File to be uploaded must have an extension" +msgstr "O ficheiro a ser carregado deve ter uma extensão" + +#: cps/editbooks.py:742 +#, python-format +msgid "File %(filename)s could not saved to temp dir" +msgstr "O ficheiro %(filename)s não foi possível ser guardado na pasta temporária" + +#: cps/editbooks.py:762 +#, python-format +msgid "Failed to Move Cover File %(file)s: %(error)s" +msgstr "Falha ao mover ficheiro de capa %(file)s: %(error)s" + +#: cps/editbooks.py:819 cps/editbooks.py:821 +msgid "Book Format Successfully Deleted" +msgstr "Formato de livro eliminado com sucesso" + +#: cps/editbooks.py:828 cps/editbooks.py:830 +msgid "Book Successfully Deleted" +msgstr "Livro eliminado com sucesso" + +#: cps/editbooks.py:882 +msgid "You are missing permissions to delete books" +msgstr "Não tem permissões para apagar livros" + +#: cps/editbooks.py:932 +msgid "edit metadata" +msgstr "editar metadados" + +#: cps/editbooks.py:981 +#, python-format +msgid "%(seriesindex)s is not a valid number, skipping" +msgstr "%(seriesindex)s não é um número válido, ignorando" + +#: cps/editbooks.py:1160 +msgid "User has no rights to upload additional file formats" +msgstr "Utilizador não tem direitos para carregar formatos de ficheiro adicionais" + +#: cps/editbooks.py:1181 +#, python-format +msgid "Failed to create path %(path)s (Permission denied)." +msgstr "Falha ao criar o caminho %(path)s (Permissão negada)." + +#: cps/editbooks.py:1186 +#, python-format +msgid "Failed to store file %(file)s." +msgstr "Falha ao armazenar o ficheiro %(file)s." + +#: cps/editbooks.py:1210 +#, python-format +msgid "File format %(ext)s added to %(book)s" +msgstr "Formato de ficheiro %(ext)s adicionado a %(book)s" + +#: cps/gdrive.py:58 +msgid "Google Drive setup not completed, try to deactivate and activate Google Drive again" +msgstr "Configuração do Google Drive não concluída, tente desativar e ativar o Google Drive novamente" + +#: cps/gdrive.py:95 +msgid "Callback domain is not verified, please follow steps to verify domain in google developer console" +msgstr "O domínio Callback não foi verificado. Por favor, siga os passos para verificar o domínio na consola de programadores do Google" + +#: cps/helper.py:81 +#, python-format +msgid "%(format)s format not found for book id: %(book)d" +msgstr "Formato %(format)s não encontrado para o ID do livro: %(book)d" + +#: cps/helper.py:88 cps/tasks/convert.py:75 +#, python-format +msgid "%(format)s not found on Google Drive: %(fn)s" +msgstr "%(format)s não encontrado no Google Drive: %(fn)s" + +#: cps/helper.py:93 +#, python-format +msgid "%(format)s not found: %(fn)s" +msgstr "%(format)s não encontrado: %(fn)s" + +#: cps/helper.py:98 cps/helper.py:223 cps/templates/detail.html:59 +msgid "Send to eReader" +msgstr "Enviar para dispositivo de leitura" + +#: cps/helper.py:99 cps/helper.py:117 cps/helper.py:225 +#, fuzzy +msgid "This Email has been sent via Calibre-Web." +msgstr "Este email foi enviado via Calibre-Web." + +#: cps/helper.py:115 +#, fuzzy +msgid "Calibre-Web Test Email" +msgstr "Email de teste do Calibre-Web" + +#: cps/helper.py:116 +#, fuzzy +msgid "Test Email" +msgstr "Email de teste" + +#: cps/helper.py:133 +msgid "Get Started with Calibre-Web" +msgstr "Comece a usar o Calibre-Web" + +#: cps/helper.py:138 +#, fuzzy, python-format +msgid "Registration Email for user: %(name)s" +msgstr "Email de registo do utilizador: %(name)s" + +#: cps/helper.py:149 cps/helper.py:155 +#, fuzzy, python-format +msgid "Convert %(orig)s to %(format)s and send to eReader" +msgstr "Converter %(orig)s em %(format)s e enviar para dispositivo de leitura" + +#: cps/helper.py:174 cps/helper.py:178 cps/helper.py:182 +#, fuzzy, python-format +msgid "Send %(format)s to eReader" +msgstr "Enviar %(format)s para o dispositivo de leitura" + +#: cps/helper.py:222 +#, fuzzy, python-format +msgid "%(book)s send to eReader" +msgstr "%(book)s enviado para o dispositivo de leitura" + +#: cps/helper.py:227 +msgid "The requested file could not be read. Maybe wrong permissions?" +msgstr "Não foi possível ler o ficheiro solicitado. Talvez permissões erradas?" + +#: cps/helper.py:342 +msgid "Read status could not set: {}" +msgstr "Estatuto de Lido não pode ser alterado: {}" + +#: cps/helper.py:365 +#, python-format +msgid "Deleting bookfolder for book %(id)s failed, path has subfolders: %(path)s" +msgstr "A eliminação da pasta de livros do livro %(id)s falhou, o caminho tem subpastas: %(path)s" + +#: cps/helper.py:371 +#, python-format +msgid "Deleting book %(id)s failed: %(message)s" +msgstr "Falha ao eliminar livro %(id)s: %(message)s" + +#: cps/helper.py:382 +#, python-format +msgid "Deleting book %(id)s from database only, book path in database not valid: %(path)s" +msgstr "Eliminar livro %(id)s apenas da base de dados, caminho do livro inválido: %(path)s" + +#: cps/helper.py:447 +#, python-format +msgid "Rename author from: '%(src)s' to '%(dest)s' failed with error: %(error)s" +msgstr "Renomear autor de: '%(src)s' para '%(dest)s' falhou com o erro: %(error)s" + +#: cps/helper.py:519 cps/helper.py:528 +#, python-format +msgid "File %(file)s not found on Google Drive" +msgstr "Ficheiro %(file)s não encontrado no Google Drive" + +#: cps/helper.py:562 +#, python-format +msgid "Rename title from: '%(src)s' to '%(dest)s' failed with error: %(error)s" +msgstr "Renomear título de: '%(src)s' para '%(dest)s' falhou com o erro: %(error)s" + +#: cps/helper.py:582 +msgid "Error in rename file in path: {}" +msgstr "Erro ao renomear ficheiro no caminho: {}" + +#: cps/helper.py:600 +#, python-format +msgid "Book path %(path)s not found on Google Drive" +msgstr "Caminho do livro %(path)s não encontrado no Google Drive" + +#: cps/helper.py:665 +msgid "Found an existing account for this Email address" +msgstr "Encontrada uma conta existente para este endereço de email" + +#: cps/helper.py:673 +msgid "This username is already taken" +msgstr "Este nome de utilizador já está registado" + +#: cps/helper.py:685 +#, fuzzy +msgid "Invalid Email address format" +msgstr "Formato de endereço de email inválido" + +#: cps/helper.py:703 +msgid "Password doesn't comply with password validation rules" +msgstr "" + +#: cps/helper.py:853 +msgid "Python module 'advocate' is not installed but is needed for cover uploads" +msgstr "O módulo Python 'advocate' não está instalado, mas é necessário para carregar capas" + +#: cps/helper.py:863 +msgid "Error Downloading Cover" +msgstr "Erro ao descarregar a capa" + +#: cps/helper.py:866 +msgid "Cover Format Error" +msgstr "Erro de formato da capa" + +#: cps/helper.py:869 +msgid "You are not allowed to access localhost or the local network for cover uploads" +msgstr "Não possui permissões para aceder a localhost ou à rede local para carregar capas" + +#: cps/helper.py:879 +msgid "Failed to create path for cover" +msgstr "Falha em criar um caminho para a capa" + +#: cps/helper.py:895 +msgid "Cover-file is not a valid image file, or could not be stored" +msgstr "O ficheiro de capa não é um ficheiro de imagem válido, ou não foi possível ser armazenado" + +#: cps/helper.py:906 +msgid "Only jpg/jpeg/png/webp/bmp files are supported as coverfile" +msgstr "Apenas ficheiros jpg/jpeg/png/webp/bmp são suportados como ficheiros de capa" + +#: cps/helper.py:918 +msgid "Invalid cover file content" +msgstr "Conteúdo do ficheiro de capa inválido" + +#: cps/helper.py:922 +msgid "Only jpg/jpeg files are supported as coverfile" +msgstr "Apenas ficheiros jpg/jpeg são suportados como ficheiros de capa" + +#: cps/helper.py:974 +msgid "Unrar binary file not found" +msgstr "Binário Unrar não encontrado" + +#: cps/helper.py:985 +#, fuzzy +msgid "Error executing UnRar" +msgstr "Erro a executar UnRar" + +#: cps/helper.py:1078 +#, fuzzy +msgid "Cover" +msgstr "Capa" + +#: cps/helper.py:1080 cps/templates/admin.html:216 +msgid "Queue all books for metadata backup" +msgstr "Enviar todos os livros para lista de espera para cópia de segurança de metadados" + +#: cps/kobo_auth.py:90 +msgid "Please access Calibre-Web from non localhost to get valid api_endpoint for kobo device" +msgstr "Por favor, aceda ao Calibre-web a partir de um servidor não local para obter uma api_endpoint válida para o dispositivo Kobo" + +#: cps/kobo_auth.py:116 +msgid "Kobo Setup" +msgstr "Configuração Kobo" + +#: cps/oauth_bb.py:77 +#, python-format +msgid "Register with %(provider)s" +msgstr "Autentique-se com %(provider)s" + +#: cps/oauth_bb.py:138 cps/remotelogin.py:130 +#, python-format +msgid "Success! You are now logged in as: %(nickname)s" +msgstr "Sucesso! Agora está autenticado como: '%(nickname)s'" + +#: cps/oauth_bb.py:148 +#, python-format +msgid "Link to %(oauth)s Succeeded" +msgstr "Hiperligação para %(oauth)s bem-sucedida" + +#: cps/oauth_bb.py:155 +msgid "Login failed, No User Linked With OAuth Account" +msgstr "Falha na autenticação, nenhum utilizador ligado a uma conta OAuth" + +#: cps/oauth_bb.py:197 +#, python-format +msgid "Unlink to %(oauth)s Succeeded" +msgstr "Desvincular a %(oauth)s bem-sucedido" + +#: cps/oauth_bb.py:202 +#, python-format +msgid "Unlink to %(oauth)s Failed" +msgstr "Falha ao desvincular de %(oauth)s" + +#: cps/oauth_bb.py:205 +#, python-format +msgid "Not Linked to %(oauth)s" +msgstr "Não vinculado a %(oauth)s" + +#: cps/oauth_bb.py:261 +msgid "Failed to log in with GitHub." +msgstr "Falha na autenticação com GitHub." + +#: cps/oauth_bb.py:267 +msgid "Failed to fetch user info from GitHub." +msgstr "Falha na pesquisa de informações do utilizador no GitHub." + +#: cps/oauth_bb.py:279 +msgid "Failed to log in with Google." +msgstr "Falha na autenticação com Google." + +#: cps/oauth_bb.py:285 +msgid "Failed to fetch user info from Google." +msgstr "Falha na pesquisa de informações de utilizador no Google." + +#: cps/oauth_bb.py:332 +msgid "GitHub Oauth error, please retry later." +msgstr "Erro no Oauth do GitHub. Por favor, tente novamente mais tarde." + +#: cps/oauth_bb.py:335 +msgid "GitHub Oauth error: {}" +msgstr "Erro no Oauth do GitHub: {}" + +#: cps/oauth_bb.py:356 +msgid "Google Oauth error, please retry later." +msgstr "Erro no Google Oauth, tente novamente mais tarde." + +#: cps/oauth_bb.py:359 +msgid "Google Oauth error: {}" +msgstr "Erro no Oauth do Google: {}" + +#: cps/opds.py:273 +msgid "{} Stars" +msgstr "{} Estrelas" + +#: cps/remotelogin.py:62 cps/templates/layout.html:67 +#: cps/templates/layout.html:101 cps/templates/login.html:4 +#: cps/templates/login.html:21 cps/web.py:1318 +msgid "Login" +msgstr "Autenticar" + +#: cps/remotelogin.py:74 cps/remotelogin.py:108 +msgid "Token not found" +msgstr "Token não encontrado" + +#: cps/remotelogin.py:83 cps/remotelogin.py:116 +msgid "Token has expired" +msgstr "O Token expirou" + +#: cps/remotelogin.py:92 +msgid "Success! Please return to your device" +msgstr "Sucesso! Por favor, volte ao seu dispositivo" + +#: cps/render_template.py:42 cps/web.py:414 +msgid "Books" +msgstr "Livros" + +#: cps/render_template.py:44 +msgid "Show recent books" +msgstr "Mostrar livros recentes" + +#: cps/render_template.py:45 cps/templates/index.xml:25 +msgid "Hot Books" +msgstr "Livros quentes" + +#: cps/render_template.py:47 +msgid "Show Hot Books" +msgstr "Mostrar livros mais descarregados" + +#: cps/render_template.py:49 cps/render_template.py:54 +msgid "Downloaded Books" +msgstr "Livros descarregados" + +#: cps/render_template.py:51 cps/render_template.py:56 +#: cps/templates/user_table.html:167 +msgid "Show Downloaded Books" +msgstr "Mostrar livros descarregados" + +#: cps/render_template.py:59 cps/templates/index.xml:32 cps/web.py:429 +msgid "Top Rated Books" +msgstr "Top de pontuação de livros" + +#: cps/render_template.py:61 cps/templates/user_table.html:161 +msgid "Show Top Rated Books" +msgstr "Mostrar livros mais bem pontuados" + +#: cps/render_template.py:62 cps/templates/index.xml:54 +#: cps/templates/index.xml:58 cps/web.py:750 +msgid "Read Books" +msgstr "Livros lidos" + +#: cps/render_template.py:64 +#, fuzzy +msgid "Show Read and Unread" +msgstr "Mostrar lido e não lido" + +#: cps/render_template.py:66 cps/templates/index.xml:61 +#: cps/templates/index.xml:65 cps/web.py:753 +msgid "Unread Books" +msgstr "Livros não lidos" + +#: cps/render_template.py:68 +msgid "Show unread" +msgstr "Mostrar Não Lidos" + +#: cps/render_template.py:69 +msgid "Discover" +msgstr "Descobrir" + +#: cps/render_template.py:71 cps/templates/index.xml:50 +#: cps/templates/user_table.html:159 cps/templates/user_table.html:162 +msgid "Show Random Books" +msgstr "Mostrar livros aleatoriamente" + +#: cps/render_template.py:72 cps/templates/book_table.html:67 +#: cps/templates/index.xml:83 cps/web.py:1111 +msgid "Categories" +msgstr "Categorias" + +#: cps/render_template.py:74 cps/templates/user_table.html:158 +#, fuzzy +msgid "Show Category Section" +msgstr "Mostrar seção da categoria" + +#: cps/render_template.py:75 cps/templates/book_edit.html:91 +#: cps/templates/book_table.html:68 cps/templates/index.xml:90 +#: cps/templates/search_form.html:69 cps/web.py:1006 cps/web.py:1013 +msgid "Series" +msgstr "Séries" + +#: cps/render_template.py:77 cps/templates/user_table.html:157 +#, fuzzy +msgid "Show Series Section" +msgstr "Mostrar seção de séries" + +#: cps/render_template.py:78 cps/templates/book_table.html:66 +#: cps/templates/index.xml:69 +msgid "Authors" +msgstr "Autores" + +#: cps/render_template.py:80 cps/templates/user_table.html:160 +#, fuzzy +msgid "Show Author Section" +msgstr "Mostrar seção de autor" + +#: cps/render_template.py:82 cps/templates/book_table.html:72 +#: cps/templates/index.xml:76 cps/web.py:977 +msgid "Publishers" +msgstr "Editoras" + +#: cps/render_template.py:84 cps/templates/user_table.html:163 +#, fuzzy +msgid "Show Publisher Section" +msgstr "Mostrar seleção de editoras" + +#: cps/render_template.py:85 cps/templates/book_table.html:70 +#: cps/templates/index.xml:97 cps/templates/search_form.html:107 +#: cps/web.py:1083 +msgid "Languages" +msgstr "Idiomas" + +#: cps/render_template.py:88 cps/templates/user_table.html:155 +#, fuzzy +msgid "Show Language Section" +msgstr "Mostrar seção de idioma" + +#: cps/render_template.py:89 cps/templates/index.xml:104 +msgid "Ratings" +msgstr "Pontuações" + +#: cps/render_template.py:91 cps/templates/user_table.html:164 +#, fuzzy +msgid "Show Ratings Section" +msgstr "Mostrar seção de pontuações" + +#: cps/render_template.py:92 cps/templates/index.xml:112 +msgid "File formats" +msgstr "Formatos de ficheiro" + +#: cps/render_template.py:94 cps/templates/user_table.html:165 +#, fuzzy +msgid "Show File Formats Section" +msgstr "Mostrar seção de formatos de ficheiro" + +#: cps/render_template.py:96 cps/web.py:776 +msgid "Archived Books" +msgstr "Livros arquivados" + +#: cps/render_template.py:98 cps/templates/user_table.html:166 +#, fuzzy +msgid "Show Archived Books" +msgstr "Mostrar livros arquivados" + +#: cps/render_template.py:101 cps/web.py:807 +msgid "Books List" +msgstr "Lista de livros" + +#: cps/render_template.py:103 cps/templates/user_table.html:168 +msgid "Show Books List" +msgstr "Mostrar lista de livros" + +#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/templates/feed.xml:33 cps/templates/index.xml:11 +#: cps/templates/layout.html:46 cps/templates/layout.html:49 +#: cps/templates/search_form.html:226 +msgid "Search" +msgstr "Pesquisar" + +#: cps/search.py:188 +msgid "Published after " +msgstr "Publicado depois de " + +#: cps/search.py:195 +msgid "Published before " +msgstr "Publicado antes de " + +#: cps/search.py:217 +#, python-format +msgid "Rating <= %(rating)s" +msgstr "Pontuação <= %(rating)s" + +#: cps/search.py:219 +#, python-format +msgid "Rating >= %(rating)s" +msgstr "Pontuação >= %(rating)s" + +#: cps/search.py:221 +#, python-format +msgid "Read Status = %(status)s" +msgstr "Estado de leitura = %(status)s" + +#: cps/search.py:323 +msgid "Error on search for custom columns, please restart Calibre-Web" +msgstr "Erro na pesquisa de colunas personalizadas. Por favor, reinicie o Calibre-Web" + +#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +msgid "Advanced Search" +msgstr "Pesquisa avançada" + +#: cps/shelf.py:49 cps/shelf.py:103 +msgid "Invalid shelf specified" +msgstr "Estante inválida especificada" + +#: cps/shelf.py:55 +msgid "Sorry you are not allowed to add a book to that shelf" +msgstr "Desculpe, não possui permissões para adicionar um livro a esta estante" + +#: cps/shelf.py:64 +#, python-format +msgid "Book is already part of the shelf: %(shelfname)s" +msgstr "O livro já faz parte da estante: %(shelfname)s" + +#: cps/shelf.py:89 +#, python-format +msgid "Book has been added to shelf: %(sname)s" +msgstr "O livro foi adicionado à estante: %(sname)s" + +#: cps/shelf.py:108 +msgid "You are not allowed to add a book to the shelf" +msgstr "Não possui permissões para adicionar um livro à estante" + +#: cps/shelf.py:126 +#, python-format +msgid "Books are already part of the shelf: %(name)s" +msgstr "Os livros já fazem parte da estante: %(name)s" + +#: cps/shelf.py:138 +#, python-format +msgid "Books have been added to shelf: %(sname)s" +msgstr "Livros adicionados à estante: %(sname)s" + +#: cps/shelf.py:145 +#, python-format +msgid "Could not add books to shelf: %(sname)s" +msgstr "Não foi possível adicionar livros à estante: %(sname)s" + +#: cps/shelf.py:191 +#, python-format +msgid "Book has been removed from shelf: %(sname)s" +msgstr "O livro foi removido da estante: %(sname)s" + +#: cps/shelf.py:200 +msgid "Sorry you are not allowed to remove a book from this shelf" +msgstr "Desculpe, não possui permissões para remover um livro desta estante" + +#: cps/shelf.py:210 cps/templates/layout.html:157 +msgid "Create a Shelf" +msgstr "Criar estante" + +#: cps/shelf.py:218 +msgid "Sorry you are not allowed to edit this shelf" +msgstr "Desculpe, não possui permissões para editar esta estante" + +#: cps/shelf.py:220 +msgid "Edit a shelf" +msgstr "Editar uma estante" + +#: cps/shelf.py:229 +msgid "Error deleting Shelf" +msgstr "Erro a eliminar a estante" + +#: cps/shelf.py:231 +msgid "Shelf successfully deleted" +msgstr "Estante eliminada com sucesso" + +#: cps/shelf.py:281 +#, python-format +msgid "Change order of Shelf: '%(name)s'" +msgstr "Alterar ordem da Estante: '%(name)s'" + +#: cps/shelf.py:316 +msgid "Sorry you are not allowed to create a public shelf" +msgstr "Desculpe, não possui permissões para criar uma estante pública" + +#: cps/shelf.py:333 +#, python-format +msgid "Shelf %(title)s created" +msgstr "Estante %(title)s criada" + +#: cps/shelf.py:336 +#, python-format +msgid "Shelf %(title)s changed" +msgstr "Estante %(title)s alterada" + +#: cps/shelf.py:350 +msgid "There was an error" +msgstr "Ocorreu um erro" + +#: cps/shelf.py:372 +#, python-format +msgid "A public shelf with the name '%(title)s' already exists." +msgstr "Já existe uma estante pública com o nome '%(title)s' ." + +#: cps/shelf.py:383 +#, python-format +msgid "A private shelf with the name '%(title)s' already exists." +msgstr "Já existe uma estante privada com o nome'%(title)s' ." + +#: cps/shelf.py:465 +#, python-format +msgid "Shelf: '%(name)s'" +msgstr "Estante: '%(name)s'" + +#: cps/shelf.py:469 +msgid "Error opening shelf. Shelf does not exist or is not accessible" +msgstr "Erro ao abrir estante. A estante não existe ou não está acessível" + +#: cps/tasks_status.py:46 cps/templates/layout.html:88 +#: cps/templates/tasks.html:7 +msgid "Tasks" +msgstr "Tarefas" + +#: cps/tasks_status.py:62 +msgid "Waiting" +msgstr "Aguardando" + +#: cps/tasks_status.py:64 +msgid "Failed" +msgstr "Falhado" + +#: cps/tasks_status.py:66 +msgid "Started" +msgstr "Iniciado" + +#: cps/tasks_status.py:68 +msgid "Finished" +msgstr "Concluído" + +#: cps/tasks_status.py:70 +msgid "Ended" +msgstr "Terminado" + +#: cps/tasks_status.py:72 +msgid "Cancelled" +msgstr "Cancelado" + +#: cps/tasks_status.py:74 +msgid "Unknown Status" +msgstr "Estado desconhecido" + +#: cps/updater.py:431 cps/updater.py:442 cps/updater.py:543 cps/updater.py:558 +msgid "Unexpected data while reading update information" +msgstr "Dados inesperados ao ler informações de atualização" + +#: cps/updater.py:438 cps/updater.py:550 +msgid "No update available. You already have the latest version installed" +msgstr "Não existem atualizações disponíveis. Você já tem instalada a última versão" + +#: cps/updater.py:456 +msgid "A new update is available. Click on the button below to update to the latest version." +msgstr "Uma nova atualização está disponível. Clique no botão abaixo para atualizar para a versão mais recente." + +#: cps/updater.py:474 +msgid "Could not fetch update information" +msgstr "Não foi possível obter informações sobre atualizações" + +#: cps/updater.py:484 +msgid "Click on the button below to update to the latest stable version." +msgstr "Clique no botão abaixo para atualizar para a última versão estável." + +#: cps/updater.py:493 cps/updater.py:507 cps/updater.py:518 +#, python-format +msgid "A new update is available. Click on the button below to update to version: %(version)s" +msgstr "Uma nova atualização está disponível. Clique no botão abaixo para atualizar para a versão: %(version)s" + +#: cps/updater.py:536 +msgid "No release information available" +msgstr "Não existem informações disponíveis sobre o lançamento" + +#: cps/templates/index.html:6 cps/web.py:441 +msgid "Discover (Random Books)" +msgstr "Descobrir (Livros aleatórios)" + +#: cps/web.py:477 +msgid "Hot Books (Most Downloaded)" +msgstr "Livros quentes (Mais descarregados)" + +#: cps/web.py:508 +#, python-format +msgid "Downloaded books by %(user)s" +msgstr "Livros descarregados por %(user)s" + +#: cps/web.py:541 +#, python-format +msgid "Author: %(name)s" +msgstr "Autor: %(name)s" + +#: cps/web.py:577 +#, python-format +msgid "Publisher: %(name)s" +msgstr "Editora: %(name)s" + +#: cps/web.py:605 +#, python-format +msgid "Series: %(serie)s" +msgstr "Séries: %(serie)s" + +#: cps/web.py:620 +msgid "Rating: None" +msgstr "Pontuação: Nenhuma" + +#: cps/web.py:629 +#, python-format +msgid "Rating: %(rating)s stars" +msgstr "Pontuação: %(rating)s estrelas" + +#: cps/web.py:645 +#, python-format +msgid "File format: %(format)s" +msgstr "Formato do ficheiro: %(format)s" + +#: cps/web.py:682 +#, python-format +msgid "Category: %(name)s" +msgstr "Categoria: %(name)s" + +#: cps/web.py:711 +#, python-format +msgid "Language: %(name)s" +msgstr "Idioma: %(name)s" + +#: cps/templates/admin.html:16 cps/web.py:949 +msgid "Downloads" +msgstr "Descarregamentos" + +#: cps/web.py:1043 +msgid "Ratings list" +msgstr "Lista de pontuações" + +#: cps/web.py:1070 +msgid "File formats list" +msgstr "Lista de formatos de ficheiro" + +#: cps/web.py:1218 +#, fuzzy +msgid "Please configure the SMTP mail settings first..." +msgstr "Por favor, configure primeiro as configurações de correio SMTP..." + +#: cps/web.py:1225 +#, python-format +msgid "Success! Book queued for sending to %(eReadermail)s" +msgstr "Sucesso! Livro enviado para lista de espera para envio a %(eReadermail)s" + +#: cps/web.py:1228 +#, python-format +msgid "Oops! There was an error sending book: %(res)s" +msgstr "Ops! Ocorreu um erro ao enviar este livro: %(res)s" + +#: cps/web.py:1230 +#, fuzzy +msgid "Oops! Please update your profile with a valid eReader Email." +msgstr "Ops! Por favor, atualize o seu perfil com um endereço de email válido para envio ao Kindle." + +#: cps/web.py:1246 +msgid "Please wait one minute to register next user" +msgstr "Por favor, aguarde um minuto para registar o próximo utilizador" + +#: cps/templates/layout.html:68 cps/templates/layout.html:102 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1247 +#: cps/web.py:1252 cps/web.py:1256 cps/web.py:1262 cps/web.py:1282 +#: cps/web.py:1286 cps/web.py:1299 cps/web.py:1302 +msgid "Register" +msgstr "Registar" + +#: cps/web.py:1251 cps/web.py:1298 +msgid "Oops! Email server is not configured, please contact your administrator." +msgstr "Ops! O servidor de email não está configurado. Por favor, contacte o seu administrador!" + +#: cps/web.py:1284 +msgid "Oops! Your Email is not allowed." +msgstr "Ops! O seu email não é permitido para registo" + +#: cps/web.py:1287 +msgid "Success! Confirmation Email has been sent." +msgstr "Sucesso! O email de confirmação foi enviado para a sua conta de email." + +#: cps/web.py:1333 cps/web.py:1351 +#, fuzzy +msgid "Cannot activate LDAP authentication" +msgstr "Não é possível ativar a autenticação LDAP" + +#: cps/web.py:1345 +msgid "Please wait one minute before next login" +msgstr "Por favor, aguarde um minuto antes de nova autenticação" + +#: cps/web.py:1361 +#, fuzzy, python-format +msgid "you are now logged in as: '%(nickname)s'" +msgstr "agora você está autenticado como: '%(nickname)s'" + +#: cps/web.py:1368 +#, fuzzy, python-format +msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" +msgstr "Autenticação recurso como:'%(nickname)s', servidor LDAP não acessível ou utilizador desconhecido" + +#: cps/web.py:1373 +#, fuzzy, python-format +msgid "Could not login: %(message)s" +msgstr "Não foi possível autenticar-se: %(message)s" + +#: cps/web.py:1377 cps/web.py:1402 +#, fuzzy +msgid "Wrong Username or Password" +msgstr "Nome de utilizador ou senha incorretos" + +#: cps/web.py:1384 +#, fuzzy +msgid "New Password was send to your email address" +msgstr "Nova senha foi enviada para seu endereço de email" + +#: cps/web.py:1388 +#, fuzzy +msgid "An unknown error occurred. Please try again later." +msgstr "Ocorreu um erro desconhecido. Por favor, tente novamente mais tarde." + +#: cps/web.py:1390 +#, fuzzy +msgid "Please enter valid username to reset password" +msgstr "Por favor, digite um nome de utilizador válido para poder redefinir a senha" + +#: cps/web.py:1398 +#, fuzzy, python-format +msgid "You are now logged in as: '%(nickname)s'" +msgstr "Agora você está autenticado como: '%(nickname)s'" + +#: cps/web.py:1456 cps/web.py:1506 +#, python-format +msgid "%(name)s's Profile" +msgstr "Perfil de %(name)s" + +#: cps/web.py:1472 +#, fuzzy +msgid "Success! Profile Updated" +msgstr "Perfil atualizado" + +#: cps/web.py:1476 +msgid "Oops! An account already exists for this Email." +msgstr "Foi encontrada uma conta já existente com este endereço de email." + +#: cps/services/gmail.py:58 +msgid "Found no valid gmail.json file with OAuth information" +msgstr "Não foi encontrado nenhum ficheiro gmail.json válido com informações do OAuth" + +#: cps/tasks/convert.py:92 +#, python-format +msgid "%(book)s send to E-Reader" +msgstr "%(book)s enviado para dispositivo de leitura" + +#: cps/tasks/convert.py:153 +#, python-format +msgid "Calibre ebook-convert %(tool)s not found" +msgstr "Calibre ebook-convert %(tool)s não encontrado" + +#: cps/tasks/convert.py:186 +#, python-format +msgid "%(format)s format not found on disk" +msgstr "Formato %(format)s não encontrado no disco" + +#: cps/tasks/convert.py:190 +msgid "Ebook converter failed with unknown error" +msgstr "O conversor de ebook falhou com erro desconhecido" + +#: cps/tasks/convert.py:202 +#, python-format +msgid "Kepubify-converter failed: %(error)s" +msgstr "Conversor Kepubify falhou: %(error)s" + +#: cps/tasks/convert.py:224 +#, python-format +msgid "Converted file not found or more than one file in folder %(folder)s" +msgstr "Ficheiro convertido não encontrado ou mais de um ficheiro na pasta %(folder)s" + +#: cps/tasks/convert.py:247 +#, python-format +msgid "Ebook-converter failed: %(error)s" +msgstr "Conversor de ebook falhou: %(error)s" + +#: cps/tasks/convert.py:270 +#, python-format +msgid "Calibre failed with error: %(error)s" +msgstr "Calibre falhou com erro: %(error)s" + +#: cps/tasks/convert.py:275 +msgid "Convert" +msgstr "Converter" + +#: cps/tasks/database.py:28 +msgid "Reconnecting Calibre database" +msgstr "A religar base de dados Calibre" + +#: cps/tasks/mail.py:266 +msgid "E-mail" +msgstr "Email" + +#: cps/tasks/metadata_backup.py:46 +#, fuzzy +msgid "Backing up Metadata" +msgstr "Cópia de segurança de metadados" + +#: cps/tasks/thumbnail.py:96 +#, python-format +msgid "Generated %(count)s cover thumbnails" +msgstr "Geradas %(count)s miniaturas para capa" + +#: cps/tasks/thumbnail.py:230 cps/tasks/thumbnail.py:443 +#: cps/tasks/thumbnail.py:511 +msgid "Cover Thumbnails" +msgstr "Miniaturas de capa" + +#: cps/tasks/thumbnail.py:289 +msgid "Generated {0} series thumbnails" +msgstr "Geradas {0} miniaturas de série" + +#: cps/tasks/thumbnail.py:454 +msgid "Clearing cover thumbnail cache" +msgstr "A esvaziar a cache de miniaturas da capa" + +#: cps/tasks/upload.py:38 cps/templates/admin.html:20 +#: cps/templates/layout.html:81 cps/templates/user_table.html:145 +msgid "Upload" +msgstr "Carregar" + +#: cps/templates/admin.html:9 +msgid "Users" +msgstr "Utilizadores" + +#: cps/templates/admin.html:13 cps/templates/login.html:9 +#: cps/templates/login.html:10 cps/templates/register.html:9 +#: cps/templates/user_edit.html:10 cps/templates/user_table.html:134 +msgid "Username" +msgstr "Nome de utilizador" + +#: cps/templates/admin.html:14 cps/templates/register.html:14 +#: cps/templates/user_edit.html:15 cps/templates/user_table.html:135 +msgid "Email" +msgstr "Endereço de email" + +#: cps/templates/admin.html:15 cps/templates/user_edit.html:28 +msgid "Send to eReader Email" +msgstr "Enviar para o endereço de email do dispositivod e leitura" + +#: cps/templates/admin.html:17 cps/templates/layout.html:91 +#: cps/templates/user_table.html:143 +msgid "Admin" +msgstr "Admin" + +#: cps/templates/admin.html:18 cps/templates/login.html:13 +#: cps/templates/login.html:14 cps/templates/user_edit.html:23 +msgid "Password" +msgstr "Senha" + +#: cps/templates/admin.html:22 cps/templates/detail.html:20 +#: cps/templates/detail.html:33 cps/templates/shelf.html:8 +#: cps/templates/user_table.html:146 +msgid "Download" +msgstr "Descarregar" + +#: cps/templates/admin.html:23 +msgid "View Books" +msgstr "Ver Livros" + +#: cps/templates/admin.html:24 cps/templates/user_table.html:131 +#: cps/templates/user_table.html:148 +msgid "Edit" +msgstr "Editar" + +#: cps/templates/admin.html:25 cps/templates/book_edit.html:17 +#: cps/templates/book_table.html:100 cps/templates/modal_dialogs.html:63 +#: cps/templates/modal_dialogs.html:116 cps/templates/user_edit.html:67 +#: cps/templates/user_table.html:149 +msgid "Delete" +msgstr "Apagar" + +#: cps/templates/admin.html:26 +msgid "Public Shelf" +msgstr "Estante pública" + +#: cps/templates/admin.html:55 +msgid "Import LDAP Users" +msgstr "Importar utilizadores LDAP" + +#: cps/templates/admin.html:62 +msgid "Email Server Settings" +msgstr "Configurações do servidor de email" + +#: cps/templates/admin.html:67 cps/templates/email_edit.html:31 +msgid "SMTP Hostname" +msgstr "Nome de servidor SMTP" + +#: cps/templates/admin.html:71 cps/templates/email_edit.html:35 +msgid "SMTP Port" +msgstr "Porta SMTP" + +#: cps/templates/admin.html:75 cps/templates/email_edit.html:39 +msgid "Encryption" +msgstr "Encriptação" + +#: cps/templates/admin.html:79 cps/templates/email_edit.html:47 +msgid "SMTP Login" +msgstr "Autenticação SMTP" + +#: cps/templates/admin.html:83 cps/templates/admin.html:94 +#: cps/templates/email_edit.html:55 +msgid "From Email" +msgstr "Do email" + +#: cps/templates/admin.html:90 +#, fuzzy +msgid "Email Service" +msgstr "Serviço de eMail" + +#: cps/templates/admin.html:91 +msgid "Gmail via Oauth2" +msgstr "Gmail via Oauth2" + +#: cps/templates/admin.html:106 +msgid "Configuration" +msgstr "Configuração" + +#: cps/templates/admin.html:109 +msgid "Calibre Database Directory" +msgstr "Pasta da base de dados Calibre" + +#: cps/templates/admin.html:113 cps/templates/config_edit.html:68 +msgid "Log Level" +msgstr "Nível de registos" + +#: cps/templates/admin.html:117 +msgid "Port" +msgstr "Porta" + +#: cps/templates/admin.html:122 +msgid "External Port" +msgstr "Porta externa" + +#: cps/templates/admin.html:129 cps/templates/config_view_edit.html:28 +msgid "Books per Page" +msgstr "Livros por página" + +#: cps/templates/admin.html:133 +msgid "Uploads" +msgstr "Carregamentos" + +#: cps/templates/admin.html:137 +msgid "Anonymous Browsing" +msgstr "Navegação anónima" + +#: cps/templates/admin.html:141 +msgid "Public Registration" +msgstr "Inscrição pública" + +#: cps/templates/admin.html:145 +msgid "Magic Link Remote Login" +msgstr "Autenticação remota Magic Link" + +#: cps/templates/admin.html:149 +msgid "Reverse Proxy Login" +msgstr "Autenticação de Proxy reverso" + +#: cps/templates/admin.html:154 cps/templates/config_edit.html:173 +msgid "Reverse Proxy Header Name" +msgstr "Nome do cabeçalho do Proxy reverso" + +#: cps/templates/admin.html:159 +msgid "Edit Calibre Database Configuration" +msgstr "Editar configuração da base de dados do Calibre" + +#: cps/templates/admin.html:160 +msgid "Edit Basic Configuration" +msgstr "Editar configurações básicas" + +#: cps/templates/admin.html:161 +msgid "Edit UI Configuration" +msgstr "Editar configuração de IU" + +#: cps/templates/admin.html:167 +msgid "Scheduled Tasks" +msgstr "Tarefas agendadas" + +#: cps/templates/admin.html:170 cps/templates/schedule_edit.html:12 +#: cps/templates/tasks.html:18 +msgid "Start Time" +msgstr "Hora de início" + +#: cps/templates/admin.html:174 cps/templates/schedule_edit.html:20 +msgid "Maximum Duration" +msgstr "Duração máxima" + +#: cps/templates/admin.html:178 cps/templates/schedule_edit.html:29 +msgid "Generate Thumbnails" +msgstr "Gerar miniaturas" + +#: cps/templates/admin.html:182 +msgid "Generate series cover thumbnails" +msgstr "Gerar miniaturas para capa de séries" + +#: cps/templates/admin.html:186 cps/templates/admin.html:208 +#: cps/templates/schedule_edit.html:37 +msgid "Reconnect Calibre Database" +msgstr "Religar à biblioteca do Calibre" + +#: cps/templates/admin.html:190 cps/templates/schedule_edit.html:41 +msgid "Generate Metadata Backup Files" +msgstr "Criar cópia de segurança dos metadados" + +#: cps/templates/admin.html:197 +msgid "Refresh Thumbnail Cache" +msgstr "Atualizar Cache de miniaturas" + +#: cps/templates/admin.html:203 +msgid "Administration" +msgstr "Administração" + +#: cps/templates/admin.html:204 +msgid "Download Debug Package" +msgstr "Descarregar pacote de depuração" + +#: cps/templates/admin.html:205 +msgid "View Logs" +msgstr "Ver historial" + +#: cps/templates/admin.html:211 +msgid "Restart" +msgstr "Reiniciar" + +#: cps/templates/admin.html:212 +msgid "Shutdown" +msgstr "Desligar" + +#: cps/templates/admin.html:221 +msgid "Version Information" +msgstr "Dados da versão" + +#: cps/templates/admin.html:225 +msgid "Version" +msgstr "Versão" + +#: cps/templates/admin.html:226 +msgid "Details" +msgstr "Detalhes" + +#: cps/templates/admin.html:232 +msgid "Current Version" +msgstr "Versão atual" + +#: cps/templates/admin.html:239 +msgid "Check for Update" +msgstr "Verificar atualizações" + +#: cps/templates/admin.html:240 +msgid "Perform Update" +msgstr "Aplicar atualizações" + +#: cps/templates/admin.html:253 +msgid "Are you sure you want to restart?" +msgstr "Tem a certeza de que quer reiniciar?" + +#: cps/templates/admin.html:258 cps/templates/admin.html:272 +#: cps/templates/admin.html:292 cps/templates/config_db.html:70 +msgid "OK" +msgstr "Ok" + +#: cps/templates/admin.html:259 cps/templates/admin.html:273 +#: cps/templates/book_edit.html:214 cps/templates/book_table.html:127 +#: cps/templates/config_db.html:54 cps/templates/config_edit.html:410 +#: cps/templates/config_view_edit.html:175 cps/templates/modal_dialogs.html:64 +#: cps/templates/modal_dialogs.html:99 cps/templates/modal_dialogs.html:117 +#: cps/templates/modal_dialogs.html:135 cps/templates/schedule_edit.html:45 +#: cps/templates/shelf_edit.html:27 cps/templates/tasks.html:46 +#: cps/templates/user_edit.html:144 +msgid "Cancel" +msgstr "Cancelar" + +#: cps/templates/admin.html:271 +msgid "Are you sure you want to shutdown?" +msgstr "Tem certeza de que quer encerrar?" + +#: cps/templates/admin.html:283 +msgid "Updating, please do not reload this page" +msgstr "A atualizar, por favor, não refresque esta página" + +#: cps/templates/author.html:15 +msgid "via" +msgstr "via" + +#: cps/templates/author.html:23 +msgid "In Library" +msgstr "Na Biblioteca" + +#: cps/templates/author.html:26 cps/templates/index.html:74 +#: cps/templates/search.html:31 cps/templates/shelf.html:20 +msgid "Sort according to book date, newest first" +msgstr "Ordenar de acordo com a data do livro, o mais recente primeiro" + +#: cps/templates/author.html:27 cps/templates/index.html:75 +#: cps/templates/search.html:32 cps/templates/shelf.html:21 +msgid "Sort according to book date, oldest first" +msgstr "Ordenar de acordo com a data do livro, o mais antigo primeiro" + +#: cps/templates/author.html:28 cps/templates/index.html:76 +#: cps/templates/search.html:33 cps/templates/shelf.html:22 +msgid "Sort title in alphabetical order" +msgstr "Ordenar título em ordem alfabética" + +#: cps/templates/author.html:29 cps/templates/index.html:77 +#: cps/templates/search.html:34 cps/templates/shelf.html:23 +msgid "Sort title in reverse alphabetical order" +msgstr "Ordenar título em ordem alfabética inversa" + +#: cps/templates/author.html:30 cps/templates/index.html:80 +#: cps/templates/search.html:37 cps/templates/shelf.html:26 +msgid "Sort according to publishing date, newest first" +msgstr "Ordenar de acordo com a data de publicação, o mais novo primeiro" + +#: cps/templates/author.html:31 cps/templates/index.html:81 +#: cps/templates/search.html:38 cps/templates/shelf.html:27 +msgid "Sort according to publishing date, oldest first" +msgstr "Ordenar de acordo com a data de publicação, o mais antigo primeiro" + +#: cps/templates/author.html:56 cps/templates/author.html:115 +#: cps/templates/index.html:30 cps/templates/index.html:113 +#: cps/templates/search.html:67 cps/templates/shelf.html:55 +msgid "reduce" +msgstr "reduzir" + +#: cps/templates/author.html:99 +msgid "More by" +msgstr "Outros por" + +#: cps/templates/book_edit.html:11 +msgid "Delete Book" +msgstr "Apagar livro" + +#: cps/templates/book_edit.html:14 +msgid "Delete formats:" +msgstr "Apagar formatos:" + +#: cps/templates/book_edit.html:25 +msgid "Convert book format:" +msgstr "Converter formato do livro:" + +#: cps/templates/book_edit.html:30 +msgid "Convert from:" +msgstr "Converter de:" + +#: cps/templates/book_edit.html:32 cps/templates/book_edit.html:39 +msgid "select an option" +msgstr "selecionar uma opção" + +#: cps/templates/book_edit.html:37 +msgid "Convert to:" +msgstr "Converter para:" + +#: cps/templates/book_edit.html:46 +msgid "Convert book" +msgstr "Converter livro" + +#: cps/templates/book_edit.html:56 cps/templates/search_form.html:8 +msgid "Book Title" +msgstr "Título do livro" + +#: cps/templates/book_edit.html:63 cps/templates/book_edit.html:271 +#: cps/templates/book_edit.html:289 cps/templates/search_form.html:12 +msgid "Author" +msgstr "Autor" + +#: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +msgid "Description" +msgstr "Descrição" + +#: cps/templates/book_edit.html:73 +msgid "Identifiers" +msgstr "Identificadores" + +#: cps/templates/book_edit.html:77 cps/templates/book_edit.html:300 +msgid "Identifier Type" +msgstr "Tipo de identificador" + +#: cps/templates/book_edit.html:78 cps/templates/book_edit.html:301 +msgid "Identifier Value" +msgstr "Valor do identificador" + +#: cps/templates/book_edit.html:79 cps/templates/book_edit.html:302 +#: cps/templates/user_table.html:24 +msgid "Remove" +msgstr "Remover" + +#: cps/templates/book_edit.html:83 +msgid "Add Identifier" +msgstr "Adicionar identificador" + +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +msgid "Tags" +msgstr "Etiquetas" + +#: cps/templates/book_edit.html:95 +msgid "Series ID" +msgstr "Identificador da série" + +#: cps/templates/book_edit.html:99 +msgid "Rating" +msgstr "Pontuação" + +#: cps/templates/book_edit.html:104 +msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" +msgstr "Obter capa a partir de URL (JPEG - Imagem será descarregada e armazenada na base de dados)" + +#: cps/templates/book_edit.html:108 +msgid "Upload Cover from Local Disk" +msgstr "Carregar capa a partir de disco local" + +#: cps/templates/book_edit.html:113 +msgid "Published Date" +msgstr "Data de publicação" + +#: cps/templates/book_edit.html:122 cps/templates/book_edit.html:273 +#: cps/templates/book_edit.html:290 cps/templates/detail.html:192 +#: cps/templates/listenmp3.html:102 cps/templates/search_form.html:16 +msgid "Publisher" +msgstr "Editora" + +#: cps/templates/book_edit.html:126 cps/templates/detail.html:157 +#: cps/templates/listenmp3.html:69 cps/templates/user_edit.html:33 +msgid "Language" +msgstr "Idioma" + +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 +#: cps/templates/search_form.html:164 +msgid "Yes" +msgstr "Sim" + +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 +msgid "No" +msgstr "Não" + +#: cps/templates/book_edit.html:201 +msgid "Upload Format" +msgstr "Formato de carregamento" + +#: cps/templates/book_edit.html:209 +msgid "View Book on Save" +msgstr "Ver livro ao guardar" + +#: cps/templates/book_edit.html:212 cps/templates/book_edit.html:230 +msgid "Fetch Metadata" +msgstr "Obter metadados" + +#: cps/templates/book_edit.html:213 cps/templates/config_db.html:53 +#: cps/templates/config_edit.html:409 cps/templates/config_view_edit.html:174 +#: cps/templates/email_edit.html:65 cps/templates/schedule_edit.html:44 +#: cps/templates/shelf_edit.html:25 cps/templates/shelf_order.html:41 +#: cps/templates/user_edit.html:142 +msgid "Save" +msgstr "Guardar" + +#: cps/templates/book_edit.html:233 +msgid "Keyword" +msgstr "Termo-chave" + +#: cps/templates/book_edit.html:234 +msgid "Search keyword" +msgstr "Pesquisar termo-chave" + +#: cps/templates/book_edit.html:240 +msgid "Click the cover to load metadata to the form" +msgstr "Clique na capa para carregar os metadados para o formulário" + +#: cps/templates/book_edit.html:247 cps/templates/book_edit.html:286 +msgid "Loading..." +msgstr "A carregar..." + +#: cps/templates/book_edit.html:251 cps/templates/layout.html:78 +#: cps/templates/layout.html:203 cps/templates/modal_dialogs.html:34 +#: cps/templates/user_edit.html:163 +msgid "Close" +msgstr "Fechar" + +#: cps/templates/book_edit.html:278 cps/templates/book_edit.html:292 +msgid "Source" +msgstr "Fonte" + +#: cps/templates/book_edit.html:287 +msgid "Search error!" +msgstr "Erro de pesquisa!" + +#: cps/templates/book_edit.html:288 +msgid "No Result(s) found! Please try another keyword." +msgstr "Nenhum resultado encontrado! Por favor, tente pesquisar por outro termo-chave." + +#: cps/templates/book_table.html:12 cps/templates/book_table.html:69 +#: cps/templates/user_table.html:14 cps/templates/user_table.html:77 +#: cps/templates/user_table.html:100 +msgid "This Field is Required" +msgstr "Este campo é obrigatório" + +#: cps/templates/book_table.html:37 +msgid "Merge selected books" +msgstr "Fundir livros selecionados" + +#: cps/templates/book_table.html:38 cps/templates/user_table.html:124 +msgid "Remove Selections" +msgstr "Remover seleções" + +#: cps/templates/book_table.html:41 +msgid "Exchange author and title" +msgstr "Trocar autor por título" + +#: cps/templates/book_table.html:47 +msgid "Update Title Sort automatically" +msgstr "Atualizar ordenação de título automaticamente" + +#: cps/templates/book_table.html:51 +msgid "Update Author Sort automatically" +msgstr "Atualizar ordenação de autor automaticamente" + +#: cps/templates/book_table.html:63 cps/templates/book_table.html:69 +msgid "Enter Title" +msgstr "Preencher título" + +#: cps/templates/book_table.html:63 cps/templates/config_view_edit.html:24 +#: cps/templates/shelf_edit.html:8 +msgid "Title" +msgstr "Título" + +#: cps/templates/book_table.html:64 +msgid "Enter Title Sort" +msgstr "Preencher ordenação do título" + +#: cps/templates/book_table.html:64 +msgid "Title Sort" +msgstr "Ordenação de título" + +#: cps/templates/book_table.html:65 +msgid "Enter Author Sort" +msgstr "Preencher ordenação de autor" + +#: cps/templates/book_table.html:65 +msgid "Author Sort" +msgstr "Ordenação de autor" + +#: cps/templates/book_table.html:66 +msgid "Enter Authors" +msgstr "Preencher autores" + +#: cps/templates/book_table.html:67 +msgid "Enter Categories" +msgstr "Preencher categorias" + +#: cps/templates/book_table.html:68 +msgid "Enter Series" +msgstr "Preencher série" + +#: cps/templates/book_table.html:69 +msgid "Series Index" +msgstr "Índice da série" + +#: cps/templates/book_table.html:70 +msgid "Enter Languages" +msgstr "Preencher idiomas" + +#: cps/templates/book_table.html:71 +msgid "Publishing Date" +msgstr "Data de publicação" + +#: cps/templates/book_table.html:72 +msgid "Enter Publishers" +msgstr "Preencher editoras" + +#: cps/templates/book_table.html:73 +msgid "Enter comments" +msgstr "Preencher comentários" + +#: cps/templates/book_table.html:73 +msgid "Comments" +msgstr "Comentários" + +#: cps/templates/book_table.html:75 +msgid "Archive Status" +msgstr "Estado de arquivamento" + +#: cps/templates/book_table.html:77 cps/templates/search_form.html:42 +msgid "Read Status" +msgstr "Estado de leitura" + +#: cps/templates/book_table.html:80 cps/templates/book_table.html:82 +#: cps/templates/book_table.html:84 cps/templates/book_table.html:86 +#: cps/templates/book_table.html:90 cps/templates/book_table.html:92 +#: cps/templates/book_table.html:96 +msgid "Enter " +msgstr "Preencher " + +#: cps/templates/book_table.html:113 cps/templates/modal_dialogs.html:46 +#: cps/templates/tasks.html:36 +msgid "Are you really sure?" +msgstr "Tem realmente a certeza?" + +#: cps/templates/book_table.html:117 +msgid "Books with Title will be merged from:" +msgstr "Livros com título serão fundidos de:" + +#: cps/templates/book_table.html:121 +msgid "Into Book with Title:" +msgstr "Em livro com o título:" + +#: cps/templates/book_table.html:126 +msgid "Merge" +msgstr "Fundir" + +#: cps/templates/config_db.html:12 +msgid "Location of Calibre Database" +msgstr "Localização da base de dados Calibre" + +#: cps/templates/config_db.html:22 +msgid "Use Google Drive?" +msgstr "Usar Google Drive?" + +#: cps/templates/config_db.html:27 +msgid "Authenticate Google Drive" +msgstr "Autenticar com Google Drive" + +#: cps/templates/config_db.html:32 +msgid "Google Drive Calibre folder" +msgstr "Pasta Calibre no Google Drive" + +#: cps/templates/config_db.html:40 +msgid "Metadata Watch Channel ID" +msgstr "ID de canal de metadados" + +#: cps/templates/config_db.html:43 +msgid "Revoke" +msgstr "Revogar" + +#: cps/templates/config_db.html:68 +msgid "New db location is invalid, please enter valid path" +msgstr "Novo local da base de dados é inválido. Por favor, insira um caminho válido" + +#: cps/templates/config_edit.html:18 +msgid "Server Configuration" +msgstr "Configuração do servidor" + +#: cps/templates/config_edit.html:25 +msgid "Server Port" +msgstr "Porta do servidor" + +#: cps/templates/config_edit.html:28 +msgid "SSL certfile location (leave it empty for non-SSL Servers)" +msgstr "Localização do ficheiro de certificado SSL (deixar vazio para servidores não-SSL)" + +#: cps/templates/config_edit.html:35 +msgid "SSL Keyfile location (leave it empty for non-SSL Servers)" +msgstr "Localização do ficheiro de chave SSL (deixar vazio para servidores não-SSL)" + +#: cps/templates/config_edit.html:43 +msgid "Update Channel" +msgstr "Canal de atualização" + +#: cps/templates/config_edit.html:45 +msgid "Stable" +msgstr "Estável" + +#: cps/templates/config_edit.html:46 +msgid "Nightly" +msgstr "Desenvolvimento" + +#: cps/templates/config_edit.html:50 +msgid "Trusted Hosts (Comma Separated)" +msgstr "Alojamentos confiáveis (Separado por vírgulas)" + +#: cps/templates/config_edit.html:61 +msgid "Logfile Configuration" +msgstr "Configuração do ficheiro de historial" + +#: cps/templates/config_edit.html:77 +msgid "Location and name of logfile (calibre-web.log for no entry)" +msgstr "Localização e nome do ficheiro de historial (calibre-web.log se nenhuma indicação)" + +#: cps/templates/config_edit.html:82 +msgid "Enable Access Log" +msgstr "Ativar historial de acesso" + +#: cps/templates/config_edit.html:85 +msgid "Location and name of access logfile (access.log for no entry)" +msgstr "Localização e nome do ficheiro de historial de acesso (access.log se nenhuma indicação)" + +#: cps/templates/config_edit.html:96 +msgid "Feature Configuration" +msgstr "Configuração do Recursos" + +#: cps/templates/config_edit.html:104 +msgid "Convert non-English characters in title and author while saving to disk" +msgstr "Converter caracteres não latinos nos títulos e autores enquanto guarda em disco" + +#: cps/templates/config_edit.html:108 +msgid "Enable Uploads" +msgstr "Ativar carregamentos" + +#: cps/templates/config_edit.html:108 +msgid "(Please ensure users having also upload rights)" +msgstr "(Por favor, certifique-se de que os utilizadores também tenham direitos de carregamento)" + +#: cps/templates/config_edit.html:112 +msgid "Allowed Upload Fileformats" +msgstr "Formatos de ficheiros de carregamento permitidos" + +#: cps/templates/config_edit.html:118 +msgid "Enable Anonymous Browsing" +msgstr "Ativar navegação anónima" + +#: cps/templates/config_edit.html:122 +msgid "Enable Public Registration" +msgstr "Ativar inscrição pública" + +#: cps/templates/config_edit.html:127 +msgid "Use Email as Username" +msgstr "Usar email como nome de utilizador" + +#: cps/templates/config_edit.html:132 +msgid "Enable Magic Link Remote Login" +msgstr "Ativar autenticação remota do Magic Link" + +#: cps/templates/config_edit.html:137 +msgid "Enable Kobo sync" +msgstr "Ativar Kobo sync" + +#: cps/templates/config_edit.html:142 +msgid "Proxy unknown requests to Kobo Store" +msgstr "Solicitações desconhecidas de Proxy para a Kobo Store" + +#: cps/templates/config_edit.html:145 +msgid "Server External Port (for port forwarded API calls)" +msgstr "Porta externa do servidor (para chamadas API encaminhadas)" + +#: cps/templates/config_edit.html:153 +msgid "Use Goodreads" +msgstr "Usar Goodreads" + +#: cps/templates/config_edit.html:154 +msgid "Create an API Key" +msgstr "Criar uma chave API" + +#: cps/templates/config_edit.html:158 +msgid "Goodreads API Key" +msgstr "Chave API Goodreads" + +#: cps/templates/config_edit.html:162 +msgid "Goodreads API Secret" +msgstr "Senha API Goodreads" + +#: cps/templates/config_edit.html:169 +msgid "Allow Reverse Proxy Authentication" +msgstr "Permitir autenticação por Proxy reverso" + +#: cps/templates/config_edit.html:180 +msgid "Login type" +msgstr "Tipo de autenticação" + +#: cps/templates/config_edit.html:182 +msgid "Use Standard Authentication" +msgstr "Usar autenticação padrão" + +#: cps/templates/config_edit.html:184 +msgid "Use LDAP Authentication" +msgstr "Usar autenticação LDAP" + +#: cps/templates/config_edit.html:187 +msgid "Use OAuth" +msgstr "Usar OAuth" + +#: cps/templates/config_edit.html:194 +msgid "LDAP Server Host Name or IP Address" +msgstr "Nome ou endereço IP do servidor LDAP" + +#: cps/templates/config_edit.html:198 +msgid "LDAP Server Port" +msgstr "Porta do servidor LDAP" + +#: cps/templates/config_edit.html:202 +msgid "LDAP Encryption" +msgstr "Criptografia LDAP" + +#: cps/templates/config_edit.html:205 +msgid "TLS" +msgstr "TLS" + +#: cps/templates/config_edit.html:206 +msgid "SSL" +msgstr "SSL" + +#: cps/templates/config_edit.html:210 +msgid "LDAP CACertificate Path (Only needed for Client Certificate Authentication)" +msgstr "Caminho do certificado CA do LDAP (Necessário apenas para autenticação por certificado de cliente)" + +#: cps/templates/config_edit.html:217 +msgid "LDAP Certificate Path (Only needed for Client Certificate Authentication)" +msgstr "Caminho do certificado LDAP (Necessário apenas para autenticação por certificado de cliente)" + +#: cps/templates/config_edit.html:224 +msgid "LDAP Keyfile Path (Only needed for Client Certificate Authentication)" +msgstr "Caminho do ficheiro de chave LDAP (Necessário apenas para autenticação por certificado de cliente)" + +#: cps/templates/config_edit.html:233 +msgid "LDAP Authentication" +msgstr "Autenticação LDAP" + +#: cps/templates/config_edit.html:235 +msgid "Anonymous" +msgstr "Anónimo" + +#: cps/templates/config_edit.html:236 +msgid "Unauthenticated" +msgstr "Não autenticado" + +#: cps/templates/config_edit.html:237 +msgid "Simple" +msgstr "Simples" + +#: cps/templates/config_edit.html:242 +msgid "LDAP Administrator Username" +msgstr "Nome de utilizador do administrador LDAP" + +#: cps/templates/config_edit.html:248 +msgid "LDAP Administrator Password" +msgstr "Senha de administrador LDAP" + +#: cps/templates/config_edit.html:253 +msgid "LDAP Distinguished Name (DN)" +msgstr "Nome distinto LDAP (DN)" + +#: cps/templates/config_edit.html:257 +msgid "LDAP User Object Filter" +msgstr "Filtro de Objeto do utilizador LDAP" + +#: cps/templates/config_edit.html:262 +msgid "LDAP Server is OpenLDAP?" +msgstr "O Servidor LDAP é OpenLDAP?" + +#: cps/templates/config_edit.html:264 +msgid "Following Settings are Needed For User Import" +msgstr "As seguintes configurações são necessárias para a importação de utilizadores" + +#: cps/templates/config_edit.html:266 +msgid "LDAP Group Object Filter" +msgstr "Filtro de objetos do grupo LDAP" + +#: cps/templates/config_edit.html:270 +msgid "LDAP Group Name" +msgstr "Nome do grupo LDAP" + +#: cps/templates/config_edit.html:274 +msgid "LDAP Group Members Field" +msgstr "Campo de membros do grupo LDAP" + +#: cps/templates/config_edit.html:278 +msgid "LDAP Member User Filter Detection" +msgstr "LDAP deteção de filtro de utilizador membro LDAP" + +#: cps/templates/config_edit.html:280 +msgid "Autodetect" +msgstr "Autodetetar" + +#: cps/templates/config_edit.html:281 +msgid "Custom Filter" +msgstr "Filtro personalizado" + +#: cps/templates/config_edit.html:286 +msgid "LDAP Member User Filter" +msgstr "Filtro de utilizador Membro LDAP" + +#: cps/templates/config_edit.html:297 +#, python-format +msgid "Obtain %(provider)s OAuth Credential" +msgstr "Obter credenciais OAuth de %(provider)s" + +#: cps/templates/config_edit.html:300 +#, python-format +msgid "%(provider)s OAuth Client Id" +msgstr "ID do cliente OAuth de %(provider)s" + +#: cps/templates/config_edit.html:304 +#, python-format +msgid "%(provider)s OAuth Client Secret" +msgstr "Senha do cliente Oauth de %(provider)s" + +#: cps/templates/config_edit.html:320 +msgid "External binaries" +msgstr "Binários externos" + +#: cps/templates/config_edit.html:326 +msgid "Path to Calibre E-Book Converter" +msgstr "Caminho para o conversor de ebooks do Calibre" + +#: cps/templates/config_edit.html:334 +msgid "Calibre E-Book Converter Settings" +msgstr "Configurações do conversor de ebooks do Calibre" + +#: cps/templates/config_edit.html:337 +msgid "Path to Kepubify E-Book Converter" +msgstr "Caminho para o conversor de ebooks do Kepubify" + +#: cps/templates/config_edit.html:345 +msgid "Location of Unrar binary" +msgstr "Caminho para o binário Unrar" + +#: cps/templates/config_edit.html:361 +#, fuzzy +msgid "Security Settings" +msgstr "Configurações do OAuth" + +#: cps/templates/config_edit.html:369 +msgid "Limit failed login attempts" +msgstr "Limitar tentativas de autenticação falhada" + +#: cps/templates/config_edit.html:372 +msgid "Session protection" +msgstr "Proteção de sessão" + +#: cps/templates/config_edit.html:374 +msgid "Basic" +msgstr "Básica" + +#: cps/templates/config_edit.html:375 +msgid "Strong" +msgstr "Forte" + +#: cps/templates/config_edit.html:380 +#, fuzzy +msgid "User Password policy" +msgstr "Política de senha do utilizador" + +#: cps/templates/config_edit.html:384 +msgid "Minimum password length" +msgstr "Tamanho mínimo da senha" + +#: cps/templates/config_edit.html:389 +msgid "Enforce number" +msgstr "Exigir números" + +#: cps/templates/config_edit.html:393 +msgid "Enforce lowercase characters" +msgstr "Exigir letras minúsculas" + +#: cps/templates/config_edit.html:397 +msgid "Enforce uppercase characters" +msgstr "Exigir letras maiúsculas" + +#: cps/templates/config_edit.html:401 +msgid "Enforce special characters" +msgstr "Exigir caracteres especiais" + +#: cps/templates/config_view_edit.html:17 +msgid "View Configuration" +msgstr "Configuração de visualização" + +#: cps/templates/config_view_edit.html:32 +msgid "No. of Random Books to Display" +msgstr "Nº aleatório de livros exibir" + +#: cps/templates/config_view_edit.html:36 +msgid "No. of Authors to Display Before Hiding (0=Disable Hiding)" +msgstr "Nº de autores a exibir antes de esconder (0=Desativar Esconder)" + +#: cps/templates/config_view_edit.html:40 cps/templates/readcbr.html:117 +msgid "Theme" +msgstr "Tema" + +#: cps/templates/config_view_edit.html:42 +msgid "Standard Theme" +msgstr "Tema padrão" + +#: cps/templates/config_view_edit.html:43 +msgid "caliBlur! Dark Theme" +msgstr "Tema caliBlur! Escuro" + +#: cps/templates/config_view_edit.html:47 +msgid "Regular Expression for Ignoring Columns" +msgstr "Expressão regular para ignorar colunas" + +#: cps/templates/config_view_edit.html:51 +msgid "Link Read/Unread Status to Calibre Column" +msgstr "Ligar Lido/Não Lido à coluna Calibre" + +#: cps/templates/config_view_edit.html:60 +msgid "View Restrictions based on Calibre column" +msgstr "Exibir restrições com base na coluna Calibre" + +#: cps/templates/config_view_edit.html:69 +msgid "Regular Expression for Title Sorting" +msgstr "Expressão regular para ordenação de títulos" + +#: cps/templates/config_view_edit.html:80 +msgid "Default Settings for New Users" +msgstr "Configuração predefinida para novos utilizadores" + +#: cps/templates/config_view_edit.html:88 cps/templates/user_edit.html:96 +msgid "Admin User" +msgstr "Utilizador Admin" + +#: cps/templates/config_view_edit.html:92 cps/templates/user_edit.html:101 +msgid "Allow Downloads" +msgstr "Permitir descarregamentos" + +#: cps/templates/config_view_edit.html:96 cps/templates/user_edit.html:105 +msgid "Allow eBook Viewer" +msgstr "Permitir visualizador de eBook" + +#: cps/templates/config_view_edit.html:101 cps/templates/user_edit.html:110 +msgid "Allow Uploads" +msgstr "Permitir carregamentos" + +#: cps/templates/config_view_edit.html:106 cps/templates/user_edit.html:115 +msgid "Allow Edit" +msgstr "Permitir editar" + +#: cps/templates/config_view_edit.html:111 cps/templates/user_edit.html:120 +msgid "Allow Delete Books" +msgstr "Permitir apagar livros" + +#: cps/templates/config_view_edit.html:116 cps/templates/user_edit.html:126 +msgid "Allow Changing Password" +msgstr "Permitir alterar senha" + +#: cps/templates/config_view_edit.html:120 cps/templates/user_edit.html:130 +msgid "Allow Editing Public Shelves" +msgstr "Permitir editar estantes públicas" + +#: cps/templates/config_view_edit.html:123 +msgid "Default Language" +msgstr "Idioma predefinido" + +#: cps/templates/config_view_edit.html:131 +msgid "Default Visible Language of Books" +msgstr "Idioma predefinido para os livros visíveis" + +#: cps/templates/config_view_edit.html:147 +msgid "Default Visibilities for New Users" +msgstr "Visibilidade predefinida para novos utilizadores" + +#: cps/templates/config_view_edit.html:163 cps/templates/user_edit.html:84 +#: cps/templates/user_table.html:154 +msgid "Show Random Books in Detail View" +msgstr "Mostrar livros aleatoriamente em visualização de detalhes" + +#: cps/templates/config_view_edit.html:166 cps/templates/user_edit.html:87 +msgid "Add Allowed/Denied Tags" +msgstr "Adicionar etiquetas Permitidas/Negadas" + +#: cps/templates/config_view_edit.html:167 +msgid "Add Allowed/Denied custom column values" +msgstr "Adicionar valores permitidos/negados de coluna personalizada" + +#: cps/templates/detail.html:77 cps/templates/detail.html:91 +msgid "Read in Browser" +msgstr "Ler no Navegador" + +#: cps/templates/detail.html:100 cps/templates/detail.html:120 +msgid "Listen in Browser" +msgstr "Ouvir no Navegador" + +#: cps/templates/detail.html:150 cps/templates/listenmp3.html:62 +#, python-format +msgid "Book %(index)s of %(range)s" +msgstr "Livro %(index)s de %(range)s" + +#: cps/templates/detail.html:201 cps/templates/listenmp3.html:111 +msgid "Published" +msgstr "Publicado em" + +#: cps/templates/detail.html:250 cps/templates/listenmp3.html:158 +msgid "Mark As Unread" +msgstr "Marcar como não Lido" + +#: cps/templates/detail.html:251 cps/templates/listenmp3.html:158 +msgid "Mark As Read" +msgstr "Marcar como lido" + +#: cps/templates/detail.html:253 cps/templates/listenmp3.html:159 +msgid "Read" +msgstr "Lido" + +#: cps/templates/detail.html:263 cps/templates/listenmp3.html:166 +msgid "Restore from archive" +msgstr "Restaurar do ficheiro" + +#: cps/templates/detail.html:264 cps/templates/listenmp3.html:166 +msgid "Add to archive" +msgstr "Adicionar ao ficheiro" + +#: cps/templates/detail.html:266 cps/templates/listenmp3.html:167 +msgid "Archived" +msgstr "Arquivado" + +#: cps/templates/detail.html:277 cps/templates/listenmp3.html:177 +msgid "Description:" +msgstr "Descrição:" + +#: cps/templates/detail.html:292 cps/templates/listenmp3.html:190 +#: cps/templates/search.html:16 +msgid "Add to shelf" +msgstr "Adicionar à estante" + +#: cps/templates/detail.html:304 cps/templates/detail.html:323 +#: cps/templates/feed.xml:80 cps/templates/layout.html:154 +#: cps/templates/listenmp3.html:201 cps/templates/listenmp3.html:218 +#: cps/templates/search.html:22 +msgid "(Public)" +msgstr "(Público)" + +#: cps/templates/detail.html:339 +msgid "Edit Metadata" +msgstr "Editar metadados" + +#: cps/templates/email_edit.html:13 +msgid "Email Account Type" +msgstr "Escolha o tipo do servidor" + +#: cps/templates/email_edit.html:15 +#, fuzzy +msgid "Standard Email Account" +msgstr "Usar conta de email padrão" + +#: cps/templates/email_edit.html:16 +#, fuzzy +msgid "Gmail Account" +msgstr "Conta Gmail" + +#: cps/templates/email_edit.html:22 +msgid "Setup Gmail Account" +msgstr "Configurar conta Gmail" + +#: cps/templates/email_edit.html:24 +msgid "Revoke Gmail Access" +msgstr "Revogar acesso ao Gmail" + +#: cps/templates/email_edit.html:42 +msgid "STARTTLS" +msgstr "STARTTLS" + +#: cps/templates/email_edit.html:43 +msgid "SSL/TLS" +msgstr "SSL/TLS" + +#: cps/templates/email_edit.html:51 +msgid "SMTP Password" +msgstr "Senha SMTP" + +#: cps/templates/email_edit.html:58 +msgid "Attachment Size Limit" +msgstr "Limite de tamanho do anexo" + +#: cps/templates/email_edit.html:66 +#, fuzzy +msgid "Save and Send Test Email" +msgstr "Guardar e enviar email de teste" + +#: cps/templates/email_edit.html:70 cps/templates/layout.html:26 +#: cps/templates/shelf_order.html:42 cps/templates/user_table.html:174 +msgid "Back" +msgstr "Voltar" + +#: cps/templates/email_edit.html:74 +msgid "Allowed Domains (Whitelist)" +msgstr "Domínios permitidos (Lista Branca)" + +#: cps/templates/email_edit.html:78 cps/templates/email_edit.html:105 +msgid "Add Domain" +msgstr "Adicionar domínio" + +#: cps/templates/email_edit.html:81 cps/templates/email_edit.html:108 +#: cps/templates/user_table.html:27 +msgid "Add" +msgstr "Adicionar" + +#: cps/templates/email_edit.html:86 cps/templates/email_edit.html:96 +msgid "Enter domainname" +msgstr "Digite o nome do domínio" + +#: cps/templates/email_edit.html:92 +msgid "Denied Domains (Blacklist)" +msgstr "Domínios ngados (Lista Negra)" + +#: cps/templates/feed.xml:21 cps/templates/layout.html:187 +msgid "Next" +msgstr "Seguinte" + +#: cps/templates/generate_kobo_auth_url.html:6 +msgid "Open the .kobo/Kobo/Kobo eReader.conf file in a text editor and add (or edit):" +msgstr "Abra o ficheiro .kobo/Kobo/Kobo eReader.conf em um editor de texto e adicione (ou edite):" + +#: cps/templates/generate_kobo_auth_url.html:11 +msgid "Kobo Token:" +msgstr "Token Kobo:" + +#: cps/templates/grid.html:21 +msgid "List" +msgstr "Lista" + +#: cps/templates/http_error.html:34 +msgid "Calibre-Web Instance is unconfigured, please contact your administrator" +msgstr "Instancia do Calibre-Web não configurada. Por favor, contacte o seu administrador" + +#: cps/templates/http_error.html:44 +msgid "Create Issue" +msgstr "Criar ocorrência" + +#: cps/templates/http_error.html:51 +msgid "Return to Home" +msgstr "Voltar para entrada" + +#: cps/templates/http_error.html:53 +msgid "Logout User" +msgstr "Terminar sessão" + +#: cps/templates/index.html:71 +msgid "Sort ascending according to download count" +msgstr "Ordenar por ordem crescente de acordo com a quantidade de descarregamentos" + +#: cps/templates/index.html:72 +msgid "Sort descending according to download count" +msgstr "Ordenar por ordem decrescente de acordo com a quantidade de descarregamentos" + +#: cps/templates/index.html:78 cps/templates/search.html:35 +#: cps/templates/shelf.html:24 +msgid "Sort authors in alphabetical order" +msgstr "Ordenar autores por ordem alfabética" + +#: cps/templates/index.html:79 cps/templates/search.html:36 +#: cps/templates/shelf.html:25 +msgid "Sort authors in reverse alphabetical order" +msgstr "Ordenar autores por ordem alfabética inversa" + +#: cps/templates/index.html:83 +msgid "Sort ascending according to series index" +msgstr "Ordenar em ordem ascendente de acordo com o índice da série" + +#: cps/templates/index.html:84 +msgid "Sort descending according to series index" +msgstr "Ordenação em ordem descendente de acordo com o índice de série" + +#: cps/templates/index.xml:6 +msgid "Start" +msgstr "Início" + +#: cps/templates/index.xml:18 +msgid "Alphabetical Books" +msgstr "Livros alfabeticamente" + +#: cps/templates/index.xml:22 +msgid "Books sorted alphabetically" +msgstr "Livros ordenados alfabeticamente" + +#: cps/templates/index.xml:29 +msgid "Popular publications from this catalog based on Downloads." +msgstr "Publicações populares deste catálogo com base no número de descarregamentos." + +#: cps/templates/index.xml:36 +msgid "Popular publications from this catalog based on Rating." +msgstr "Publicações populares deste catálogo com base nas pontuações." + +#: cps/templates/index.xml:39 +msgid "Recently added Books" +msgstr "Livros recentemente adicionados" + +#: cps/templates/index.xml:43 +msgid "The latest Books" +msgstr "Os livros mais recentes" + +#: cps/templates/index.xml:46 +msgid "Random Books" +msgstr "Livros aleatórios" + +#: cps/templates/index.xml:73 +msgid "Books ordered by Author" +msgstr "Livros ordenados por autor" + +#: cps/templates/index.xml:80 +msgid "Books ordered by publisher" +msgstr "Livros ordenados por editora" + +#: cps/templates/index.xml:87 +msgid "Books ordered by category" +msgstr "Livros ordenados por categoria" + +#: cps/templates/index.xml:94 +msgid "Books ordered by series" +msgstr "Livros ordenados por série" + +#: cps/templates/index.xml:101 +msgid "Books ordered by Languages" +msgstr "Livros ordenados por idiomas" + +#: cps/templates/index.xml:108 +msgid "Books ordered by Rating" +msgstr "Livros ordenados por pontuação" + +#: cps/templates/index.xml:116 +msgid "Books ordered by file formats" +msgstr "Livros ordenados por formatos de ficheiro" + +#: cps/templates/index.xml:119 cps/templates/layout.html:152 +#: cps/templates/search_form.html:87 +msgid "Shelves" +msgstr "Estantes" + +#: cps/templates/index.xml:123 +msgid "Books organized in shelves" +msgstr "Livros organizados em estantes" + +#: cps/templates/layout.html:26 cps/templates/login.html:30 +msgid "Home" +msgstr "Entrada" + +#: cps/templates/layout.html:32 +msgid "Toggle Navigation" +msgstr "Alternar navegação" + +#: cps/templates/layout.html:47 +msgid "Search Library" +msgstr "Pesquisar na biblioteca" + +#: cps/templates/layout.html:65 cps/templates/layout.html:94 +msgid "Account" +msgstr "Conta" + +#: cps/templates/layout.html:71 cps/templates/layout.html:96 +msgid "Logout" +msgstr "Sair" + +#: cps/templates/layout.html:78 cps/templates/layout.html:134 +msgid "Uploading..." +msgstr "A carregar..." + +#: cps/templates/layout.html:78 +msgid "Error" +msgstr "Erro" + +#: cps/templates/layout.html:78 +msgid "Upload done, processing, please wait..." +msgstr "Carregamento concluído, a processar. Por favor, aguarde ..." + +#: cps/templates/layout.html:91 cps/templates/read.html:76 +#: cps/templates/readcbr.html:86 cps/templates/readcbr.html:112 +msgid "Settings" +msgstr "Configurações" + +#: cps/templates/layout.html:135 +msgid "Please do not refresh the page" +msgstr "Por favor, não refresque a página" + +#: cps/templates/layout.html:145 +msgid "Browse" +msgstr "Navegar" + +#: cps/templates/layout.html:158 cps/templates/stats.html:3 +msgid "About" +msgstr "Sobre" + +#: cps/templates/layout.html:172 +msgid "Previous" +msgstr "Anterior" + +#: cps/templates/layout.html:199 +msgid "Book Details" +msgstr "Detalhes do livro" + +#: cps/templates/list.html:22 +msgid "Grid" +msgstr "Grelha" + +#: cps/templates/login.html:18 +msgid "Remember Me" +msgstr "Memorizar-me" + +#: cps/templates/login.html:23 +msgid "Forgot Password?" +msgstr "Esqueceu-se da senha?" + +#: cps/templates/login.html:34 +msgid "Log in with Magic Link" +msgstr "Autentique-se com o Magic Link" + +#: cps/templates/logviewer.html:6 +msgid "Show Calibre-Web Log: " +msgstr "Mostrar historial Calibre-Web: " + +#: cps/templates/logviewer.html:8 +msgid "Calibre-Web Log: " +msgstr "Historial Calibre-Web: " + +#: cps/templates/logviewer.html:8 +msgid "Stream output, can't be displayed" +msgstr "Saída do fluxo, não pode ser exibida" + +#: cps/templates/logviewer.html:12 +msgid "Show Access Log: " +msgstr "Mostrar historial de acesso: " + +#: cps/templates/logviewer.html:18 +msgid "Download Calibre-Web Log" +msgstr "Descarregar historial Calibre-Web" + +#: cps/templates/logviewer.html:21 +msgid "Download Access Log" +msgstr "Descarregar historial de acessos" + +#: cps/templates/modal_dialogs.html:6 +msgid "Select Allowed/Denied Tags" +msgstr "Selecionar etiquetas permitidas/negadas" + +#: cps/templates/modal_dialogs.html:7 +msgid "Select Allowed/Denied Custom Column Values" +msgstr "Selecionar valores permitidos/negados para coluna personalizada" + +#: cps/templates/modal_dialogs.html:8 +msgid "Select Allowed/Denied Tags of User" +msgstr "Selecionar etiquetas de utilizador permitidas/negadas" + +#: cps/templates/modal_dialogs.html:9 +msgid "Select Allowed/Denied Custom Column Values of User" +msgstr "Selecionar valores de utilizador permitidos/negados para coluna personalizada" + +#: cps/templates/modal_dialogs.html:15 +msgid "Enter Tag" +msgstr "Digite a etiqueta" + +#: cps/templates/modal_dialogs.html:24 +msgid "Add View Restriction" +msgstr "Adicionar restrição de visualização" + +#: cps/templates/modal_dialogs.html:50 +msgid "This book format will be permanently erased from database" +msgstr "Este formato de livro será apagado permanentemente da base de dados" + +#: cps/templates/modal_dialogs.html:51 +msgid "This book will be permanently erased from database" +msgstr "Este livro será apagado permanentemente da base de dados" + +#: cps/templates/modal_dialogs.html:52 +msgid "and hard disk" +msgstr "e disco rígido" + +#: cps/templates/modal_dialogs.html:56 +msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." +msgstr "Nota importante Kobo: os livros apagados continuarão existindo em qualquer dispositivo Kobo que esteja emparelhado." + +#: cps/templates/modal_dialogs.html:57 +msgid "Books must first be archived and the device synced before a book can safely be deleted." +msgstr "Os livros devem primeiro ser arquivados e o dispositivo deve ser sincronizado antes que um livro possa ser apagado com segurança." + +#: cps/templates/modal_dialogs.html:76 +msgid "Choose File Location" +msgstr "Escolher a localização do ficheiro" + +#: cps/templates/modal_dialogs.html:82 +msgid "type" +msgstr "tipo" + +#: cps/templates/modal_dialogs.html:83 +msgid "name" +msgstr "nome" + +#: cps/templates/modal_dialogs.html:84 +msgid "size" +msgstr "tamanho" + +#: cps/templates/modal_dialogs.html:90 +msgid "Parent Directory" +msgstr "Pasta superior" + +#: cps/templates/modal_dialogs.html:98 +msgid "Select" +msgstr "Selecionar" + +#: cps/templates/modal_dialogs.html:134 cps/templates/tasks.html:45 +msgid "Ok" +msgstr "Ok" + +#: cps/templates/osd.xml:5 +msgid "Calibre-Web eBook Catalog" +msgstr "Catálogo de ebooks Calibre-Web" + +#: cps/templates/read.html:6 +msgid "epub Reader" +msgstr "leitor de epub" + +#: cps/templates/read.html:81 cps/templates/readcbr.html:120 +msgid "Light" +msgstr "Claro" + +#: cps/templates/read.html:82 cps/templates/readcbr.html:121 +msgid "Dark" +msgstr "Escuro" + +#: cps/templates/read.html:83 +msgid "Sepia" +msgstr "Sépia" + +#: cps/templates/read.html:84 +msgid "Black" +msgstr "Preto" + +#: cps/templates/read.html:88 +msgid "Reflow text when sidebars are open." +msgstr "Refluir o texto quando as barras laterais estiverem abertas." + +#: cps/templates/read.html:93 +msgid "Font Sizes" +msgstr "Tamanhos de letra" + +#: cps/templates/readcbr.html:7 +msgid "Comic Reader" +msgstr "Leitor de banda desenhada" + +#: cps/templates/readcbr.html:91 +msgid "Keyboard Shortcuts" +msgstr "Atalhos de teclado" + +#: cps/templates/readcbr.html:94 +msgid "Previous Page" +msgstr "Página anterior" + +#: cps/templates/readcbr.html:95 +msgid "Next Page" +msgstr "Página seguinte" + +#: cps/templates/readcbr.html:96 +msgid "Single Page Display" +msgstr "Exibição de página única" + +#: cps/templates/readcbr.html:97 +msgid "Long Strip Display" +msgstr "Exibição de tira única" + +#: cps/templates/readcbr.html:98 +msgid "Scale to Best" +msgstr "Dimensionar para melhor" + +#: cps/templates/readcbr.html:99 +msgid "Scale to Width" +msgstr "Dimensionar para largura" + +#: cps/templates/readcbr.html:100 +msgid "Scale to Height" +msgstr "Dimensionar para altura" + +#: cps/templates/readcbr.html:101 +msgid "Scale to Native" +msgstr "Dimensionar para nativo" + +#: cps/templates/readcbr.html:102 +msgid "Rotate Right" +msgstr "Girar para direita" + +#: cps/templates/readcbr.html:103 +msgid "Rotate Left" +msgstr "Girar para esquerda" + +#: cps/templates/readcbr.html:104 +msgid "Flip Image" +msgstr "Inverter imagem" + +#: cps/templates/readcbr.html:126 +msgid "Display" +msgstr "Exibir" + +#: cps/templates/readcbr.html:129 +#, fuzzy +msgid "Single Page" +msgstr "Página única" + +#: cps/templates/readcbr.html:130 +msgid "Long Strip" +msgstr "Tira longa" + +#: cps/templates/readcbr.html:135 +msgid "Scale" +msgstr "Dimensionar" + +#: cps/templates/readcbr.html:138 +msgid "Best" +msgstr "Melhor" + +#: cps/templates/readcbr.html:139 +msgid "Width" +msgstr "Largura" + +#: cps/templates/readcbr.html:140 +msgid "Height" +msgstr "Altura" + +#: cps/templates/readcbr.html:141 +msgid "Native" +msgstr "Nativo" + +#: cps/templates/readcbr.html:146 +msgid "Rotate" +msgstr "Rodar" + +#: cps/templates/readcbr.html:157 +msgid "Flip" +msgstr "Inverter" + +#: cps/templates/readcbr.html:160 +msgid "Horizontal" +msgstr "Horizontal" + +#: cps/templates/readcbr.html:161 +msgid "Vertical" +msgstr "Vertical" + +#: cps/templates/readcbr.html:166 +msgid "Direction" +msgstr "Direção" + +#: cps/templates/readcbr.html:169 +msgid "Left to Right" +msgstr "Esquerda para a direita" + +#: cps/templates/readcbr.html:170 +msgid "Right to Left" +msgstr "Direita para a esquerda" + +#: cps/templates/readcbr.html:175 +msgid "Scrollbar" +msgstr "Barra de rolagem" + +#: cps/templates/readcbr.html:178 +msgid "Show" +msgstr "Mostrar" + +#: cps/templates/readcbr.html:179 +msgid "Hide" +msgstr "Esconder" + +#: cps/templates/readdjvu.html:5 +msgid "DJVU Reader" +msgstr "Leitor de DJVU" + +#: cps/templates/readpdf.html:32 +msgid "PDF Reader" +msgstr "Leitor de PDF" + +#: cps/templates/readtxt.html:6 +msgid "txt Reader" +msgstr "Leitor de TXT" + +#: cps/templates/register.html:4 +msgid "Register New Account" +msgstr "Criar nova conta" + +#: cps/templates/register.html:10 +msgid "Choose a username" +msgstr "Escolher um nome de utilizador" + +#: cps/templates/register.html:15 +msgid "Your Email" +msgstr "O seu endereço de email" + +#: cps/templates/remote_login.html:5 +msgid "Magic Link - Authorise New Device" +msgstr "Magic Link - Autorizar novo dispositivo" + +#: cps/templates/remote_login.html:7 +msgid "On another device, login and visit:" +msgstr "Noutro dispositivo, autentique-se e visite:" + +#: cps/templates/remote_login.html:11 +msgid "Once verified, you will automatically be logged in on this device." +msgstr "Uma vez verificado, você será automaticamente ligado a este dispositivo." + +#: cps/templates/remote_login.html:14 +msgid "This verification link will expire in 10 minutes." +msgstr "Esta ligação de verificação irá expirar em 10 minutos." + +#: cps/templates/schedule_edit.html:33 +msgid "Generate Series Cover Thumbnails" +msgstr "Gerar miniaturas para capa de série" + +#: cps/templates/search.html:6 +msgid "No Results Found" +msgstr "Nenhum resultado encontrado" + +#: cps/templates/search.html:7 +msgid "Search Term:" +msgstr "Termo de pesquisa:" + +#: cps/templates/search.html:9 +msgid "Results for:" +msgstr "Resultados sobre:" + +#: cps/templates/search_form.html:21 +msgid "Published Date From" +msgstr "Data de publicação de" + +#: cps/templates/search_form.html:31 +msgid "Published Date To" +msgstr "Data de publicação até" + +#: cps/templates/search_form.html:59 +msgid "Exclude Tags" +msgstr "Excluir etiquetas" + +#: cps/templates/search_form.html:77 +msgid "Exclude Series" +msgstr "Excluir série" + +#: cps/templates/search_form.html:95 +msgid "Exclude Shelves" +msgstr "Excluir estante" + +#: cps/templates/search_form.html:115 +msgid "Exclude Languages" +msgstr "Excluir idiomas" + +#: cps/templates/search_form.html:126 +msgid "Extensions" +msgstr "Extensões" + +#: cps/templates/search_form.html:134 +msgid "Exclude Extensions" +msgstr "Excluir extensões" + +#: cps/templates/search_form.html:144 +msgid "Rating Above" +msgstr "Pontuação acima" + +#: cps/templates/search_form.html:148 +msgid "Rating Below" +msgstr "Pontuação abaixo" + +#: cps/templates/search_form.html:180 +msgid "From:" +msgstr "De:" + +#: cps/templates/search_form.html:190 +msgid "To:" +msgstr "Para:" + +#: cps/templates/shelf.html:13 +msgid "Delete this Shelf" +msgstr "Apagar esta estante" + +#: cps/templates/shelf.html:14 +msgid "Edit Shelf Properties" +msgstr "Editar propriedades da estante" + +#: cps/templates/shelf.html:17 +msgid "Arrange books manually" +msgstr "Organizar livros manualmente" + +#: cps/templates/shelf.html:18 +msgid "Disable Change order" +msgstr "Desativar alterar ordenação" + +#: cps/templates/shelf.html:18 +msgid "Enable Change order" +msgstr "Ativar alterar ordenação" + +#: cps/templates/shelf_edit.html:14 +msgid "Share with Everyone" +msgstr "Partilhar com todos" + +#: cps/templates/shelf_edit.html:21 +msgid "Sync this shelf with Kobo device" +msgstr "sincronizar esta Estante com o Dispositivo Kobo" + +#: cps/templates/shelf_order.html:5 +msgid "Drag to Rearrange Order" +msgstr "Arrastar para reordenar" + +#: cps/templates/shelf_order.html:33 +msgid "Hidden Book" +msgstr "Livro oculto" + +#: cps/templates/stats.html:7 +msgid "Library Statistics" +msgstr "Estatísticas da biblioteca" + +#: cps/templates/stats.html:12 +msgid "Books in this Library" +msgstr "Livros nesta biblioteca" + +#: cps/templates/stats.html:16 +msgid "Authors in this Library" +msgstr "Autores nesta biblioteca" + +#: cps/templates/stats.html:20 +msgid "Categories in this Library" +msgstr "Categorias nesta biblioteca" + +#: cps/templates/stats.html:24 +msgid "Series in this Library" +msgstr "Séries nesta biblioteca" + +#: cps/templates/stats.html:29 +msgid "System Statistics" +msgstr "Estatísticas do sistema" + +#: cps/templates/stats.html:33 +msgid "Program" +msgstr "Programa" + +#: cps/templates/stats.html:34 +msgid "Installed Version" +msgstr "Versão instalada" + +#: cps/templates/tasks.html:12 +msgid "User" +msgstr "Utilizador" + +#: cps/templates/tasks.html:14 +msgid "Task" +msgstr "Tarefa" + +#: cps/templates/tasks.html:15 +msgid "Status" +msgstr "Estado" + +#: cps/templates/tasks.html:16 +msgid "Progress" +msgstr "Progresso" + +#: cps/templates/tasks.html:17 +msgid "Run Time" +msgstr "Tempo de execução" + +#: cps/templates/tasks.html:20 +msgid "Actions" +msgstr "Ações" + +#: cps/templates/tasks.html:40 +msgid "This task will be cancelled. Any progress made by this task will be saved." +msgstr "Esta tarefa será cancelada. Qualquer progresso feito por esta tarefa será guardado." + +#: cps/templates/tasks.html:41 +msgid "If this is a scheduled task, it will be re-ran during the next scheduled time." +msgstr "Se esta for uma tarefa agendada, ela será executada novamente durante o próximo horário agendado." + +#: cps/templates/user_edit.html:20 +msgid "Reset user Password" +msgstr "Redefinir senha do utilizador" + +#: cps/templates/user_edit.html:43 +msgid "Language of Books" +msgstr "Idioma dos livros" + +#: cps/templates/user_edit.html:54 +msgid "OAuth Settings" +msgstr "Configurações do OAuth" + +#: cps/templates/user_edit.html:56 +msgid "Link" +msgstr "Ligação" + +#: cps/templates/user_edit.html:58 +msgid "Unlink" +msgstr "Desvincular" + +#: cps/templates/user_edit.html:64 +msgid "Kobo Sync Token" +msgstr "Token de sincronização Kobo" + +#: cps/templates/user_edit.html:66 +msgid "Create/View" +msgstr "Criar/Ver" + +#: cps/templates/user_edit.html:70 +msgid "Force full kobo sync" +msgstr "Forçar sincronização completa Kobo" + +#: cps/templates/user_edit.html:88 +msgid "Add allowed/Denied Custom Column Values" +msgstr "Adicionar valores permitidos/negados da coluna personalizada" + +#: cps/templates/user_edit.html:137 +msgid "Sync only books in selected shelves with Kobo" +msgstr "Sincronizar com Kobo apenas livros em estantes selecionadas" + +#: cps/templates/user_edit.html:147 cps/templates/user_table.html:169 +msgid "Delete User" +msgstr "Apagar utilizador" + +#: cps/templates/user_edit.html:159 +msgid "Generate Kobo Auth URL" +msgstr "Gerar URL de autenticação Kobo" + +#: cps/templates/user_table.html:80 cps/templates/user_table.html:103 +msgid "Select..." +msgstr "Selecionar..." + +#: cps/templates/user_table.html:131 +msgid "Edit User" +msgstr "Editar utilizador" + +#: cps/templates/user_table.html:134 +msgid "Enter Username" +msgstr "Escolha um nome de utilizador" + +#: cps/templates/user_table.html:135 +#, fuzzy +msgid "Enter Email" +msgstr "Email de teste" + +#: cps/templates/user_table.html:136 +#, fuzzy +msgid "Enter eReader Email" +msgstr "Enviar para o endereço de email do dispositivo de leitura" + +#: cps/templates/user_table.html:136 +#, fuzzy +msgid "eReader Email" +msgstr "Email do dispositivo de leitura" + +#: cps/templates/user_table.html:137 +msgid "Locale" +msgstr "Idioma" + +#: cps/templates/user_table.html:138 +msgid "Visible Book Languages" +msgstr "Idiomas de livros visíveis" + +#: cps/templates/user_table.html:139 +msgid "Edit Allowed Tags" +msgstr "Editar etiquetas permitidas" + +#: cps/templates/user_table.html:139 +msgid "Allowed Tags" +msgstr "Etiquetas permitidas" + +#: cps/templates/user_table.html:140 +msgid "Edit Denied Tags" +msgstr "Editar etiquetas não permitidas" + +#: cps/templates/user_table.html:140 +msgid "Denied Tags" +msgstr "Etiquetas não permitidas" + +#: cps/templates/user_table.html:141 +msgid "Edit Allowed Column Values" +msgstr "Editar valores de coluna permitidos" + +#: cps/templates/user_table.html:141 +msgid "Allowed Column Values" +msgstr "Valores de coluna permitidos" + +#: cps/templates/user_table.html:142 +msgid "Edit Denied Column Values" +msgstr "Editar valores de coluna não permitidos" + +#: cps/templates/user_table.html:142 +msgid "Denied Column Values" +msgstr "Valores de coluna não permitidos" + +#: cps/templates/user_table.html:144 +msgid "Change Password" +msgstr "Alterar senha" + +#: cps/templates/user_table.html:147 +msgid "View" +msgstr "Ver" + +#: cps/templates/user_table.html:150 +msgid "Edit Public Shelves" +msgstr "Editar estantes públicas" + +#: cps/templates/user_table.html:152 +msgid "Sync selected Shelves with Kobo" +msgstr "Sincronizar com Kobo as estantes selecionadas" + +#: cps/templates/user_table.html:156 +#, fuzzy +msgid "Show Read/Unread Section" +msgstr "Mostrar seção de lidos/não lidos" From a4d45512eebfcc89dda047dcdbd935da43c0f378 Mon Sep 17 00:00:00 2001 From: Horus68 Date: Tue, 25 Jul 2023 11:40:26 +0100 Subject: [PATCH 09/15] pt-BR Update messages.po fixing pt-BR major errors --- .../pt_BR/LC_MESSAGES/messages.po | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/cps/translations/pt_BR/LC_MESSAGES/messages.po b/cps/translations/pt_BR/LC_MESSAGES/messages.po index 1bfe783b..2697bb36 100644 --- a/cps/translations/pt_BR/LC_MESSAGES/messages.po +++ b/cps/translations/pt_BR/LC_MESSAGES/messages.po @@ -814,7 +814,7 @@ msgstr "Erro excecutando UnRar" #: cps/helper.py:1078 #, fuzzy msgid "Cover" -msgstr "Descubra" +msgstr "Capa" #: cps/helper.py:1080 cps/templates/admin.html:216 msgid "Queue all books for metadata backup" @@ -985,7 +985,7 @@ msgstr "Categorias" #: cps/render_template.py:74 cps/templates/user_table.html:158 #, fuzzy msgid "Show Category Section" -msgstr "Mostrar seleção de categoria" +msgstr "Mostrar seção de categoria" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:90 @@ -996,7 +996,7 @@ msgstr "Série" #: cps/render_template.py:77 cps/templates/user_table.html:157 #, fuzzy msgid "Show Series Section" -msgstr "Mostrar seleção de séries" +msgstr "Mostrar seção de séries" #: cps/render_template.py:78 cps/templates/book_table.html:66 #: cps/templates/index.xml:69 @@ -1006,7 +1006,7 @@ msgstr "Autores" #: cps/render_template.py:80 cps/templates/user_table.html:160 #, fuzzy msgid "Show Author Section" -msgstr "Mostrar seleção de autor" +msgstr "Mostrar seção de autor" #: cps/render_template.py:82 cps/templates/book_table.html:72 #: cps/templates/index.xml:76 cps/web.py:977 @@ -1016,7 +1016,7 @@ msgstr "Editoras" #: cps/render_template.py:84 cps/templates/user_table.html:163 #, fuzzy msgid "Show Publisher Section" -msgstr "Mostrar seleção de editoras" +msgstr "Mostrar seção de editoras" #: cps/render_template.py:85 cps/templates/book_table.html:70 #: cps/templates/index.xml:97 cps/templates/search_form.html:107 @@ -1027,7 +1027,7 @@ msgstr "Idiomas" #: cps/render_template.py:88 cps/templates/user_table.html:155 #, fuzzy msgid "Show Language Section" -msgstr "Mostrar seleção de idioma" +msgstr "Mostrar seção de idioma" #: cps/render_template.py:89 cps/templates/index.xml:104 msgid "Ratings" @@ -1036,7 +1036,7 @@ msgstr "Avaliações" #: cps/render_template.py:91 cps/templates/user_table.html:164 #, fuzzy msgid "Show Ratings Section" -msgstr "Mostrar seleção de avaliações" +msgstr "Mostrar seção de avaliações" #: cps/render_template.py:92 cps/templates/index.xml:112 msgid "File formats" @@ -1045,7 +1045,7 @@ msgstr "Formatos de arquivo" #: cps/render_template.py:94 cps/templates/user_table.html:165 #, fuzzy msgid "Show File Formats Section" -msgstr "Mostrar seleção de formatos de arquivo" +msgstr "Mostrar seção de formatos de arquivo" #: cps/render_template.py:96 cps/web.py:776 msgid "Archived Books" @@ -1500,7 +1500,7 @@ msgstr "E-mail" #: cps/tasks/metadata_backup.py:46 #, fuzzy msgid "Backing up Metadata" -msgstr "editar metadados" +msgstr "Cópia de segurança de metadados" #: cps/tasks/thumbnail.py:96 #, python-format @@ -3476,5 +3476,5 @@ msgstr "Sincronizar Estantes Selecionadas com Kobo" #: cps/templates/user_table.html:156 #, fuzzy msgid "Show Read/Unread Section" -msgstr "Mostrar seleção de lidos/não lidos" +msgstr "Mostrar seção de lidos/não lidos" From 256f4bb428a8822525022ba18f8503cfc3679978 Mon Sep 17 00:00:00 2001 From: Horus68 Date: Tue, 25 Jul 2023 11:43:03 +0100 Subject: [PATCH 10/15] Update messages.po fix typo --- cps/translations/pt_PT/LC_MESSAGES/messages.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cps/translations/pt_PT/LC_MESSAGES/messages.po b/cps/translations/pt_PT/LC_MESSAGES/messages.po index e6cdf588..e6284077 100644 --- a/cps/translations/pt_PT/LC_MESSAGES/messages.po +++ b/cps/translations/pt_PT/LC_MESSAGES/messages.po @@ -985,7 +985,7 @@ msgstr "Categorias" #: cps/render_template.py:74 cps/templates/user_table.html:158 #, fuzzy msgid "Show Category Section" -msgstr "Mostrar seção da categoria" +msgstr "Mostrar secção da categoria" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:90 @@ -996,7 +996,7 @@ msgstr "Séries" #: cps/render_template.py:77 cps/templates/user_table.html:157 #, fuzzy msgid "Show Series Section" -msgstr "Mostrar seção de séries" +msgstr "Mostrar secção de séries" #: cps/render_template.py:78 cps/templates/book_table.html:66 #: cps/templates/index.xml:69 @@ -1006,7 +1006,7 @@ msgstr "Autores" #: cps/render_template.py:80 cps/templates/user_table.html:160 #, fuzzy msgid "Show Author Section" -msgstr "Mostrar seção de autor" +msgstr "Mostrar secção de autor" #: cps/render_template.py:82 cps/templates/book_table.html:72 #: cps/templates/index.xml:76 cps/web.py:977 @@ -1027,7 +1027,7 @@ msgstr "Idiomas" #: cps/render_template.py:88 cps/templates/user_table.html:155 #, fuzzy msgid "Show Language Section" -msgstr "Mostrar seção de idioma" +msgstr "Mostrar secção de idioma" #: cps/render_template.py:89 cps/templates/index.xml:104 msgid "Ratings" @@ -1036,7 +1036,7 @@ msgstr "Pontuações" #: cps/render_template.py:91 cps/templates/user_table.html:164 #, fuzzy msgid "Show Ratings Section" -msgstr "Mostrar seção de pontuações" +msgstr "Mostrar secção de pontuações" #: cps/render_template.py:92 cps/templates/index.xml:112 msgid "File formats" @@ -1045,7 +1045,7 @@ msgstr "Formatos de ficheiro" #: cps/render_template.py:94 cps/templates/user_table.html:165 #, fuzzy msgid "Show File Formats Section" -msgstr "Mostrar seção de formatos de ficheiro" +msgstr "Mostrar secção de formatos de ficheiro" #: cps/render_template.py:96 cps/web.py:776 msgid "Archived Books" @@ -3476,4 +3476,4 @@ msgstr "Sincronizar com Kobo as estantes selecionadas" #: cps/templates/user_table.html:156 #, fuzzy msgid "Show Read/Unread Section" -msgstr "Mostrar seção de lidos/não lidos" +msgstr "Mostrar secção de lidos/não lidos" From b5e4a88357ca405433f302df4bd97daa1e4923ee Mon Sep 17 00:00:00 2001 From: Horus68 Date: Tue, 25 Jul 2023 13:11:08 +0100 Subject: [PATCH 11/15] Update messages.po --- cps/translations/pt_BR/LC_MESSAGES/messages.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cps/translations/pt_BR/LC_MESSAGES/messages.po b/cps/translations/pt_BR/LC_MESSAGES/messages.po index 2697bb36..c56f45e0 100644 --- a/cps/translations/pt_BR/LC_MESSAGES/messages.po +++ b/cps/translations/pt_BR/LC_MESSAGES/messages.po @@ -2432,7 +2432,7 @@ msgstr "" #: cps/templates/config_edit.html:380 #, fuzzy msgid "User Password policy" -msgstr "Redefinir senha do usuário" +msgstr "Política de senha do usuário" #: cps/templates/config_edit.html:384 msgid "Minimum password length" @@ -2628,7 +2628,7 @@ msgstr "Use Conta de E-Mail Padrão" #: cps/templates/email_edit.html:16 #, fuzzy msgid "Gmail Account" -msgstr "Escolha o Tipo do Servidor" +msgstr "Conta Gmail" #: cps/templates/email_edit.html:22 msgid "Setup Gmail Account" @@ -3072,7 +3072,7 @@ msgstr "" #: cps/templates/readcbr.html:129 #, fuzzy msgid "Single Page" -msgstr "Página de Administração" +msgstr "Página única" #: cps/templates/readcbr.html:130 msgid "Long Strip" From 5eef476135d8f825a820587af1c1854077884225 Mon Sep 17 00:00:00 2001 From: Horus68 Date: Tue, 25 Jul 2023 13:48:57 +0100 Subject: [PATCH 12/15] Update messages.po --- cps/translations/pt_BR/LC_MESSAGES/messages.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cps/translations/pt_BR/LC_MESSAGES/messages.po b/cps/translations/pt_BR/LC_MESSAGES/messages.po index c56f45e0..1d2798f4 100644 --- a/cps/translations/pt_BR/LC_MESSAGES/messages.po +++ b/cps/translations/pt_BR/LC_MESSAGES/messages.po @@ -100,7 +100,7 @@ msgstr "Nenhum usuário administrador restante, impossível remover a função d #: cps/admin.py:494 cps/admin.py:508 msgid "Value has to be true or false" -msgstr "Valor não pode ser Verdadeiro ou Falso" +msgstr "Valor tem de ser Verdadeiro ou Falso" #: cps/admin.py:496 msgid "Invalid role" From cce538d5a77b8bae5a39e91044aa37d2a5818ce7 Mon Sep 17 00:00:00 2001 From: Ozzie Isaacs Date: Fri, 28 Jul 2023 13:44:56 +0200 Subject: [PATCH 13/15] Update Testresult --- test/Calibre-Web TestSummary_Linux.html | 314 +++++++++++++++++------- 1 file changed, 219 insertions(+), 95 deletions(-) diff --git a/test/Calibre-Web TestSummary_Linux.html b/test/Calibre-Web TestSummary_Linux.html index 81b17007..309c9a25 100644 --- a/test/Calibre-Web TestSummary_Linux.html +++ b/test/Calibre-Web TestSummary_Linux.html @@ -37,20 +37,20 @@
-

Start Time: 2023-06-18 11:18:49

+

Start Time: 2023-07-26 21:47:14

-

Stop Time: 2023-06-18 17:27:42

+

Stop Time: 2023-07-27 04:10:01

-

Duration: 5h 10 min

+

Duration: 5h 21 min

@@ -234,12 +234,12 @@ - + TestBackupMetadata 22 - 22 - 0 - 0 + 20 + 1 + 1 0 Detail @@ -293,11 +293,32 @@ - +
TestBackupMetadata - test_backup_change_book_publisher
- PASS + +
+ FAIL +
+ + + + @@ -374,11 +395,33 @@ - +
TestBackupMetadata - test_backup_change_custom_categories
- PASS + +
+ ERROR +
+ + + + @@ -972,11 +1015,11 @@ - + TestEbookConvertGDriveKepubify 3 - 3 - 0 + 2 + 1 0 0 @@ -995,11 +1038,33 @@ - +
TestEbookConvertGDriveKepubify - test_convert_only
- PASS + +
+ FAIL +
+ + + + @@ -1903,11 +1968,11 @@ - + TestEditBooksOnGdrive 18 - 18 - 0 + 17 + 1 0 0 @@ -2070,11 +2135,31 @@ - +
TestEditBooksOnGdrive - test_watch_metadata
- PASS + +
+ FAIL +
+ + + + @@ -3479,60 +3564,53 @@ - - _FailedTest - 1 + + TestPipInstall + 3 + 3 0 0 - 1 0 - Detail + Detail - + -
_FailedTest - test_pip_install
+
TestPipInstall - test_command_start
- -
- ERROR -
- - - + PASS + + + + + + +
TestPipInstall - test_foldername_database_location
+ PASS + + + + + + +
TestPipInstall - test_module_start
+ + PASS - + TestReader 6 - 6 - 0 + 5 + 1 0 0 @@ -3578,11 +3656,37 @@ ModuleNotFoundError: No module named 'build' - +
TestReader - test_sound_listener
- PASS + +
+ FAIL +
+ + + + @@ -3950,11 +4054,11 @@ ModuleNotFoundError: No module named 'build' - + TestThumbnails 8 - 7 - 0 + 6 + 1 0 1 @@ -3991,11 +4095,31 @@ ModuleNotFoundError: No module named 'build' - +
TestThumbnails - test_cover_change_on_upload_new_cover
- PASS + +
+ FAIL +
+ + + + @@ -5105,9 +5229,9 @@ ModuleNotFoundError: No module named 'build' Total - 455 - 446 - 0 + 457 + 443 + 5 1 8   @@ -5137,7 +5261,7 @@ ModuleNotFoundError: No module named 'build' Platform - Linux 5.19.0-45-generic #46~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Jun 7 15:06:04 UTC 20 x86_64 x86_64 + Linux 6.2.0-25-generic #25~22.04.2-Ubuntu SMP PREEMPT_DYNAMIC Wed Jun 28 09:55:23 UTC 2 x86_64 x86_64 Basic @@ -5227,7 +5351,7 @@ ModuleNotFoundError: No module named 'build' lxml - 4.9.2 + 4.9.3 Basic @@ -5257,7 +5381,7 @@ ModuleNotFoundError: No module named 'build' SQLAlchemy - 1.4.48 + 1.4.49 Basic @@ -5287,7 +5411,7 @@ ModuleNotFoundError: No module named 'build' google-api-python-client - 2.89.0 + 2.95.0 TestBackupMetadataGdrive @@ -5305,19 +5429,19 @@ ModuleNotFoundError: No module named 'build' PyDrive2 - 1.15.4 + 1.16.1 TestBackupMetadataGdrive PyYAML - 6.0 + 6.0.1 TestBackupMetadataGdrive google-api-python-client - 2.89.0 + 2.95.0 TestCliGdrivedb @@ -5335,19 +5459,19 @@ ModuleNotFoundError: No module named 'build' PyDrive2 - 1.15.4 + 1.16.1 TestCliGdrivedb PyYAML - 6.0 + 6.0.1 TestCliGdrivedb google-api-python-client - 2.89.0 + 2.95.0 TestEbookConvertCalibreGDrive @@ -5365,19 +5489,19 @@ ModuleNotFoundError: No module named 'build' PyDrive2 - 1.15.4 + 1.16.1 TestEbookConvertCalibreGDrive PyYAML - 6.0 + 6.0.1 TestEbookConvertCalibreGDrive google-api-python-client - 2.89.0 + 2.95.0 TestEbookConvertGDriveKepubify @@ -5395,19 +5519,19 @@ ModuleNotFoundError: No module named 'build' PyDrive2 - 1.15.4 + 1.16.1 TestEbookConvertGDriveKepubify PyYAML - 6.0 + 6.0.1 TestEbookConvertGDriveKepubify comicapi - 3.0.0 + 3.2.0 TestEditAdditionalBooks @@ -5419,7 +5543,7 @@ ModuleNotFoundError: No module named 'build' google-api-python-client - 2.89.0 + 2.95.0 TestEditAuthorsGdrive @@ -5437,13 +5561,13 @@ ModuleNotFoundError: No module named 'build' PyDrive2 - 1.15.4 + 1.16.1 TestEditAuthorsGdrive PyYAML - 6.0 + 6.0.1 TestEditAuthorsGdrive @@ -5455,7 +5579,7 @@ ModuleNotFoundError: No module named 'build' google-api-python-client - 2.89.0 + 2.95.0 TestEditBooksOnGdrive @@ -5473,13 +5597,13 @@ ModuleNotFoundError: No module named 'build' PyDrive2 - 1.15.4 + 1.16.1 TestEditBooksOnGdrive PyYAML - 6.0 + 6.0.1 TestEditBooksOnGdrive @@ -5497,7 +5621,7 @@ ModuleNotFoundError: No module named 'build' google-api-python-client - 2.89.0 + 2.95.0 TestSetupGdrive @@ -5515,13 +5639,13 @@ ModuleNotFoundError: No module named 'build' PyDrive2 - 1.15.4 + 1.16.1 TestSetupGdrive PyYAML - 6.0 + 6.0.1 TestSetupGdrive @@ -5539,13 +5663,13 @@ ModuleNotFoundError: No module named 'build' jsonschema - 4.17.3 + 4.18.4 TestKoboSync jsonschema - 4.17.3 + 4.18.4 TestKoboSyncBig @@ -5557,7 +5681,7 @@ ModuleNotFoundError: No module named 'build' jsonschema - 4.17.3 + 4.18.4 TestLdapLogin @@ -5587,7 +5711,7 @@ ModuleNotFoundError: No module named 'build' From df74fdb4d121231d63727a746cf9387beed847c4 Mon Sep 17 00:00:00 2001 From: Ozzie Isaacs Date: Sat, 29 Jul 2023 11:10:54 +0200 Subject: [PATCH 14/15] Update edit identifiers --- cps/db.py | 3 +++ cps/editbooks.py | 5 ++++- cps/templates/detail.html | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/cps/db.py b/cps/db.py index 710c202f..f0295fe5 100644 --- a/cps/db.py +++ b/cps/db.py @@ -173,6 +173,9 @@ class Identifiers(Base): return "https://www.databazeknih.cz/knihy/{0}".format(self.val) elif self.val.lower().startswith("javascript:"): return quote(self.val) + elif self.val.lower().startswith("data:"): + link , __, __ = str.partition(self.val, ",") + return link else: return "{0}".format(self.val) diff --git a/cps/editbooks.py b/cps/editbooks.py index a0ddb050..5a15740c 100755 --- a/cps/editbooks.py +++ b/cps/editbooks.py @@ -27,9 +27,10 @@ from shutil import copyfile from uuid import uuid4 from markupsafe import escape # dependency of flask from functools import wraps +import re try: - from lxml.html.clean import clean_html + from lxml.html.clean import clean_html, Cleaner except ImportError: clean_html = None @@ -599,6 +600,8 @@ def identifier_list(to_save, book): val_key = id_val_prefix + type_key[len(id_type_prefix):] if val_key not in to_save.keys(): continue + if to_save[val_key].startswith("data:"): + to_save[val_key], __, __ = str.partition(to_save[val_key], ",") result.append(db.Identifiers(to_save[val_key], type_value, book.id)) return result diff --git a/cps/templates/detail.html b/cps/templates/detail.html index 62ba5c4e..7a1b3376 100755 --- a/cps/templates/detail.html +++ b/cps/templates/detail.html @@ -164,7 +164,7 @@

{% for identifier in entry.identifiers %} - {{ identifier.format_type() }} {% endfor %}

From fda62dde1d9b78153eb34247116e1cee11dbe6f7 Mon Sep 17 00:00:00 2001 From: Ozzie Isaacs Date: Sat, 29 Jul 2023 12:03:45 +0200 Subject: [PATCH 15/15] Fix for not changing password in email settings Improved ssl certificate check on sending emails --- cps/admin.py | 4 ++-- cps/tasks/mail.py | 7 +++++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/cps/admin.py b/cps/admin.py index 2e235c2c..93c1a3a9 100644 --- a/cps/admin.py +++ b/cps/admin.py @@ -1296,7 +1296,7 @@ def update_mailsettings(): else: _config_int(to_save, "mail_port") _config_int(to_save, "mail_use_ssl") - if "mail_password_e" in to_save: + if to_save.get("mail_password_e", ""): _config_string(to_save, "mail_password_e") _config_int(to_save, "mail_size", lambda y: int(y) * 1024 * 1024) config.mail_server = to_save.get('mail_server', "").strip() @@ -1781,7 +1781,7 @@ def _configuration_update_helper(): # Goodreads configuration _config_checkbox(to_save, "config_use_goodreads") _config_string(to_save, "config_goodreads_api_key") - if "config_goodreads_api_secret_e" in to_save: + if to_save.get("config_goodreads_api_secret_e", ""): _config_string(to_save, "config_goodreads_api_secret_e") if services.goodreads_support: services.goodreads_support.connect(config.config_goodreads_api_key, diff --git a/cps/tasks/mail.py b/cps/tasks/mail.py index 0deb82a2..a305b623 100755 --- a/cps/tasks/mail.py +++ b/cps/tasks/mail.py @@ -18,6 +18,7 @@ import os import smtplib +import ssl import threading import socket import mimetypes @@ -192,8 +193,9 @@ class TaskEmail(CalibreTask): # on python3 debugoutput is caught with overwritten _print_debug function log.debug("Start sending e-mail") if use_ssl == 2: + context = ssl.create_default_context() self.asyncSMTP = EmailSSL(self.settings["mail_server"], self.settings["mail_port"], - timeout=timeout) + timeout=timeout, context=context) else: self.asyncSMTP = Email(self.settings["mail_server"], self.settings["mail_port"], timeout=timeout) @@ -201,7 +203,8 @@ class TaskEmail(CalibreTask): if logger.is_debug_enabled(): self.asyncSMTP.set_debuglevel(1) if use_ssl == 1: - self.asyncSMTP.starttls() + context = ssl.create_default_context() + self.asyncSMTP.starttls(context=context) if self.settings["mail_password_e"]: self.asyncSMTP.login(str(self.settings["mail_login"]), str(self.settings["mail_password_e"]))