diff --git a/README.md b/README.md index 7d30ba8d..db8efe31 100755 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ Calibre-Web is a web app that offers a clean and intuitive interface for browsin *Note: Raspberry Pi OS users may encounter issues during installation. If so, please update pip (`./venv/bin/python3 -m pip install --upgrade pip`) and/or install cargo (`sudo apt install cargo`) before retrying the installation.* -Refer to the Wiki for additional installation examples: [manual installation](https://github.com/janeczku/calibre-web/wiki/Manual-installation), [Linux Mint](https://github.com/janeczku/calibre-web/wiki/How-To:Install-Calibre-Web-in-Linux-Mint-19-or-20), [Cloud Provider](https://github.com/janeczku/calibre-web/wiki/How-To:-Install-Calibre-Web-on-a-Cloud-Provider). +Refer to the Wiki for additional installation examples: [manual installation](https://github.com/janeczku/calibre-web/wiki/Manual-installation), [Linux Mint](https://github.com/janeczku/calibre-web/wiki/How-To:-Install-Calibre-Web-in-Linux-Mint-19-or-20), [Cloud Provider](https://github.com/janeczku/calibre-web/wiki/How-To:-Install-Calibre-Web-on-a-Cloud-Provider). ## Quick Start diff --git a/cps/editbooks.py b/cps/editbooks.py index e9bec58a..4d195eb7 100644 --- a/cps/editbooks.py +++ b/cps/editbooks.py @@ -27,8 +27,10 @@ from shutil import copyfile from uuid import uuid4 from markupsafe import escape, Markup # dependency of flask from functools import wraps +from lxml.etree import ParserError try: + # at least bleach 6.0 is needed -> incomplatible change from list arguments to set arguments from bleach import clean_text as clean_html BLEACH = True except ImportError: @@ -1001,10 +1003,14 @@ def edit_book_series_index(series_index, book): def edit_book_comments(comments, book): modify_date = False if comments: - if BLEACH: - comments = clean_html(comments, tags=None, attributes=None) - else: - comments = clean_html(comments) + try: + if BLEACH: + comments = clean_html(comments, tags=set(), attributes=set()) + else: + comments = clean_html(comments) + except ParserError as e: + log.error("Comments of book {} are corrupted: {}".format(book.id, e)) + comments = "" if len(book.comments): if book.comments[0].text != comments: book.comments[0].text = comments diff --git a/cps/epub.py b/cps/epub.py index b45f3e51..2103cb3f 100644 --- a/cps/epub.py +++ b/cps/epub.py @@ -103,7 +103,7 @@ def get_epub_info(tmp_file_path, original_file_name, original_file_extension): elif s == 'date': epub_metadata[s] = tmp[0][:10] else: - epub_metadata[s] = tmp[0] + epub_metadata[s] = tmp[0].strip() else: epub_metadata[s] = 'Unknown' diff --git a/cps/kobo.py b/cps/kobo.py index 63741a62..00e40b49 100644 --- a/cps/kobo.py +++ b/cps/kobo.py @@ -137,10 +137,13 @@ def convert_to_kobo_timestamp_string(timestamp): @kobo.route("/v1/library/sync") @requires_kobo_auth -@download_required +# @download_required def HandleSyncRequest(): + if not current_user.role_download(): + log.info("Users need download permissions for syncing library to Kobo reader") + return abort(403) sync_token = SyncToken.SyncToken.from_headers(request.headers) - log.info("Kobo library sync request received.") + log.info("Kobo library sync request received") log.debug("SyncToken: {}".format(sync_token)) log.debug("Download link format {}".format(get_download_url_for_book('[bookid]','[bookformat]'))) if not current_app.wsgi_app.is_proxied: diff --git a/cps/server.py b/cps/server.py index 0b6d2fb3..ebf967e9 100644 --- a/cps/server.py +++ b/cps/server.py @@ -21,6 +21,7 @@ import os import errno import signal import socket +import asyncio try: from gevent.pywsgi import WSGIServer @@ -326,4 +327,5 @@ class WebServer(object): if restart: self.wsgiserver.call_later(1.0, self.wsgiserver.stop) else: - self.wsgiserver.add_callback_from_signal(self.wsgiserver.stop) + self.wsgiserver.asyncio_loop.call_soon_threadsafe(self.wsgiserver.stop) + diff --git a/cps/static/css/caliBlur.css b/cps/static/css/caliBlur.css index cf743761..3647b871 100644 --- a/cps/static/css/caliBlur.css +++ b/cps/static/css/caliBlur.css @@ -3296,6 +3296,7 @@ div.btn-group[role=group][aria-label="Download, send to Kindle, reading"] .dropd left: 0 !important; } #add-to-shelves { + min-height: 48px; max-height: calc(100% - 120px); overflow-y: auto; } @@ -4812,8 +4813,14 @@ body.advsearch:not(.blur) > div.container-fluid > div.row-fluid > div.col-sm-10 z-index: 999999999999999999999999999999999999 } -.search #shelf-actions, body.login .home-btn { - display: none +body.search #shelf-actions button#add-to-shelf { + height: 40px; +} +@media screen and (max-width: 767px) { + body.search .discover, body.advsearch .discover { + display: flex; + flex-direction: column; + } } body.read:not(.blur) a[href*=readbooks] { @@ -5134,7 +5141,7 @@ body.login > div.navbar.navbar-default.navbar-static-top > div > div.navbar-head right: 5px } -#shelf-actions > .btn-group.open, .downloadBtn.open, .profileDrop[aria-expanded=true] { +body:not(.search) #shelf-actions > .btn-group.open, .downloadBtn.open, .profileDrop[aria-expanded=true] { pointer-events: none } @@ -5151,7 +5158,7 @@ body.login > div.navbar.navbar-default.navbar-static-top > div > div.navbar-head color: var(--color-primary) } -#shelf-actions, #shelf-actions > .btn-group, #shelf-actions > .btn-group > .empty-ul { +body:not(.search) #shelf-actions, body:not(.search) #shelf-actions > .btn-group, body:not(.search) #shelf-actions > .btn-group > .empty-ul { pointer-events: none } diff --git a/cps/static/js/caliBlur.js b/cps/static/js/caliBlur.js index cc4116cf..909a3d22 100755 --- a/cps/static/js/caliBlur.js +++ b/cps/static/js/caliBlur.js @@ -369,6 +369,13 @@ $("div.comments").readmore({ // End of Global Work // /////////////////////////////// +// Search Results +if($("body.search").length > 0) { + $('div[aria-label="Add to shelves"]').click(function () { + $("#add-to-shelves").toggle(); + }); +} + // Advanced Search Results if($("body.advsearch").length > 0) { $("#loader + .container-fluid") diff --git a/cps/translations/cs/LC_MESSAGES/messages.mo b/cps/translations/cs/LC_MESSAGES/messages.mo index ce80a2bb..91130635 100644 Binary files a/cps/translations/cs/LC_MESSAGES/messages.mo and b/cps/translations/cs/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/cs/LC_MESSAGES/messages.po b/cps/translations/cs/LC_MESSAGES/messages.po index 606ed54b..0e02f429 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2020-06-09 21:11+0100\n" "Last-Translator: Lukas Heroudek \n" "Language: cs_CZ\n" @@ -15,508 +15,508 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Statistika" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Server restartován, znovu načtěte stránku" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "Vypínám server, zavřete okno" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Neznámý příkaz" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy 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:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Neznámý" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Stránka správce" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Základní konfigurace" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Konfigurace uživatelského rozhraní" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 #, fuzzy msgid "Edit Users" msgstr "Uživatel admin" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Vše" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Uživatel nenalezen" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Zobrazit vše" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "Nezbývá žádný správce, nelze odebrat roli správce" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Konfigurace Calibre-Web aktualizována" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Opravdu chcete odstranit Kobo token?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Jste si jisti, že chcete odstranit tuto polici?" -#: cps/admin.py:614 +#: cps/admin.py:617 #, fuzzy msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Jste si jisti, že chcete odstranit tuto polici?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "" -#: cps/admin.py:620 +#: cps/admin.py:623 #, fuzzy msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Jste si jisti, že chcete odstranit tuto polici?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "" -#: cps/admin.py:625 +#: cps/admin.py:628 #, fuzzy msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Jste si jisti, že chcete odstranit tuto polici?" -#: cps/admin.py:627 +#: cps/admin.py:630 #, fuzzy msgid "Are you sure you want to change Calibre library location?" msgstr "Opravdu chcete vypnout?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Zakázat" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "Povolit" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json není nakonfigurováno pro webové aplikace" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "Umístění zápisového souboru není platné. Určete prosím platnou polohu" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "Umístění zápisového souboru pro přístup není platné. Určete prosím platnou polohu" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "Prosím zadejte LDAP poskytovatele, port, DN a Identifikátor objektu uživatele" -#: cps/admin.py:1199 +#: cps/admin.py:1202 #, fuzzy msgid "Please Enter a LDAP Service Account and Password" msgstr "Zadejte platné uživatelské jméno pro obnovení hesla" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "Filtr objektů skupiny LDAP musí mít jeden “%s” formátový identifikátor" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "Filtr objektů skupiny LDAP má nesrovnatelnou závorku" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "Filtr uživatelských objektů LDAP musí mít jeden “%s” formátový identifikátor" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "Filtr uživatelských objektů LDAP má nesrovnatelnou závorku" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Přidat nového uživatele" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "Změnit SMTP nastavení" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "Chyba databáze: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Při odesílání zkušebního e-mailu došlo k chybě: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Prvně nastavte svou e-mailovou adresu..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "Nastavení e-mailového serveru aktualizováno" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Neznámá chyba. Opakujte prosím později." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Upravit uživatele %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "Heslo pro uživatele %(user)s resetováno" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Nejprve nakonfigurujte nastavení pošty SMTP..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Prohlížeč log souborů" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Požadování balíčku aktualizace" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Stahování balíčku aktualizace" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Rozbalování balíčku aktualizace" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Nahrazování souborů" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Databázová připojení jsou uzavřena" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Zastavuji server" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Aktualizace dokončena, klepněte na tlačítko OK a znovu načtěte stránku" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Aktualizace selhala:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "HTTP chyba" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Chyba připojení" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Vypršel časový limit při navazování spojení" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Všeobecná chyba" -#: cps/admin.py:1527 +#: cps/admin.py:1530 #, fuzzy msgid "Update file could not be saved in temp dir" msgstr "Aktualizační soubor nemohl být uložen do Temp Dir" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "" -#: cps/admin.py:1552 +#: cps/admin.py:1555 #, fuzzy msgid "Failed to extract at least One LDAP User" msgstr "Nepodařilo se vytvořit nejméně jednoho uživatele LDAP" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Nepodařilo se vytvořit nejméně jednoho uživatele LDAP" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Chyba: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Chyba: Žádná reakce od uživatele LDAP serveru" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "Nejméně jeden uživatel LDAP nenalezen v databázi" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "Umístění databáze není platné, opravte prosím cestu" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "Databáze není zapisovatelná" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "Umístění souboru klíčů není platné, zadejte prosím správnou cestu" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "Umístění certifikátu není platné, zadejte prosím správnou cestu" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 #, fuzzy msgid "Database Settings updated" msgstr "Nastavení e-mailového serveru aktualizováno" -#: cps/admin.py:1876 +#: cps/admin.py:1879 #, fuzzy msgid "Database Configuration" msgstr "Konfigurace funkcí" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Vyplňte všechna pole!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "E-mail není z platné domény" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Přidat nového uživatele" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Uživatel '%(user)s' vytvořen" -#: cps/admin.py:1923 +#: cps/admin.py:1926 #, fuzzy msgid "Oops! An account already exists for this Email. or name." msgstr "Byl nalezen existující účet pro tuto e-mailovou adresu nebo přezdívku." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Uživatel '%(nick)s' smazán" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Nezbývá žádný správce, nemůžete jej odstranit" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Uživatel '%(nick)s' aktualizován" @@ -541,110 +541,110 @@ msgstr "Vlastní sloupec %(column)d neexistuje v databázi" msgid "None" msgstr "Žádné" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 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:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Metadata úspěšně aktualizována" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "Soubor %(file)s nahrán" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Chybí zdrojový nebo cílový formát pro převod" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, 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:332 +#: cps/editbooks.py:341 #, 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:639 +#: cps/editbooks.py:648 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:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s není platným jazykem" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 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:744 +#: cps/editbooks.py:753 #, 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:764 +#: cps/editbooks.py:773 #, 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:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "Formát knihy úspěšně smazán" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "Kniha úspěšně smazána" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "upravit metadata" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, 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:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Uložení souboru %(file)s se nezdařilo." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Formát souboru %(ext)s přidán do %(book)s" @@ -914,7 +914,7 @@ msgstr "" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Přihlásit" @@ -1003,7 +1003,7 @@ msgstr "Zobrazit výběr kategorie" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Série" @@ -1033,7 +1033,7 @@ msgid "Show Publisher Section" msgstr "Zobrazit výběr vydavatele" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Jazyky" @@ -1078,10 +1078,10 @@ msgstr "" msgid "Show Books List" msgstr "" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Hledat" @@ -1105,14 +1105,14 @@ msgstr "Hodnocení >= %(rating)s" #: cps/search.py:221 #, python-format -msgid "Read Status = %(status)s" +msgid "Read Status = '%(status)s'" msgstr "" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Rozšířené hledání" @@ -1353,109 +1353,109 @@ msgstr "Seznam hodnocení" msgid "File formats list" msgstr "Seznam formátů" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Nejprve nakonfigurujte nastavení pošty SMTP..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Kniha byla úspěšně zařazena do fronty pro odeslání na %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Při odesílání této knihy došlo k chybě: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Nejprve nakonfigurujte vaši kindle e-mailovou adresu.." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Registrovat" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "E-mailový server není nakonfigurován, kontaktujte svého správce!" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Váš e-mail nemá povolení k registraci" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "Potvrzovací e-mail byl odeslán na váš účet." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "Nelze aktivovat ověření LDAP" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "nyní jste přihlášen jako: '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, fuzzy, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "Záložní přihlášení jako: ‘%(nickname)s’, server LDAP není dosažitelný nebo neznámý uživatel" -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "Nelze se přihlásit: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Špatné uživatelské jméno nebo heslo" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "Nové heslo bylo zasláno na vaši emailovou adresu" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Neznámá chyba. Opakujte prosím později." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Zadejte platné uživatelské jméno pro obnovení hesla" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "nyní jste přihlášen jako: '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "%(name)s profil" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Profil aktualizován" -#: cps/web.py:1484 +#: cps/web.py:1491 #, fuzzy msgid "Oops! An account already exists for this Email." msgstr "Byl nalezen existující účet pro tuto e-mailovou adresu." @@ -1889,7 +1889,7 @@ 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 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Popis" @@ -1914,7 +1914,7 @@ msgstr "Odstranit" msgid "Add Identifier" msgstr "Přidat identifikátor" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Štítky" @@ -1949,13 +1949,13 @@ msgstr "Vydavatel" msgid "Language" msgstr "Jazyk" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Ano" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Ne" @@ -2830,7 +2830,7 @@ msgid "Books ordered by file formats" msgstr "Knihy seřazené podle souboru formátů" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Police" @@ -3243,44 +3243,52 @@ msgstr "Datum vydání od" msgid "Published Date To" msgstr "Datum vydání do" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Vynechat štítky" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Vynechat série" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 #, fuzzy msgid "Exclude Shelves" msgstr "Vynechat série" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Vynechat jazyky" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Přípony" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Vynechat přípony" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Hodnoceni více než" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Hodnocení méně než" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "" diff --git a/cps/translations/de/LC_MESSAGES/messages.mo b/cps/translations/de/LC_MESSAGES/messages.mo index 3768b49d..464db7eb 100644 Binary files a/cps/translations/de/LC_MESSAGES/messages.mo and b/cps/translations/de/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/de/LC_MESSAGES/messages.po b/cps/translations/de/LC_MESSAGES/messages.po index 58dda669..d6d9669d 100644 --- a/cps/translations/de/LC_MESSAGES/messages.po +++ b/cps/translations/de/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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2023-10-21 15:45+0200\n" "Last-Translator: Ozzie Isaacs\n" "Language: de\n" @@ -16,493 +16,493 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Statistiken" -#: cps/admin.py:146 +#: cps/admin.py:149 msgid "Server restarted, please reload page." msgstr "Server neu gestartet, Seite bitte neu laden." -#: cps/admin.py:148 +#: cps/admin.py:151 msgid "Performing Server shutdown, please close window." msgstr "Server wird heruntergefahren, Fenster bitte schließen." -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "Datenbank wurde erneut verbunden" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Unbekannter Befehl" -#: cps/admin.py:170 +#: cps/admin.py:173 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:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Unbekannt" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Admin Seite" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Basiskonfiguration" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Benutzeroberflächenkonfiguration" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "Benutzer bearbeiten" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Alle" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Benutzer nicht gefunden" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{} Benutzer erfolgreich gelöscht" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Zeige alle" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "Ungültige Anfrage" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "Guest Name kann nicht geändert werden" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "Guest Benutzer kann diese Rolle nicht haben" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "Kein Admin Benutzer verblieben Admin Berechtigung kann nicht entfernt werden" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "Wert muss true oder false sein" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "Ungültige Rolle" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "Guest Benutzer kann diese Sichtbarkeit nicht haben" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "Ungültige Sichtbarkeit" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "Guest Sprache wird automatisch bestimmt und kann nicht eingestellt werden" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "Keine gültige Sprache gewählt" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "Keine gültige Buchsprache gewählt" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "Parameter wurde nicht gefunden" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "Ungültige Lese Spalte" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "Ungültiger Spaltenname für Einschränkung" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Konfiguration von Calibre-Web wurde aktualisiert" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Möchten Sie wirklich den Kobo Token löschen?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "Möchten Sie wirklich diese Domain löschen?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "Möchten Sie wirklich diesen Benutzer löschen?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Möchten Sie wirklich dieses Bücherregal löschen?" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Möchten Sie wirklich die Anzeigesprache der ausgewählten Benutzer ändern?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "Möchten Sie wirklich die Büchersprachen für die ausgewählten Benutzer ändern?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "Möchten Sie wirklich die ausgewählte Rolle für die ausgewählten Benutzer verändern?" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Möchten Sie wirklich die ausgewählten Sichtbarkeitsbeschränkungen der ausgewählten Benutzer ändern?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "Möchten Sie wirklich die Sichtbarkeiten für die ausgewählten Benutzer verändern?" -#: cps/admin.py:625 +#: cps/admin.py:628 msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Möchten Sie wirklich die Synchronisation von Bücherregalen für die ausgewählten Benutzer verändern?" -#: cps/admin.py:627 +#: cps/admin.py:630 msgid "Are you sure you want to change Calibre library location?" msgstr "Ort der Calibre Datenbank editieren?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "Calibre-Web wird nach neuen Covern suchen und Cover Miniaturansichten aktualisieren, dies kann eine Weile dauern?" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "Möchten Sie wirklich die Synchronisationsdatenbank von Calibre-Web löschen, um eine komplette Synchronisation zu erzwingen?" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Verbieten" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "Erlauben" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "{} Synchronisationseinträge gelöscht" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "Tag nicht gefunden" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "Ungültige Aktion" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json ist nicht für Web Anwendungen konfiguriert" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "Logdatei Pfad ist ungültig, bitte einen gültigen Pfad angeben" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "Zugriffs Logdatei Pfad ist ungültig, bitte einen gültigen Pfad angeben" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "Bitte einen LDAP Server, Port, DN und Benutzer Objekt angeben" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "Bitte einen LDAP Service Account und Password eingeben" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "Bitte einen LDAP Service Account eingeben" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "LDAP Gruppen Objekt Filter benötigt genau eine \"%s\" Format Kennung" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "LDAP Gruppen Objekt Filter hat ungleiche Anzahl von Klammern" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP Benutzer Objekt Filter benötigt genau eine \"%s\" Format Kennung" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "LDAP Benutzer Objekt Filter hat ungleiche Anzahl von Klammern" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "Der LDAP Member User Filter benötigt genau eine \"%s\" Formatierungsmarkierung" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "LDAP Member User Filter hat eine ungleiche Anzahl von geöffneten und geschlossenen Klammern" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "LDAP CA-Zertifikat, Zertifikat oder Key Datei ist kein gültiger Pfad" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Neuen Benutzer hinzufügen" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "SMTP-Einstellungen ändern" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "G-Mail Konto verifiziert." -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "Datenbankfehler: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "Test E-Mail an %(email)s wurde zum Senden in die Warteschlange eingereiht, für das Ergebnis bitte Aufgaben überprüfen" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Es trat ein Fehler beim Versenden der Test-E-Mail auf: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Bitte zuerst E-Mail Adresse konfigurieren..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "Einstellungen des E-Mail-Servers aktualisiert" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "Einstellungen für Geplante Aufgaben" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "Ungültigen Startzeitpunkt für Aufgaben spezifiziert" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "Ungültige Laufzeit für Aufgaben spezifiziert" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "Einstellungen für Geplante Aufgaben aktualisiert" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Es ist ein unbekannter Fehler aufgetreten. Bitte später erneut versuchen." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "Einstellungsdatenbank ist nicht schreibbar" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Benutzer %(nick)s bearbeiten" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, python-format msgid "Success! Password for user %(user)s reset" msgstr "Passwort für Benutzer %(user)s wurde zurückgesetzt" -#: cps/admin.py:1439 +#: cps/admin.py:1442 msgid "Oops! Please configure the SMTP mail settings." msgstr "Bitte zuerst die SMTP-Einstellung konfigurieren." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Logdatei Anzeige" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Frage Update an" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Lade Update herunter" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Entpacke Update" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Ersetze Dateien" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Schließe Datenbankverbindungen" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Stoppe Server" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Update abgeschlossen, bitte okay drücken und Seite neu laden" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Update fehlgeschlagen:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "HTTP Fehler" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Verbindungsfehler" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Timeout beim Verbindungsaufbau" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Allgemeiner Fehler" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "Updatedatei konnte nicht in Temporärem Ordner gespeichert werden" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "Dateien konnten während des Updates nicht ausgetauscht werden" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "Mindestens ein LDAP Benutzer konnte nicht extrahiert werden" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Mindestens ein LDAP Benutzer konnte nicht erzeugt werden" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Fehler: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Fehler: Keine Benutzerinformationen von LDAP Server empfangen" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "Mindestens ein LDAP Benutzer wurde nicht in der Datenbank gefudnen" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "{} Benutzer erfolgreich importiert" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "DB Pfad ist nicht gültig, bitte einen gültigen Pfad angeben" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "Datenbank ist nicht schreibbar" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "Schlüsseldatei ist ungültig, bitte einen gültigen Pfad angeben" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "Zertifikatsdatei ist ungültig, bitte einen gültigen Pfad angeben" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "Passwortlänge muss zwischen 1 und 40 Zeichen liegen" -#: cps/admin.py:1868 +#: cps/admin.py:1871 msgid "Database Settings updated" msgstr "Datenbankeinstellung aktualisiert" -#: cps/admin.py:1876 +#: cps/admin.py:1879 msgid "Database Configuration" msgstr "Datenbank-Konfiguration" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Bitte alle Felder ausfüllen." -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "E-Mail bezieht sich nicht auf eine gültige Domain" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Neuen Benutzer hinzufügen" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Benutzer '%(user)s' angelegt" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "Es existiert bereits ein Account für diese E-Mailadresse oder diesen Benutzernamen." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Benutzer '%(nick)s' gelöscht" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "Guest Benutzer kann nicht gelöscht werden" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Benutzer kann nicht gelöscht werden, es wäre kein Admin Benutzer übrig" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "E-Mail kann nicht leer sein und muss gültig sein" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Benutzer '%(nick)s' aktualisiert" @@ -527,110 +527,110 @@ msgstr "Benutzerdefinierte Spalte Nr. %(column)d ist nicht in Calibre Datenbank msgid "None" msgstr "Keine" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 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:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "Benutzer hat keine Berechtigung Cover hochzuladen" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "IDs unterscheiden nicht Groß-Kleinschreibung, alte ID wird überschrieben" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Metadaten wurden erfolgreich aktualisiert" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "Fehler beim editieren des Buches: {}" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "Datei %(file)s hochgeladen" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Quell- oder Zielformat für Konvertierung fehlt" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, 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:332 +#: cps/editbooks.py:341 #, 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:639 +#: cps/editbooks.py:648 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:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "'%(langname)s' ist keine gültige Sprache" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "Dateien müssen eine Erweiterung haben, um hochgeladen zu werden" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, 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:764 +#: cps/editbooks.py:773 #, 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:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "Buch Format erfolgreich gelöscht" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "Buch erfolgreich gelöscht" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "Keine Erlaubnis zum Bücher löschen" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "Metadaten editieren" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, 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:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "Benutzer hat kein Recht zusätzliche Dateiformate hochzuladen" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Fehler beim Erzeugen des Pfads %(path)s (Zugriff verweigert)" -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Fehler beim Speichern der Datei %(file)s." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Dateiformat %(ext)s zu %(book)s hinzugefügt" @@ -893,7 +893,7 @@ msgstr "{} Sterne" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Login" @@ -980,7 +980,7 @@ msgstr "Zeige Kategorienauswahl" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Serien" @@ -1007,7 +1007,7 @@ msgid "Show Publisher Section" msgstr "Zeige Verlegerauswahl" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Sprachen" @@ -1048,10 +1048,10 @@ msgstr "Bücherliste" msgid "Show Books List" msgstr "Zeige Bücherliste" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Suche" @@ -1074,15 +1074,15 @@ msgid "Rating >= %(rating)s" msgstr "Bewertung >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "Lesestatus = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "Fehler bei der Suche nach eigenen Spalten, bitte Calibre-Web neustarten" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Erweiterte Suche" @@ -1320,101 +1320,101 @@ msgstr "Bewertungsliste" msgid "File formats list" msgstr "Liste der Dateiformate" -#: cps/web.py:1226 +#: cps/web.py:1233 msgid "Please configure the SMTP mail settings first..." msgstr "Bitte zuerst die SMTP-Einstellung konfigurieren..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Buch erfolgreich zum Senden an %(eReadermail)s eingereiht" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Beim Senden des Buchs trat ein Fehler auf: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Bitte zuerst die E-Reader E-Mailadresse konfigurieren." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "Bitte eine Minute warten vor der Registrierung des nächsten Benutzers " #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Registrieren" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "Der E-Mail Server ist nicht konfigurierte, bitte den Administrator kontaktieren." -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Diese E-Mail ist nicht für die Registrierung zugelassen." -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "Eine Bestätigungs-E-Mail wurde an deinen E-Mail Account versendet." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 msgid "Cannot activate LDAP authentication" msgstr "LDAP-Authentifizierung kann nicht aktiviert werden" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "Bitte eine Minute vor dem nächsten Loginversuche warten " -#: cps/web.py:1369 +#: cps/web.py:1376 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "Du bist nun eingeloggt als '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "Rückfall Login als: '%(nickname)s', LDAP Server ist nicht erreichbar, oder der Nutzer ist unbekannt" -#: cps/web.py:1381 +#: cps/web.py:1388 #, python-format msgid "Could not login: %(message)s" msgstr "Login nicht erfolgreich: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 msgid "Wrong Username or Password" msgstr "Falscher Benutzername oder Passwort" -#: cps/web.py:1392 +#: cps/web.py:1399 msgid "New Password was send to your email address" msgstr "Das neue Passwort wurde an die E-Mail Adresse verschickt" -#: cps/web.py:1396 +#: cps/web.py:1403 msgid "An unknown error occurred. Please try again later." msgstr "Es ist ein unbekannter Fehler aufgetreten. Bitte später erneut versuchen." -#: cps/web.py:1398 +#: cps/web.py:1405 msgid "Please enter valid username to reset password" msgstr "Bitte einen gültigen Benutzernamen zum Zurücksetzen des Passworts angeben" -#: cps/web.py:1406 +#: cps/web.py:1413 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Du bist nun eingeloggt als: '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "%(name)s's Profil" -#: cps/web.py:1480 +#: cps/web.py:1487 msgid "Success! Profile Updated" msgstr "Profil aktualisiert" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "Es existiert bereits ein Benutzer für diese E-Mailadresse." @@ -1844,7 +1844,7 @@ 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 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Beschreibung" @@ -1869,7 +1869,7 @@ msgstr "Entfernen" msgid "Add Identifier" msgstr "ID hinzufügen" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Tags" @@ -1904,13 +1904,13 @@ msgstr "Herausgeber" msgid "Language" msgstr "Sprache" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Ja" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Nein" @@ -2773,7 +2773,7 @@ msgid "Books ordered by file formats" msgstr "Bücher nach Dateiformaten sortiert" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Bücherregale" @@ -3178,43 +3178,51 @@ msgstr "Herausgabedatum von" msgid "Published Date To" msgstr "Herausgabedatum bis" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Tags ausschließen" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Serien ausschließen" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "Bücherregale ausschliessen" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Sprachen ausschließen" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Datei Erweiterungen" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Datei Erweiterungen ausschliessen" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Bewertungen größer als" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Bewertungen kleiner als" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "Von:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "Bis:" diff --git a/cps/translations/el/LC_MESSAGES/messages.mo b/cps/translations/el/LC_MESSAGES/messages.mo index 6997438a..a4e5e3a8 100644 Binary files a/cps/translations/el/LC_MESSAGES/messages.mo and b/cps/translations/el/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/el/LC_MESSAGES/messages.po b/cps/translations/el/LC_MESSAGES/messages.po index 2407ebcd..4ebb35ba 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Depountis Georgios\n" "Language: el\n" @@ -15,508 +15,508 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Στατιστικά" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Ο διακομιστής επανεκκίνησε, παρακαλούμε φόρτωσε ξανά τη σελίδα" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "Πραγματοποιείται κλείσιμο του διακομιστή, παρακαλούμε κλείσε το παράθυρο" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Άγνωστη εντολή" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Το βιβλίο έχει επιτυχώς μπει σε σειρά για αποστολή στο %(eReadermail)s" -#: cps/admin.py:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "ʼΑγνωστο" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Σελίδα διαχειριστή" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Βασική Διαμόρφωση" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "UI Διαμόρφωση" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 #, fuzzy msgid "Edit Users" msgstr "Χρήστης Διαχειριστής" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Όλα" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Δεν βρέθηκε χρήστης" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Προβολή Όλων" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "Δεν έχει απομείνει χρήστης διαχειριστής, δεν μπορεί να αφαιρεθεί ο ρόλος διαχειριστή" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Ενημερώθηκε η διαμόρφωση Calibre-Web" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Θέλεις πραγματικά να διαγράψεις τη Μονάδα Kobo;" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Είσαι σίγουρος/η πως θέλεις να διαγράψεις αυτό το ράφι;" -#: cps/admin.py:614 +#: cps/admin.py:617 #, fuzzy msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Είσαι σίγουρος/η πως θέλεις να διαγράψεις αυτό το ράφι;" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "" -#: cps/admin.py:620 +#: cps/admin.py:623 #, fuzzy msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Είσαι σίγουρος/η πως θέλεις να διαγράψεις αυτό το ράφι;" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "" -#: cps/admin.py:625 +#: cps/admin.py:628 #, fuzzy msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Είσαι σίγουρος/η πως θέλεις να διαγράψεις αυτό το ράφι;" -#: cps/admin.py:627 +#: cps/admin.py:630 #, fuzzy msgid "Are you sure you want to change Calibre library location?" msgstr "Είσαι σίγουρος/η πως θέλεις να κάνεις κλείσιμο;" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Απόρριψη" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "Επιτρέπεται" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json Δεν Έχει Διαμορφωθεί Για Διαδικτυακή Εφαρμογή" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "Το Φύλλο Καταγραφής Τοποθεσίας δεν είναι Έγκυρο, Παρακαλούμε Συμπλήρωσε Τη Σωστή Πορεία" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "Η Πρόσβαση Φύλλου Καταγραφης Τοποθεσίας δεν είναι έγκυρη, Παρακαλούμε Συμπλήρωσε Τη Σωστή Πορεία" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "Παρακαλούμε Συμπλήρωσε ένα Πάροχο LDAP, Θύρα, DN και Αντικείμενο Αναγνώρισης Χρήστη" -#: cps/admin.py:1199 +#: cps/admin.py:1202 #, fuzzy msgid "Please Enter a LDAP Service Account and Password" msgstr "Παρακαλούμε συμπλήρωσε ένα έγκυρο όνομα χρήστη για επαναφορά του κωδικού" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "Το Αντικείμενο Φίλτρου Ομάδας LDAP Πρέπει να Έχει Μια \"%s\" Αναγνώριση Μορφής" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "Το Αντικείμενο Φίλτρου Ομάδας LDAP Έχει Παρενθέσεις Που Δεν Ταιριάζουν" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "Το Αντικείμενο Φίλτρου Χρήστη LDAP πρέπει να Έχει Μια \"%s\" Αναγνώριση Μορφής" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "Το Αντικείμενο Φίλτρου Χρήστη LDAP Έχει Παρενθέσεις Που Δεν Ταιριάζουν" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Προσθήκη Νέου Χρήστη" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "Επεξεργασία Ρυθμίσεων E-mail Διακομιστή" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "Σφάλμα βάσης δεδομένων: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Παρουσιάστηκε σφάλμα κατά την αποστολή του δοκιμαστικού e-mail:% (res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Παρακαλούμε ρύθμισε πρώτα τη διεύθυνση e-mail σου..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "Ενημερώθηκαν οι ρυθμίσεις E-mail διακομιστή" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Προέκυψε ένα άγνωστο σφάλμα. Παρακαλούμε δοκίμασε ξανά αργότερα." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Επεξεργασία χρήστη %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "Κωδικός για επαναφορά %(user) χρήστη/ών" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Παρακαλούμε διαμόρφωσε πρώτα τις ρυθμίσεις ταχυδρομείου SMTP..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Προβολέας αρχείου φύλλου καταγραφής" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Αίτημα πακέτου ενημέρωσης" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Κατεβάζει πακέτο ενημέρωσης" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Ανοίγει πακέτο ενημέρωσης" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Αντικατάσταση αρχείων" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Οι συνδέσεις βάσης δεδομένων είναι κλειστές" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Σταματάει το διακομιστή" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Η ενημέρωση τελειώσε, παρακαλούμε πιέστε το εντάξει και φορτώστε ξανά τη σελίδα" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Η ενημέρωση απέτυχε:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "HTTP Σφάλμα" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Σφάλμα σύνδεσης" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Τελείωσε ο χρόνος κατά την προσπάθεια δημιουργίας σύνδεσης" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Γενικό σφάλμα" -#: cps/admin.py:1527 +#: cps/admin.py:1530 #, fuzzy msgid "Update file could not be saved in temp dir" msgstr "Το Αρχείο Ενημέρωσης Δεν Μπόρεσε Να Αποθηκευτεί σε" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "" -#: cps/admin.py:1552 +#: cps/admin.py:1555 #, fuzzy msgid "Failed to extract at least One LDAP User" msgstr "Αποτυχία Δημιουργίας Τουλάχιστον Ενός Χρήστη LDAP" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Αποτυχία Δημιουργίας Τουλάχιστον Ενός Χρήστη LDAP" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Σφάλμα: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Σφάλμα: Δεν επιστράφηκε χρήστης σε απάντηση του διακομιστή LDAP" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "Τουλάχιστον Ένας Χρήστης LDAP Δεν Βρέθηκε Στη Βάση Δεδομένων" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "Η Τοποθεσία DB δεν είναι Έγκυρη, Παρακαλούμε Συμπληρώστε Τη Σωστή Πορεία" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "Η DB δεν μπορεί να Γραφτεί" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "Το Αρχειο Κλειδί Τοποθεσίας δεν είναι Έγκυρο, Παρακαλούμε Συμπληρώστε Τη Σωστή Πορεία" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "Η Τοποθεσία Certfile δεν είναι Έγκυρη, Παρακαλούμε Συμπληρώστε Τη Σωστή Πορεία" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 #, fuzzy msgid "Database Settings updated" msgstr "Ενημερώθηκαν οι ρυθμίσεις E-mail διακομιστή" -#: cps/admin.py:1876 +#: cps/admin.py:1879 #, fuzzy msgid "Database Configuration" msgstr "Διαμόρφωση Λειτουργίας" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Παρακαλούμε συμπλήρωσε όλα τα πεδία!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "Το E-mail δεν είναι από έγκυρο domain" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Προσθήκη νέου χρήστη" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Χρήστης/ες '%(user)s' δημιουργήθηκαν" -#: cps/admin.py:1923 +#: cps/admin.py:1926 #, fuzzy msgid "Oops! An account already exists for this Email. or name." msgstr "Βρέθηκε ένας ήδη υπάρχον λογαριασμός για αυτή τη διεύθυνση e-mail ή όνομα χρήστη." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Χρήστης/ες '%(nick)s' διαγράφηκαν" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Δεν έχει απομείνει χρήστης διαχειριστής, δεν μπορεί να διαγραφεί ο χρήστης" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Χρήστης/ες '%(nick)s' ενημερώθηκαν" @@ -541,110 +541,110 @@ msgstr "Η ειδικά προσαρμοσμένη στήλη No.%(column)d δε msgid "None" msgstr "Κανένα" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Oυπς! Ο επιλεγμένος τίτλος βιβλίου δεν είναι διαθέσιμος. Το αρχείο δεν υπάρχει ή δεν είναι προσβάσιμο" -#: cps/editbooks.py:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "Τα αναγνωριστικά δεν έχουν Διάκριση Πεζών-Κεφαλαίων Γραμμάτων, Αντικατάσταση Παλιού Αναγνωριστικού" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Τα μεταδεδομένα ενημερώθηκαν επιτυχώς" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "Το αρχείο %(file)s ανέβηκε" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Η δομή πηγής ή προορισμού για μετατροπή λείπει" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Το βιβλίο είναι σε σειρά επιτυχώς για μετατροπή σε %(book_format)s" -#: cps/editbooks.py:332 +#: cps/editbooks.py:341 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Υπήρξε ένα σφάλμα στη μετατροπή αυτού του βιβλίου: %(res)s" -#: cps/editbooks.py:639 +#: cps/editbooks.py:648 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Το βιβλίο που ανέβηκε πιθανόν να υπάρχει στη βιβλιοθήκη, σκέψου να το αλλάξεις πριν ανεβάσεις νέο: " -#: cps/editbooks.py:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s δεν είναι μια έγκυρη γλώσσα" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Η επέκταση αρχείου '%(ext)s' δεν επιτρέπεται να ανέβει σε αυτό το διακομιστή" -#: cps/editbooks.py:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "Το αρχείο προς ανέβασμα πρέπει να έχει μια επέκταση" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Το αρχείο %(filename)s δεν μπόρεσε να αποθηκευτεί σε temp dir" -#: cps/editbooks.py:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Αποτυχία Μετακίνησης Αρχείου Φόντου %(file)s: %(error)s" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "Η μορφή βιβλίου Διαγράφηκε Επιτυχώς" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "Το Βιβλίο Διαγράφηκε Επιτυχώς" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "επεξεργασία μεταδεδομένων" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Αποτυχεία δημιουργίας πορείας %(path)s (Η άδεια απορρήφθηκε)." -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Αποτυχία αποθήκευσης αρχείου %(file)s." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Μορφή αρχείου %(ext)s προστέθηκε σε %(book)s" @@ -914,7 +914,7 @@ msgstr "" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Σύνδεση" @@ -1003,7 +1003,7 @@ msgstr "Προβολή επιλογών κατηγορίας" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Σειρές" @@ -1033,7 +1033,7 @@ msgid "Show Publisher Section" msgstr "Προβολή επιλογών εκδότη" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Γλώσσες" @@ -1078,10 +1078,10 @@ msgstr "Λίστα Βιβλίων" msgid "Show Books List" msgstr "Προβολή Λίστας Βιβλίων" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Αναζήτηση" @@ -1105,14 +1105,14 @@ msgstr "Αξιολόγηση >= %(rating)s" #: cps/search.py:221 #, python-format -msgid "Read Status = %(status)s" +msgid "Read Status = '%(status)s'" msgstr "" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Προχωρημένη Αναζήτηση" @@ -1353,109 +1353,109 @@ msgstr "Λίστα αξιολογήσεων" msgid "File formats list" msgstr "Λίστα μορφών αρχείου" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Παρακαλούμε διαμόρφωσε πρώτα τις ρυθμίσεις ταχυδρομείου SMTP..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Το βιβλίο έχει επιτυχώς μπει σε σειρά για αποστολή στο %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Oυπς! Υπήρξε ένα σφάλμα κατά την αποστολή αυτού του βιβλίου: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Παρακαλούμε ενημέρωσε το προφίλ σου με μια έγκυρη Διεύθυνση E-mail Αποστολής στο Kindle." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Εγγραφή" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "Ο διακομιστής E-Mail δεν έχει διαμορφωθεί, παρακαλούμε επικοινώνησε με το διαχειριστή σου!" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Η διεύθυνση e-mail σου δεν επιτρέπεται να εγγραφεί" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "Το e-mail επιβεβαίωσης έχει σταλεί στον e-mail λογαριασμό σου." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "Δεν μπόρεσε να ενεργοποιηθεί η επαλήθευση LDAP" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "τώρα έχεις συνδεθεί ως: '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, fuzzy, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "Εναλλακτική Σύνδεση ως: '%(nickname)s', Ο Διακομιστής LDAP δεν είναι προσβάσιμος, ή ο χρήστης δεν είναι γνωστός" -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "Δεν μπόρεσε να συνδεθεί: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Λανθασμένο Όνομα Χρήστη ή Κωδικός" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "Ο Νέος Κωδικός έχει σταλεί στη διεύθυνση email σου" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Προέκυψε ένα άγνωστο σφάλμα. Παρακαλούμε δοκίμασε ξανά αργότερα." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Παρακαλούμε συμπλήρωσε ένα έγκυρο όνομα χρήστη για επαναφορά του κωδικού" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "τώρα έχεις συνδεθεί ως: '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "%(name)s's προφίλ" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Το προφίλ ενημερώθηκε" -#: cps/web.py:1484 +#: cps/web.py:1491 #, fuzzy msgid "Oops! An account already exists for this Email." msgstr "Βρέθηκε ένας ήδη υπάρχον λογαριασμός για αυτή τη διεύθυνση e-mail." @@ -1889,7 +1889,7 @@ msgid "Author" msgstr "Συγγραφέας" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Περιγραφή" @@ -1914,7 +1914,7 @@ msgstr "Αφαίρεση" msgid "Add Identifier" msgstr "Προσθήκη Αναγνωριστικού" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Ετικέτες" @@ -1949,13 +1949,13 @@ msgstr "Εκδότης" msgid "Language" msgstr "Γλώσσα" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Ναι" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Όχι" @@ -2830,7 +2830,7 @@ msgid "Books ordered by file formats" msgstr "Τα βιβλία ταξινομήθηκαν ανά μορφές αρχείου" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Ράφια" @@ -3243,44 +3243,52 @@ msgstr "Ημερομηνία Έκδοσης Από" msgid "Published Date To" msgstr "Ημερομηνία Έκδοσης Μέχρι" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Εξαίρεση Ετικετών" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Εξαίρεση Σειρών" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 #, fuzzy msgid "Exclude Shelves" msgstr "Εξαίρεση Σειρών" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Εξαίρεση Γλωσσών" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Επεκτάσεις" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Εξαίρεση Επεκτάσεων" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Βαθμολογία Πάνω από" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Βαθμολογία Κάτω από" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "" diff --git a/cps/translations/es/LC_MESSAGES/messages.mo b/cps/translations/es/LC_MESSAGES/messages.mo index 6af47c30..1c68874b 100644 Binary files a/cps/translations/es/LC_MESSAGES/messages.mo and b/cps/translations/es/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/es/LC_MESSAGES/messages.po b/cps/translations/es/LC_MESSAGES/messages.po index 7fc13e08..f1015f3f 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2020-05-25 17:22+0200\n" "Last-Translator: minakmostoles \n" "Language: es\n" @@ -18,509 +18,509 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" # "Last-Translator: victorhck \n" #: cps/about.py:84 msgid "Statistics" msgstr "Estadísticas" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Servidor reiniciado. Por favor, recargue la página" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "El servidor se está apagando. Por favor, cierre la ventana" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Comando desconocido" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy 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:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Desconocido" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Página de administración" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Configuración básica" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Configuración de la interfaz de usuario" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 #, fuzzy msgid "Edit Users" msgstr "Editar usuarios" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Todo" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Usuario no encontrado" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{} usuarios eliminados con éxito" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Mostrar todo" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "Petición mal formulada" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "El nombre de invitado no se puede cambiar" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "El invitado no puede tener ese rol" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "No queda ningún usuario administrador, no se puede eliminar al usuario" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "Valor tiene que ser verdadero o falso" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "Rol inválido" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "El invitado no puede tener esta vista" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "Vista no válida" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "El sitio del invitado se determina automáticamente y no puede ser cambiado" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "No hay un sitio válido" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "No se ha indicado un idioma válido para el libro" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "Parámetro no encontrado" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "Columna de lectura no válida" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "Columna restringida no válida" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Configuración de Calibre-Web actualizada" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "¿Realmente quieres borrar el Token de Kobo?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "¿Realmente deseas borrar este dominio?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "¿Realmente quieres borrar este usuario?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "¿Realmente quieres eliminar este estante?" -#: cps/admin.py:614 +#: cps/admin.py:617 #, fuzzy msgid "Are you sure you want to change locales of selected user(s)?" msgstr "¿Realmente quieres cambiar el idioma de los usuarios seleccionados?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "¿Realmente quieres cambiar los idiomas visibles del libro de los usuarios seleccionados?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "¿Realmente quieres cambiar el rol seleccionado de el usuario seleccionado?" -#: cps/admin.py:620 +#: cps/admin.py:623 #, fuzzy msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "¿Realmente quieres cambiar las restricciones de los usuarios seleccionados?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "¿Realmente quieres cambiar las restricciones de visibilidad de los usuarios seleccionados?" -#: cps/admin.py:625 +#: cps/admin.py:628 #, fuzzy msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "¿Realmente quieres cambiar el comportamiento de sincronización de estante del usuario seleccionado?" -#: cps/admin.py:627 +#: cps/admin.py:630 #, fuzzy msgid "Are you sure you want to change Calibre library location?" msgstr "¿Realmente quieres cambiar la ubicación de la biblioteca Calibre?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Denegar" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: 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:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "Etiqueta no encontrada" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "Acción no válida" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json no está configurado para la aplicación web" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "La ruta del Logfile no es válida. Por favor, Introduce la ruta correcta" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "La ruta del Access Logfile no es válida. Por favor, Introduce la ruta correcta" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "Por favor, Introduce un proveedor LDAP, puerto, DN y el User Object Identifier" -#: cps/admin.py:1199 +#: cps/admin.py:1202 #, fuzzy msgid "Please Enter a LDAP Service Account and Password" msgstr "Por favor, introduce una cuenta de servicio LDAP y su contraseña" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "Por favor, introduce una cuenta de servicio LDAP" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "LDAP Group Object Filter necesita tener un identificador de formato \"%s\"" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "El LDAP Group Object Filter tiene un paréntesis diferente" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP Group Object Filter necesita tener un identificador de formato \"%s\"" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "El LDAP Group Object Filter tiene un paréntesis diferente" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "El filtro de usuarios LDAP necesita tener un identificador de formato \"%s\"" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "El filtro de LDAP \"Member User\" tiene paréntesis no coincidentes" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "Ubicaciones del certificado de la CA del LDAP, del certificado o de la clave no válidos. Por favor introduce la ruta correcta" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Añadir nuevo usuario" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "Cambiar parámetros de correo" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "Error en la base de datos: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, 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:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Ocurrió un error enviando el correo electrónico de prueba: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Por favor, configure su correo electrónico primero..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "Actualizados los ajustes del servidor de correo electrónico" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Ha ocurrido un error desconocido. Por favor vuelva a intentarlo más tarde." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Editar Usuario %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "Contraseña para el usuario %(user)s reinicializada" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Configura primero los parámetros del servidor SMTP..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Visor del fichero de log" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Solicitando paquete de actualización" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Descargando paquete de actualización" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Descomprimiendo paquete de actualización" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Remplazando archivos" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Los conexiones con la base datos están cerradas" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Parando el servidor" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Actualización finalizada. Por favor, pulse OK y recargue la página" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Falló la actualización:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "Error HTTP" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Error de conexión" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Tiempo agotado mientras se trataba de establecer la conexión" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Error general" -#: cps/admin.py:1527 +#: cps/admin.py:1530 #, fuzzy msgid "Update file could not be saved in temp dir" msgstr "La actualización del archivo no pudo guardarse en el directorio temporal (Temp Dir)" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "" -#: cps/admin.py:1552 +#: cps/admin.py:1555 #, fuzzy msgid "Failed to extract at least One LDAP User" msgstr "Error al crear al menos un usuario LDAP" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Error al crear al menos un usuario LDAP" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Error: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Error: el servidor LDAP no ha devuelto ningún usuario" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "Al menos, un usuario LDAP no se ha encontrado en la base de datos" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "{} Usuario importado con éxito" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "La ruta de la base de datos no es válida. Por favor, Introduce la ruta correcta" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "La base de datos no es modificable" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "La ruta del Keyfile no es válida, por favor, Introduce la ruta correcta" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "La ruta de Certfile no es válida, por favor, Introduce la ruta correcta" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 #, fuzzy msgid "Database Settings updated" msgstr "Actualizados los ajustes del servidor de correo electrónico" -#: cps/admin.py:1876 +#: cps/admin.py:1879 #, fuzzy msgid "Database Configuration" msgstr "Configuración de la base de datos" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "¡Por favor, rellena todos los campos!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "El correo electrónico no tiene un dominio válido" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Añadir un nuevo usuario" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Usuario '%(user)s' creado" -#: cps/admin.py:1923 +#: cps/admin.py:1926 #, fuzzy msgid "Oops! An account already exists for this Email. or name." msgstr "Encontrada una cuenta existente para este correo electrónico o nombre de usuario." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Usuario '%(nick)s' eliminado" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "No puedes borrar al Usuario Invitado" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "No queda ningún usuario administrador, no se puede borrar al usuario" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Usuario '%(nick)s' actualizado" @@ -545,110 +545,110 @@ msgstr "Columna personalizada No.%(column)d no existe en la base de datos calibr msgid "None" msgstr "Ninguno" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 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:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 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:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Metadatos actualizados con éxito" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "El fichero %(file)s ha sido subido" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Falta la fuente o el formato de destino para la conversión" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, 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:332 +#: cps/editbooks.py:341 #, 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:639 +#: cps/editbooks.py:648 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:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s no es un idioma válido" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "El archivo a subir debe tener una extensión" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, 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:764 +#: cps/editbooks.py:773 #, 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:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "Formato de libro eliminado con éxito" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "Libro eliminado con éxito" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "editar metadatos" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex) no es un número válido, saltando" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Fallo al crear la ruta %(path)s (permiso denegado)" -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Fallo al guardar el archivo %(file)s." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Archivo con formato %(ext)s añadido a %(book)s" @@ -919,7 +919,7 @@ msgstr "{} Estrellas" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Inicio de sesión" @@ -1008,7 +1008,7 @@ msgstr "Mostrar selección de categorías" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Series" @@ -1038,7 +1038,7 @@ msgid "Show Publisher Section" msgstr "Mostrar selección de editores" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Idiomas" @@ -1083,10 +1083,10 @@ msgstr "Lista de Libros" msgid "Show Books List" msgstr "Mostrar Lista de Libros" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Buscar" @@ -1109,15 +1109,15 @@ msgid "Rating >= %(rating)s" msgstr "Calificación >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "Estado de lectura = $(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "Error en la búsqueda de columnas personalizadas, por favor reinicia Calibre-Web" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Búsqueda avanzada" @@ -1358,109 +1358,109 @@ msgstr "Lista de calificaciones" msgid "File formats list" msgstr "Lista de formatos" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Configura primero los parámetros del servidor SMTP..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Libro puesto en la cola de envío a %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Ha sucedido un error en el envío del libro: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Por favor actualiza tu perfil con la dirección de correo de su kindle..." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Registro" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "El servidor de correo no está configurado, por favor, ¡avisa a tu administrador!" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Su correo electrónico no está permitido para registrarse" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "Se ha enviado un correo electrónico de verificación a su cuenta de correo." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "No se puede activar la autenticación LDAP" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "has iniciado sesión como : '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, fuzzy, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "Fallback login como: '%(nickname)s', no se puede acceder al servidor LDAP o usuario desconocido" -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "No se pudo entrar: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Usuario o contraseña inválido" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "Una nueva contraseña se ha enviado a su cuenta de correo electrónico" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Ha ocurrido un error desconocido. Por favor vuelva a intentarlo más tarde." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Por favor, introduce un usuario válido para restablecer la contraseña" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "has iniciado sesión como : '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "Perfil de %(name)s" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Perfil actualizado" -#: cps/web.py:1484 +#: cps/web.py:1491 #, fuzzy msgid "Oops! An account already exists for this Email." msgstr "Encontrada una cuenta existente para esa dirección de correo electrónico" @@ -1895,7 +1895,7 @@ 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 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Descripción" @@ -1920,7 +1920,7 @@ msgstr "Borrar" msgid "Add Identifier" msgstr "Añadir identificador" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Etiquetas" @@ -1955,13 +1955,13 @@ msgstr "Editor" msgid "Language" msgstr "Idioma" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Sí" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "No" @@ -2837,7 +2837,7 @@ msgid "Books ordered by file formats" msgstr "Libros ordenados por formato de archivo" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Estanterías" @@ -3250,44 +3250,52 @@ msgstr "Fecha de publicación desde" msgid "Published Date To" msgstr "Fecha de publicación hasta" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Excluir etiquetas" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Excluir series" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 #, fuzzy msgid "Exclude Shelves" msgstr "Excluir estantes" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Excluir idiomas" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Extensiones" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Extensiones excluidas" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Clasificación mayor que" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Clasificación menor que" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "De:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "Para:" diff --git a/cps/translations/fi/LC_MESSAGES/messages.mo b/cps/translations/fi/LC_MESSAGES/messages.mo index 06e025fb..6172c12b 100644 Binary files a/cps/translations/fi/LC_MESSAGES/messages.mo and b/cps/translations/fi/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/fi/LC_MESSAGES/messages.po b/cps/translations/fi/LC_MESSAGES/messages.po index ec98d1eb..af37874f 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2020-01-12 13:56+0100\n" "Last-Translator: Samuli Valavuo \n" "Language: fi\n" @@ -16,505 +16,505 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Tilastot" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Palvelin uudelleenkäynnistetty, ole hyvä ja päivitä sivu" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "Palvelinta sammutetaan, ole hyvä ja sulje sivu" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy 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:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Tuntematon" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Ylläpitosivu" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Perusasetukset" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Käyttöliittymän asetukset" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 #, fuzzy msgid "Edit Users" msgstr "Pääkäyttäjä" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Kaikki" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Näytä kaikki" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Calibre-Web asetukset päivitetty" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Oletko varma, että haluat poistaa hyllyn?" -#: cps/admin.py:614 +#: cps/admin.py:617 #, fuzzy msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Oletko varma, että haluat poistaa hyllyn?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "" -#: cps/admin.py:620 +#: cps/admin.py:623 #, fuzzy msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Oletko varma, että haluat poistaa hyllyn?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "" -#: cps/admin.py:625 +#: cps/admin.py:628 #, fuzzy msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Oletko varma, että haluat poistaa hyllyn?" -#: cps/admin.py:627 +#: cps/admin.py:630 #, fuzzy msgid "Are you sure you want to change Calibre library location?" msgstr "Haluatko varmasti pysäyttää Calibre-Webin?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "Muuta SMTP asetuksia" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "" -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Testisähköpostin lähetyksessä tapahtui virhe: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "" -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "Sähköpostipalvelimen tiedot päivitetty" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Tapahtui tuntematon virhe. Yritä myöhemmin uudelleen." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Muokkaa käyttäjää %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "Käyttäjän %(user)s salasana palautettu" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Ole hyvä ja aseta SMTP postiasetukset ensin..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Lokitiedoston katselin" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Haetaan päivitystiedostoa" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Ladataan päivitystiedostoa" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Puretaan päivitystiedostoa" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Korvataan tiedostoja" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Tietokantayhteydet on katkaistu" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Sammutetaan palvelin" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Päivitys valmistui, ole hyvä ja paina OK ja lataa sivu uudelleen" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Päivitys epäonnistui:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "HTTP virhe" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Yhteysvirhe" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Aikakatkaisu yhteyttä luotaessa" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Yleinen virhe" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 #, fuzzy msgid "Database Settings updated" msgstr "Sähköpostipalvelimen tiedot päivitetty" -#: cps/admin.py:1876 +#: cps/admin.py:1879 #, fuzzy msgid "Database Configuration" msgstr "Ominaisuuksien asetukset" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Ole hyvä ja täytä kaikki kentät!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "Sähköpostiosoite ei ole toimivasta domainista" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Lisää uusi käyttäjä" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Käyttäjä '%(user)s' lisätty" -#: cps/admin.py:1923 +#: cps/admin.py:1926 #, fuzzy msgid "Oops! An account already exists for this Email. or name." msgstr "Tälle sähköpostiosoitteelle tai tunnukselle löytyi jo tili." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Käyttäjä '%(nick)s' poistettu" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Pääkäyttäjiä ei jää jäljelle, käyttäjää ei voi poistaa" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Käyttäjä '%(nick)s' päivitetty" @@ -539,110 +539,110 @@ msgstr "" msgid "None" msgstr "Ei mitään" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 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:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Metadata päivitetty onnistuneesti" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "Tiedosto %(file)s tallennettu" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Lähteen tai kohteen tiedostomuoto puuttuu" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Kirja lisätty muutosjonoon muotoon %(book_format)s" -#: cps/editbooks.py:332 +#: cps/editbooks.py:341 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Kirjan muunnoksessa tapahtui virhe: %(res)s" -#: cps/editbooks.py:639 +#: cps/editbooks.py:648 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s ei ole kelvollinen kieli" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "Ladattavalla tiedostolla on oltava tiedostopääte" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "muokkaa metadataa" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Polun %(path)s luonti epäonnistui (Ei oikeutta)." -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Tiedoston %(file)s tallennus epäonnistui." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Tiedostoformaatti %(ext)s lisätty %(book)s" @@ -910,7 +910,7 @@ msgstr "" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Kirjaudu sisään" @@ -999,7 +999,7 @@ msgstr "Näytä kategoriavalinta" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Sarjat" @@ -1029,7 +1029,7 @@ msgid "Show Publisher Section" msgstr "Näytä julkaisijavalinta" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Kielet" @@ -1074,10 +1074,10 @@ msgstr "" msgid "Show Books List" msgstr "" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Hae" @@ -1101,14 +1101,14 @@ msgstr "Arvostelu >= %(rating)s" #: cps/search.py:221 #, python-format -msgid "Read Status = %(status)s" +msgid "Read Status = '%(status)s'" msgstr "" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Edistynyt haku" @@ -1349,108 +1349,108 @@ msgstr "Arvostelulistaus" msgid "File formats list" msgstr "Tiedostomuotolistaus" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Ole hyvä ja aseta SMTP postiasetukset ensin..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Kirja lisätty onnistuneeksi lähetettäväksi osoitteeseen %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Kirjan: %(res)s lähettämisessa tapahtui virhe" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Ole hyvä ja aseta Kindle sähköpostiosoite ensin..." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Rekisteröi" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Sähköpostiosoitteellasi ei ole sallittua rekisteröityä" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "Vahvistusviesti on lähetetty sähköpostiosoitteeseesi." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "LDAP autnetikoinnin aktivointi ei onnistu" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "olet nyt kirjautunut tunnuksella: \"%(nickname)s\"" -#: cps/web.py:1376 +#: cps/web.py:1383 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1381 +#: cps/web.py:1388 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Väärä käyttäjätunnus tai salasana" -#: cps/web.py:1392 +#: cps/web.py:1399 msgid "New Password was send to your email address" msgstr "" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Tapahtui tuntematon virhe. Yritä myöhemmin uudelleen." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Väärä käyttäjätunnus tai salasana" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "olet nyt kirjautunut tunnuksella: \"%(nickname)s\"" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "%(name)sn profiili" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Profiili päivitetty" -#: cps/web.py:1484 +#: cps/web.py:1491 #, fuzzy msgid "Oops! An account already exists for this Email." msgstr "Tälle sähköpostiosoitteelle läytyi jo käyttäjätunnus." @@ -1884,7 +1884,7 @@ msgid "Author" msgstr "Kirjailija" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Kuvaus" @@ -1909,7 +1909,7 @@ msgstr "" msgid "Add Identifier" msgstr "" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Tunnisteet" @@ -1944,13 +1944,13 @@ msgstr "Julkaisija" msgid "Language" msgstr "Kieli" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Kyllä" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Ei" @@ -2822,7 +2822,7 @@ msgid "Books ordered by file formats" msgstr "" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "" @@ -3235,44 +3235,52 @@ msgstr "Julkaisupäivästä" msgid "Published Date To" msgstr "Julkaisupäivään" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Poissulje merkintä" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Poissulje sarja" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 #, fuzzy msgid "Exclude Shelves" msgstr "Poissulje sarja" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Poissulje kieli" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Arvio enemmän kun" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Arvio vähemmän kun" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "" diff --git a/cps/translations/fr/LC_MESSAGES/messages.mo b/cps/translations/fr/LC_MESSAGES/messages.mo index 16307b50..6c97b6c9 100644 Binary files a/cps/translations/fr/LC_MESSAGES/messages.mo and b/cps/translations/fr/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/fr/LC_MESSAGES/messages.po b/cps/translations/fr/LC_MESSAGES/messages.po index d3e3faff..1340b87f 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2020-06-07 06:47+0200\n" "Last-Translator: \n" "Language: fr\n" @@ -31,508 +31,508 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Statistiques" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Serveur redémarré, merci de rafraîchir la page" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "Arrêt du serveur en cours, merci de fermer la fenêtre" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Commande inconnue" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy 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:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Inconnu" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Page admin" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Configuration principale" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Configuration de l’interface utilisateur" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 #, fuzzy msgid "Edit Users" msgstr "Éditer les utilisateurs" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Tout" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "L'utilisateur n'a pas été trouvé" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{} utilisateurs supprimés avec succès" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Montrer tout" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "Demande malformée" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "Le nom de l’invité ne peut pas être modifié" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "L’invité ne peut pas avoir ce rôle" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "Aucun utilisateur admin restant, impossible de supprimer le rôle admin" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "La valeur doit être vraie ou fausse" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "Rôle invalide" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "L’invité ne peut pas avoir cette vue" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "Vue invalide" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "Les paramètres régionaux de l’invité sont déterminés automatiquement et ne peuvent pas être définis" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "Aucun paramètre régional valide n’est donné" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "Aucune langue de livre valide donnée" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "Paramètre non trouvé" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "Colonne de lecture non valide" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "Colonne restreinte non valide" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Configuration de Calibre-Web mise à jour" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Voulez-vous vraiment supprimer le jeton Kobo ?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "Voulez-vous vraiment supprimer ce domaine ?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "Voulez-vous vraiment supprimer cet utilisateur ?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Voulez-vous vraiment supprimer l’étagère ?" -#: cps/admin.py:614 +#: cps/admin.py:617 #, fuzzy msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Voulez-vous vraiment supprimer l’étagère ?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "Voulez-vous vraiment modifier les langues de livre visibles pour le ou les utilisateurs sélectionnés ?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "Voulez-vous vraiment modifier le rôle sélectionné pour le ou les utilisateurs sélectionnés ?" -#: cps/admin.py:620 +#: cps/admin.py:623 #, fuzzy msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Voulez-vous vraiment modifier les restrictions sélectionnées pour le ou les utilisateurs sélectionnés ?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "Voulez-vous vraiment modifier les restrictions de visibilité sélectionnées pour le ou les utilisateurs sélectionnés ?" -#: cps/admin.py:625 +#: cps/admin.py:628 #, fuzzy msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Voulez-vous vraiment supprimer l’étagère?" -#: cps/admin.py:627 +#: cps/admin.py:630 #, fuzzy msgid "Are you sure you want to change Calibre library location?" msgstr "Voulez-vous vraiment arrêter Calibre-Web ?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "Êtes-vous certain de vouloir supprimer la base de données de synchronisation de Calibre-Web pour forcer une synchronisation complète avec votre liseuse Kobo ?" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Refuser" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "Autoriser" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "{} entrées de synchronisation supprimées" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "Étiquette introuvable" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "Action invalide" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json n'est pas configuré pour l'application Web" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "L'emplacement du fichier logfile est incorrect, veuillez saisir un chemin valide" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "L'emplacement du fichier Access Logfile est incorrect, veuillez saisir un chemin valide" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "Veuillez saisir un fournisseur LDAP, Port, DN et l'identifiant objet de l'utilisateur" -#: cps/admin.py:1199 +#: cps/admin.py:1202 #, fuzzy msgid "Please Enter a LDAP Service Account and Password" msgstr "Veuillez entrer un nom d'utilisateur valide pour réinitialiser le mot de passe" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "Veuillez entrer un compte de service LDAP" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "Le filtre objet du groupe LDAP a besoin d'un identifiant de format \"%s\"" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "Le filtre objet du groupe LDAP a une parenthèse non gérée" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "Le filtre objet de l'utilisateur LDAP a besoin d'un identifiant de format \"%s\"" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "Le filtre objet de l'utilisateur LDAP a une parenthèse non gérée" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "Le filtre utilisateur des membres LDAP doit avoir un identificateur de format \"%s\\ »" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "Le filtre utilisateur de membre LDAP a des parenthèses non appariées" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "LDAP CACertificat, certificat ou emplacement de clé non valide, veuillez entrer le chemin correct" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Ajouter un nouvel utilisateur" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "Modifier les paramètres du serveur de courriels" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "Erreur de la base de données: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, 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:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Il y a eu une erreur pendant l’envoi du courriel de test : %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Veuillez d'abord configurer votre adresse de courriel..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "Les paramètres du serveur de courriels ont été mis à jour" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Une erreur inconnue est survenue. Veuillez réessayer plus tard." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Éditer l'utilisateur %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "Le mot de passe de l’utilisateur %(user)s a été réinitialisé" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Veuillez configurer les paramètres SMTP au préalable..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Visualiseur de fichier journal" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Demande de mise à jour" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Téléchargement de la mise à jour" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Décompression de la mise à jour" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Remplacement des fichiers" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Les connexions à la base de données ont été fermées" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Arrêt du serveur" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Mise à jour terminée, merci d’appuyer sur okay et de rafraîchir la page" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "La mise à jour a échoué :" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "Erreur HTTP" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Erreur de connexion" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Délai d'attente dépassé lors de l'établissement de connexion" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Erreur générale" -#: cps/admin.py:1527 +#: cps/admin.py:1530 #, fuzzy msgid "Update file could not be saved in temp dir" msgstr "Le fichier de mise à jour ne peut pas être sauvegardé dans le répertoire temporaire" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "Les fichiers n’ont pas pu être remplacés pendant la mise à jour" -#: cps/admin.py:1552 +#: cps/admin.py:1555 #, fuzzy msgid "Failed to extract at least One LDAP User" msgstr "Impossible de créer au moins un utilisateur LDAP" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Impossible de créer au moins un utilisateur LDAP" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Erreur : %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Erreur : Aucun utilisateur renvoyé dans la réponse LDAP du serveur" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "Au moins un utilisateur LDAP n'a pas été trouvé dans la base de données" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "{} utilisateur importé avec succès" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "L'emplacement de la base de données est incorrect, veuillez saisir un chemin valide" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "La base de données n'est pas accessible en écriture" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "L'emplacement du fichier Keyfile est incorrect, veuillez saisir un chemin valide" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "L'emplacement du fichier Certfile est incorrect, veuillez saisir un chemin valide" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 #, fuzzy msgid "Database Settings updated" msgstr "Les paramètres du serveur de courriels ont été mis à jour" -#: cps/admin.py:1876 +#: cps/admin.py:1879 #, fuzzy msgid "Database Configuration" msgstr "Configuration des options" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Veuillez compléter tous les champs !" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "Cette adresse de courriel n’appartient pas à un domaine valide" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Ajouter un nouvel utilisateur" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Utilisateur '%(user)s' créé" -#: cps/admin.py:1923 +#: cps/admin.py:1926 #, fuzzy msgid "Oops! An account already exists for this Email. or name." msgstr "Un compte existant a été trouvé pour cette adresse de courriel ou pour ce surnom." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Utilisateur '%(nick)s' supprimé" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "Impossible de supprimer l’utilisateur Invité" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Aucun utilisateur admin restant, impossible de supprimer l’utilisateur" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Utilisateur '%(nick)s' mis à jour" @@ -557,110 +557,110 @@ msgstr "La colonne personnalisée No.%(column)d n'existe pas dans la base de don msgid "None" msgstr "Aucun" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 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:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 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:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Les métadonnées ont bien été mises à jour" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "Le fichier %(file)s a été téléchargé" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 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:328 +#: cps/editbooks.py:337 #, 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:332 +#: cps/editbooks.py:341 #, 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:639 +#: cps/editbooks.py:648 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:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s n'est pas une langue valide" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "Pour être déposé le fichier doit avoir une extension" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, 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:764 +#: cps/editbooks.py:773 #, 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:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "Le format du livre a été supprimé avec succès" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "Le livre a été supprimé avec succès" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "Vous n’avez par les permissions pour supprimer les livres" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "modifier les métadonnées" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s n’est pas un nombre valide, ignoré" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, 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:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Échec de la sauvegarde du fichier %(file)s." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Le format de fichier %(ext)s a été ajouté à %(book)s" @@ -931,7 +931,7 @@ msgstr "{} Étoiles" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Connexion" @@ -1020,7 +1020,7 @@ msgstr "Montrer la sélection par catégories" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Séries" @@ -1050,7 +1050,7 @@ msgid "Show Publisher Section" msgstr "Montrer la sélection par éditeur" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Langues" @@ -1095,10 +1095,10 @@ msgstr "Liste des livres" msgid "Show Books List" msgstr "Montrer la liste des livres" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Chercher" @@ -1121,15 +1121,15 @@ msgid "Rating >= %(rating)s" msgstr "Évaluation >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "Status de lecture = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "Erreur lors de la recherche de colonnes personnalisées, veuillez redémarrer Calibre-Web" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Recherche avancée" @@ -1370,109 +1370,109 @@ msgstr "Liste des évaluations" msgid "File formats list" msgstr "Liste de formats de fichiers" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Veuillez configurer les paramètres SMTP au préalable..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Le livre a été mis en file de traitement avec succès pour un envoi vers %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Il y a eu une erreur en envoyant ce livre : %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Veuillez mettre à jour votre profil avec une adresse de courriel Kindle valide." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Créer un compte" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "Le serveur de courriel n'est pas configuré, veuillez contacter votre administrateur!" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Votre adresse de courriel n’est pas autorisé pour une inscription" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "Le courriel de confirmation a été envoyé à votre adresse." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "Impossible d’activer l’authentification LDAP" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "vous êtes maintenant connecté comme : '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, fuzzy, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "Connexion de secours comme: '%(nickname)s', le serveur LDAP est indisponible, ou l'utilisateur est inconnu" -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "Impossible de se connecter: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Mauvais nom d'utilisateur ou mot de passe" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "Le nouveau mot de passe a été envoyé vers votre adresse de courriel" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Une erreur inconnue est survenue. Veuillez réessayer plus tard." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Veuillez entrer un nom d'utilisateur valide pour réinitialiser le mot de passe" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "vous êtes maintenant connecté comme : '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "Profil de %(name)s" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Profil mis à jour" -#: cps/web.py:1484 +#: cps/web.py:1491 #, fuzzy msgid "Oops! An account already exists for this Email." msgstr "Un compte existant a été trouvé pour cette adresse de courriel." @@ -1907,7 +1907,7 @@ msgid "Author" msgstr "Auteur" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Description" @@ -1932,7 +1932,7 @@ msgstr "Supprimer" msgid "Add Identifier" msgstr "Ajouter un identifiant" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Étiquettes" @@ -1967,13 +1967,13 @@ msgstr "Éditeur" msgid "Language" msgstr "Langue" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Oui" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Non" @@ -2849,7 +2849,7 @@ msgid "Books ordered by file formats" msgstr "Livres classés par formats de fichiers" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Etagères" @@ -3262,44 +3262,52 @@ msgstr "Date de publication (depuis)" msgid "Published Date To" msgstr "Date de publication (jusqu’à)" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Exclure les étiquettes" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Exclure les séries" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 #, fuzzy msgid "Exclude Shelves" msgstr "Exclure les séries" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Exclure les langues" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Extensions" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Exclure les extensions" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Évaluation supérieure à" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Évaluation inférieure à" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "Depuis" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "Vers" diff --git a/cps/translations/gl/LC_MESSAGES/messages.mo b/cps/translations/gl/LC_MESSAGES/messages.mo index f0918278..40b996e9 100644 Binary files a/cps/translations/gl/LC_MESSAGES/messages.mo and b/cps/translations/gl/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/gl/LC_MESSAGES/messages.po b/cps/translations/gl/LC_MESSAGES/messages.po index e573c269..ffca5448 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2022-08-11 16:46+0200\n" "Last-Translator: pollitor \n" "Language: gl\n" @@ -14,497 +14,497 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Estatísticas" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Servidor reiniciado. Por favor, recargue a páxina" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "O servidor estase apagando. Por favor, peche a xanela" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Orde descoñecida" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy 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:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Descoñecido" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Páxina de administración" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Configuración Básica" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Configuración da Interface de Usuario" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "Editar Usuarios" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Todo" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Usuario non atopado" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{} usuarios borrados con éxito" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Mostrar Todo" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "Petición mal formada" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "O nome do convidado non se pode cambiar" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "O convidado non pode ter este rol" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "Non queda ningún usuario administrador, non se pode eliminar ao usuario" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "O Valor ten que ser verdadeiro ou falso" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "Rol non válido" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "O convidado non pode ter esta vista" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "Vista non válida" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "O sitio do convidado determínase automáticamente e non se pode cambiar" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "Non hai unha localización válida" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "Non se indicou unha lingua válida para o libro" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "Parámetro non atopado" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "Columna de lectura non válida" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "Columna restrinxida non válida" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Configuración de Calibre-Web actualizada" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "De verdade queres borrar o Token de Kobo?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "De verdade desexas borrar este dominio?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "De verdade queres borrar este usuario?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "De verdade queres eliminar este andel?" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "De verdade queres cambiar a linguaxe dos usuarios seleccionados?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "De verdade queres cambiar as linguas visibles do libro dos usuarios seleccionados?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "De verdade queres cambiar o rol seleccionado do usuario seleccionado?" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "De verdade queres cambiar as restricións escollidas dos usuarios seleccionados?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "De verdade queres cambiar as restricións de visibilidade dos usuarios seleccionados?" -#: cps/admin.py:625 +#: cps/admin.py:628 msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "De verdade queres cambiar o comportamento da sincronización do andel para o usuario seleccionado?" -#: cps/admin.py:627 +#: cps/admin.py:630 msgid "Are you sure you want to change Calibre library location?" msgstr "De verdade queres cambiar a localización da biblioteca Calibre?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "Calibre-web buscará cubertas actualizadas e miniaturas de cubertas actualizadas, isto pode levar un intre?" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "Está seguro que quere borrar a base de datos de sincronización de Calibre-Web para forzar unha sincronización completa co seu lector Kobo?" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Denegar" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: 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:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "Elimináronse {} entradas de sincronización" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "Etiqueta non atopada" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "Acción non válida" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json non está configurado para a aplicación web" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "A localización do arquivo de rexistro non é válida. Por favor, Introduce a ruta correcta" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "A localización do rexistro de accesos non é válida. Por favor, Introduce a ruta correcta" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "Por favor, Introduce un provedor LDAP, porto, DN e o User Object Identifier" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "Por favor, introduce unha conta de servizo LDAP e o seu contrasinal" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "Por favor, introduce unha conta de servizo LDAP" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "LDAP Group Object Filter necesita ter un identificador de formato \"%s\"" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "O LDAP Group Object Filter ten parénteses que non casan" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP Group Object Filter necesita ter un identificador de formato \"%s\"" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "O LDAP Group Object Filter ten parénteses que non casan" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "O filtro de usuarios LDAP necesita ter un identificador de formato \"%s\"" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "O filtro de LDAP \"Member User\" ten parénteses que non casan" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "As localizacións do certificado da CA do LDAP, do certificado ou da chave non válidos. Por favor introduce a ruta correcta" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Engadir novo usuario" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "Cambiar os parámetros do correo" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "Error na base de datos: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, 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:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Ocurreu un error enviando o correo electrónico de proba: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Por favor, configure o seu correo electrónico primeiro..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "Actualizáronse os axustes do servidor de correo electrónico" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "Editar a Configuración das Tarefas Programadas" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "Indicada unha hora incorrecta de comezo de tarefa" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "Indicada unha duracción incorrecta para a tarefa" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "Actualizouse a configuración das tarefas programadas" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Sucedeu un erro descoñecido. Por favor volva a intentalo máis tarde." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "A configuración da DB non se pode escribir" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Editar o Usuario %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "Reiniciada a contrasinal para o usuario %(user)s" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Configura primeiro os parámetros do servidor SMTP..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Visor do ficheiro de rexistro" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Solicitando paquete de actualización" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Descargando paquete de actualización" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Descomprimendo paquete de actualización" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Remplazando archivos" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "As conexións coa base datos están pechadas" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Detendo o servidor" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Actualización finalizada. Por favor, prema OK e recargue a páxina" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "A actualización fallou:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "Erro HTTP" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Erro de conexión" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Tempo esgotado mentras se trataba de establecer a conexión" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Erro xeral" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "A actualización do arquivo non se puido gardar no directorio temporal (Temp Dir)" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "Non se puideron substituír os ficheiros durante a actualización" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "Erro ao extraer polo menos un usuario LDAP" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Erro ao crear polo menos un usuario LDAP" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Erro: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Erro: o servidor LDAP non devolveu ningún usuario" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "Polo menos, un usuario LDAP non se atopou na base de datos" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "Usuario {} importado con éxito" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "A localización da base de datos non é válida. Por favor, Introduce a ruta correcta" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "A base de datos non é modificable" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "A localización do Keyfile non é válida, por favor, Introduce a ruta correcta" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "A localización do Certfile non é válida, por favor, Introduce a ruta correcta" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 msgid "Database Settings updated" msgstr "Actualizados os axustes da base de datos" -#: cps/admin.py:1876 +#: cps/admin.py:1879 msgid "Database Configuration" msgstr "Configuración da base de datos" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Por favor, cubra todos os campos!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "O correo electrónico non ven dun dominio válido" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Engadir un usuario novo" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Usuario '%(user)s' creado" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "Atopada unha conta existente para este correo electrónico ou nome de usuario." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Usuario '%(nick)s' eliminado" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "Non se pode borrar ao Usuario Invitado" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Non queda ningún usuario administrador, non se pode borrar ao usuario" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Usuario '%(nick)s' actualizado" @@ -529,110 +529,110 @@ msgstr "Columna personalizada No.%(column)d non existe na base de datos calibre" msgid "None" msgstr "Ningún" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 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:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "O usuario non ten permisos para subir a cuberta" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 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:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Metadatos actualizados con éxito" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "Erro editando libro: {}" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "O ficheiro %(file)s subiuse" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Falta a fonte ou o formato de destino para a conversión" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, 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:332 +#: cps/editbooks.py:341 #, 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:639 +#: cps/editbooks.py:648 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:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s non é unha lingua válida" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "O arquivo que se vai cargar debe ter unha extensión" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, 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:764 +#: cps/editbooks.py:773 #, 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:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "Formato de libro eliminado con éxito" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "Libro eliminado con éxito" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "Vostede non ten permisos para borrar libros" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "editar metadatos" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s non é un número válido, saltando" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 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:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Fallo ao crear a ruta %(path)s (permiso denegado)" -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Fallo ao gardar o arquivo %(file)s." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Arquivo con formato %(ext)s engadido a %(book)s" @@ -900,7 +900,7 @@ 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Inicio de sesión" @@ -989,7 +989,7 @@ msgstr "Mostrar selección de categorías" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Series" @@ -1019,7 +1019,7 @@ msgid "Show Publisher Section" msgstr "Mostrar selección de editores" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Linguas" @@ -1064,10 +1064,10 @@ msgstr "Lista de libros" msgid "Show Books List" msgstr "Mostrar lista de libros" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Buscar" @@ -1090,15 +1090,15 @@ msgid "Rating >= %(rating)s" msgstr "Valoración >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "Estado de lectura = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "Erro na busca de columnas personalizadas, por favor reinicia Calibre-Web" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Búsqueda avanzada" @@ -1336,109 +1336,109 @@ msgstr "Lista de valoracións" msgid "File formats list" msgstr "Lista de formatos" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Configura primeiro os parámetros do servidor SMTP..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Libro posto na cola de envío a %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Oh, oh! Houbo un erro no envío do libro: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Por favor actualiza o teu perfil co enderezo de correo do teu kindle..." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Rexistro" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "O servidor de correo non está configurado, por favor, avisa ao teu administrador!" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "O seu correo electrónico non está permitido para rexistrarse" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "Mandouse un correo electrónico de verificación á súa conta de correo." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "Non se pode activar a autenticación LDAP" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "Iniciou sesión como : '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, fuzzy, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "Fallback login como: '%(nickname)s', non se pode acceder ao servidor LDAP ou usuario descoñecido" -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "Non se puido entrar: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Usuario ou contrasinal no válido" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "Unha nova contrasinal enviouse ao seu enderezo de correo electrónico" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Sucedeu un erro descoñecido. Por favor volva a intentalo máis tarde." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Por favor, introduce un usuario válido para restablecer a contrasinal" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Iniciou sesión como : '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "Perfil de %(name)s" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Perfil actualizado" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "Atopada unha conta existente para ese enderezo de correo electrónico" @@ -1870,7 +1870,7 @@ 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 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Descrición" @@ -1895,7 +1895,7 @@ msgstr "Borrar" msgid "Add Identifier" msgstr "Engadir identificador" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Etiquetas" @@ -1930,13 +1930,13 @@ msgstr "Editor" msgid "Language" msgstr "Lingua" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Sí" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Non" @@ -2804,7 +2804,7 @@ msgid "Books ordered by file formats" msgstr "Libros ordeados por formato de arquivo" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Andeis" @@ -3210,43 +3210,51 @@ msgstr "Data de publicación dende" msgid "Published Date To" msgstr "Data de publicación ata" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Excluir etiquetas" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Excluir series" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "Excluir andeis" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Excluir linguas" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Extensións" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Excluir extensións" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Valoración superior a" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Valoración inferior a" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "De:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "Para:" diff --git a/cps/translations/hu/LC_MESSAGES/messages.mo b/cps/translations/hu/LC_MESSAGES/messages.mo index 26433772..1efa59e8 100644 Binary files a/cps/translations/hu/LC_MESSAGES/messages.mo and b/cps/translations/hu/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/hu/LC_MESSAGES/messages.po b/cps/translations/hu/LC_MESSAGES/messages.po index ba280ffc..e72070e4 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2019-04-06 23:36+0200\n" "Last-Translator: \n" "Language: hu\n" @@ -16,504 +16,504 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Statisztika" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "A kiszolgáló újraindult, tölts be újra az oldalt!" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "A kiszolgáló leállítása folyamatban, zárd be ezt az ablakot" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "" -#: cps/admin.py:170 +#: cps/admin.py:173 msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "" -#: cps/admin.py:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Ismeretlen" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Rendszergazda oldala" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Alapvető beállítások" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Felhasználói felület beállításai" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 #, fuzzy msgid "Edit Users" msgstr "Rendszergazda felhasználó" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Mindent mutass" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "A Calibre-Web konfigurációja frissítve." -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Valóban törölni akarod a polcot?" -#: cps/admin.py:614 +#: cps/admin.py:617 #, fuzzy msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Valóban törölni akarod a polcot?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "" -#: cps/admin.py:620 +#: cps/admin.py:623 #, fuzzy msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Valóban törölni akarod a polcot?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "" -#: cps/admin.py:625 +#: cps/admin.py:628 #, fuzzy msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Valóban törölni akarod a polcot?" -#: cps/admin.py:627 +#: cps/admin.py:630 #, fuzzy msgid "Are you sure you want to change Calibre library location?" msgstr "Valóban le akarod állítani a Calibre-Web-et?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "SMTP beállítások változtatása" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "" -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Hiba történt a teszt levél küldése során: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "" -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "Az e-mail kiszolgáló beállításai frissítve." -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Ismeretlen hiba történt. Próbáld újra később!" -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr " A felhasználó szerkesztése: %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "A(z) %(user)s felhasználó jelszavának alaphelyzetbe állítása" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Először be kell állítani az SMTP levelező beállításokat..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Frissítési csomag kérése" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Frissítési csomag letöltése" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Frissítési csomag kitömörítése" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Fájlok cserélése" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Adatbázis kapcsolatok lezárva" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Szerver leállítása" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "A frissítés települt, kattints az OK-ra és újra tölt az oldal" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "A frissítés nem sikerült:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "HTTP hiba" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Kapcsolódási hiba" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Időtúllépés a kapcsolódás során" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Általános hiba" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 #, fuzzy msgid "Database Settings updated" msgstr "Az e-mail kiszolgáló beállításai frissítve." -#: cps/admin.py:1876 +#: cps/admin.py:1879 #, fuzzy msgid "Database Configuration" msgstr "Funkciók beállítása" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Az összes mezőt ki kell tölteni!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "Az e-mail tartománya nem érvényes." -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Új felhasználó hozzáadása" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "A következő felhasználó létrehozva: %(user)s" -#: cps/admin.py:1923 +#: cps/admin.py:1926 #, fuzzy msgid "Oops! An account already exists for this Email. or name." msgstr "Már létezik felhasználó ehhez az e-mail címhez vagy felhasználói névhez." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "A felhasználó törölve: %(nick)s" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "A felhasználó frissítve: %(nick)s" @@ -538,110 +538,110 @@ msgstr "" msgid "None" msgstr "Nincs" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 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:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "A metaadatok sikeresen frissültek" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 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:328 +#: cps/editbooks.py:337 #, 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:332 +#: cps/editbooks.py:341 #, 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:639 +#: cps/editbooks.py:648 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "A(z) %(langname)s nem érvényes nyelv" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "A feltöltendő fájlnak kiterjesztéssel kell rendelkeznie!" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "Metaadatok szerkesztése" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, 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:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Nem sikerült elmenteni a %(file)s fájlt." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, 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." @@ -909,7 +909,7 @@ msgstr "" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Belépés" @@ -998,7 +998,7 @@ msgstr "Címke választó mutatása" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Sorozatok" @@ -1028,7 +1028,7 @@ msgid "Show Publisher Section" msgstr "Kiadó választó mutatása" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Nyelvek" @@ -1073,10 +1073,10 @@ msgstr "" msgid "Show Books List" msgstr "" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Keresés" @@ -1100,14 +1100,14 @@ msgstr "Értékelés <= %(rating)s" #: cps/search.py:221 #, python-format -msgid "Read Status = %(status)s" +msgid "Read Status = '%(status)s'" msgstr "" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Részletes keresés" @@ -1348,107 +1348,107 @@ msgstr "" msgid "File formats list" msgstr "" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Először be kell állítani az SMTP levelező beállításokat..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "A könyv sikeresen küldésre lett jelölve a következő címre: %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Hiba történt a könyv küldésekor: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Először be kell állítani a kindle e-mail címet..." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Regisztrálás" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Nem engedélyezett a megadott e-mail cím bejegyzése" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "Jóváhagyó levél elküldve az email címedre." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 msgid "Cannot activate LDAP authentication" msgstr "" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "Be vagy jelentkezve mint: %(nickname)s" -#: cps/web.py:1376 +#: cps/web.py:1383 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1381 +#: cps/web.py:1388 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Rossz felhasználó név vagy jelszó!" -#: cps/web.py:1392 +#: cps/web.py:1399 msgid "New Password was send to your email address" msgstr "" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Ismeretlen hiba történt. Próbáld újra később!" -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Rossz felhasználó név vagy jelszó!" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Be vagy jelentkezve mint: %(nickname)s" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "%(name)s profilja" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "A profil frissítve." -#: cps/web.py:1484 +#: cps/web.py:1491 #, fuzzy msgid "Oops! An account already exists for this Email." msgstr "Már létezik felhasználó ehhez az e-mail címhez." @@ -1882,7 +1882,7 @@ msgid "Author" msgstr "Szerző" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Leírás" @@ -1907,7 +1907,7 @@ msgstr "" msgid "Add Identifier" msgstr "" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Címkék" @@ -1942,13 +1942,13 @@ msgstr "Kiadó" msgid "Language" msgstr "Nyelv" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Igen" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Nem" @@ -2819,7 +2819,7 @@ msgid "Books ordered by file formats" msgstr "" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "" @@ -3228,44 +3228,52 @@ msgstr "Kiadás éve ettől: " msgid "Published Date To" msgstr "Kiadás éve eddig: " -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Cimkék kizárása" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Sorozatok kizárása" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 #, fuzzy msgid "Exclude Shelves" msgstr "Sorozatok kizárása" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Nyelvek kizárása" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Értékelés nagyob mint" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Értékelés kisebb mint" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "" diff --git a/cps/translations/id/LC_MESSAGES/messages.mo b/cps/translations/id/LC_MESSAGES/messages.mo index 4a893cd7..19a83560 100644 Binary files a/cps/translations/id/LC_MESSAGES/messages.mo and b/cps/translations/id/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/id/LC_MESSAGES/messages.po b/cps/translations/id/LC_MESSAGES/messages.po index 3252a66e..be23dd39 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2023-01-21 10:00+0700\n" "Last-Translator: Arief Hidayat\n" "Language: id\n" @@ -16,497 +16,497 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Statistik" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Server dimulai ulang, harap muat ulang halaman" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "Mematikan server, silakan tutup jendela" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Perintah tidak diketahui" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy 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:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Tidak diketahui" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Halaman Admin" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Pengaturan Dasar" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Pengaturan Antarmuka" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "Edit pengguna" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Semua" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Pengguna tidak ditemukan" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{} pengguna berhasil dihapus" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Tampilkan semua" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "Permintaan salah" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "Nama Tamu tidak dapat diganti" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "Tamu tidak dapat memiliki peran ini" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "Tidak ada pengguna admin yang tersisa, tidak dapat menghapus peran admin" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "Nilai harus benar atau salah" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "Peran tidak valid" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr " Tamu tidak dapat mengakses tampilan ini" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr " Tampilan tidak valid" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "Lokal Tamu ditentukan secara otomatis dan tidak dapat disetel" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "Tidak Ada Lokal yang Valid Diberikan" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "Tidak Ada Bahasa Buku yang Valid Diberikan" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "Parameter tidak ditemukan" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "Kolom Baca Tidak Valid" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "Kolom Dibatasi Tidak Valid" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Pengaturan Calibre-Web telah diperbarui" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Apakah Anda yakin ingin menghapus Token Kobo?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "Apakah Anda yakin ingin menghapus domain ini?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "Apakah Anda yakin ingin menghapus pengguna ini?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Apakah Anda yakin ingin menghapus rak ini?" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Apakah Anda yakin ingin merubah lokalisasi untuk pengguna yang dipilih?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "Apakah Anda yakin ingin merubah bahasa buku yang terlihat untuk pengguna yang dipilih?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "Apakah Anda yakin ingin merubah peran untuk pengguna yang dipilih?" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Apakah Anda yakin ingin mengubah batasan yang dipilih untuk pengguna yang dipilih?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "Apakah Anda yakin ingin merubah batasan visibilitas untuk pengguna yang dipilih?" -#: cps/admin.py:625 +#: cps/admin.py:628 msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Apakah Anda yakin ingin mengubah perilaku sinkronisasi rak untuk pengguna yang dipilih?" -#: cps/admin.py:627 +#: cps/admin.py:630 msgid "Are you sure you want to change Calibre library location?" msgstr "Apakah Anda yakin ingin mengubah lokasi perpustakaan Calibre?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "Calibre-Web akan mencari Sampul yang diperbarui dan memperbarui Thumbnail Sampul, ini mungkin memakan waktu cukup lama?" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "Apakah Anda yakin ingin menghapus database sinkronisasi Calibre-Web untuk memaksakan sinkronisasi penuh dengan Kobo Reader Anda?" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Tolak" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "Izinkan" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "{} entri sinkronisasi dihapus" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "Tag tidak ditemukan" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "Tindakan Tidak Valid" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json Tidak Diatur Untuk Aplikasi Web" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "Lokasi Logfile tidak Valid, Harap Masukkan Jalur yang Benar" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "Akses Logfile Catatan tidak Valid, Harap Masukkan Jalur yang Benar" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "Harap Masukkan Provider LDAP, Port, DN dan User Obect Identifier" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "Masukkan Akun Layanan LDAP dan Kata Sandi" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "Masukkan Akun Layanan LDAP" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "Filter Objek Grup LDAP Harus Memiliki Satu Pengidentifikasi Format \"%s\"" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "Filter Objek Grup LDAP Memiliki Tanda kurung yang Tak Berpasangan" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "Filter Objek Pengguna LDAP harus Memiliki Satu Pengidentifikasi Format \"%s\"" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "Filter Objek Pengguna LDAP Memiliki Tanda kurung yang Tak Berpasangan" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "Filter Pengguna Anggota LDAP harus Memiliki Satu Pengenal Format \"%s\"" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "Filter Pengguna Anggota LDAP Memiliki Tanda Kurung yang Tak Berpasangan" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "Lokasi LDAP Sertifikat CA, Sertifikat, atau Kunci tidak Valid, Harap Masukkan Jalur yang Benar " -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Tambah Pengguna Baru" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "Edit Pengaturan Server Email" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "Kesalahan basis data: %(error)s" -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "Uji email diantrean untuk dikirim ke %(email), harap periksa Tasks untuk hasilnya" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Terjadi kesalahan saat mengirim email tes: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Harap atur alamat email Anda terlebih dahulu.." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "Setelan server email diperbarui" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "Edit Pengaturan Tugas Terjadwal" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "Waktu mulai tidak valid untuk tugas yang ditentukan" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "Durasi tidak valid untuk tugas yang ditentukan" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "Pengaturan tugas terjadwal diperbarui" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Terjadi kesalahan yang tidak diketahui. Coba lagi nanti." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "Pengaturan DB tidak dapat ditulisi" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Edit pengguna %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "Kata sandi untuk pengaturan ulang pengguna %(user) " -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Harap atur pengaturan email SMTP terlebih dahulu..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Penampil berkas log" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Meminta paket pembaruan" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Mengunduh paket pembaruan" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Mengekstrak paket pembaruan" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Mengganti berkas" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Koneksi basis data ditutup" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Menghentikan server" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Pembaruan selesai, silakan tekan OK dan muat ulang halaman" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Pembaruan gagal:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "Kesalahan HTTP" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Kesalahan koneksi" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Batas waktu saat membuat koneksi" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Kesalahan umum" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "Berkas pembaruan tidak dapat disimpan di direktori temp" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "Berkas tidak dapat diganti selama pembaruan" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "Gagal mengekstrak setidaknya Satu Pengguna LDAP" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Gagal Membuat Sedikitnya Satu Pengguna LDAP" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Kesalahan: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Error: Tidak ada pengguna yang dikembalikan sebagai respons dari server LDAP" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "Setidaknya Satu Pengguna LDAP Tidak Ditemukan di Basis Data" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "{} Pengguna Berhasil Diimpor" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "Lokasi Basis Data tidak Valid, Harap Masukkan Jalur yang Benar" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "Basis Data tidak dapat ditulisi" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "Lokasi keyfile tidak Valid, Harap Masukkan Jalur yang Benar " -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "Lokasi Sertifikat tidak Valid, Harap Masukkan Jalur yang Benar " -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 msgid "Database Settings updated" msgstr "Pengaturan Basis Data diperbarui" -#: cps/admin.py:1876 +#: cps/admin.py:1879 msgid "Database Configuration" msgstr "Pengaturan Basis Data" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Harap masukkan seluruh isian!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "Email bukan dari domain yang valid" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Tambahkan pengguna baru" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Pengguna '%(user)s' telah dibuat" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "Ditemukan akun yang ada untuk alamat email atau nama ini." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Pengguna '%(nick)s' telah dihapus" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "Tidak dapat menghapus Pengguna Tamu" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Tidak ada pengguna admin tersisa, tidak dapat menghapus pengguna" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "Alamat email tidak boleh kosong dan harus berupa email yang valid" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Pengguna '%(nick)s' diperbarui" @@ -531,110 +531,110 @@ msgstr "Kolom Kustom No.%(column)d tidak ada di basis data kaliber" msgid "None" msgstr "Tidak ada" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 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:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "Pengguna tidak berhak mengganti sampul" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "IDは大文字小文字を区別しません。元のIDを上書きします" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Metadata berhasil diperbarui" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "Kesalahan pengeditan buku: {}" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "Berkas %(file)s telah diunggah" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Format sumber atau tujuan untuk konversi tidak ada" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, 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:332 +#: cps/editbooks.py:341 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Terjadi kesalahan saat mengonversi buku ini: %(res)s" -#: cps/editbooks.py:639 +#: cps/editbooks.py:648 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:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "'%(langname)s' bukan bahasa yang valid" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "Berkas yang akan diunggah harus memiliki ekstensi" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, 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:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Gagal Memindahkan Berkas Sampul %(file)s: %(error)s" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "Format Buku Berhasil Dihapus" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "Buku Berhasil Dihapus" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "Anda tidak memiliki izin untuk menghapus buku" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "edit metadata" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s dilewati karena bukan angka yang valid" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "Pengguna tidak memiliki izin untuk mengunggah format berkas tambahan" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Gagal membuat jalur %(path)s (Izin ditolak)." -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Gagal menyimpan berkas %(file)s." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Format berkas %(ext)s ditambahkan ke %(book)s" @@ -903,7 +903,7 @@ msgstr "{}★" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Masuk" @@ -992,7 +992,7 @@ msgstr "Tampilkan pilihan kategori" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Seri" @@ -1022,7 +1022,7 @@ msgid "Show Publisher Section" msgstr "Tampilkan pilihan penerbit" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Bahasa" @@ -1067,10 +1067,10 @@ msgstr "Daftar Buku" msgid "Show Books List" msgstr "Tampilkan Daftar Buku" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Telusuri" @@ -1093,15 +1093,15 @@ msgid "Rating >= %(rating)s" msgstr "Peringkat ≥ %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "Status Baca = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "Terjadi kesalahan saat mencari kolom khusus, harap mulai ulang Calibre-Web" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Penelusuran Lanjutan" @@ -1339,109 +1339,109 @@ msgstr "Daftar peringkat" msgid "File formats list" msgstr "Daftar format berkas" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Harap atur pengaturan email SMTP terlebih dahulu..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Buku telah diantrikan untuk dikirim ke %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Oops! Terjadi kesalahan saat mengirim buku: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Harap perbarui profil Anda dengan alamat e-mail Kirim ke Kindle yang valid." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Daftar" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "Server email belum diatur, silakan hubungi administrator!" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Alamat email Anda tidak diizinkan untuk mendaftar" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "E-mail konfirmasi telah dikirimkan ke alamat email Anda." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "Tidak dapat mengaktifkan autentikasi LDAP." -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "Anda sekarang login sebagai: %(nickname)s" -#: cps/web.py:1376 +#: cps/web.py:1383 #, fuzzy, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "Login Pengganti sebagai: '%(nickname)s', Server LDAP tidak dapat dijangkau, atau pengguna tidak diketahui." -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "Tidak dapat login: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Pengguna atau Kata Sandi salah" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "Kata Sandi baru telah dikirimkan ke alamat email Anda" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Terjadi kesalahan yang tidak diketahui. Coba lagi nanti." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Harap masukkan pengguna valid untuk mengatur ulang kata sandi" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Anda sekarang login sebagai: %(nickname)s" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "Profil %(name)s" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Profil diperbarui" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "Ditemukan akun yang ada untuk alamat email ini" @@ -1873,7 +1873,7 @@ msgid "Author" msgstr "Penulis" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Deskripsi" @@ -1898,7 +1898,7 @@ msgstr "Hapus" msgid "Add Identifier" msgstr "Tambah Pengidentifikasi" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Tag" @@ -1933,13 +1933,13 @@ msgstr "Penerbit" msgid "Language" msgstr "Bahasa" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Ya" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Tidak" @@ -2807,7 +2807,7 @@ msgid "Books ordered by file formats" msgstr "Buku yang diurutkan menurut format berkas" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Rak" @@ -3213,43 +3213,51 @@ msgstr "Tanggal Diterbitkan Dari" msgid "Published Date To" msgstr "Tanggal Diterbitkan Hingga" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Kecualikan Tag" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Kecualikan Seri" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "Kecualikan Rak" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Kecualikan Bahasa" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Ekstensi" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Kecualikan Ekstensi" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Peringkat Diatas" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Peringkat Dibawah" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "Dari:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "Hingga:" diff --git a/cps/translations/it/LC_MESSAGES/messages.mo b/cps/translations/it/LC_MESSAGES/messages.mo index 737b62c9..ec2d16d5 100644 Binary files a/cps/translations/it/LC_MESSAGES/messages.mo and b/cps/translations/it/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/it/LC_MESSAGES/messages.po b/cps/translations/it/LC_MESSAGES/messages.po index 2c326c65..40f5ad5a 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2023-10-21 15:27+0200\n" "Last-Translator: Massimo Pissarello \n" "Language: it\n" @@ -16,493 +16,493 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Statistiche" -#: cps/admin.py:146 +#: cps/admin.py:149 msgid "Server restarted, please reload page." msgstr "Server riavviato, per favore ricarica la pagina" -#: cps/admin.py:148 +#: cps/admin.py:151 msgid "Performing Server shutdown, please close window." msgstr "Eseguo l'arresto del server, per favore chiudi la finestra" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "Tutto OK! Database riconnesso" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Comando sconosciuto" -#: cps/admin.py:170 +#: cps/admin.py:173 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:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Sconosciuto" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Pagina di amministrazione" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Configurazione di base" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Configurazione dell'interfaccia utente" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "Modifica gli utenti" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Tutti" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Utente non trovato" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{} utenti eliminati con successo" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Mostra tutto" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "Richiesta non formulata correttamente" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "Il nome dell'utente Guest (ospite) non può essere modificato" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "L'utente Guest (ospite) non può avere questo ruolo" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "Non rimarrebbe nessun utente amministratore, non posso rimuovere il ruolo di amministratore" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "Il valore deve essere o vero o falso" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "Ruolo non valido" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "L'utente Guest (ospite) non può visualizzare questa schermata" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "Visualizzazione non valida" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "Le impostazioni locali dell'utente Guest (ospite) sono determinate automaticamente e non possono essere configurate" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "Nessuna lingua valida indicata" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "Nessuna lingua valida per il libro" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "Parametro non trovato" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "Colonna di lettura non valida" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "Colonna con restrizioni non valida" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "La configurazione di Calibre-Web è stata aggiornata" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Vuoi veramente eliminare il token di Kobo?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "Vuoi veramente eliminare questo dominio?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "Vuoi veramente eliminare questo utente?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Vuoi veramente eliminare questo scaffale?" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Sei sicuro di voler modificare le impostazioni locali del/degli utente/i selezionato/i?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "Sei sicuro di voler modificare le impostazioni delle lingue visualizzabili dall'/dagli utente/i selezionato/i?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "Sei sicuro di voler modificare il ruolo evidenziato del/degli utente/i selezionato/i?" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Sei sicuro di voler modificare le restrizioni selezionate del/degli utente/i selezionato/i?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "Sei sicuro di voler modificare le restrizioni di visibilità selezionate per l'utente(i) selezionato(i)?" -#: cps/admin.py:625 +#: cps/admin.py:628 msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Sei sicuro di voler modificare il comportamento di sincronizzazione dello scaffale per l'/gli utente/i selezionato/i?" -#: cps/admin.py:627 +#: cps/admin.py:630 msgid "Are you sure you want to change Calibre library location?" msgstr "Sei sicuro di voler modificare la posizione della libreria di Calibre?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "Calibre-Web cercherà le copertine aggiornate e aggiornerà le miniature delle copertine, questo richiederà un po' di tempo." -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "Sei sicuro di voler eliminare il database sincronizzato di Calibre-Web e forzare una sincronizzazione completa con il tuo lettore Kobo?" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Nega" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "Permetti" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "{} voci di sincronizzazione eliminate" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "Etichetta non trovata" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "Azione non valida" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json non è configurato per Web Application" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "La posizione del file di log non è valida, per favore indica il percorso corretto" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "La posizione del file di log di accesso non è valida, per favore indica il percorso corretto" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "Per favore digita un Provider LDAP, porta, DN e User Object Identifier" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "Per favore digita nome di utente e password del servizio LDAP" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "Per favore indica un account di servizio LDAP" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "LDAP Group Object Filter deve avere un \"%s\" Format Identifier" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "LDAP Group Object Filter contiene una parentesi senza la corrispondenza" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP User Object Filter deve avere un \"%s\" Format Identifier" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "LDAP User Object Filter contiene una parentesi senza la corrispondenza" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP Member User Filter deve avere un \"%s\" Format Identifier" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "LDAP Member User Filter contiene una parentesi senza la corrispondenza" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "LDAP CACertificate, il certificato o la posizione della chiave non sono corretti, per favore indica il percorso corretto" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Aggiungi un nuovo utente" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "Modifica le impostazioni del server e-mail" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "Tutto OK! Account Gmail verificato." -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "Errore nel database: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "L'e-mail di test è stato accodata con successo per essere spedita a %(email)s, per favore controlla le attività per il risultato" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Si è verificato un errore nell'invio dell'e-mail di test: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Per favore prima configura il tuo indirizzo e-mail..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "Le impostazioni del server e-mail sono state aggiornate" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "Modifica le impostazioni delle attività pianificate" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "Ora di inizio non valida per l'attività specificata" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "Durata non valida per l'attività specificata" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "Impostazioni delle attività pianificate aggiornate" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Si è verificato un errore sconosciuto: per favore riprova." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "Il DB delle impostazioni non è scrivibile" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Modifica l'utente %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, python-format msgid "Success! Password for user %(user)s reset" msgstr "Tutto OK! Reimpostazione della password per l'utente %(user)s" -#: cps/admin.py:1439 +#: cps/admin.py:1442 msgid "Oops! Please configure the SMTP mail settings." msgstr "Configura prima le impostazioni del server SMTP." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Visualizzatore del file di log" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Richiesta del pacchetto di aggiornamento" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Download del pacchetto di aggiornamento" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Decompressione del pacchetto di aggiornamento" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Sostituzione dei file" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Le connessioni al database sono chiuse" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Arresto del server" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Aggiornamento completato, per favore premi ok e ricarica la pagina" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Aggiornamento non riuscito:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "Errore HTTP" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Errore di connessione" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Tempo scaduto nello stabilire la connessione" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Errore generale" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "Il file di aggiornamento non può essere salvato nella cartella temporanea" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "Durante l'aggiornamento non è stato possibile sostituire alcuni file" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "Impossibile estrarre almeno un utente LDAP" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Impossibile creare almeno un utente LDAP" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Errore: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Errore: nessun utente restituito in risposta dal server LDAP" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "Non è stato trovato nessun utente LDAP nel database" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "{} utente importato con successo" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "La posizione del DB non è valida, per favore indica il percorso corretto" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "Il DB non è scrivibile" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "La posizione del Keyfile non è valida, per favore indica il percorso corretto" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "La posizione del Certfile non è valida, per favore indica il percorso corretto" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "La lunghezza della password deve essere compresa tra 1 e 40" -#: cps/admin.py:1868 +#: cps/admin.py:1871 msgid "Database Settings updated" msgstr "Impostazioni database aggiornate" -#: cps/admin.py:1876 +#: cps/admin.py:1879 msgid "Database Configuration" msgstr "Configurazione del database" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Per favore compila tutti i campi!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "L'e-mail non proviene da un dominio valido" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Aggiungi un nuovo utente" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "L'utente '%(user)s' è stato creato" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "Trovato un account esistente con questa e-mail o nome utente" -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "L'utente '%(nick)s' è stato eliminato" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "Non posso eliminare l'utente Guest (ospite)" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Non rimarrebbe nessun utente amministratore, non posso eliminare l'utente" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "L'indirizzo e-mail non può essere vuoto e deve essere un recapito valido" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "L'utente '%(nick)s' è stato aggiornato" @@ -527,110 +527,110 @@ msgstr "La colonna personalizzata no.%(column)d non esiste nel database di Calib msgid "None" msgstr "Nessuna" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 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:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "L'utente non ha i permessi per caricare le copertine" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 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:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "I metadati sono stati aggiornati con successo" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "Errore durante la modifica del libro: {}" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "Il file %(file)s è stato caricato" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 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:328 +#: cps/editbooks.py:337 #, 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:332 +#: cps/editbooks.py:341 #, 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:639 +#: cps/editbooks.py:648 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:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s non è una lingua valida" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "Il file da caricare deve avere un'estensione" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, 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:764 +#: cps/editbooks.py:773 #, 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:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "Il formato del libro è stato eliminato con successo" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "Il libro è stato eliminato con successo" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "Mancano le autorizzazioni per eliminare i libri" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "modifica i metadati" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s non è un numero valido, lo salto" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 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:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Impossibile creare il percorso %(path)s (autorizzazione negata)." -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Il salvataggio del file %(file)s non è riuscito." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Ho aggiunto il formato %(ext)s al libro %(book)s" @@ -893,7 +893,7 @@ msgstr "{} Stelle" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Accesso" @@ -980,7 +980,7 @@ msgstr "Mostra la sezione delle categorie" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Serie" @@ -1007,7 +1007,7 @@ msgid "Show Publisher Section" msgstr "Mostra la sezione degli editori" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Lingue" @@ -1048,10 +1048,10 @@ msgstr "Elenco libri" msgid "Show Books List" msgstr "Mostra l'elenco dei libri" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Cerca" @@ -1074,15 +1074,15 @@ msgid "Rating >= %(rating)s" msgstr "Valutazione >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "Stato di lettura = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "Errore di ricerca nelle colonne personalizzate. Per favore riavvia Calibre-Web" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Ricerca avanzata" @@ -1320,101 +1320,101 @@ msgstr "Elenco delle valutazioni" msgid "File formats list" msgstr "Elenco dei formati" -#: cps/web.py:1226 +#: cps/web.py:1233 msgid "Please configure the SMTP mail settings first..." msgstr "Prima configura le impostazioni del server SMTP..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Tutto OK! Libro in coda per l'invio a %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Si è verificato un errore durante l'invio del libro: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Per favore aggiorna il tuo profilo con un'e-mail eReader valida." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "Attendi un minuto per registrare l'utente successivo" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Registrati" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "Il server e-mail non è configurato, per favore contatta l'amministratore" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "La tua e-mail non è consentita." -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "Tutto OK! L'e-mail di conferma è stata inviata." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 msgid "Cannot activate LDAP authentication" msgstr "Impossibile attivare l'autenticazione LDAP" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "Attendi un minuto prima dell'accesso successivo" -#: cps/web.py:1369 +#: cps/web.py:1376 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "ora sei connesso come: '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "Accesso di riserva come: '%(nickname)s', il server LDAP non è raggiungibile o l'utente è sconosciuto" -#: cps/web.py:1381 +#: cps/web.py:1388 #, python-format msgid "Could not login: %(message)s" msgstr "Impossibile accedere: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 msgid "Wrong Username or Password" msgstr "Nome utente o password errati" -#: cps/web.py:1392 +#: cps/web.py:1399 msgid "New Password was send to your email address" msgstr "La nuova password è stata inviata al tuo indirizzo email" -#: cps/web.py:1396 +#: cps/web.py:1403 msgid "An unknown error occurred. Please try again later." msgstr "Si è verificato un errore sconosciuto. Per favore riprova più tardi." -#: cps/web.py:1398 +#: cps/web.py:1405 msgid "Please enter valid username to reset password" msgstr "Inserisci un nome utente valido per reimpostare la password" -#: cps/web.py:1406 +#: cps/web.py:1413 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Ora sei connesso come: '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "Profilo di %(name)s" -#: cps/web.py:1480 +#: cps/web.py:1487 msgid "Success! Profile Updated" msgstr "Tutto OK! Profilo aggiornato" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "Esiste già un account per questa e-mail." @@ -1844,7 +1844,7 @@ msgid "Author" msgstr "Autore" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Descrizione" @@ -1869,7 +1869,7 @@ msgstr "Rimuovi" msgid "Add Identifier" msgstr "Aggiungi un identificatore" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Etichetta" @@ -1904,13 +1904,13 @@ msgstr "Editore" msgid "Language" msgstr "Lingua" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Sì" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "No" @@ -2773,7 +2773,7 @@ msgid "Books ordered by file formats" msgstr "Libri ordinati per formato" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Scaffali" @@ -3178,43 +3178,51 @@ msgstr "Data di pubblicazione dal" msgid "Published Date To" msgstr "Data di pubblicazione fino al" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Escludi etichette" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Escludi serie" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "Escludi scaffali" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Escludi lingue" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Estensioni" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Escludi estensioni" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Valutazione superiore a" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Valutazione inferiore a" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "Da:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "A:" diff --git a/cps/translations/ja/LC_MESSAGES/messages.mo b/cps/translations/ja/LC_MESSAGES/messages.mo index 7bb1c523..d9a36d6a 100644 Binary files a/cps/translations/ja/LC_MESSAGES/messages.mo and b/cps/translations/ja/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/ja/LC_MESSAGES/messages.po b/cps/translations/ja/LC_MESSAGES/messages.po index d0a52739..51634bdc 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2018-02-07 02:20-0500\n" "Last-Translator: subdiox \n" "Language: ja\n" @@ -16,497 +16,497 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "統計" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "サーバーを再起動しました。ページを再読み込みしてください" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "サーバーをシャットダウンしています。ページを閉じてください" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "不明なコマンド" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "%(email)s へのテストメール送信がキューに追加されました。結果を見るにはタスクを確認してください" -#: cps/admin.py:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "不明" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "管理者ページ" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "基本設定" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "UI設定" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "ユーザーを編集" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "全て" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "ユーザーが見つかりません" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{}人のユーザーが削除されました" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "全て表示" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "不正なリクエスト" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "ゲストユーザーの名前は変更できません" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "ゲストユーザーはこのロールを持つことができません" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "管理者ユーザーが残っておらず、管理者ロールを削除できません" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "値はtrueかfalseのどちらかでなければなりません" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "無効なロール" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "ゲストユーザーはこの画面を表示できません" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "無効な表示" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "ゲストユーザーの言語設定は自動的に決定されるため、固定することはできません" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "有効な言語設定がありません" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "有効な本の言語がありません" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "パラメータが見つかりません" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "無効な読み取り列" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "無効な制限列" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Calibre-Webの設定を更新しました" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Koboのトークンを削除してもよろしいですか?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "このドメインを削除してもよろしいですか?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "このユーザーを削除してもよろしいですか?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "この本棚を削除してもよろしいですか?" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "選択したユーザーの言語設定を変更してもよろしいですか?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "選択したユーザーが表示できる本の言語を変更してもよろしいですか?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "選択したユーザーの選択したロールを変更してもよろしいですか?" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "選択したユーザーの選択した制限を変更してもよろしいですか?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "選択したユーザーの選択した表示制限を変更してもよろしいですか?" -#: cps/admin.py:625 +#: cps/admin.py:628 msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "選択したユーザーの本棚同期の動作を変更してもよろしいですか?" -#: cps/admin.py:627 +#: cps/admin.py:630 msgid "Are you sure you want to change Calibre library location?" msgstr "Calibreライブラリのパスを変更してもよろしいですか?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "Calibre-Webは新しい表紙を検索してそのサムネイルを更新しますが、これにはしばらく時間がかかるかもしれません" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "Calibre-Webの同期DBを削除して強制的にKoboリーダーと同期してもよろしいですか?" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "拒否" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "許可" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "{}件の同期項目を削除しました" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "タグが見つかりません" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "無効なアクションです" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.jsonがWebアプリケーション用に設定されていません" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "ログファイルの場所が無効です。正しいパスを入力してください" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "アクセスログファイルの場所が無効です。正しいパスを入力してください" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "LDAPのプロバイダ、ポート番号、DN、ユーザーIDを入力してください" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "LDAPのサービスアカウント名とパスワードを入力してください" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "LDAPのサービスアカウント名を入力してください" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "LDAPのグループフィルタには \"%s\" というフォーマットのIDが一つ必要です" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "LDAPのグループフィルタ内の括弧が一致しません" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAPのユーザーフィルタには \"%s\" というフォーマットのIDが一つ必要です" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "LDAPのユーザーフィルタ内の括弧が一致しません" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAPのメンバーフィルタには \"%s\" というフォーマットのIDが一つ必要です" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "LDAPのメンバーフィルタ内の括弧が一致しません" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "LDAPのCA証明書、証明書、キーの場所が無効です。正しいパスを入力してください" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "新規ユーザーを追加" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "メールサーバー設定を編集" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "DBエラー: %(error)s" -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "%(email)s へのテストメール送信がキューに追加されました。結果を見るにはタスクを確認してください" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "%(res)s へのテストメール送信中にエラーが発生しました" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "初めにメールアドレスを設定してください" -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "メールサーバーの設定を更新しました" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "スケジュールタスク設定を編集" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "指定したタスクの開始時刻が無効です" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "指定したタスクの期間が無効です" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "スケジュールタスクの設定を更新しました" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "不明なエラーが発生しました。あとで再試行してください。" -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "設定DBが書き込みできません" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "ユーザー %(nick)s を編集" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "ユーザー %(user)s のパスワードをリセット" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "初めにSMTPメールの設定をしてください" -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "ログファイルビューア" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "更新データを要求中" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "更新データをダウンロード中" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "更新データを展開中" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "ファイルを置換中" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "DB接続を切断" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "サーバー停止中" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "アップデート完了、OKを押してページを再読み込みしてください" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "アップデート失敗:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "HTTPエラー" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "接続エラー" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "接続確立中にタイムアウトしました" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "エラー発生" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "更新データを一時フォルダに保存できませんでした" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "更新中にファイルを置換できませんでした" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "少なくとも1人のLDAPユーザーの抽出に失敗しました" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "少なくとも1人のLDAPユーザーの作成に失敗しました" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "エラー: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "エラー: LDAPサーバーのレスポンスでユーザーが返されません" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "DB内にLDAPユーザーが1人も見つかりません" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "{}人のユーザーをインポートしました" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "DBの場所が無効です。正しいパスを入力してください" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "DBへの書き込みができません" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "キーファイルの場所が無効です。正しいパスを入力してください" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "証明書ファイルの場所が無効です。正しいパスを入力してください" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 msgid "Database Settings updated" msgstr "DB設定を更新しました" -#: cps/admin.py:1876 +#: cps/admin.py:1879 msgid "Database Configuration" msgstr "DB設定" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "全ての項目を入力してください" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "このメールは有効なドメインからのものではありません" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "新規ユーザー追加" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "ユーザー '%(user)s' を作成しました" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "このメールアドレスかニックネームで登録されたアカウントがすでに存在します。" -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "ユーザー '%(nick)s' を削除しました" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "ゲストユーザーは削除できません" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "管理者ユーザーが残っておらず、ユーザーを削除できません" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "ユーザー '%(nick)s' を更新しました" @@ -531,110 +531,110 @@ msgstr "カスタムカラムの%(column)d列目がcalibreのDBに存在しま msgid "None" msgstr "なし" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "選択した本は利用できません。ファイルが存在しないか、アクセスできません" -#: cps/editbooks.py:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "ユーザーは表紙をアップロードする権限がありません" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "IDは大文字小文字を区別しません。元のIDを上書きします" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "メタデータを更新しました" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "本編集中のエラー: {}" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "ファイル %(file)s をアップロードしました" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "変換元の形式または変換後の形式が指定されていません" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "本の %(book_format)s への変換がキューに追加されました" -#: cps/editbooks.py:332 +#: cps/editbooks.py:341 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "この本の変換中にエラーが発生しました: %(res)s" -#: cps/editbooks.py:639 +#: cps/editbooks.py:648 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "アップロードした本はすでにライブラリに存在します。新しくアップロードする前に変更を加えてください: " -#: cps/editbooks.py:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "'%(langname)s' は有効な言語ではありません" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "ファイル拡張子 '%(ext)s' をこのサーバーにアップロードすることは許可されていません" -#: cps/editbooks.py:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "アップロードするファイルには拡張子が必要です" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "ファイル %(filename)s は一時フォルダに保存できませんでした" -#: cps/editbooks.py:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "表紙ファイル %(file)s の移動に失敗しました: %(error)s" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "本の形式を削除しました" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "本を削除しました" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "本を削除する権限がありません" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "メタデータを編集" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s は有効な数字ではありません。スキップします" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "新たなファイル形式をアップロードする権限がありません" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "%(path)s の作成に失敗しました (Permission denied)。" -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "ファイル %(file)s を保存できません。" -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "ファイル形式 %(ext)s が %(book)s に追加されました" @@ -903,7 +903,7 @@ msgstr "星{}" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "ログイン" @@ -992,7 +992,7 @@ msgstr "カテゴリ選択を表示" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "シリーズ" @@ -1022,7 +1022,7 @@ msgid "Show Publisher Section" msgstr "出版社選択を表示" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "言語" @@ -1067,10 +1067,10 @@ msgstr "本の一覧" msgid "Show Books List" msgstr "本の一覧を表示" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "検索" @@ -1093,15 +1093,15 @@ msgid "Rating >= %(rating)s" msgstr "評価 >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "既読/未読状況 = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "カスタムカラムの検索でエラーが発生しました。Calibre-Webを再起動してください" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "詳細検索" @@ -1339,109 +1339,109 @@ msgstr "評価一覧" msgid "File formats list" msgstr "ファイル形式一覧" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "初めにSMTPメールの設定をしてください" -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "本の %(eReadermail)s への送信がキューに追加されました" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "%(res)s を送信中にエラーが発生しました" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "初めにKindleのメールアドレスを設定してください" -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "登録" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "メールサーバーが設定されていません。管理者に連絡してください" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "このメールアドレスは登録が許可されていません" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "確認メールがこのメールアドレスに送信されました。" -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "LDAP認証を有効化できません" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "%(nickname)s としてログイン中" -#: cps/web.py:1376 +#: cps/web.py:1383 #, fuzzy, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "代わりに '%(nickname)s' としてログインします。LDAPサーバーにアクセスできないか、ユーザーが存在しません" -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "ログインできません: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "ユーザー名またはパスワードが違います" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "新しいパスワードがあなたのメールアドレスに送信されました" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "不明なエラーが発生しました。あとで再試行してください。" -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "パスワードをリセットするには、有効なユーザー名を入力してください" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "%(nickname)s としてログイン中" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "%(name)s のプロフィール" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "プロフィールを更新しました" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "このメールアドレスで登録されたアカウントがすでに存在します" @@ -1873,7 +1873,7 @@ msgid "Author" msgstr "著者" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "詳細" @@ -1898,7 +1898,7 @@ msgstr "削除" msgid "Add Identifier" msgstr "識別子を追加" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "タグ" @@ -1933,13 +1933,13 @@ msgstr "出版社" msgid "Language" msgstr "言語" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "既読" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "未読" @@ -2807,7 +2807,7 @@ msgid "Books ordered by file formats" msgstr "ファイル形式順" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "本棚" @@ -3213,43 +3213,51 @@ msgstr "発売日(〜から)" msgid "Published Date To" msgstr "発売日(〜まで)" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "除外するタグ" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "除外するシリーズ" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "除外する本棚" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "除外する言語" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "拡張子" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "除外する拡張子" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "評価(〜以上)" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "評価(〜以下)" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "〜から:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "〜まで:" diff --git a/cps/translations/km/LC_MESSAGES/messages.mo b/cps/translations/km/LC_MESSAGES/messages.mo index 5fe412c6..31c1b417 100644 Binary files a/cps/translations/km/LC_MESSAGES/messages.mo and b/cps/translations/km/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/km/LC_MESSAGES/messages.po b/cps/translations/km/LC_MESSAGES/messages.po index 1ba55d43..6eac2f85 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2018-08-27 17:06+0700\n" "Last-Translator: \n" "Language: km_KH\n" @@ -17,504 +17,504 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "ស្ថិតិ" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "ម៉ាស៊ីន server បានដំណើរការម្តងទៀត សូមបើកទំព័រជាថ្មី" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "កំពុងបិទម៉ាស៊ីន server សូមបិទផ្ទាំងនេះ" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "សៀវភៅបានចូលជួរសម្រាប់ផ្ញើទៅ %(eReadermail)s ដោយជោគជ័យ" -#: cps/admin.py:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "មិនដឹង" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "ទំព័ររដ្ឋបាល" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "ការកំណត់សាមញ្ញ" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "ការកំណត់ផ្ទាំងប្រើប្រាស់" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 #, fuzzy msgid "Edit Users" msgstr "អ្នកប្រើប្រាស់រដ្ឋបាល" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "បង្ហាញទាំងអស់" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "តើអ្នកពិតជាចង់លុបធ្នើនេះមែនទេ?" -#: cps/admin.py:614 +#: cps/admin.py:617 #, fuzzy msgid "Are you sure you want to change locales of selected user(s)?" msgstr "តើអ្នកពិតជាចង់លុបធ្នើនេះមែនទេ?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "" -#: cps/admin.py:620 +#: cps/admin.py:623 #, fuzzy msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "តើអ្នកពិតជាចង់លុបធ្នើនេះមែនទេ?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "" -#: cps/admin.py:625 +#: cps/admin.py:628 #, fuzzy msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "តើអ្នកពិតជាចង់លុបធ្នើនេះមែនទេ?" -#: cps/admin.py:627 +#: cps/admin.py:630 #, fuzzy msgid "Are you sure you want to change Calibre library location?" msgstr "តើអ្នកពិតជាចង់លុបធ្នើនេះមែនទេ?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "ប្តូរការកំណត់ SMTP" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "" -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "" -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "" -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "កែប្រែអ្នកប្រើប្រាស់ %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, python-format msgid "Success! Password for user %(user)s reset" msgstr "" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "សូមកំណត់អ៊ីមែល SMTP ជាមុនសិន" -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "កំពុងស្នើសុំឯកសារបច្ចុប្បន្នភាព" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "កំពុងទាញយកឯកសារបច្ចុប្បន្នភាព" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "កំពុងពន្លាឯកសារបច្ចុប្បន្នភាព" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "ទំនាក់ទំនងទៅមូលដ្ឋានទិន្នន័យត្រូវបានផ្តាច់" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "ការធ្វើបច្ចុប្បន្នភាពបានបញ្ចប់ សូមចុច okay រួចបើកទំព័រជាថ្មី" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 #, fuzzy msgid "Database Settings updated" msgstr "ទំនាក់ទំនងទៅមូលដ្ឋានទិន្នន័យត្រូវបានផ្តាច់" -#: cps/admin.py:1876 +#: cps/admin.py:1879 #, fuzzy msgid "Database Configuration" msgstr "ការកំណត់មុខងារ" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "សូមបំពេញចន្លោះទាំងអស់!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "បន្ថែមអ្នកប្រើប្រាស់ថ្មី" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "បានបង្កើតអ្នកប្រើប្រាស់ ‘%(user)s’" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "" -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "អ្នកប្រើប្រាស់ ‘%(nick)s’ ត្រូវបានលុប" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "អ្នកប្រើប្រាស់ ‘%(nick)s’ ត្រូវបានកែប្រែ" @@ -539,110 +539,110 @@ msgstr "" msgid "None" msgstr "គ្មាន" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "" -#: cps/editbooks.py:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "" -#: cps/editbooks.py:332 +#: cps/editbooks.py:341 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "" -#: cps/editbooks.py:639 +#: cps/editbooks.py:648 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "ឯកសារប្រភេទ '%(ext)s' មិនត្រូវបានអនុញ្ញាតឲអាប់ឡូដទៅម៉ាស៊ីន server នេះទេ" -#: cps/editbooks.py:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "ឯកសារដែលត្រូវអាប់ឡូដត្រូវមានកន្ទុយឯកសារ" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "កែប្រែទិន្នន័យមេតា" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "មិនអាចបង្កើតទីតាំង %(path)s (ពុំមានសិទ្ធិ)។" -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "មិនអាចរក្សាទុកឯកសារ %(file)s ។" -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "ឯកសារទម្រង់ %(ext)s ត្រូវបានបន្ថែមទៅ %(book)s" @@ -907,7 +907,7 @@ msgstr "" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "ចូលប្រើប្រាស់" @@ -996,7 +996,7 @@ msgstr "បង្ហាញជម្រើសប្រភេទ" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "ស៊េរី" @@ -1026,7 +1026,7 @@ msgid "Show Publisher Section" msgstr "បង្ហាញជម្រើសស៊េរី" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "ភាសានានា" @@ -1071,10 +1071,10 @@ msgstr "" msgid "Show Books List" msgstr "" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "ស្វែងរក" @@ -1098,14 +1098,14 @@ msgstr "ការវាយតម្លៃ >= %(rating)s" #: cps/search.py:221 #, python-format -msgid "Read Status = %(status)s" +msgid "Read Status = '%(status)s'" msgstr "" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "ស្វែងរកកម្រិតខ្ពស់" @@ -1345,105 +1345,105 @@ msgstr "" msgid "File formats list" msgstr "" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "សូមកំណត់អ៊ីមែល SMTP ជាមុនសិន" -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "សៀវភៅបានចូលជួរសម្រាប់ផ្ញើទៅ %(eReadermail)s ដោយជោគជ័យ" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "មានបញ្ហានៅពេលផ្ញើសៀវភៅនេះ៖ %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 msgid "Oops! Please update your profile with a valid eReader Email." msgstr "" -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "ចុះឈ្មោះ" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "" -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 msgid "Cannot activate LDAP authentication" msgstr "" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "ឥឡូវអ្នកបានចូលដោយមានឈ្មោះថា៖ ‘%(nickname)s’" -#: cps/web.py:1376 +#: cps/web.py:1383 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1381 +#: cps/web.py:1388 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "ខុសឈ្មោះអ្នកប្រើប្រាស់ ឬលេខសម្ងាត់" -#: cps/web.py:1392 +#: cps/web.py:1399 msgid "New Password was send to your email address" msgstr "" -#: cps/web.py:1396 +#: cps/web.py:1403 msgid "An unknown error occurred. Please try again later." msgstr "" -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "ខុសឈ្មោះអ្នកប្រើប្រាស់ ឬលេខសម្ងាត់" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "ឥឡូវអ្នកបានចូលដោយមានឈ្មោះថា៖ ‘%(nickname)s’" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "ព័ត៌មានសង្ខេបរបស់ %(name)s" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "ព័ត៌មានសង្ខេបបានកែប្រែ" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "" @@ -1876,7 +1876,7 @@ msgid "Author" msgstr "អ្នកនិពន្ធ" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "ពិពណ៌នា" @@ -1901,7 +1901,7 @@ msgstr "" msgid "Add Identifier" msgstr "" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Tag" @@ -1936,13 +1936,13 @@ msgstr "អ្នកបោះពុម្ភ" msgid "Language" msgstr "ភាសា" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "បាទ/ចាស" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "ទេ" @@ -2810,7 +2810,7 @@ msgid "Books ordered by file formats" msgstr "" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "" @@ -3219,44 +3219,52 @@ msgstr "ថ្ងៃបោះពុម្ភចាប់ពី" msgid "Published Date To" msgstr "ថ្ងៃបោះពុម្ភរហូតដល់" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "លើកលែង tag" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "លើកលែងស៊េរី" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 #, fuzzy msgid "Exclude Shelves" msgstr "លើកលែងស៊េរី" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "លើកលែងភាសា" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "ការវាយតម្លៃលើសពី" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "ការវាយតម្លៃតិចជាង" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "" diff --git a/cps/translations/ko/LC_MESSAGES/messages.mo b/cps/translations/ko/LC_MESSAGES/messages.mo index 63cb22b5..fc4abeb7 100644 Binary files a/cps/translations/ko/LC_MESSAGES/messages.mo and b/cps/translations/ko/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/ko/LC_MESSAGES/messages.po b/cps/translations/ko/LC_MESSAGES/messages.po index 258509e4..ac395626 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2022-01-10 11:30+0900\n" "Last-Translator: 내맘대로의 EPUBGUIDE.NET \n" "Language: ko\n" @@ -15,497 +15,497 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "통계" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "서버 다시 시작으로 새로고침 필요" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "서버를 종료하는 중, 창을 닫아야 함" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "성공적으로 DB를 다시 연결하였습니다." -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "알 수 없는 명령" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "%(email)s에 테스트를 위한 이메일을 보냄. 결과 확인 필요" -#: cps/admin.py:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "알 수 없음" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "관리자 페이지" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "기본 설정" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "UI 설정" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "사용자 관리" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "모두" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "사용자를 찾을 수 없음" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{} 사용자를 성공적으로 삭제함" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "모두 보기" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "잘못된 요청" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "Guest 이름은 수정할 수 없음" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "Guest는 이 권한을 사용할 수 없음" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "관리자 계정이 하나 뿐일 때는 관리자를 삭제할 수 없음" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "값으로 rue 또는 false만 설정 가능" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "잘못된 권한" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "Guest는 이 view를 사용할 수 없음" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "잘못된 view" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "Guest의 로케일은 자동으로 결정되며 설정할 수 없음" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "유효한 로케일이 아님" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "제공된 책의 언어가 유효하지 않음" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "매개변수를 찾을 수 없음" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "잘못된 읽기 열" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "잘못된 제한된 열" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Calibre-Web 설정이 업데이트 됨" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Kobo Token을 삭제하시겠습니까?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "이 도메인을 삭제하시겠습니까?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "이 사용자를 삭제하시겠습니까?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "이 서재를 삭제하시겠습니까?" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "선택한 사용자의 언어를 변경하시겠습니까?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "선택한 사용자에 대해 표시되는 책 언어를 변경하시겠습니까?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "선택한 사용자에 대해 선택한 권한을 변경하시겠습니까?" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "선택한 사용자에 대해 선택한 제한을 변경하시겠습니까?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "선택한 사용자에 대해 선택한 가시성 제한을 변경하시겠습니까?" -#: cps/admin.py:625 +#: cps/admin.py:628 msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "선택한 사용자의 실행기 동기화 동작을 변경하시겠습니까?" -#: cps/admin.py:627 +#: cps/admin.py:630 msgid "Are you sure you want to change Calibre library location?" msgstr "캘리버 서재의 언어를 변경하시겠습니까?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "Calibre-Web은 업데이트된 표지를 검색하고 표지 섬네일 업데이트합니다. 시간이 오래 걸릴 수 있습니다." -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "Kobo Reader와 전체 동기화를 강제 실행하기 위해 Calibre-Web의 동기화 데이터베이스를 삭제하시겠습니까?" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "거부됨" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "허용됨" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "{} 동기화 항목이 삭제됨" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "태그를 찾을 수 없음" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "잘못된 액션" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json이 Web 응용프로그램에 대해 설정되지 않음" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "로그 파일 위치가 오류. 올바른 경로 입력 필요" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "액세스 로그 파일 위치가 올바르지 않음. 올바른 경로 입력 필요" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "LDAP 공급자, 포트, DN 및 사용자 개체 식별자를 입력" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "LDAP 서비스 계정 및 비밀번호를 입력하십시오" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "LDAP 서비스 계정을 입력하십시오" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "LDAP 그룹 개체 필터에는 하나의 \"%s\" 형식 식별자가 필요함" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "LDAP 그룹 개체 필터에 일치하지 않는 괄호가 있음" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP 사용자 개체 필터에는 하나의 \"%s\" 형식 식별자 필요" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "LDAP 사용자 개체 필터에 일치하지 않는 괄호가 있음" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP 구성원 사용자 필터에는 하나의 \"%s\" 형식 식별자 필요" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "LDAP 구성원 사용자 필터에 일치하지 않는 괄호가 있음" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "유요하지 않은 LDAP CACertificate, 인증서 또는 키 위치. 올바른 경로를 입력 필요" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "사용자 추가" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "이메일 서버 설정 편집" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "Gmail 계정 인증에 성공하였습니다." -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "데이터베이스 오류: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "%(email)s에 테스트를 위한 이메일을 보냄. 결과 확인 필요" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "테스트 이메일을 보내는 동안 오류가 발생했습니다: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "먼저 이메일 주소를 구성하십시오..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "이메일 서버 설정 업데이트됨" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "예약 작업 설정 편집" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "지정된 작업의 시작 시간이 잘못 설정되었습니다." -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "지정된 작업의 기간이 잘못 설정되었습니다." -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "예약된 작업 설정을 업데이트 하였습니다." -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "알 수없는 오류가 발생했습니다. 나중에 다시 시도 해주십시오." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "저장할 수 없는 설정 DB입니다." -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "사용자 %(nick)s 편집" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "사용자 %(user)s의 비밀번호 재설정" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "먼저 SMTP 메일 설정을 구성하십시오..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "로그 파일 뷰어" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "업데이트 패키지 요청" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "업데이트 패키지 다운로드" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "업데이트 패키지 압축 풀기" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "파일 교체" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "데이터베이스 연결이 닫힙니다" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "서버 중지" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "업데이트가 완료되었습니다. 확인을 누르고 페이지를 새로고침하세요" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "업데이트 실패:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "HTTP 오류" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "연결 오류" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "연결 설정 중 시간 초과" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "일반 오류" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "임시 디렉토리에 업데이트 파일을 저장할 수 없습니다" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "업데이트하는 동안 파일을 교체할 수 없습니다" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "하나 이상의 LDAP 사용자를 추출하지 못했습니다" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "하나 이상의 LDAP 사용자를 생성하지 못했습니다" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "오류: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "오류: LDAP 서버의 응답으로 사용자가 반환되지 않았습니다" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "데이터베이스에서 하나 이상의 LDAP 사용자를 찾을 수 없습니다" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "{} 사용자 가져오기 성공" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "올바르지 않은 DB 위치. 올바른 경로 입력 필요" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "쓰기 권한이 없는 DB" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "올바르지 않은 키 파일 위치. 올바른 경로 입력 필요" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "올바르지 않은 인증서 파일 위치. 올바른 경로 입력 필요" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "비밀번호 길이는 1에서 40 사이여야 합니다." -#: cps/admin.py:1868 +#: cps/admin.py:1871 msgid "Database Settings updated" msgstr "데이터베이스 설정이 업데이트 되었습니다" -#: cps/admin.py:1876 +#: cps/admin.py:1879 msgid "Database Configuration" msgstr "데이터베이스 구성" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "모든 필드를 채워주십시오!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "유효한 도메인에서 온 이메일이 아니" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "새 사용자 추가" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "사용자 '%(user)s'이(가) 생성됨" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "동일한 이메일 주소 또는 이름이 이미 등록되어 있습니다." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "사용자 '%(nick)s'이(가) 삭제됨" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "게스트 사용자는 삭제할 수 없습니다" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "관리자 계정이 하나 뿐일 때는 관리자 권한을 삭제할 수 없음" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "이메일은 반드시 입력해야 하며 유효한 이메일이어야 합니다." -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "사용자 '%(nick)s'가 업데이트 됨" @@ -530,110 +530,110 @@ msgstr "사용자 정의 열 번호 %(column)d이(가) calibre 데이터베이 msgid "None" msgstr "None" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "선택한 책 제목을 사용할 수 없습니다. 파일이 존재하지 않거나 액세스할 수 없습니다" -#: cps/editbooks.py:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "표지를 업로드 할 수 있는 권한이 없는 사용자입니다." -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "식별자는 대소문자를 구분하지 않으며 이전 식별자를 덮어씁니다" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "메타데이터가 성공적으로 업데이트되었습니다" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "책 편집 중 오류 발생: {}" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "파일 %(file)s 업로드됨" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "변환을 위한 소스 또는 대상 형식이 누락되었습니다" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "책이 %(book_format)s(으)로 변환하기 위해 대기 중입니다" -#: cps/editbooks.py:332 +#: cps/editbooks.py:341 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "이 책을 변환하는 동안 오류가 발생했습니다: %(res)s" -#: cps/editbooks.py:639 +#: cps/editbooks.py:648 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "업로드한 책이 라이브러리에 있을 수 있음. 새로 업로드하기 전에 확인 필요: " -#: cps/editbooks.py:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "'%(langname)s'은(는) 유효한 언어가 아닙니다" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "파일 확장자 '%(ext)s'은(는) 이 서버에 업로드할 수 없습니다" -#: cps/editbooks.py:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "업로드할 파일에는 확장자가 있어야 합니다" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "파일 %(filename)s을(를) 임시 디렉토리에 저장할 수 없습니다" -#: cps/editbooks.py:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "표지 파일%(file)s를 이동하지 못했습니다.:%(error)s" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "책 형식이 성공적으로 삭제되었습니다" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "책이 성공적으로 삭제되었습니다" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "책을 삭제할 수 있는 권한이 없습니다." -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "메타데이터 편집" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s은(는) 유효한 숫자가 아닙니다. 건너뜁니다" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "추가 파일 유형을 업로드 할 권한이 없는 사용자입니다." -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "%(path)s 경로를 생성하지 못했습니다(권한이 없음)." -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "%(file)s 파일을 저장하지 못했습니다." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "파일 형식 %(ext)s이(가) %(book)s에 추가되었습니다" @@ -904,7 +904,7 @@ msgstr "{} Stars" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "로그인" @@ -993,7 +993,7 @@ msgstr "카테고리별 보기" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "시리즈" @@ -1023,7 +1023,7 @@ msgid "Show Publisher Section" msgstr "출판사별 보기" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "언어" @@ -1068,10 +1068,10 @@ msgstr "책 목록" msgid "Show Books List" msgstr "책 목록 보기" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "검색" @@ -1094,15 +1094,15 @@ msgid "Rating >= %(rating)s" msgstr "평점 >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "읽은 상태 = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "사용자 정의 열을 검색하는 동안 오류가 발생했습니다. Calibre-Web을 다시 시작하십시오" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "상세 검색" @@ -1341,109 +1341,109 @@ msgstr "평점 목록" msgid "File formats list" msgstr "파일 유형 목록" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "먼저 SMTP 메일 설정을 구성하십시오..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "성공적으로 %(eReadermail)s에 보내기 예약이 되었습니다" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "책을 보내는 중에 오류 발생: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Kindle로 보내는 유효한 이메일 주소로 프로필을 업데이트하십시오." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "1분 이상 지난 후 다음 사용자를 등록하세요." #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "등록" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "이메일 서버가 구성되지 않았습니다. 관리자에게 문의하십시오!" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "이메일을 등록할 수 없습니다" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "확인을 위한 이메일이 발송되었습니다." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "LDAP 인증을 활성화할 수 없습니다" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "1분 이상 지난 후 로그인을 하세요." -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "다음 사용자로 로그인했습니다: '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, fuzzy, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "대체 로그인: '%(nickname)s', LDAP 서버에 연결할 수 없음 또는 사용자를 알 수 없음" -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "로그인 실패: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "잘못된 사용자명 또는 비밀번호" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "새 비밀번호가 이메일로 전송되었습니다" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "알 수없는 오류가 발생했습니다. 나중에 다시 시도 해주십시오." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "비밀번호를 재설정하려면 유효한 사용자 이름을 입력하십시오" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "다음 사용자로 로그인했습니다: '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "%(name)s 프로필" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "프로필이 업데이트 됨" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "등록되어 있는 이메일 주소입니다" @@ -1876,7 +1876,7 @@ msgid "Author" msgstr "저자" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "책 소개" @@ -1901,7 +1901,7 @@ msgstr "삭제" msgid "Add Identifier" msgstr "식별자 추가" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "태그" @@ -1936,13 +1936,13 @@ msgstr "출판사" msgid "Language" msgstr "언어" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "예" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "아니오" @@ -2811,7 +2811,7 @@ msgid "Books ordered by file formats" msgstr "파일 종류별 정렬" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "서재" @@ -3218,43 +3218,51 @@ msgstr "출간일(부터)" msgid "Published Date To" msgstr "출간일(까지)" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "태그 제외" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "시리즈 제외" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "서재 제외" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "언어 제외" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "확장자" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "확장자 제외" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "평점(이상)" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "평점(이하)" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "부터:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "까지:" diff --git a/cps/translations/nl/LC_MESSAGES/messages.mo b/cps/translations/nl/LC_MESSAGES/messages.mo index 6d980336..745a4124 100644 Binary files a/cps/translations/nl/LC_MESSAGES/messages.mo and b/cps/translations/nl/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/nl/LC_MESSAGES/messages.po b/cps/translations/nl/LC_MESSAGES/messages.po index 3aa4fb8f..5f9907ee 100644 --- a/cps/translations/nl/LC_MESSAGES/messages.po +++ b/cps/translations/nl/LC_MESSAGES/messages.po @@ -8,516 +8,516 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web (GPLV3)\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2023-11-06 16:47+0100\n" -"PO-Revision-Date: 2020-12-12 08:20+0100\n" -"Last-Translator: Marcel Maas \n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" +"PO-Revision-Date: 2023-12-20 22:00+0100\n" +"Last-Translator: Michiel Cornelissen \n" "Language: nl\n" "Language-Team: ed.driesen@telenet.be\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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Statistieken" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "De server is herstart, vernieuw de pagina" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "Bezig met het afsluiten van de server, sluit het venster" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" -msgstr "" +msgstr "Gelukt! Database opnieuw verbonden" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Onbekende opdracht" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy 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:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Onbekend" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Systeembeheer" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Basisconfiguratie" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Uiterlijk aanpassen" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 #, fuzzy msgid "Edit Users" msgstr "Systeembeheerder" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Alles" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Gebruiker niet gevonden" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{} gebruikers succesvol verwijderd" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Alle talen" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "Misvormd verzoek" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "Gast naam kan niet worden veranderd" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "Gast kan deze rol niet hebben" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "Kan systeembeheerder rol niet verwijderen van de laatste systeembeheerder" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "Waarde moet Waar of Onwaar zijn" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "Ongeldige rol" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "Gast kan dit niet bekijken" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "Ongeldige waarde" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "Gasts locale is automatisch bepaald en kan niet handmatig worden ingesteld" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "Geen geldige locale is opgegeven" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "Geen geldige boek taal is opgegeven" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "Parameter is niet gevonden" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "Ongeldige gelezen kolom" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "Ongeldige beperkte kolom" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Calibre-Web-configuratie bijgewerkt" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Wil je je Kobo Token echt verwijderen?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "Wil je dit domein echt verwijderen?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "Wil je deze gebruiker echt verwijderen?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Weet je zeker dat je deze boekenplank wilt verwijderen?" -#: cps/admin.py:614 +#: cps/admin.py:617 #, fuzzy msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Weet je zeker dat je de locales van de geselecteerde gebruiker(s) wil veranderen?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "Weet je zeker dat je de zichtbare talen voor de geselecteerde gebruiker(s) wil veranderen?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "Weet je zeker dat je de geselecteerde rol van de geselecteerde gebruiker(s) wil veranderen?" -#: cps/admin.py:620 +#: cps/admin.py:623 #, fuzzy msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Weet je zeker dat je de geselecteerde beperkingen voor de geselecteerde gebruikers(s) wil verwijderen?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "Weet je zeker dat je de geselecteerde zichtbaarheidsbeperkingen voor de geselecteerde gebruiker(s) wil veranderen?" -#: cps/admin.py:625 +#: cps/admin.py:628 #, fuzzy msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Weet je zeker dat je de synchronisatiegedrag van boekenplanken voor de geselecteerde gebruiker(s) wil veranderen?" -#: cps/admin.py:627 +#: cps/admin.py:630 #, fuzzy msgid "Are you sure you want to change Calibre library location?" msgstr "Weet je zeker dat je de locatie van de Calibre-bibliotheek wil veranderen?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" -msgstr "" +msgstr "Calibre-web gaat zoeken naar bijgewerkte omslagen en miniaturen bijwerken, dit kan even duren?" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" -msgstr "" +msgstr "Weet u zeker dat u de volledige Calibre-Web synchronisatiedatabase wilt verwijderen om een volledige synchronisatie met uw Kobo Reader te forceren?" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Weigeren" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "Toestaan" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" -msgstr "" +msgstr "{} synchronisatie objecten verwijderd" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "Tag niet gevonden" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "Ongeldige actie" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json is niet geconfigureerd voor webapplicatie" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "De locatie van het logbestand is onjuist, voer een geldige locatie in" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "De locatie vam het toegangslog is onjuist, voer een geldige locatie in" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "Voer alsjeblieft een LDAP Provider, Port, DN en User Object Identifier in" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "Voer een geldig LDAP Service Account en wachtwoord in" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "Voer een LDAP Service Account in" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "LDAP Groep Object Filter Moet Een \"%s\" Formaat Identificiatie hebben" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "LDAP Groep Object Filter heeft een niet-gebalanceerd haakje" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP Gebruiker Object Filter moet \"%s\" Formaat Identificatie hebben" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "LDAP Gebruiker Filter heeft een niet-gebalanceerd haakje" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP Lid Gebruiker Filter moet een \"%s\" Formaat Identificatie hebben" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "LDAP Lid Gebruiker Filter heeft een niet-gebalanceerd haakje" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "LDAP CACertficaat, Certificaat of Sleutel Locatie is ongeldig. Voer alsjeblieft een geldig pad in." -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Gebruiker toevoegen" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "SMTP-instellingen bewerken" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." -msgstr "" +msgstr "Gelukt! Gmail account geverifieerd." -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "Database fout: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "Test E-Mail wordt verzonden naar %(email)s, controleer de taken voor het resultaat" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Fout opgetreden bij het versturen van de test-e-mail: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Gelieve eerst je e-mail adres configureren..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "E-mailserver-instellingen bijgewerkt" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" -msgstr "" +msgstr "Bewerk instellingen van geplande taken" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" -msgstr "" +msgstr "De starttijd van de taak is ongeldig" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" -msgstr "" +msgstr "De duur van de taak is ongeldig" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" -msgstr "" +msgstr "Instellingen van geplande taken bijgewerkt" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Onbekende fout opgetreden. Probeer het later nog eens." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" -msgstr "" +msgstr "Instellingen database is niet schrijfbaar." -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Gebruiker '%(nick)s' bewerken" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "Wachtwoord voor gebruiker %(user)s is hersteld" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Stel eerst SMTP-mail in..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Logbestand lezer" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Update opvragen" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Update downloaden" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Update uitpakken" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Update toepassen" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Databaseverbindingen zijn gesloten" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Bezig met stoppen van Calibre-Web" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Update voltooid, klik op 'Oké' en vernieuw de pagina" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Update mislukt:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "HTTP-fout" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Verbindingsfout" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Time-out tijdens maken van verbinding" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Algemene fout" -#: cps/admin.py:1527 +#: cps/admin.py:1530 #, fuzzy msgid "Update file could not be saved in temp dir" msgstr "Geüpload bestand kon niet opgeslagen worden in de tijdelijke map" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" -msgstr "" +msgstr "Bestanden kunnen niet vervangen worden tijdens een update" -#: cps/admin.py:1552 +#: cps/admin.py:1555 #, fuzzy msgid "Failed to extract at least One LDAP User" msgstr "Mislukt om minstens een LDAP gebruiker aan te maken" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Het is niet gelukt tenminste een LDAP gebruiker aan te maken" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Fout: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Fout: No user returned in response of LDAP server" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "Minstens een LDAP Gebruiker is niet gevonden in de Database" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "{} Gebruiker succesvol geïmporteerd" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "Database niet gevonden, voer de juiste locatie in" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "Kan niet schrijven naar database" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "SSL-sleutellocatie is niet geldig, voer een geldig pad in" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "SSL-certificaatlocatie is niet geldig, voer een geldig pad in" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" -msgstr "" +msgstr "Het wachtwoord moet tussen de 1 en 40 tekens lang zijn" -#: cps/admin.py:1868 +#: cps/admin.py:1871 #, fuzzy msgid "Database Settings updated" msgstr "E-mailserver-instellingen bijgewerkt" -#: cps/admin.py:1876 +#: cps/admin.py:1879 #, fuzzy msgid "Database Configuration" msgstr "Databaseconfiguratie" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Vul alle velden in!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "Het e-mailadres bevat geen geldige domeinnaam" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Gebruiker toevoegen" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Gebruiker '%(user)s' aangemaakt" -#: cps/admin.py:1923 +#: cps/admin.py:1926 #, fuzzy msgid "Oops! An account already exists for this Email. or name." msgstr "Bestaand account met dit e-mailadres of deze gebruikersnaam aangetroffen." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Gebruiker '%(nick)s' verwijderd" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "Kan Gast gebruiker niet verwijderen" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Kan laatste systeembeheerder niet verwijderen" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" -msgstr "" +msgstr "E-mail kan niet leeg zijn en moet geldig zijn" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Gebruiker '%(nick)s' bijgewerkt" @@ -542,110 +542,110 @@ msgstr "Aangepaste kolom Nr.%(column)d bestaat niet in de Calibre Database" msgid "None" msgstr "Geen" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 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:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" -msgstr "" +msgstr "Gebruiker mist rechten om de omslag te uploaden" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "Identificatoren zijn niet hoofdlettergevoelig, overschrijf huidige identificatoren" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "De metagegevens zijn bijgewerkt" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" -msgstr "" +msgstr "Fout tijdens bijwerken van boek: {}" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "Bestand %(file)s geüpload" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Bron- of doelformaat ontbreekt voor conversie" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, 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:332 +#: cps/editbooks.py:341 #, 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:639 +#: cps/editbooks.py:648 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:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s is geen geldige taal" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "Het te uploaden bestand moet voorzien zijn van een extensie" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, 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:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Omslag %(file)s niet verplaatst: %(error)s" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "Het boekformaat is verwijderd" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "Het boek is verwijderd" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" -msgstr "" +msgstr "U mist rechten om boeken te verwijderen" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "metagegevens bewerken" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s is geen geldig nummer, sla het over" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" -msgstr "" +msgstr "Gebruiker mist rechten om extra bestandsformaten te uploaden" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Kan de locatie '%(path)s' niet aanmaken (niet gemachtigd)." -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Kan %(file)s niet opslaan." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Bestandsformaat %(ext)s toegevoegd aan %(book)s" @@ -723,7 +723,7 @@ msgstr "Het opgevraagde bestand kan niet worden gelezen. Ben je hiertoe gemachti #: cps/helper.py:342 msgid "Read status could not set: {}" -msgstr "" +msgstr "Gelezen/ongelezen status kan niet aangepast worden: {}" #: cps/helper.py:365 #, python-format @@ -757,7 +757,7 @@ msgstr "Kan de titel '%(src)s' niet wijzigen in '%(dest)s': %(error)s" #: cps/helper.py:582 msgid "Error in rename file in path: {}" -msgstr "" +msgstr "Fout bij hernoemen bestand op bestandslocatie: {}" #: cps/helper.py:600 #, python-format @@ -766,7 +766,7 @@ msgstr "Boeken locatie '%(path)s' niet aangetroffen op Google Drive" #: cps/helper.py:665 msgid "Found an existing account for this Email address" -msgstr "" +msgstr "Bestaand account gevondne met dit e-mailadres" #: cps/helper.py:673 msgid "This username is already taken" @@ -779,11 +779,11 @@ msgstr "Ongeldig E-Mail adres" #: cps/helper.py:703 msgid "Password doesn't comply with password validation rules" -msgstr "" +msgstr "Het wachtwoord voldoet niet aan de validatieregels" #: cps/helper.py:852 msgid "Python module 'advocate' is not installed but is needed for cover uploads" -msgstr "" +msgstr "Pythonmodule 'advocate' is niet geïnstalleerd maar is nodig omslag uploads" #: cps/helper.py:862 msgid "Error Downloading Cover" @@ -795,7 +795,7 @@ msgstr "Onjuist omslagformaat" #: cps/helper.py:868 msgid "You are not allowed to access localhost or the local network for cover uploads" -msgstr "" +msgstr "Toegang tot localhost of het lokale netwerk niet toegestaant voor omslag uploaden" #: cps/helper.py:878 msgid "Failed to create path for cover" @@ -811,7 +811,7 @@ msgstr "Alleen jpg/jpeg/png/webp/bmp bestanden worden ondersteund als omslag" #: cps/helper.py:917 msgid "Invalid cover file content" -msgstr "" +msgstr "Ongeldig omslagbestand" #: cps/helper.py:921 msgid "Only jpg/jpeg files are supported as coverfile" @@ -833,7 +833,7 @@ msgstr "Willekeurige boeken" #: cps/helper.py:1079 cps/templates/admin.html:216 msgid "Queue all books for metadata backup" -msgstr "" +msgstr "Voeg alle boeken toe aan de wachtrij voor het maken van een metagegevens backup" #: cps/kobo_auth.py:90 #, fuzzy @@ -916,7 +916,7 @@ msgstr "{} sterren" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Inloggen" @@ -1005,7 +1005,7 @@ msgstr "Categoriekeuze tonen" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Boekenreeksen" @@ -1035,7 +1035,7 @@ msgid "Show Publisher Section" msgstr "Uitgeverskeuze tonen" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Talen" @@ -1080,10 +1080,10 @@ msgstr "Boekenlijst" msgid "Show Books List" msgstr "Boekenlijst tonen" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Zoeken" @@ -1106,15 +1106,15 @@ msgid "Rating >= %(rating)s" msgstr "Beoordeling >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "Lees Status = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "Fout tijdens het zoeken van aangepaste kolommen, start Calibre-Web opnieuw op" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Geavanceerd zoeken" @@ -1139,7 +1139,7 @@ msgstr "Het boek is toegevoegd aan boekenplank: %(sname)s" #: cps/shelf.py:108 msgid "You are not allowed to add a book to the shelf" -msgstr "" +msgstr "U heeft niet voldoende rechten om een boek aan deze boekenplank toe te voegen" #: cps/shelf.py:126 #, python-format @@ -1163,7 +1163,7 @@ msgstr "Het boek is verwijderd van boekenplank: %(sname)s" #: cps/shelf.py:200 msgid "Sorry you are not allowed to remove a book from this shelf" -msgstr "" +msgstr "U heeft niet voldoende rechten om een boek van deze boekenplank te verwijderen" #: cps/shelf.py:210 cps/templates/layout.html:157 msgid "Create a Shelf" @@ -1180,7 +1180,7 @@ msgstr "Pas een boekenplank aan" #: cps/shelf.py:229 msgid "Error deleting Shelf" -msgstr "" +msgstr "Fout bij verwijderen boekenplank!" #: cps/shelf.py:231 #, fuzzy @@ -1194,7 +1194,7 @@ msgstr "Volgorde van boekenplank veranderen: '%(name)s'" #: cps/shelf.py:316 msgid "Sorry you are not allowed to create a public shelf" -msgstr "" +msgstr "Je mist rechten om een openbare boekenplank te maken " #: cps/shelf.py:333 #, python-format @@ -1252,11 +1252,11 @@ msgstr "Voltooid" #: cps/tasks_status.py:70 msgid "Ended" -msgstr "" +msgstr "Beëindigd" #: cps/tasks_status.py:72 msgid "Cancelled" -msgstr "" +msgstr "Geannuleerd" #: cps/tasks_status.py:74 msgid "Unknown Status" @@ -1321,7 +1321,7 @@ msgstr "Reeks: %(serie)s" #: cps/web.py:620 msgid "Rating: None" -msgstr "" +msgstr "Beoordeling: geen" #: cps/web.py:629 #, python-format @@ -1355,109 +1355,109 @@ msgstr "Beoordelingen" msgid "File formats list" msgstr "Alle bestandsformaten" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Stel eerst SMTP-mail in..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Het boek is in de wachtrij geplaatst om te worden verstuurd aan %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Fout opgetreden bij het versturen van dit boek: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Stel je kindle-e-mailadres in..." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" -msgstr "" +msgstr "Wacht alstublieft één minuut voor het registreren van de volgende gebruiker" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Registreren" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "E-mailserver is niet geconfigureerd, neem contact op met de beheerder!" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Dit e-mailadres mag niet worden gebruikt voor registratie" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "Er is een bevestigings-e-mail verstuurd naar je e-mailadres." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "Kan de LDAP authenticatie niet activeren" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" -msgstr "" +msgstr "Wacht alstublieft één minuut voor de volgende inlogpoging" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "je bent ingelogd als: '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, fuzzy, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "Terugvallen op login: '%(nickname)s', LDAP Server is onbereikbaar, of de gebruiker is onbekend" -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "Inloggen mislukt: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Verkeerde gebruikersnaam of wachtwoord" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "Een nieuw wachtwoord is verzonden naar je e-mailadres" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Onbekende fout opgetreden. Probeer het later nog eens." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Geef een geldige gebruikersnaam op om je wachtwoord te herstellen" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "je bent ingelogd als: '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "%(name)ss profiel" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Profiel bijgewerkt" -#: cps/web.py:1484 +#: cps/web.py:1491 #, fuzzy msgid "Oops! An account already exists for this Email." msgstr "Bestaand account met dit e-mailadres aangetroffen." @@ -1507,15 +1507,15 @@ msgstr "Calibre mislukt met foutmelding: %(error)s" #: cps/tasks/convert.py:275 msgid "Convert" -msgstr "" +msgstr "Overzetten" #: cps/tasks/database.py:28 msgid "Reconnecting Calibre database" -msgstr "" +msgstr "Opnieuw verbinding aan het maken met Calibre database" #: cps/tasks/mail.py:269 msgid "E-mail" -msgstr "" +msgstr "E-mail" #: cps/tasks/metadata_backup.py:46 #, fuzzy @@ -1525,20 +1525,20 @@ msgstr "metagegevens bewerken" #: cps/tasks/thumbnail.py:96 #, python-format msgid "Generated %(count)s cover thumbnails" -msgstr "" +msgstr "%{count}s omslagminiaturen gegenereerd" #: cps/tasks/thumbnail.py:230 cps/tasks/thumbnail.py:443 #: cps/tasks/thumbnail.py:511 msgid "Cover Thumbnails" -msgstr "" +msgstr "Omslag miniaturen" #: cps/tasks/thumbnail.py:289 msgid "Generated {0} series thumbnails" -msgstr "" +msgstr "{0} serieminiaturen gegenereerd" #: cps/tasks/thumbnail.py:454 msgid "Clearing cover thumbnail cache" -msgstr "" +msgstr "Cache met omslagminiaturen aan het opschonen" #: cps/tasks/upload.py:38 cps/templates/admin.html:20 #: cps/templates/layout.html:81 cps/templates/user_table.html:145 @@ -1702,37 +1702,37 @@ msgstr "Bewerk gebruikersinterface configuratie" #: cps/templates/admin.html:167 msgid "Scheduled Tasks" -msgstr "" +msgstr "Geplande taken" #: cps/templates/admin.html:170 cps/templates/schedule_edit.html:12 #: cps/templates/tasks.html:18 msgid "Start Time" -msgstr "" +msgstr "Starttijd" #: cps/templates/admin.html:174 cps/templates/schedule_edit.html:20 msgid "Maximum Duration" -msgstr "" +msgstr "Maximale duur" #: cps/templates/admin.html:178 cps/templates/schedule_edit.html:29 msgid "Generate Thumbnails" -msgstr "" +msgstr "Genereer miniaturen" #: cps/templates/admin.html:182 msgid "Generate series cover thumbnails" -msgstr "" +msgstr "Genereer serie miniaturen" #: cps/templates/admin.html:186 cps/templates/admin.html:208 #: cps/templates/schedule_edit.html:37 msgid "Reconnect Calibre Database" -msgstr "" +msgstr "Opnieuw verbinding maken met Calibre database" #: cps/templates/admin.html:190 cps/templates/schedule_edit.html:41 msgid "Generate Metadata Backup Files" -msgstr "" +msgstr "Genereer backupbestanden voor metagegevens" #: cps/templates/admin.html:197 msgid "Refresh Thumbnail Cache" -msgstr "" +msgstr "Ververs cache met omslagminiaturen" #: cps/templates/admin.html:203 msgid "Administration" @@ -1756,7 +1756,7 @@ msgstr "Calibre-Web stoppen" #: cps/templates/admin.html:221 msgid "Version Information" -msgstr "" +msgstr "Versie informatie" #: cps/templates/admin.html:225 msgid "Version" @@ -1892,7 +1892,7 @@ msgid "Author" msgstr "Auteur" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Omschrijving" @@ -1917,7 +1917,7 @@ msgstr "Verwijderen" msgid "Add Identifier" msgstr "Identificator toevoegen" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Labels" @@ -1952,13 +1952,13 @@ msgstr "Uitgever" msgid "Language" msgstr "Taal" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Ja" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Nee" @@ -2103,11 +2103,11 @@ msgstr "Voer domeinnaam in" #: cps/templates/book_table.html:73 msgid "Comments" -msgstr "" +msgstr "Opmerkingen" #: cps/templates/book_table.html:75 msgid "Archive Status" -msgstr "" +msgstr "Archiefstatus" #: cps/templates/book_table.html:77 cps/templates/search_form.html:42 msgid "Read Status" @@ -2197,7 +2197,7 @@ msgstr "Bèta" #: cps/templates/config_edit.html:50 msgid "Trusted Hosts (Comma Separated)" -msgstr "" +msgstr "Vertrouwde hosts (komma gescheiden)" #: cps/templates/config_edit.html:61 msgid "Logfile Configuration" @@ -2221,7 +2221,7 @@ msgstr "Geavanceerde opties" #: cps/templates/config_edit.html:104 msgid "Convert non-English characters in title and author while saving to disk" -msgstr "" +msgstr "Zet niet Engelse tekens in titel en auteur om tijdens het opslaan" #: cps/templates/config_edit.html:108 msgid "Enable Uploads" @@ -2229,7 +2229,7 @@ msgstr "Uploaden inschakelen" #: cps/templates/config_edit.html:108 msgid "(Please ensure that users also have upload permissions)" -msgstr "" +msgstr "(Zorg dat gebruikers uploadrechten hebben)" #: cps/templates/config_edit.html:112 msgid "Allowed Upload Fileformats" @@ -2441,19 +2441,19 @@ msgstr "OAuth Instellingen" #: cps/templates/config_edit.html:369 msgid "Limit failed login attempts" -msgstr "" +msgstr "Beperk aantal mislukte inlogpogingen" #: cps/templates/config_edit.html:372 msgid "Session protection" -msgstr "" +msgstr "Sessiebescherming" #: cps/templates/config_edit.html:374 msgid "Basic" -msgstr "" +msgstr "Basis" #: cps/templates/config_edit.html:375 msgid "Strong" -msgstr "" +msgstr "Sterk" #: cps/templates/config_edit.html:380 #, fuzzy @@ -2462,23 +2462,23 @@ msgstr "Gebruikerswachtwoord herstellen" #: cps/templates/config_edit.html:384 msgid "Minimum password length" -msgstr "" +msgstr "Minimale wachtwoordlengte" #: cps/templates/config_edit.html:389 msgid "Enforce number" -msgstr "" +msgstr "Forceer getal" #: cps/templates/config_edit.html:393 msgid "Enforce lowercase characters" -msgstr "" +msgstr "Forceer kleine letter" #: cps/templates/config_edit.html:397 msgid "Enforce uppercase characters" -msgstr "" +msgstr "Forceer hoofdletter" #: cps/templates/config_edit.html:401 msgid "Enforce special characters" -msgstr "" +msgstr "Forceer speciaal teken" #: cps/templates/config_view_edit.html:17 msgid "View Configuration" @@ -2660,7 +2660,7 @@ msgstr "Kies Server Type" #: cps/templates/email_edit.html:22 msgid "Setup Gmail Account" -msgstr "" +msgstr "Gmail account instellen" #: cps/templates/email_edit.html:24 msgid "Revoke Gmail Access" @@ -2728,7 +2728,7 @@ msgstr "Kobo Sync Token" #: cps/templates/grid.html:21 msgid "List" -msgstr "" +msgstr "Lijst" #: cps/templates/http_error.html:34 #, fuzzy @@ -2749,11 +2749,11 @@ msgstr "Gebruiker uitloggen" #: cps/templates/index.html:71 msgid "Sort ascending according to download count" -msgstr "" +msgstr "Sorteer oplopend volgens aantal downloads" #: cps/templates/index.html:72 msgid "Sort descending according to download count" -msgstr "" +msgstr "Sorteer aflopend volgens aantal downloads" #: cps/templates/index.html:78 cps/templates/search.html:35 #: cps/templates/shelf.html:24 @@ -2834,7 +2834,7 @@ msgid "Books ordered by file formats" msgstr "Boeken gesorteerd op bestandsformaat" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Boekenplanken" @@ -2901,7 +2901,7 @@ msgstr "Boekgegevens" #: cps/templates/list.html:22 msgid "Grid" -msgstr "" +msgstr "Raster" #: cps/templates/login.html:18 msgid "Remember Me" @@ -3031,7 +3031,7 @@ msgstr "Donker" #: cps/templates/read.html:83 msgid "Sepia" -msgstr "" +msgstr "Sepia" #: cps/templates/read.html:84 #, fuzzy @@ -3044,7 +3044,7 @@ msgstr "Tekstindeling automatisch aanpassen als het zijpaneel geopend is." #: cps/templates/read.html:93 msgid "Font Sizes" -msgstr "" +msgstr "Lettertypegrootte" #: cps/templates/readcbr.html:8 #, fuzzy @@ -3065,7 +3065,7 @@ msgstr "Volgende pagina" #: cps/templates/readcbr.html:80 msgid "Single Page Display" -msgstr "" +msgstr "Weergave van één pagina" #: cps/templates/readcbr.html:81 msgid "Long Strip Display" @@ -3101,7 +3101,7 @@ msgstr "Afbeelding omdraaien" #: cps/templates/readcbr.html:110 msgid "Display" -msgstr "" +msgstr "Weergeven" #: cps/templates/readcbr.html:113 #, fuzzy @@ -3162,11 +3162,11 @@ msgstr "Rechts-naar-links" #: cps/templates/readcbr.html:162 msgid "Reset to Top" -msgstr "" +msgstr "Terug naar boven" #: cps/templates/readcbr.html:163 msgid "Remember Position" -msgstr "" +msgstr "Onthoud positie" #: cps/templates/readcbr.html:168 msgid "Scrollbar" @@ -3225,7 +3225,7 @@ msgstr "De link vervalt na 10 minuten." #: cps/templates/schedule_edit.html:33 msgid "Generate Series Cover Thumbnails" -msgstr "" +msgstr "Genereer serie omslagminiaturen" #: cps/templates/search.html:6 msgid "No Results Found" @@ -3247,44 +3247,52 @@ msgstr "Publicatiedatum van" msgid "Published Date To" msgstr "Publicatiedatum tot" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Labels uitsluiten" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Boekenreeksen uitsluiten" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 #, fuzzy msgid "Exclude Shelves" msgstr "Boekenreeksen uitsluiten" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Talen uitsluiten" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Extenties" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Extenties uitsluiten" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Met beoordeling hoger dan" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Met beoordeling lager dan" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "Van:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "Tot:" @@ -3378,15 +3386,15 @@ msgstr "Looptijd" #: cps/templates/tasks.html:20 msgid "Actions" -msgstr "" +msgstr "Acties" #: cps/templates/tasks.html:40 msgid "This task will be cancelled. Any progress made by this task will be saved." -msgstr "" +msgstr "Deze taak wordt geannuleerd. De voortgang van deze taak wordt opgeslagen." #: cps/templates/tasks.html:41 msgid "If this is a scheduled task, it will be re-ran during the next scheduled time." -msgstr "" +msgstr "Als dit een geplande taak is wordt deze opnieuw uitgevoerd tijdens de volgende geplande tijd." #: cps/templates/user_edit.html:20 msgid "Reset user Password" @@ -3418,7 +3426,7 @@ msgstr "Aanmaken/Bekijken" #: cps/templates/user_edit.html:70 msgid "Force full kobo sync" -msgstr "" +msgstr "Forceer volledige Kobo synchronisatie." #: cps/templates/user_edit.html:88 msgid "Add allowed/Denied Custom Column Values" diff --git a/cps/translations/no/LC_MESSAGES/messages.mo b/cps/translations/no/LC_MESSAGES/messages.mo index 708a5976..07fe003e 100644 Binary files a/cps/translations/no/LC_MESSAGES/messages.mo and b/cps/translations/no/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/no/LC_MESSAGES/messages.po b/cps/translations/no/LC_MESSAGES/messages.po index 79cfbf56..69652fb1 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2023-01-06 11:00+0000\n" "Last-Translator: Vegard Fladby \n" "Language: no\n" @@ -16,503 +16,503 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Statistikk" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Server startet på nytt. Last inn siden på nytt" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "Utfører avslutning av server, vennligst lukk vinduet" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Ukjent kommando" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy 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:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Ukjent" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Admin side" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Grunnleggende konfigurasjon" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "UI-konfigurasjon" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "Rediger brukere" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Alle" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Bruker ikke funnet" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{} brukere ble slettet" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Vis alt" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "Feil utformet forespørsel" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "Gjestenavn kan ikke endres" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "Gjesten kan ikke ha denne rollen" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "Ingen administratorbruker igjen, kan ikke fjerne administratorrollen" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "Verdien må være sann eller usann" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "Ugyldig rolle" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "Gjestene kan ikke ha denne utsikten" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "Ugyldig visning" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "Gjestenes lokalitet bestemmes automatisk og kan ikke angis" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "Ingen gyldig lokalitet gitt" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "Ikke oppgitt gyldig bokspråk" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "Parameter ikke funnet" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "Ugyldig lesekolonne" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "Ugyldig begrenset kolonne" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Calibre-Web-konfigurasjonen er oppdatert" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Vil du virkelig slette Kobo-tokenet?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "Vil du virkelig slette dette domenet?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "Vil du virkelig slette denne brukeren?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Er du sikker på at du vil slette denne hyllen?" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Er du sikker på at du vil endre lokaliteter for valgte bruker(e)?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "Er du sikker på at du vil endre synlige bokspråk for valgte bruker(e)?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "Er du sikker på at du vil endre den valgte rollen for den(e) valgte brukeren?" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Er du sikker på at du vil endre de valgte begrensningene for den(e) valgte brukeren?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "Er du sikker på at du vil endre de valgte synlighetsbegrensningene for valgte bruker(e)?" -#: cps/admin.py:625 +#: cps/admin.py:628 msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Er du sikker på at du vil endre atferden for hyllesynkronisering for de(n) valgte brukeren(e)?" -#: cps/admin.py:627 +#: cps/admin.py:630 msgid "Are you sure you want to change Calibre library location?" msgstr "Er du sikker på at du vil endre plassering av Caliber-biblioteket?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "Calibre-Web vil søke etter oppdaterte omslag og oppdatere omslagsminiatyrbilder, kan dette ta litt tid?" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "Er du sikker på at du vil slette Calibre-Webs synkroniseringsdatabase for å tvinge frem en full synkronisering med Kobo Reader?" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Benekte" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "Tillate" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "{} synkroniseringsoppføringer slettet" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "Merket ble ikke funnet" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "Ugyldig handling" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json er ikke konfigurert for webapplikasjon" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "Loggfilplasseringen er ikke gyldig, skriv inn riktig bane" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "Plasseringen av tilgangsloggfilen er ikke gyldig, skriv inn riktig bane" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "Angi en LDAP-leverandør, port, DN og brukerobjektidentifikator" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "Vennligst skriv inn en LDAP-tjenestekonto og passord" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "Angi en LDAP-tjenestekonto" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "LDAP-gruppeobjektfilter må ha én \"%s\"-formatidentifikator" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "LDAP-gruppeobjektfilter har uovertruffen parentes" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP-brukerobjektfilter må ha én \"%s\"-formatidentifikator" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "LDAP-brukerobjektfilter har uovertruffen parentes" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP-medlemsbrukerfilter må ha én \"%s\"-formatidentifikator" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "LDAP-medlemsbrukerfilter har uovertruffen parentes" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "LDAP CA-sertifikat, sertifikat eller nøkkelplassering er ikke gyldig. Angi riktig bane" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Legg til ny bruker" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 #, fuzzy msgid "Edit Email Server Settings" msgstr "Rediger e-postserverinnstillinger" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, fuzzy, python-format msgid "Oops! Database Error: %(error)s." msgstr "Databasefeil: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "Test e-post i kø for sending til %(email)s, sjekk Oppgaver for resultat" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Det oppsto en feil ved sending av test-e-posten: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Vennligst konfigurer e-postadressen din først..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 #, fuzzy msgid "Email Server Settings updated" msgstr "E-postserverinnstillinger oppdatert" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "Rediger innstillinger for planlagte oppgaver" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "Ugyldig starttidspunkt for spesifisert oppgave" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "Ugyldig varighet for spesifisert oppgave" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "Innstillinger for planlagte oppgaver er oppdatert" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 #, fuzzy msgid "Oops! An unknown error occurred. Please try again later." msgstr "En ukjent feil oppstod. Prøv igjen senere." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "Innstillinger DB er ikke skrivbar" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Rediger bruker %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "Passord for bruker %(user)s tilbakestilling" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Vennligst konfigurer SMTP-postinnstillingene først..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Loggfilviser" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Ber om oppdateringspakke" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Laster ned oppdateringspakken" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Pakker ut oppdateringspakken" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Erstatter filer" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Databaseforbindelser er stengt" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Stopper server" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Oppdatering fullført, vennligst trykk OK og last inn siden på nytt" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Oppdatering mislyktes:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "HTTP-feil" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Tilkoblingsfeil" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Tidsavbrudd under etablering av tilkobling" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Generell feil" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "Oppdateringsfilen kunne ikke lagres i temp dir" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "Filer kunne ikke erstattes under oppdatering" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "Kunne ikke pakke ut minst én LDAP-bruker" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Kunne ikke opprette minst én LDAP-bruker" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Feil: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Feil: Ingen bruker ble returnert som svar fra LDAP-serveren" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "Minst én LDAP-bruker ikke funnet i databasen" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "{} Bruker ble importert" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "DB-plassering er ikke gyldig, skriv inn riktig bane" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "DB er ikke skrivbar" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "Nøkkelfilplasseringen er ikke gyldig. Angi riktig bane" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "Sertifikatfilplasseringen er ikke gyldig, vennligst skriv inn riktig bane" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 msgid "Database Settings updated" msgstr "Databaseinnstillinger oppdatert" -#: cps/admin.py:1876 +#: cps/admin.py:1879 msgid "Database Configuration" msgstr "Databasekonfigurasjon" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 #, fuzzy msgid "Oops! Please complete all fields." msgstr "Vennligst fyll ut alle feltene!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "E-post er ikke fra gyldig domene" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Legg til ny bruker" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Bruker '%(user)s' opprettet" -#: cps/admin.py:1923 +#: cps/admin.py:1926 #, fuzzy msgid "Oops! An account already exists for this Email. or name." msgstr "Fant en eksisterende konto for denne e-postadressen eller navnet." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Brukeren '%(nick)s' slettet" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "Kan ikke slette gjestebruker" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Ingen administratorbruker igjen, kan ikke slette bruker" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 #, fuzzy msgid "Email can't be empty and has to be a valid Email" msgstr "E-postadresse kan ikke være tom og må være en gyldig e-post" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Bruker '%(nick)s' oppdatert" @@ -537,111 +537,111 @@ msgstr "Egendefinert kolonnenr.%(column)d finnes ikke i caliber-databasen" msgid "None" msgstr "Ingen" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 #, 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:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "Brukeren har ingen rettigheter til å laste opp cover" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "Identifikatorer skiller ikke mellom store og små bokstaver, overskriver gammel identifikator" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Metadata ble oppdatert" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "Feil ved redigering av bok: {}" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "Fil %(file)s lastet opp" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Kilde- eller målformat for konvertering mangler" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, 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:332 +#: cps/editbooks.py:341 #, 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:639 +#: cps/editbooks.py:648 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:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "'%(langname)s' er ikke et gyldig språk" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "Filen som skal lastes opp må ha en utvidelse" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, 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:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Kunne ikke flytte omslagsfil %(file)s: %(error)s" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "Bokformatet er slettet" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "Boken ble slettet" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "Du mangler tillatelser til å slette bøker" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "redigere metadata" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s er ikke et gyldig tall, hopper over" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "Brukeren har ingen rettigheter til å laste opp flere filformater" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Kunne ikke opprette banen %(path)s (Tillatelse nektet)." -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Kunne ikke lagre filen %(file)s." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Filformat %(ext)s lagt til %(book)s" @@ -910,7 +910,7 @@ msgstr "{} Stjerner" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Logg Inn" @@ -999,7 +999,7 @@ msgstr "Vis kategorivalg" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Serie" @@ -1029,7 +1029,7 @@ msgid "Show Publisher Section" msgstr "Vis utgivervalg" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Språk" @@ -1074,10 +1074,10 @@ msgstr "Bøker Liste" msgid "Show Books List" msgstr "Vis bokliste" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Søk" @@ -1100,15 +1100,15 @@ msgid "Rating >= %(rating)s" msgstr "Vurdering >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "Lesestatus = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "Feil ved søk etter egendefinerte kolonner. Start Calibre-Web på nytt" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Avansert søk" @@ -1346,111 +1346,111 @@ msgstr "Rangeringsliste" msgid "File formats list" msgstr "Liste over filformater" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Vennligst konfigurer SMTP-postinnstillingene først..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, fuzzy, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Boken ble satt i kø for sending til %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, fuzzy, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Oops! Det oppsto en feil ved sending av denne boken: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Vennligst oppdater profilen din med en gyldig Send til Kindle-e-postadresse." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Registrere" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 #, fuzzy msgid "Oops! Email server is not configured, please contact your administrator." msgstr "E-postserveren er ikke konfigurert, kontakt administratoren din!" -#: cps/web.py:1292 +#: cps/web.py:1299 #, fuzzy msgid "Oops! Your Email is not allowed." msgstr "Din e-post kan ikke registreres" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "" -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "Kan ikke aktivere LDAP-autentisering" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "du er nå logget på som: '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, fuzzy, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "Reservepålogging som: '%(nickname)s', LDAP-serveren er ikke tilgjengelig, eller brukeren er ukjent" -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "Kunne ikke logge på: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Vennligst skriv inn gyldig brukernavn for å tilbakestille passordet" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "Nytt passord ble sendt til e-postadressen din" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "En ukjent feil oppstod. Prøv igjen senere." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Vennligst skriv inn gyldig brukernavn for å tilbakestille passordet" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "du er nå logget på som: '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, fuzzy, python-format msgid "%(name)s's Profile" msgstr "%(name)s sin profil" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Profil oppdatert" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "" @@ -1889,7 +1889,7 @@ msgid "Author" msgstr "Forfatter" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Beskrivelse" @@ -1914,7 +1914,7 @@ msgstr "Ta bort" msgid "Add Identifier" msgstr "Legg til identifikator" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Tagger" @@ -1949,13 +1949,13 @@ msgstr "Forlegger" msgid "Language" msgstr "Språk" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Ja" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Nei" @@ -2843,7 +2843,7 @@ msgid "Books ordered by file formats" msgstr "" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "" @@ -3271,45 +3271,53 @@ msgstr "Publisert etter " msgid "Published Date To" msgstr "Publisert etter " -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 #, fuzzy msgid "Exclude Languages" msgstr "Skriv inn Språk" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 #, fuzzy msgid "Rating Above" msgstr "Vurdering: Ingen" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "" diff --git a/cps/translations/pl/LC_MESSAGES/messages.mo b/cps/translations/pl/LC_MESSAGES/messages.mo index 060e6f65..f2bd8f97 100644 Binary files a/cps/translations/pl/LC_MESSAGES/messages.mo and b/cps/translations/pl/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/pl/LC_MESSAGES/messages.po b/cps/translations/pl/LC_MESSAGES/messages.po index d7db57ec..7f0cd6bc 100644 --- a/cps/translations/pl/LC_MESSAGES/messages.po +++ b/cps/translations/pl/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre Web - polski (POT: 2021-06-12 08:52)\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2021-06-12 15:35+0200\n" "Last-Translator: Radosław Kierznowski \n" "Language: pl\n" @@ -17,508 +17,508 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Statystyki" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Serwer uruchomiony ponownie, proszę odświeżyć stronę" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "Wykonano wyłączenie serwera, proszę zamknąć okno" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Nieznane polecenie" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy 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:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Nieznany" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Panel administratora" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Konfiguracja podstawowa" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Konfiguracja Interfejsu" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "Edytuj użytkowników" # ??? -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Wszystko" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Nie znaleziono użytkownika" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{} użytkowników usuniętych pomyślnie" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Pokaż wszystkie" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "Nieprawidłowo sformułowane żądanie" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "Nazwa gościa nie może być zmieniona" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "Gość nie może pełnić tej roli" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "Nie można odebrać praw administratora. Brak na serwerze innego konta z prawami administratora" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "Wartość musi być prawdziwa lub fałszywa" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "Nieprawidłowa rola" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "Gość nie może tego zobaczyć" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "Nieprawidłowy widok" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "Lokalizacja gościa jest określana automatycznie i nie można jej ustawić" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "Nie podano prawidłowej lokalizacji" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "Nie podano obowiązującego języka książki" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "Nie znaleziono parametru" -#: cps/admin.py:568 +#: cps/admin.py:571 #, fuzzy msgid "Invalid Read Column" msgstr "Nieprawidłowa kolumna odczytu" -#: cps/admin.py:574 +#: cps/admin.py:577 #, fuzzy msgid "Invalid Restricted Column" msgstr "Nieprawidłowa kolumna z ograniczeniami" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Konfiguracja Calibre-Web została zaktualizowana" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Czy na pewno chcesz usunąć Token Kobo?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "Czy naprawdę chcesz usunąć tę domenę?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "Czy naprawdę chcesz usunąć tego użytkownika?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Czy na pewno chcesz usunąć półkę?" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Czy na pewno chcesz zmienić ustawienia lokalne wybranego użytkownika(ów)?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "Czy na pewno chcesz zmienić widoczne języki książek dla wybranego użytkownika (użytkowników)?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "Czy na pewno chcesz zmienić wybraną rolę dla wybranego użytkownika (użytkowników)?" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Czy na pewno chcesz zmienić wybrane ograniczenia dla wybranego użytkownika(ów)?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "Czy na pewno chcesz zmienić wybrane ograniczenia widoczności dla wybranego użytkownika(ów)?" -#: cps/admin.py:625 +#: cps/admin.py:628 msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Czy na pewno chcesz zmienić zachowanie synchronizacji półek dla wybranego użytkownika(ów)?" -#: cps/admin.py:627 +#: cps/admin.py:630 msgid "Are you sure you want to change Calibre library location?" msgstr "Czy na pewno chcesz zmienić lokalizację biblioteki Calibre?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Zabroń" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "Zezwalaj" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "" -#: cps/admin.py:966 +#: cps/admin.py:969 #, fuzzy msgid "Tag not found" msgstr "Nie znaleziono znacznika" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "Nieprawidłowe działanie" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json nie został skonfigurowany dla aplikacji webowej" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "Lokalizacja pliku dziennika jest nieprawidłowa, wprowadź poprawną ścieżkę" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "Lokalizacja pliku dziennika dostępu jest nieprawidłowa, wprowadź poprawną ścieżkę" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "Wprowadź dostawcę LDAP, port, nazwę wyróżniającą i identyfikator obiektu użytkownika" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "Proszę wprowadzić konto i hasło usługi LDAP" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "Proszę wprowadzić konto usługi LDAP" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "Filtr obiektów grupy LDAP musi mieć jeden identyfikator formatu \"% s\"" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "Filtr obiektów grupy LDAP ma niedopasowany nawias" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "Filtr obiektów użytkownika LDAP musi mieć jeden identyfikator formatu \"% s\"" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "Filtr obiektów użytkownika LDAP ma niedopasowany nawias" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "Filtr użytkownika członka LDAP musi mieć jedno \"%s\" identyfikator formatu" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "Filtr użytkownika członka LDAP ma niedopasowane nawiasy" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "Główny urząd certyfikatu LDAP, Certyfikat lub Lokalizacja Klucza nie jest prawidłowa, Proszę wprowadzić poprawną ścieżkę" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Dodaj nowego użytkownika" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "Zmień ustawienia SMTP" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "Błąd bazy danych: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, fuzzy, python-format msgid "Test e-mail queued for sending to %(email)s, 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:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Wystąpił błąd podczas wysyłania e-maila testowego: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Najpierw skonfiguruj swój adres e-mail..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "Zaktualizowano ustawienia serwera poczty e-mail" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Wystąpił nieznany błąd. Spróbuj ponownie później." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Edytuj użytkownika %(nick)s" # ??? -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "Zrestartowano hasło użytkownika %(user)s" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Proszę najpierw skonfigurować ustawienia SMTP poczty e-mail..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Przeglądanie dziennika" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Żądanie o pakiet aktualizacji" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Pobieranie pakietu aktualizacji" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Rozpakowywanie pakietu aktualizacji" # ??? -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Zastępowanie plików" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Połączenia z bazą danych zostały zakończone" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Zatrzymywanie serwera" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Aktualizacja zakończona, proszę nacisnąć OK i odświeżyć stronę" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Aktualizacja nieudana:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "Błąd HTTP" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Błąd połączenia" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Przekroczono limit czasu podczas nawiązywania połączenia" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Błąd ogólny" -#: cps/admin.py:1527 +#: cps/admin.py:1530 #, fuzzy msgid "Update file could not be saved in temp dir" msgstr "Plik aktualizacji nie mógł zostać zapisany w katalogu tymczasowym" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "" -#: cps/admin.py:1552 +#: cps/admin.py:1555 #, fuzzy msgid "Failed to extract at least One LDAP User" msgstr "Błąd przy tworzeniu przynajmniej jednego użytkownika LDAP" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Błąd przy tworzeniu przynajmniej jednego użytkownika LDAP" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Błąd: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Błąd. LDAP nie zwrócił żadnego użytkownika" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "Przynajmniej jeden użytkownik LDAP nie został znaleziony w bazie danych" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "{} Użytkownik pomyślnie zaimportowany" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "Lokalizacja bazy danych jest nieprawidłowa, wprowadź poprawną ścieżkę" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "Baza danych nie jest zapisywalna" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "Lokalizacja pliku klucza jest nieprawidłowa, wprowadź poprawną ścieżkę" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "Lokalizacja pliku certyfikatu jest nieprawidłowa, wprowadź poprawną ścieżkę" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 #, fuzzy msgid "Database Settings updated" msgstr "Zaktualizowano ustawienia serwera poczty e-mail" -#: cps/admin.py:1876 +#: cps/admin.py:1879 msgid "Database Configuration" msgstr "Konfiguracja bazy danych" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Proszę wypełnić wszystkie pola!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "E-mail nie pochodzi z prawidłowej domeny" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Dodaj nowego użytkownika" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Użytkownik '%(user)s' został utworzony" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "Znaleziono istniejące konto dla tego adresu e-mail lub nazwy." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Użytkownik '%(nick)s' został usunięty" -#: cps/admin.py:1956 +#: cps/admin.py:1959 #, fuzzy msgid "Can't delete Guest User" msgstr "Nie można usunąć użytkownika gościa" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Nie można usunąć użytkownika. Brak na serwerze innego konta z prawami administratora" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Użytkownik '%(nick)s' został zaktualizowany" @@ -543,110 +543,110 @@ msgstr "Niestandardowa kolumna No.%(column)d nie istnieje w bazie calibre" msgid "None" msgstr "Brak" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 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:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "W identyfikatorach nie jest rozróżniana wielkość liter, nadpisywanie starego identyfikatora" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Metadane zostały pomyślnie zaktualizowane" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "Wysłano plik %(file)s" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Brak formatu źródłowego lub docelowego do konwersji" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, 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:332 +#: cps/editbooks.py:341 #, 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:639 +#: cps/editbooks.py:648 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:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s nie jest prawidłowym językiem" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "Plik do wysłania musi mieć rozszerzenie" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, 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:764 +#: cps/editbooks.py:773 #, 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:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "Plik książki w wybranym formacie został usunięty" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "Książka została usunięta" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "edytuj metadane" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s nie jest poprawną liczbą, pomijanie" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, 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:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Nie można zapisać pliku %(file)s." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Format pliku %(ext)s dodany do %(book)s" @@ -920,7 +920,7 @@ msgstr "{} Gwiazdek" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Zaloguj się" @@ -1009,7 +1009,7 @@ msgstr "Pokaż menu wyboru kategorii" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Cykle" @@ -1039,7 +1039,7 @@ msgid "Show Publisher Section" msgstr "Pokaż menu wyboru wydawcy" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Języki" @@ -1084,10 +1084,10 @@ msgstr "Lista książek" msgid "Show Books List" msgstr "Pokaż listę książek" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Szukaj" @@ -1110,16 +1110,16 @@ msgid "Rating >= %(rating)s" msgstr "Ocena >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "Status przeczytania = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 #, fuzzy msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "Błąd podczas wyszukiwania kolumn niestandardowych, proszę zrestartować Calibre-Web" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Wyszukiwanie" @@ -1360,109 +1360,109 @@ msgstr "Lista z ocenami" msgid "File formats list" msgstr "Lista formatów" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Proszę najpierw skonfigurować ustawienia SMTP poczty e-mail..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Książka została umieszczona w kolejce do wysłania do %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Wystąpił błąd podczas wysyłania tej książki: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Najpierw skonfiguruj adres e-mail Kindle..." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Zarejestruj się" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "Serwer e-mail nie jest skonfigurowany, skontaktuj się z administratorem!" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Twój e-mail nie może się zarejestrować" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "Wiadomość e-mail z potwierdzeniem została wysłana na Twoje konto e-mail." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "Nie można aktywować uwierzytelniania LDAP" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "zalogowałeś się jako: '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, fuzzy, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "Fallback Login as: %(nickname)s, LDAP Server not reachable, or user not known" -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "Nie można zalogować: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Błędna nazwa użytkownika lub hasło" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "Nowe hasło zostało wysłane na Twój adres e-mail" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Wystąpił nieznany błąd. Spróbuj ponownie później." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Wprowadź prawidłową nazwę użytkownika, aby zresetować hasło" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "zalogowałeś się jako: '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "Profil użytkownika %(name)s" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Zaktualizowano profil" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "Znaleziono istniejące konto dla tego adresu e-mail" @@ -1899,7 +1899,7 @@ 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 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Opis" @@ -1924,7 +1924,7 @@ msgstr "Usuń" msgid "Add Identifier" msgstr "Dodaj identyfikator" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Etykiety" @@ -1959,13 +1959,13 @@ msgstr "Wydawca" msgid "Language" msgstr "Język" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Tak" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Nie" @@ -2848,7 +2848,7 @@ msgid "Books ordered by file formats" msgstr "Ksiązki sortowane według formatu" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Półki" @@ -3263,43 +3263,51 @@ msgstr "Data publikacji od" msgid "Published Date To" msgstr "Data publikacji do" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Wyklucz etykiety" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Wyklucz cykle" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "Z wyłączeniem półek" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Wyklucz języki" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Rozszerzenia" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Wyklucz rozszerzenia" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Ocena większa niż" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Ocena mniejsza niż" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "Od:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "Do:" diff --git a/cps/translations/pt/LC_MESSAGES/messages.mo b/cps/translations/pt/LC_MESSAGES/messages.mo index dfe995ff..3e500110 100644 Binary files a/cps/translations/pt/LC_MESSAGES/messages.mo and b/cps/translations/pt/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/pt/LC_MESSAGES/messages.po b/cps/translations/pt/LC_MESSAGES/messages.po index ec47cec8..741bc429 100644 --- a/cps/translations/pt/LC_MESSAGES/messages.po +++ b/cps/translations/pt/LC_MESSAGES/messages.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2023-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2023-07-25 11:30+0100\n" "Last-Translator: horus68 \n" "Language: pt\n" @@ -13,497 +13,497 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Estatísticas" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Servidor reiniciado, por favor, refresque a página" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "A encerrar o servidor, por favor, feche a janela" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "Sucesso! Base de dados religada" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Comando desconhecido" -#: cps/admin.py:170 +#: cps/admin.py:173 #, 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:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Desconhecido" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Página de administração" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Configuração básica" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Configuração de IU" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "Editar utilizadores" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Tudo" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Utilizador não encontrado" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{} utilizadores eliminados com sucesso" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 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:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "Pedido mal construído" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "Nome do convidado não pode ser alterado" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "Convidado não pode ter esta função" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 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:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "Valor tem de ser verdadeiro ou falso" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "Função inválida" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "O convidado não podr ter esta vista" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "Vista inválida" -#: cps/admin.py:514 +#: cps/admin.py:517 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:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "Nenhum idioma válido fornecido" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "Não foi indicado um idioma de livro válido" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "Parâmetro não encontrado" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "Coluna Lido é inválida" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "Coluna Restrito é inválida" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Configuração do Calibre-Web atualizada" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Quer realmente apagar a Kobo Token?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "Quer realmente eliminar este domínio?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "Quer realmente apagar este utilizador?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Tem a certeza de que quer apagar essa estante?" -#: cps/admin.py:614 +#: cps/admin.py:617 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:616 +#: cps/admin.py:619 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:618 +#: cps/admin.py:621 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:620 +#: cps/admin.py:623 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:622 +#: cps/admin.py:625 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:625 +#: cps/admin.py:628 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:627 +#: cps/admin.py:630 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:629 +#: cps/admin.py:632 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:632 +#: cps/admin.py:635 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:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: 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:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: 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:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "{} entradas de sincronização eliminadas" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "Etiqueta não encontrada" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "Ação inválida" -#: cps/admin.py:1108 +#: cps/admin.py:1111 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:1153 +#: cps/admin.py:1156 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:1159 +#: cps/admin.py:1162 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:1193 +#: cps/admin.py:1196 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:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "Por favor, digite uma conta de serviço LDAP e senha" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "Por favor, digite uma conta de serviço LDAP" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, 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:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "Filtro de objeto de grupo LDAP tem parênteses não coincidentes" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, 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:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "Filtro de objeto de utilizador LDAP tem parênteses não coincidentes" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, 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:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "Filtro de utilizador de membro LDAP tem parênteses incomparáveis" -#: cps/admin.py:1231 +#: cps/admin.py:1234 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:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Adicionar utilizador" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "Editar configurações do servidor de email" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "Sucesso! Conta Gmail verificada" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "Erro de base de dados: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, 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:1323 +#: cps/admin.py:1326 #, 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:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Por favor, primeiro configure seu endereço de email..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "Atualização das configurações do servidor de email" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "Editar configurações de tarefas agendadas" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "Hora de início inválida para a tarefa especificada" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "Duração inválida para a tarefa especificada" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "Foram atualizadas as configurações de tarefas agendadas" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Ocorreu um erro desconhecido. Por favor, tente novamente mais tarde." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "Configuaração da DB não é gravável" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Editar utilizador %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "Sucesso! Senha do utilizador %(user)s redefinida" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Por favor, configure primeiro as configurações de correio SMTP..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Visualizador do historial" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "A solicitar pacote de atualização" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "A descarregar pacote de atualização" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "A descomprimir pacote de atualização" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "A substituir ficheiros" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "As ligações à base de dados estão fechadas" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "A parar o servidor" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Atualização concluída, pressione OK e refresque a página" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Atualização falhou:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "Erro HTTP" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Erro de ligação" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Tempo limite ao estabelecer a ligação" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Erro geral" -#: cps/admin.py:1527 +#: cps/admin.py:1530 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:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "Não foi possível substituir ficheiros durante a atualização" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "Falha ao extrair pelo menos um utilizador LDAP" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Falha ao criar pelo menos um utilizador LDAP" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Erro: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Erro: Nenhum utilizador devolvido na resposta do servidor LDAP" -#: cps/admin.py:1647 +#: cps/admin.py:1650 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:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "{} utilizador importado com sucesso" -#: cps/admin.py:1707 +#: cps/admin.py:1710 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:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "DB não é gravável" -#: cps/admin.py:1740 +#: cps/admin.py:1743 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:1744 +#: cps/admin.py:1747 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:1816 +#: cps/admin.py:1819 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:1868 +#: cps/admin.py:1871 msgid "Database Settings updated" msgstr "Configurações da base de dados atualizadas" -#: cps/admin.py:1876 +#: cps/admin.py:1879 msgid "Database Configuration" msgstr "Configuração da base de dados" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Por favor, preencha todos os campos!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "O email não é de um domínio válido" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Adicionar novo utilizador" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Criado utilizador '%(user)s'" -#: cps/admin.py:1923 +#: cps/admin.py:1926 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:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Utilizador '%(nick)s' eliminado" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "Impossível eliminar convidado" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Nenhum utilizador administrador restante, não é possível eliminar o utilizador" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 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:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Utilizador '%(nick)s' atualizado" @@ -528,110 +528,110 @@ msgstr "A coluna personalizada No.%(column)d não existe na base de dados do Cal msgid "None" msgstr "Nenhum" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 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:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 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:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 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 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Metadados atualizados com sucesso" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "Erro ao editar o livro: {}" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "Ficheiro %(file)s enviado" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Formato de origem ou destino para conversão está em falta" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, 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 +#: cps/editbooks.py:341 #, 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:639 +#: cps/editbooks.py:648 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:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s não é um idioma válido" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "O ficheiro a ser carregado deve ter uma extensão" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, 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:764 +#: cps/editbooks.py:773 #, 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:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "Formato de livro eliminado com sucesso" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "Livro eliminado com sucesso" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "Não tem permissões para apagar livros" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "editar metadados" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, 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:1162 +#: cps/editbooks.py:1174 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:1183 +#: cps/editbooks.py:1195 #, 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:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Falha ao armazenar o ficheiro %(file)s." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Formato de ficheiro %(ext)s adicionado a %(book)s" @@ -900,7 +900,7 @@ 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Autenticar" @@ -989,7 +989,7 @@ 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:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Séries" @@ -1019,7 +1019,7 @@ 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:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Idiomas" @@ -1064,10 +1064,10 @@ msgstr "Lista de livros" msgid "Show Books List" msgstr "Mostrar lista de livros" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Pesquisar" @@ -1090,15 +1090,15 @@ msgid "Rating >= %(rating)s" msgstr "Pontuação >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "Estado de leitura = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 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 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Pesquisa avançada" @@ -1336,109 +1336,109 @@ msgstr "Lista de pontuações" msgid "File formats list" msgstr "Lista de formatos de ficheiro" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Por favor, configure primeiro as configurações de correio SMTP..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, 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:1236 +#: cps/web.py:1243 #, 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:1238 +#: cps/web.py:1245 #, 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:1254 +#: cps/web.py:1261 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:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Registar" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 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:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Ops! O seu email não é permitido para registo" -#: cps/web.py:1295 +#: cps/web.py:1302 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:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "Não é possível ativar a autenticação LDAP" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "Por favor, aguarde um minuto antes de nova autenticação" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "agora você está autenticado como: '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, 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:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "Não foi possível autenticar-se: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Nome de utilizador ou senha incorretos" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "Nova senha foi enviada para seu endereço de email" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Ocorreu um erro desconhecido. Por favor, tente novamente mais tarde." -#: cps/web.py:1398 +#: cps/web.py:1405 #, 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:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Agora você está autenticado como: '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "Perfil de %(name)s" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Perfil atualizado" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "Foi encontrada uma conta já existente com este endereço de email." @@ -1870,7 +1870,7 @@ 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 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Descrição" @@ -1895,7 +1895,7 @@ msgstr "Remover" msgid "Add Identifier" msgstr "Adicionar identificador" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Etiquetas" @@ -1930,13 +1930,13 @@ msgstr "Editora" msgid "Language" msgstr "Idioma" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Sim" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Não" @@ -2804,7 +2804,7 @@ msgid "Books ordered by file formats" msgstr "Livros ordenados por formatos de ficheiro" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Estantes" @@ -3210,43 +3210,51 @@ msgstr "Data de publicação de" msgid "Published Date To" msgstr "Data de publicação até" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Excluir etiquetas" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Excluir série" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "Excluir estante" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Excluir idiomas" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Extensões" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Excluir extensões" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Pontuação acima" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Pontuação abaixo" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "De:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "Para:" diff --git a/cps/translations/pt_BR/LC_MESSAGES/messages.mo b/cps/translations/pt_BR/LC_MESSAGES/messages.mo index ee638636..281a704f 100644 Binary files a/cps/translations/pt_BR/LC_MESSAGES/messages.mo and b/cps/translations/pt_BR/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/pt_BR/LC_MESSAGES/messages.po b/cps/translations/pt_BR/LC_MESSAGES/messages.po index 20168752..84a0a7f3 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: br\n" @@ -13,497 +13,497 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Estatísticas" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Servidor reiniciado, por favor recarregue a página" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "Executando o desligamento do servidor, por favor feche a janela" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Comando desconhecido" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy 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:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Desconhecido" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Página de Administração" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Configuração Básica" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Configuração de UI" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "Editar Usuários" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Todos" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Usuário não encontrado" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{} usuário(s) deletedos com sucesso" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 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:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "Requisição Malformada" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "Nome do Convidado não pode ser alterado" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "Convidado não pode ter esta função" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "Nenhum usuário administrador restante, impossível remover a função de administrador" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "Valor tem de ser Verdadeiro ou Falso" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "Função Inválida" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "Convidado não pode ter esta visão" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "Visão Inválida" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "O idioma do Convidado é detectado automaticamente e não pode ser alterado" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "Nenhum Idioma Válido Fornecido" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "Nenhum Idioma do Livro Válido Fornecido" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "Parametro não encontrado" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "Coluna Lido Inválida" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "Coluna Restrito Inválida" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Configuração do Calibre-Web atualizada" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Você realmente quer apagar a Kobo Token?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "Você realmente quer apagar este domínio?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "Você realmente quer apagar este usuário?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Tem certeza que quer apagar essa estante?" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Tem certeza que quer alterar o idioma do(s) usuário(s) selecionados?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "Tem certeza que quer alterar os idiomas de livros visíveis par o usuário(s) selecionado(s)?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "Tem certeza que quer alterar a função selecionada para o(s) usuário(s) selecionado(s)?" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Tem certeza que quer alterar as restriçõeo selecionada para o(s) usuário(s) selecionado(s)?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "Tem certeza de que quer alterar as restrições de visibilidade selecionadas para os usuários selecionados?" -#: cps/admin.py:625 +#: cps/admin.py:628 msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Tem certeza de que quer alterar o comportamento de sincronização da estante para o usuário selecionado?" -#: cps/admin.py:627 +#: cps/admin.py:630 msgid "Are you sure you want to change Calibre library location?" msgstr "Tem certeza que queres alterar a localização da biblioteca Calibre?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "O Calibre-Web buscará por Capas atualizadas e atualizará as Miniaturas de Capas, isso pode demorar um pouco" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "Tem certeza de que deseja apagar o banco de dados de sincronização do Calibre-Web para forçar uma sincronização completa com seu Kobo Reader?" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: 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:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: 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:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "{} entradas de sincronização deletadas" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "Tag não encontrada" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "Ação Inválida" -#: cps/admin.py:1108 +#: cps/admin.py:1111 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:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "A localização do arquivo de log não é válida, digite o caminho correto" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "A localização do arquivo de log de acesso não é válida, digite o caminho correto" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "Digite um provedor LDAP, porta, DN e identificador de objeto do usuário" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "Por favor, digite uma Conta de Serviço LDAP e Senha" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "Por favor, digite uma Conta de Serviço LDAP" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "O filtro de objeto de grupo LDAP precisa ter um identificador de formato \"%s\"" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "Filtro de objeto de grupo LDAP tem parênteses incomparáveis" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "O filtro de objeto de usuário LDAP precisa ter um identificador de formato \"%s\"" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "Filtro de objeto de usuário LDAP tem parênteses incomparáveis" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "O filtro de usuário membro do LDAP precisa ter um identificador de formato \"%s\"" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "Filtro de usuário de membro LDAP tem parênteses incomparáveis" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "Localização de LDAP CACertificate, Certificados ou Key Inválida, Insira o Caminho Correto" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Adicionar Novo Usuário" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "Editar configurações do servidor de e-mail" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "Erro de banco de dados: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "E-mail de teste enfileirado para envio para %(email)s, verifique o resultado em Tarefas" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Ocorreu um erro ao enviar o e-mail de teste: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Por favor, configure seu endereço de e-mail primeiro..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "Atualização das configurações do servidor de e-mail" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "Editar configurações de tarefas agendadas" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "Hora de início inválida para a tarefa especificada" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "Duração inválida para a tarefa especificada" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "Configurações de tarefas agendadas atualizadas" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Ocorreu um erro desconhecido. Por favor, tente novamente mais tarde." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "Settings DB não é gravável" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Editar Usuário %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "Senha do usuário %(user)s redefinida" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Por favor, configure primeiro as configurações de correio SMTP..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Visualizador do Log" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Solicitação de pacote de atualização" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Baixando pacote de atualização" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Descompactando pacote de atualização" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Substituindo arquivos" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "As conexões à base de dados estão fechadas" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Parando servidor" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Atualização concluída, pressione okay e recarregue a página" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Atualização falhou:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "Erro HTTP" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Erro de conexão" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Tempo limite durante o estabelecimento da conexão" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Erro geral" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "Arquivo de atualização não pôde ser salvo no diretório temporário" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "Arquivos não puderam ser substituídos durante a atualização" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "Falha ao extrair pelo menos um usuário LDAP" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Falha ao criar pelo menos um usuário LDAP" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Erro: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Erro: Nenhum usuário retornado na resposta do servidor LDAP" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "No mínimo um usuário LDAP não encontrado no banco de dados" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "{} Usuário Importado com Sucesso" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "A localização do banco de dados não é válida, digite o caminho correto" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "DB não é gravável" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "Localização do Keyfile Inválida, Insira o Caminho Correto" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "Localização do Certfile Inválida, Insira o Caminho Correto" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 msgid "Database Settings updated" msgstr "Configurações do Banco de Dados Atualizada" -#: cps/admin.py:1876 +#: cps/admin.py:1879 msgid "Database Configuration" msgstr "Configuração do Banco de Dados" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Por favor, preencha todos os campos!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "O e-mail não é de um domínio válido" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Adicionar novo usuário" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Usuário '%(user)s' criado" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "Encontrada uma conta existente para este endereço de e-mail ou apelido." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Usuário '%(nick)s' excluído" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "Impossível excluir Convidado" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Nenhum usuário administrador restante, não é possível apagar o usuário" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Usuário '%(nick)s' atualizado" @@ -528,110 +528,110 @@ msgstr "A Coluna Personalizada No.%(column)d não existe no banco de dados do ca msgid "None" msgstr "Nenhum" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 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:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "Usuário não tem permissão para fazer upload da capa" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 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 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Metadados atualizados com sucesso" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "Erro ao editar o livro: {}" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "Arquivo %(file)s enviado" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Formato de origem ou destino para conversão ausente" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, 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:332 +#: cps/editbooks.py:341 #, 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:639 +#: cps/editbooks.py:648 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:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s não é um idioma válido" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "O arquivo a ser carregado deve ter uma extensão" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, 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:764 +#: cps/editbooks.py:773 #, 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:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "Formato do Livro Apagado com Sucesso" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "Livro Apagado com Sucesso" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "Você não tem permissão para apagar livros" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "editar metadados" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, 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:1162 +#: cps/editbooks.py:1174 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:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Falha ao criar o caminho %(path)s (Permission denied)." -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Falha ao armazenar o arquivo %(file)s." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Formato de arquivo %(ext)s adicionado a %(book)s" @@ -900,7 +900,7 @@ 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Login" @@ -989,7 +989,7 @@ 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:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Série" @@ -1019,7 +1019,7 @@ msgid "Show Publisher Section" msgstr "Mostrar seção de editoras" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Idiomas" @@ -1064,10 +1064,10 @@ msgstr "Lista de Livros" msgid "Show Books List" msgstr "Mostrar Lista de Livros" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Pesquisar" @@ -1090,15 +1090,15 @@ msgid "Rating >= %(rating)s" msgstr "Avaliação >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "Status de leitura = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "Erro na pesquisa de colunas personalizadas, reinicie o Calibre-Web" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Pesquisa Avançada" @@ -1336,109 +1336,109 @@ msgstr "Lista de Avaliações" msgid "File formats list" msgstr "Lista de formatos de arquivo" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Por favor, configure primeiro as configurações de correio SMTP..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Livro enfileirado com sucesso para envio para %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, 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:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Por favor, atualize seu perfil com um endereço de e-mail Envie Para o Kindle válido." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Registe-se" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "O servidor de E-Mail não está configurado, por favor contacte o seu administrador!" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Seu e-mail não tem permissão para registrar" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "O e-mail de confirmação foi enviado para a sua conta de e-mail." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "Não é possível ativar a autenticação LDAP" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "agora você está logado como: '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, fuzzy, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "Login de reserva como:'%(nickname)s', servidor LDAP não acessível ou usuário desconhecido" -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "Não foi possível fazer o login: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Nome de Usuário ou Senha incorretos" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "Nova Senha foi enviada para seu endereço de e-mail" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Ocorreu um erro desconhecido. Por favor, tente novamente mais tarde." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Por favor, digite um nome de usuário válido para redefinir a senha" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "agora você está logado como: '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "Perfil de %(name)s" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Perfil atualizado" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "Encontrada uma conta existente para este endereço de e-mail." @@ -1870,7 +1870,7 @@ 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 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Descrição" @@ -1895,7 +1895,7 @@ msgstr "Remover" msgid "Add Identifier" msgstr "Adicionar Identificador" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Tags" @@ -1930,13 +1930,13 @@ msgstr "Editora" msgid "Language" msgstr "Idioma" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Sim" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Não" @@ -2804,7 +2804,7 @@ msgid "Books ordered by file formats" msgstr "Livros ordenados por formatos de arquivo" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Estantes" @@ -3210,43 +3210,51 @@ msgstr "Data de Publicação de" msgid "Published Date To" msgstr "Data de Publicação Até" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Excluir Tags" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Excluir Série" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "Excluir Estante" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Excluir idiomas" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Extensões" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Excluir extensões" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Avaliação Acima" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Avaliação Abaixo" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "De:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "Para:" diff --git a/cps/translations/ru/LC_MESSAGES/messages.mo b/cps/translations/ru/LC_MESSAGES/messages.mo index 599dcb2d..87a4c5ef 100644 Binary files a/cps/translations/ru/LC_MESSAGES/messages.mo and b/cps/translations/ru/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/ru/LC_MESSAGES/messages.po b/cps/translations/ru/LC_MESSAGES/messages.po index d6e980b3..5e1bcf29 100644 --- a/cps/translations/ru/LC_MESSAGES/messages.po +++ b/cps/translations/ru/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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2020-04-29 01:20+0400\n" "Last-Translator: ZIZA\n" "Language: ru\n" @@ -17,508 +17,508 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Статистика" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Сервер перезагружен, пожалуйста, обновите страницу" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "Производится остановка сервера, пожалуйста, закройте окно" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Неизвестная команда" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Книга успешно поставлена в очередь для отправки на %(eReadermail)s" -#: cps/admin.py:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Неизвестно" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Администрирование" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Настройки сервера" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Настройка интерфейса" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 #, fuzzy msgid "Edit Users" msgstr "Управление сервером" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Все" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Показать все" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Конфигурация Calibre-Web обновлена" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Вы действительно хотите удалить Kobo Token ?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Вы действительно хотите удалить эту книжную полку?" -#: cps/admin.py:614 +#: cps/admin.py:617 #, fuzzy msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Вы действительно хотите удалить эту книжную полку?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "" -#: cps/admin.py:620 +#: cps/admin.py:623 #, fuzzy msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Вы действительно хотите удалить эту книжную полку?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "" -#: cps/admin.py:625 +#: cps/admin.py:628 #, fuzzy msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Вы действительно хотите удалить эту книжную полку?" -#: cps/admin.py:627 +#: cps/admin.py:630 #, fuzzy msgid "Are you sure you want to change Calibre library location?" msgstr "Вы действительно хотите остановить Calibre-Web?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Запретить" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "Разрешить" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json не настроен для веб-приложения" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "Неправильное расположение файла журнала, пожалуйста, введите правильный путь." -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "Недопустимое расположение файла журнала доступа, пожалуйста, введите правильный путь" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "Пожалуйста, введите провайдера LDAP, порт, DN и идентификатор объекта пользователя" -#: cps/admin.py:1199 +#: cps/admin.py:1202 #, fuzzy msgid "Please Enter a LDAP Service Account and Password" msgstr "Пожалуйста, введите действительное имя пользователя для сброса пароля" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "Фильтр объектов группы LDAP должен иметь один идентификатор формата \"%s\"" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "Фильтр объектов группы LDAP имеет незавершённые круглые скобки" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "Фильтр объектов пользователя LDAP должен иметь один идентификатор формата \"%s\"" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "Фильтр объектов пользователя LDAP имеет незавершенную круглую скобку" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Добавить нового пользователя" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "Изменить настройки SMTP" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "" -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Произошла ошибка при отправке тестового письма на: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Пожалуйста, сначала настройте свой адрес электронной почты ..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "Настройки E-mail сервера обновлены" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Неизвестная ошибка. Попробуйте позже." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Изменить пользователя %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "Пароль для пользователя %(user)s сброшен" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Пожалуйста, сперва настройте параметры SMTP....." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Просмотр лога" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Проверка обновлений" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Загрузка обновлений" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Распаковка обновлений" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Замена файлов" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Соединения с базой данных закрыты" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Остановка сервера" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Обновления установлены, нажмите ок и перезагрузите страницу" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Ошибка обновления:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "Ошибка HTTP" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Ошибка соединения" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Тайм-аут при установлении соединения" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Общая ошибка" -#: cps/admin.py:1527 +#: cps/admin.py:1530 #, fuzzy msgid "Update file could not be saved in temp dir" msgstr "Не удалось сохранить файл обновления во временной папке." -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "" -#: cps/admin.py:1552 +#: cps/admin.py:1555 #, fuzzy msgid "Failed to extract at least One LDAP User" msgstr "Не удалось создать хотя бы одного пользователя LDAP" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Не удалось создать хотя бы одного пользователя LDAP" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Ошибка: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Ошибка: ни одного пользователя не найдено в ответ на запрос сервер LDAP" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "По крайней мере, один пользователь LDAP не найден в базе данных" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "Расположение Базы Данных неверно, пожалуйста, введите правильный путь." -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "Расположение ключевого файла неверно, пожалуйста, введите правильный путь" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "Расположение Certfile не является действительным, пожалуйста, введите правильный путь" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 #, fuzzy msgid "Database Settings updated" msgstr "Настройки E-mail сервера обновлены" -#: cps/admin.py:1876 +#: cps/admin.py:1879 #, fuzzy msgid "Database Configuration" msgstr "Дополнительный Настройки" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Пожалуйста, заполните все поля!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "E-mail не из существующей доменной зоны" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Добавить пользователя" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Пользователь '%(user)s' добавлен" -#: cps/admin.py:1923 +#: cps/admin.py:1926 #, fuzzy msgid "Oops! An account already exists for this Email. or name." msgstr "Для этого адреса электронной почты или логина уже есть учётная запись." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Пользователь '%(nick)s' удалён" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Это последний администратор, невозможно удалить пользователя" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Пользователь '%(nick)s' обновлён" @@ -543,110 +543,110 @@ msgstr "" msgid "None" msgstr "Нет" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Невозможно открыть книгу. Файл не существует или недоступен" -#: cps/editbooks.py:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Метаданные обновлены" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "Файл %(file)s загружен" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Исходный или целевой формат для конвертирования отсутствует" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Книга успешно поставлена в очередь для конвертирования в %(book_format)s" -#: cps/editbooks.py:332 +#: cps/editbooks.py:341 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Произошла ошибка при конвертирования этой книги: %(res)s" -#: cps/editbooks.py:639 +#: cps/editbooks.py:648 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Загруженная книга, вероятно, существует в библиотеке, перед тем как загрузить новую, рассмотрите возможность изменения: " -#: cps/editbooks.py:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s не допустимый язык" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Запрещена загрузка файлов с расширением '%(ext)s'" -#: cps/editbooks.py:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "Загружаемый файл должен иметь расширение" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Файл %(filename)s не удалось сохранить во временную папку" -#: cps/editbooks.py:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "изменить метаданные" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Ошибка при создании пути %(path)s (Доступ запрещён)." -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Не удалось сохранить файл %(file)s." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Формат файла %(ext)s добавлен в %(book)s" @@ -915,7 +915,7 @@ msgstr "" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Логин" @@ -1004,7 +1004,7 @@ msgstr "Показывать выбор категории" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Серии" @@ -1034,7 +1034,7 @@ msgid "Show Publisher Section" msgstr "Показать выбор издателя" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Языки" @@ -1079,10 +1079,10 @@ msgstr "" msgid "Show Books List" msgstr "" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Поиск" @@ -1106,14 +1106,14 @@ msgstr "Рейтинг >= %(rating)s" #: cps/search.py:221 #, python-format -msgid "Read Status = %(status)s" +msgid "Read Status = '%(status)s'" msgstr "" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Расширенный поиск" @@ -1354,109 +1354,109 @@ msgstr "Список рейтингов" msgid "File formats list" msgstr "Список форматов файлов" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Пожалуйста, сперва настройте параметры SMTP....." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Книга успешно поставлена в очередь для отправки на %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "При отправке этой книги произошла ошибка: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Пожалуйста, сначала настройте e-mail на вашем kindle..." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Зарегистрироваться" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "Сервер электронной почты не настроен, обратитесь к администратору !" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Ваш e-mail не подходит для регистрации" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "Письмо с подтверждением отправлено вам на e-mail." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "Не удается активировать LDAP аутентификацию" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "вы вошли как пользователь '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, fuzzy, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "Резервный вход в систему как: '%(nickname)s', LDAP-сервер недоступен или пользователь не известен" -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "Не удалось войти: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Ошибка в имени пользователя или пароле" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "Новый пароль был отправлен на ваш адрес электронной почты" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Неизвестная ошибка. Попробуйте позже." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Пожалуйста, введите действительное имя пользователя для сброса пароля" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "вы вошли как пользователь '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "Профиль %(name)s's" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Профиль обновлён" -#: cps/web.py:1484 +#: cps/web.py:1491 #, fuzzy msgid "Oops! An account already exists for this Email." msgstr "Этот адрес электронной почты уже зарегистрирован." @@ -1890,7 +1890,7 @@ msgid "Author" msgstr "Автор" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Описание" @@ -1915,7 +1915,7 @@ msgstr "" msgid "Add Identifier" msgstr "" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Теги" @@ -1950,13 +1950,13 @@ msgstr "Издатель" msgid "Language" msgstr "Язык" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Да" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Нет" @@ -2831,7 +2831,7 @@ msgid "Books ordered by file formats" msgstr "Книги отсортированы по формату файла" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Полки" @@ -3244,44 +3244,52 @@ msgstr "Опубликовано от" msgid "Published Date To" msgstr "Опубликовано до" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Исключить теги" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Исключить серии" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 #, fuzzy msgid "Exclude Shelves" msgstr "Исключить серии" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Исключить языки" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Расширения" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Исключить расширения" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Рейтинг больше чем" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Рейтинг меньше чем" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "" diff --git a/cps/translations/sk/LC_MESSAGES/messages.mo b/cps/translations/sk/LC_MESSAGES/messages.mo index 2df05f9d..b4467aa7 100644 Binary files a/cps/translations/sk/LC_MESSAGES/messages.mo and b/cps/translations/sk/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/sk/LC_MESSAGES/messages.po b/cps/translations/sk/LC_MESSAGES/messages.po index e3be3025..a183e00f 100644 --- a/cps/translations/sk/LC_MESSAGES/messages.po +++ b/cps/translations/sk/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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2023-11-01 06:12+0100\n" "Last-Translator: Branislav Hanáček \n" "Language: sk_SK\n" @@ -16,493 +16,493 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Štatistika" -#: cps/admin.py:146 +#: cps/admin.py:149 msgid "Server restarted, please reload page." msgstr "Server bol reštartovaný, znovu načítajte stránku." -#: cps/admin.py:148 +#: cps/admin.py:151 msgid "Performing Server shutdown, please close window." msgstr "Vypínam server, zavrite prosím okno." -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "Spojenie s databázovo bolo úspešne znovu naviazané" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Neznámy príkaz" -#: cps/admin.py:170 +#: cps/admin.py:173 msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "Úspech! Knihy boli zaradená do zálohovania metadát, skontrolujte si Úlohy na kontrolu" -#: cps/admin.py:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Neznámy" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Stránka správcu" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Základná konfigurácia" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Konfigurácia používateľského rozhrania" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "Upraviť používateľov" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Všetko" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Používateľ sa nenašiel" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "Zmazaných {} používateľov" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Zobraziť všetko" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "Chybne vytvorená žiadosť" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "Meno hosťa nie je možné zmeniť" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "Hosť nemôže mať túto rolu" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "Nezostáva žiadny správca, nie je možné odobrať rolu správcu" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "Hodnota musí byť pravda alebo nepravda" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "Neplatná rola" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "Hosť nemôže mať toto zobrazenie" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "Neplatné zobrazenie" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "Nastavenie jazyka pre hosťa sa určí automaticky a nie je možné ho nastaviť" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "Nebolo poskytnuté platné nastavenie jazyka" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "Nebolo poskytnuté platné jazykové nastavenie pre knihu" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "Parameter sa nenašiel" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "Neplatný stĺpec na čítanie" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "Neplatný stĺpec na obmedzenie" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Konfigurácia Calibre-Web bola aktualizovaná" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Naozaj chcete zmazať Kobo-žetón?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "Naozaj chcete zmazať túto doménu?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "Naozaj chcete zmazať tohot používateľa?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Naozaj chcete zmazať túto poličku?" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Naozaj chcete zmeniť nastavenia jazykov pre vybraných používateľov?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "Naozaj chcete zmeniť viditeľné jazkyky pre knihy pre vybraných používateľov?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "Naozaj chcete zmeniť vybrané role pre vybraných používateľov?" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Naozaj chcete zmeniť vybrané obmedzenia pre vybraných používateľov?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "Naozaj chcete zmeniť vybrané obmedzenia viditeľnosti pre vybraných používateľov?" -#: cps/admin.py:625 +#: cps/admin.py:628 msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Naozaj chcete zmeniť synchronizačné správanie sa police pre vybraných používateľov?" -#: cps/admin.py:627 +#: cps/admin.py:630 msgid "Are you sure you want to change Calibre library location?" msgstr "Naozaj chcete zmenit umiestnenie pre knižnicu Calibre?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "Calilbre-Web vyhľadá aktualizované obálky a aktualizuje ich náhľady, môže to chvíľu trvať?" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "Naozaj chcete zmazať synchronizačnú databázu Calibre-Web aby ste vynútili úplnú synchronizáciu s vašou Kobo čítačkou?" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Odmietnuť" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "Povoliť" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "Zmazalo sa {} synchronizačných položiek" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "Štítok sa nenašiel" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "Neplatná akcia" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json nie je nakonfiguraovaný pre webovú aplikáciu" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "Umiestnenie denníkového súboru je neplatné, zadajte prosím správnu cestu" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "Umiestnenie súbor denníka prístupov nie je platné, zadajte prosím správnu cestu" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "Zadajte prosím poskytovateľa LDAP, port, DN a identifikátor používateľa" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "Zadajte prosím konto a heslo pre LDAP službu" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "Zadajte prosím konto pre LDAP službu" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "Filter pre LDAP objekt skupiny potrebuje jeden \"%s\" formátový identifikátor" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "Filter pre LDAP objekt skupiny má nezhodu v zátvorkách" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "Filter pre LDAP objekt používateľa potrebuje jeden \"%s\" formátový identifikátor" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "Filter pre LDAP objekt používateľa má nezhodu v zátvorkách" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "Filter pre LDAP členstvo používateľa potrebuje jeden \"%s\" formátový identifikátor" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "Filter pre LDAP členstvo používateľa má nezhodu v zátvorkách" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "LDAP CA-certifikát, certifikát alebo umiestnenie kľúča nie je platné. Zadajte prosím správnu cestu" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Pridať nového používateľa" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "Upraviť nastavenie pre poštový server" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "Úspech! Gmail konto bolo verifikované." -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "Chyba databázy: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "Testovací e-mail bol zaradený na odoslanie na %(email)s, skontrolujte si výsledok v sekcii Úlohy" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Pri odosielaní testovacieho e-mailu sa vyskytla chyba: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Prosím, najskôr si nastavte e-mailovú adresu..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "Nastavenia poštového servera boli aktualizované" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "Upraviť nastavenia naplánovaných úloh" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "Bol uvedený neplatný čas spustenia" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "Bol uvedený neplatný doba behu" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "Nastavenia naplánovaných úloh boli aktualizované" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Vyskytla sa neočakávaná chyba. Prosím, skúste to opäť neskôr." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "Nie je možné zapisovať do databázy nastavení" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Upraviť používateľa %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, python-format msgid "Success! Password for user %(user)s reset" msgstr "Úspech! Heslo pre používateľa %(user)s bolo resetované" -#: cps/admin.py:1439 +#: cps/admin.py:1442 msgid "Oops! Please configure the SMTP mail settings." msgstr "Nastavte prosím poštový server." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Prezerač denníkového súboru" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Žiadosť o aktualizačný balík" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Sťahuje sa aktualizačný balík" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Rozbaľuje sa aktualizačný balík" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Nahradzujú sa súbory" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Spojenia s databázou sú uzavreté" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Zastavuje sa server" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Aktualizácia dokončená, stlačte prosím OK a znovu načítajte stránku" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Aktualizácia zlyhala:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "HTTP chyba" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Chyba spojenia" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Časový limit pre naviazanie spojenia vypršal" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Všeobecná chyba" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "Súbor aktualizácie nebolo možné uložiť do dočasného adresára" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "Nebolo možné nahradiť súbory počas aktualizácie" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "Extrakcia minimálne jedného LDAP používateľa zlyhala" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Vytvorenie minimálne jedného LDAP používateľa zlyhalo" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Chyba: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Chyba: Odpoveď LDAP servera neobsahuje žiadneho používateľa" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "Minimálne jeden LDAP používateľ sa nenachádza v databáze" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "Používateľ bol naimportovaný" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "Umiestnenie databáze nie je platné, zadajte prosím správnu cestu" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "Do databázy nie je možné zapisovať" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "Umiestnenie súboru s kľúčmi nie je platné, zadajte prosím správnu cestu" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "Umiestnenie súboru s certifikátmi nie je platné, zadajte prosím správnu cestu" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "Heslo musí byť dlhé 1 až 40 znakov" -#: cps/admin.py:1868 +#: cps/admin.py:1871 msgid "Database Settings updated" msgstr "Nastavenia databáze boli aktualizované" -#: cps/admin.py:1876 +#: cps/admin.py:1879 msgid "Database Configuration" msgstr "Konfigurácia databázy" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Vyplňte prosím všetky polia." -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "E-mail nie je z platnej domény" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Pridať nového používateľa" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Používateľ '%(user)s' bol vytvorený" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "Účet s týmto menom alebo e-mailovou adresou už existuje." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Používateľ '%(nick)s' bol zmazaný" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "Nie je možné zmazať používateľa Hosť" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Nezostáva žiadny používateľ, nie je možné odobrať rolu správcu" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "E-mailová adresa nemôže byť prázdna a musí byť platná" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Používateľ '%(nick)s' bol aktualizovaný" @@ -527,110 +527,110 @@ msgstr "Používateľom definovaný stĺpec č. %(column)d v Calibre databáze n msgid "None" msgstr "Žiadne" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Vybraná kniha nie je dostupná. Súbor neexistuje alebo sa k nemu nedá pristupovať" -#: cps/editbooks.py:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "Používateľ nemá práva nahrať obálku knihy" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "Identifikátory nerozlišujú malé a veľké písmená, prepisuje sa starý identifikátor" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Metadáta boli úspešne aktualizované" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "Chyba pri úprave knihy: {}" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "Súbor %(file)s bol nahraný" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Chýba zdrojový alebo cieľový formát pre prevod" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Kniha bola úspešne zaradená na prevod do %(book_format)s" -#: cps/editbooks.py:332 +#: cps/editbooks.py:341 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Vyskytla sa chyba pri prevode tejto knihy: %(res)s" -#: cps/editbooks.py:639 +#: cps/editbooks.py:648 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Nahrávaná kniha pravdepodobne existuje v knižnici, zvážte zmenu pred nahraním novej: " -#: cps/editbooks.py:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "'%(langname)s' nie je platný jazyk" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Prípona súboru '%(ext)s' nemôže byť nahraná na tento server" -#: cps/editbooks.py:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "Súbor ktorý sa má nahrať musí mať príponu" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Súbor %(filename)s nebolo možné uložiť do dočasného adresára" -#: cps/editbooks.py:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "Zlyhal presun súboru obalky %(file)s: %(error)s" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "Kniha s formátom bola úspešne zmazaná" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "Kniha bola úspešne zmazaná" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "Nemáte oprávnenia na mazanie kníh" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "upraviť metadáta" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s nie je platné číslo, preskakuje sa" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "Používateľ nemá práva na nahranie dodatočných súborových formátov" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Nebolo možné vytvoriť cestu %(path)s (Povolenie zamietnuté)." -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Zlyhalo uloženie súboru: %(file)s." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Súborový formát %(ext)s bol pridaný k %(book)s" @@ -893,7 +893,7 @@ msgstr "{} Hviezdičiek" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Prihlásiť sa" @@ -980,7 +980,7 @@ msgstr "Zobraziť časť Kategórie" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Série" @@ -1007,7 +1007,7 @@ msgid "Show Publisher Section" msgstr "Zobraziť časť vydavatelia" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Jazyky" @@ -1048,10 +1048,10 @@ msgstr "Zoznam kníh" msgid "Show Books List" msgstr "Zobraziť zoznam kníh" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Hľadať" @@ -1074,15 +1074,15 @@ msgid "Rating >= %(rating)s" msgstr "Hodnotenie >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "Status čítania = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "Chyba pri čítaní používateľom definovaných stĺpcov, reštartujte prosím Calibre-Web" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Rozšírené hľadanie" @@ -1320,101 +1320,101 @@ msgstr "Zoznam hodnotení" msgid "File formats list" msgstr "Zoznam súborových formátov" -#: cps/web.py:1226 +#: cps/web.py:1233 msgid "Please configure the SMTP mail settings first..." msgstr "Najskôr nastavte poštový server, prosím..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Úspech! Kniha bola zaradená na odoslanie do %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Vyskytla sa chyba pri posielaní knihy: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Nastavte vo vašom profile platnú e-mailovú adresu pre vašu čítačku." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "Počkajte, prosím minútku pred registráciou ďalšieho používateľa" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Registrovať" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "Poštový server nie je nastavený, kontaktujte prosím správcu." -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Vaša e-mailová adresa nie je povolená." -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "Úspech! Potvrdzujúci e-mail bol odoslaný." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 msgid "Cannot activate LDAP authentication" msgstr "Nie je možné aktivovať LDAP autentifikáciu" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "Počkajte, prosím minútku pred opätovným prihlásením" -#: cps/web.py:1369 +#: cps/web.py:1376 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "ste prihlásený ako: '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "Záložné prihlásenie ako: '%(nickname)s', LDAP server je nedostupný alebo používateľ je neznámy" -#: cps/web.py:1381 +#: cps/web.py:1388 #, python-format msgid "Could not login: %(message)s" msgstr "Nemôžem prihlásiť: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 msgid "Wrong Username or Password" msgstr "Nesprávne používateľské meno alebo heslo" -#: cps/web.py:1392 +#: cps/web.py:1399 msgid "New Password was send to your email address" msgstr "Na vašu e-mailovú adresu bolo odoslané nové heslo" -#: cps/web.py:1396 +#: cps/web.py:1403 msgid "An unknown error occurred. Please try again later." msgstr "Vyskytla sa neočakávaná chyba. Prosím, skúste to opäť neskôr." -#: cps/web.py:1398 +#: cps/web.py:1405 msgid "Please enter valid username to reset password" msgstr "Na resetovanie hesla zadajte platné používateľské meno" -#: cps/web.py:1406 +#: cps/web.py:1413 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Teraz ste prihlásený ako: '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "Profil pre %(name)s" -#: cps/web.py:1480 +#: cps/web.py:1487 msgid "Success! Profile Updated" msgstr "Úspech! Profil bol aktualizovaný" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "Účet s touto e-mailovou adresou už existuje." @@ -1844,7 +1844,7 @@ 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 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Popis" @@ -1869,7 +1869,7 @@ msgstr "Odstrániť" msgid "Add Identifier" msgstr "Pridať identifikátor" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Značka" @@ -1904,13 +1904,13 @@ msgstr "Vydavateľ" msgid "Language" msgstr "Jazyk" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Áno" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Nie" @@ -2773,7 +2773,7 @@ msgid "Books ordered by file formats" msgstr "Knihy usporiadané podľa súborových formátov" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Police" @@ -3178,43 +3178,51 @@ msgstr "Dátum vydania od" msgid "Published Date To" msgstr "Dátum vydania do" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Vylúčiť značky" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Vylúčiť série" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "Vylúčiť police" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Vylúčiť jazyky" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Rozšírenia" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Vylúčiť rozšírenia" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Hodnotenie lepšie ako" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Hodnotenie horšie ako" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "Od:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "Do:" diff --git a/cps/translations/sv/LC_MESSAGES/messages.mo b/cps/translations/sv/LC_MESSAGES/messages.mo index cc36e490..f5873c17 100644 Binary files a/cps/translations/sv/LC_MESSAGES/messages.mo and b/cps/translations/sv/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/sv/LC_MESSAGES/messages.po b/cps/translations/sv/LC_MESSAGES/messages.po index 7e2a3e8c..0510f7d6 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2021-05-13 11:00+0000\n" "Last-Translator: Jonatan Nyberg \n" "Language: sv\n" @@ -16,505 +16,505 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Statistik" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Server startas om, vänligen uppdatera sidan" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "Stänger servern, vänligen stäng fönstret" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Okänt kommando" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy 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:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Okänd" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Administrationssida" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Grundläggande konfiguration" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Användargränssnitt konfiguration" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "Redigera användare" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Alla" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Användaren hittades inte" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{} användare har tagits bort" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Visa alla" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "Felaktig begäran" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "Gästnamn kan inte ändras" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "Gäst kan inte ha den här rollen" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "Ingen administratörsanvändare kvar, kan inte ta bort administratörsrollen" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "Värdet måste vara sant eller falskt" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "Ogiltig roll" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "Gästen kan inte ha den här vyn" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "Ogiltig vy" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "Gästens språk bestäms automatiskt och kan inte ställas in" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "Inget giltigt språk anges" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "Inget giltigt bokspråk anges" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "Parameter hittades inte" -#: cps/admin.py:568 +#: cps/admin.py:571 #, fuzzy msgid "Invalid Read Column" msgstr "Ogiltig roll" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Calibre-Web konfiguration uppdaterad" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Vill du verkligen ta bort Kobo-token?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "Vill du verkligen ta bort den här domänen?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "Vill du verkligen ta bort den här användaren?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Är du säker på att du vill ta bort hyllan?" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Är du säker på att du vill ändra språk för valda användare?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "Är du säker på att du vill ändra synliga bokspråk för valda användare?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "Är du säker på att du vill ändra den valda rollen för de valda användarna?" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Är du säker på att du vill ändra de valda begränsningarna för de valda användarna?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "Är du säker på att du vill ändra de valda synlighetsbegränsningarna för de valda användarna?" -#: cps/admin.py:625 +#: cps/admin.py:628 #, fuzzy msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Är du säker på att du vill ändra den valda rollen för de valda användarna?" -#: cps/admin.py:627 +#: cps/admin.py:630 #, fuzzy msgid "Are you sure you want to change Calibre library location?" msgstr "Är du säker på att du vill stoppa Calibre-Web?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Förneka" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "Tillåt" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "Taggen hittades inte" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "Ogiltig åtgärd" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json är inte konfigurerad för webbapplikation" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "Loggfilens plats är inte giltig, vänligen ange rätt sökväg" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "Åtkomstloggplatsens plats är inte giltig, vänligen ange rätt sökväg" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "Vänligen ange en LDAP-leverantör, port, DN och användarobjektidentifierare" -#: cps/admin.py:1199 +#: cps/admin.py:1202 #, fuzzy msgid "Please Enter a LDAP Service Account and Password" msgstr "Ange giltigt användarnamn för att återställa lösenordet" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "LDAP-gruppobjektfilter måste ha en \"%s\"-formatidentifierare" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "LDAP-gruppobjektfilter har omatchande parentes" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP-användarobjektfilter måste ha en \"%s\"-formatidentifierare" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "LDAP-användarobjektfilter har omatchad parentes" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "Användarfilter för LDAP-medlemmar måste ha en \"%s\"-formatidentifierare" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "Användarfilter för LDAP-medlemmar har omatchad parentes" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "LDAP-certifikat, certifikat eller nyckelplats är inte giltigt, vänligen ange rätt sökväg" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Lägg till ny användare" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "Ändra SMTP-inställningar" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "Databasfel: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, 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:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Det gick inte att skicka Testmeddelandet: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Vänligen konfigurera din e-postadress först..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "E-postserverinställningar uppdaterade" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Ett okänt fel uppstod. Försök igen senare." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Redigera användaren %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "Lösenord för användaren %(user)s återställd" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Konfigurera SMTP-postinställningarna först..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Visaren för loggfil" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Begär uppdateringspaketet" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Hämtar uppdateringspaketet" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Packar upp uppdateringspaketet" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Ersätta filer" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Databasanslutningarna är stängda" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Stoppar server" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Uppdatering klar, tryck på okej och uppdatera sidan" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Uppdateringen misslyckades:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "HTTP-fel" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Anslutningsfel" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Tiden ute när du etablerade anslutning" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Allmänt fel" -#: cps/admin.py:1527 +#: cps/admin.py:1530 #, fuzzy msgid "Update file could not be saved in temp dir" msgstr "Uppdateringsfilen kunde inte sparas i Temp Dir" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "" -#: cps/admin.py:1552 +#: cps/admin.py:1555 #, fuzzy msgid "Failed to extract at least One LDAP User" msgstr "Det gick inte att skapa minst en LDAP-användare" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "Det gick inte att skapa minst en LDAP-användare" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "Fel: %(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "Fel: Ingen användare återges som svar på LDAP-servern" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "Minst en LDAP-användare hittades inte i databasen" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "{} användare har importerats" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "DB-plats är inte giltig, vänligen ange rätt sökväg" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "DB är inte skrivbar" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "Keyfile-platsen är inte giltig, vänligen ange rätt sökväg" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "Certfile-platsen är inte giltig, vänligen ange rätt sökväg" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 #, fuzzy msgid "Database Settings updated" msgstr "E-postserverinställningar uppdaterade" -#: cps/admin.py:1876 +#: cps/admin.py:1879 #, fuzzy msgid "Database Configuration" msgstr "Funktion konfiguration" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Fyll i alla fält!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "E-posten är inte från giltig domän" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Lägg till ny användare" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Användaren '%(user)s' skapad" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "Hittade ett befintligt konto för den här e-postadressen eller namnet." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Användaren '%(nick)s' borttagen" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "Det går inte att ta bort gästanvändaren" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Ingen adminstratörsanvändare kvar, kan inte ta bort användaren" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Användaren '%(nick)s' uppdaterad" @@ -539,110 +539,110 @@ msgstr "Anpassad kolumn n.%(column)d finns inte i calibre-databasen" msgid "None" msgstr "Ingen" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 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:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "Identifierare är inte skiftlägeskänsliga, skriver över gammal identifierare" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Metadata uppdaterades" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "Filen %(file)s uppladdad" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Källa eller målformat för konvertering saknas" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, 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:332 +#: cps/editbooks.py:341 #, 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:639 +#: cps/editbooks.py:648 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:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s är inte ett giltigt språk" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "Filen som ska laddas upp måste ha en ändelse" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, 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:764 +#: cps/editbooks.py:773 #, 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:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "Bokformat har tagits bort" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "Boken har tagits bort" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "redigera metadata" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, 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:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Det gick inte att lagra filen %(file)s." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Filformatet %(ext)s lades till %(book)s" @@ -913,7 +913,7 @@ msgstr "{} stjärnor" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Logga in" @@ -1002,7 +1002,7 @@ msgstr "Visa kategorival" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Serier" @@ -1032,7 +1032,7 @@ msgid "Show Publisher Section" msgstr "Visa urval av förlag" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Språk" @@ -1077,10 +1077,10 @@ msgstr "Boklista" msgid "Show Books List" msgstr "Visa boklista" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Sök" @@ -1103,15 +1103,15 @@ msgid "Rating >= %(rating)s" msgstr "Betyg >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "Lässtatus = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Avancerad sökning" @@ -1352,109 +1352,109 @@ msgstr "Betygslista" msgid "File formats list" msgstr "Lista över filformat" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Konfigurera SMTP-postinställningarna först..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "Boken är i kö för att skicka till %(eReadermail)s" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Det gick inte att skicka den här boken: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "Konfigurera din kindle-e-postadress först..." -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Registrera" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "E-postservern är inte konfigurerad, kontakta din administratör!" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Din e-post är inte tillåten att registrera" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "Bekräftelsemail skickades till ditt e-postkonto." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "Det går inte att aktivera LDAP-autentisering" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "du är nu inloggad som: \"%(nickname)s\"" -#: cps/web.py:1376 +#: cps/web.py:1383 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "Det gick inte att logga in: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Fel användarnamn eller lösenord" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "Nytt lösenord skickades till din e-postadress" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Ett okänt fel uppstod. Försök igen senare." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Ange giltigt användarnamn för att återställa lösenordet" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "du är nu inloggad som: \"%(nickname)s\"" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "%(name)ss profil" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Profilen uppdaterad" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "Hittade ett befintligt konto för den här e-postadressen" @@ -1888,7 +1888,7 @@ msgid "Author" msgstr "Författare" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Beskrivning" @@ -1913,7 +1913,7 @@ msgstr "Ta bort" msgid "Add Identifier" msgstr "Lägg till identifierare" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Taggar" @@ -1948,13 +1948,13 @@ msgstr "Förlag" msgid "Language" msgstr "Språk" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Ja" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Nej" @@ -2830,7 +2830,7 @@ msgid "Books ordered by file formats" msgstr "Böcker ordnade av filformat" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Hyllor" @@ -3242,43 +3242,51 @@ msgstr "Publiceringsdatum från" msgid "Published Date To" msgstr "Publiceringsdatum till" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Uteslut taggar" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Uteslut serier" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "Uteslut hyllor" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Uteslut språk" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Tillägg" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Uteslut tillägg" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Betyg större än" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Betyg mindre än" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "" diff --git a/cps/translations/tr/LC_MESSAGES/messages.mo b/cps/translations/tr/LC_MESSAGES/messages.mo index ed8f1706..ea6e63b0 100644 Binary files a/cps/translations/tr/LC_MESSAGES/messages.mo and b/cps/translations/tr/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/tr/LC_MESSAGES/messages.po b/cps/translations/tr/LC_MESSAGES/messages.po index 2d0bd8b8..5e4ea0ef 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2020-04-23 22:47+0300\n" "Last-Translator: iz \n" "Language: tr\n" @@ -16,502 +16,502 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "İstatistikler" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Sunucu yeniden başlatıldı, lütfen sayfayı yeniden yükleyin" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "Sunucu kapatıyor, lütfen pencereyi kapatın" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy 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:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Bilinmeyen" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Yönetim sayfası" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Temel Ayarlar" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Arayüz Ayarları" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Tümü" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Calibre-Web yapılandırması güncellendi" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "" -#: cps/admin.py:625 +#: cps/admin.py:628 msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "" -#: cps/admin.py:627 +#: cps/admin.py:630 msgid "Are you sure you want to change Calibre library location?" msgstr "" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:1199 +#: cps/admin.py:1202 #, fuzzy msgid "Please Enter a LDAP Service Account and Password" msgstr "Şifrenizi sıfırlayabilmek için lütfen geçerli bir kullanıcı adı giriniz" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "" -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Deneme e-postası gönderilirken bir hata oluştu: %(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "Lütfen önce e-posta adresinizi ayarlayın..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "E-posta sunucusu ayarları güncellendi" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Bilinmeyen bir hata oluştu. Lütfen daha sonra tekrar deneyiniz." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "%(nick)s kullanıcısını düzenle" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "%(user)s kullanıcısının şifresi sıfırlandı" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Lütfen önce SMTP e-posta ayarlarını ayarlayın..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "Log dosyası görüntüleyici" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Güncelleme paketi isteniyor" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Güncelleme paketi indiriliyor" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Güncelleme paketi ayıklanıyor" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Dosyalar değiştiriliyor" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Veritabanı bağlantıları kapalı" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Sunucu durduruyor" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Güncelleme tamamlandı, sayfayı yenilemek için lütfen Tamam'a tıklayınız" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Güncelleme başarısız:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "HTTP Hatası" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Bağlantı hatası" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "Bağlantı kurulmaya çalışırken zaman aşımına uğradı" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Genel hata" -#: cps/admin.py:1527 +#: cps/admin.py:1530 #, fuzzy msgid "Update file could not be saved in temp dir" msgstr "%(filename)s dosyası geçici dizine kaydedilemedi" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 #, fuzzy msgid "Database Settings updated" msgstr "E-posta sunucusu ayarları güncellendi" -#: cps/admin.py:1876 +#: cps/admin.py:1879 #, fuzzy msgid "Database Configuration" msgstr "Özellik Yapılandırması" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Lütfen tüm alanları doldurun!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "E-posta izin verilen bir servisten değil" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Yeni kullanıcı ekle" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "'%(user)s' kullanıcısı oluşturuldu" -#: cps/admin.py:1923 +#: cps/admin.py:1926 #, fuzzy msgid "Oops! An account already exists for this Email. or name." msgstr "Bu e-posta adresi veya kullanıcı adı için zaten bir hesap var." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Kullanıcı '%(nick)s' silindi" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "Başka yönetici kullanıcı olmadığından silinemedi" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "'%(nick)s' kullanıcısı güncellendi" @@ -536,110 +536,110 @@ msgstr "" msgid "None" msgstr "Hiçbiri" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "" -#: cps/editbooks.py:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Metaveri başarıyla güncellendi" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "%(file)s dosyası yüklendi" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 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:328 +#: cps/editbooks.py:337 #, 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:332 +#: cps/editbooks.py:341 #, 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:639 +#: cps/editbooks.py:648 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:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s geçerli bir dil değil" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, 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:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "Yüklenecek dosyanın mutlaka bir uzantısı olması gerekli" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "%(filename)s dosyası geçici dizine kaydedilemedi" -#: cps/editbooks.py:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "metaveri düzenle" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "%(path)s dizini oluşturulamadı. (İzin reddedildi)" -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "%(file)s dosyası kaydedilemedi." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "%(book)s kitabına %(ext)s dosya biçimi eklendi" @@ -907,7 +907,7 @@ msgstr "" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Giriş" @@ -996,7 +996,7 @@ msgstr "Kategori seçimini göster" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Seriler" @@ -1026,7 +1026,7 @@ msgid "Show Publisher Section" msgstr "Yayıncı seçimini göster" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Diller" @@ -1071,10 +1071,10 @@ msgstr "" msgid "Show Books List" msgstr "" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Ara" @@ -1098,14 +1098,14 @@ msgstr "Değerlendirme >= %(rating)s" #: cps/search.py:221 #, python-format -msgid "Read Status = %(status)s" +msgid "Read Status = '%(status)s'" msgstr "" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Gelişmiş Arama" @@ -1346,108 +1346,108 @@ msgstr "Değerlendirme listesi" msgid "File formats list" msgstr "Biçim listesi" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Lütfen önce SMTP e-posta ayarlarını ayarlayın..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "%(eReadermail)s'a gönderilmek üzere başarıyla sıraya alındı" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "" -#: cps/web.py:1238 +#: cps/web.py:1245 msgid "Oops! Please update your profile with a valid eReader Email." msgstr "" -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Kayıt ol" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "E-Posta sunucusu ayarlanmadı, lütfen yöneticinizle iletişime geçin!" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "E-posta adresinizle kaydolunmasına izin verilmiyor" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "Onay e-Postası hesabınıza gönderildi." -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "LDAP Kimlik Doğrulaması etkinleştirilemiyor" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "giriş yaptınız: '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1381 +#: cps/web.py:1388 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Yanlış Kullanıcı adı ya da Şifre" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "Yeni şifre e-Posta adresinize gönderildi" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Bilinmeyen bir hata oluştu. Lütfen daha sonra tekrar deneyiniz." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Şifrenizi sıfırlayabilmek için lütfen geçerli bir kullanıcı adı giriniz" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "giriş yaptınız: '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "%(name)s Profili" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Profil güncellendi" -#: cps/web.py:1484 +#: cps/web.py:1491 #, fuzzy msgid "Oops! An account already exists for this Email." msgstr "Bu e-posta adresi için bir hesap mevcut." @@ -1881,7 +1881,7 @@ msgid "Author" msgstr "Yazar" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Açıklama" @@ -1906,7 +1906,7 @@ msgstr "" msgid "Add Identifier" msgstr "" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Etiketler" @@ -1941,13 +1941,13 @@ msgstr "Yayınevi" msgid "Language" msgstr "Dil" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Evet" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Hayır" @@ -2818,7 +2818,7 @@ msgid "Books ordered by file formats" msgstr "Biçime göre sıralanmış eKitaplar" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "" @@ -3231,44 +3231,52 @@ msgstr "" msgid "Published Date To" msgstr "" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Etiketleri Hariç Tut" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Serileri Hariç Tut" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 #, fuzzy msgid "Exclude Shelves" msgstr "Serileri Hariç Tut" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Dilleri Hariç Tut" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Uzantılar" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "Uzantıları Hariç Tut" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "" diff --git a/cps/translations/uk/LC_MESSAGES/messages.mo b/cps/translations/uk/LC_MESSAGES/messages.mo index dd4ee367..a951b3b8 100644 Binary files a/cps/translations/uk/LC_MESSAGES/messages.mo and b/cps/translations/uk/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/uk/LC_MESSAGES/messages.po b/cps/translations/uk/LC_MESSAGES/messages.po index 4f02e99b..dc11c40a 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2017-04-30 00:47+0300\n" "Last-Translator: ABIS Team \n" "Language: uk\n" @@ -15,503 +15,503 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Статистика" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Сервер перезавантажено, будь-ласка, перезавантажте сторінку" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "Виконується зупинка серверу, будь-ласка, закрийте вікно" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Невідома команда" -#: cps/admin.py:170 +#: cps/admin.py:173 msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "" -#: cps/admin.py:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Невідомий" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Сторінка адміністратора" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Настройки сервера" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Конфігурація інтерфейсу" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 #, fuzzy msgid "Edit Users" msgstr "Керування сервером" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Всі" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Користувача не знайдено" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{} користувачі видалені успішно" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Показати всі" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "Не правильна роль" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Ви справді хочете видалити книжкову полицю?" -#: cps/admin.py:614 +#: cps/admin.py:617 #, fuzzy msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Ви справді хочете видалити книжкову полицю?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "" -#: cps/admin.py:620 +#: cps/admin.py:623 #, fuzzy msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Ви справді хочете видалити книжкову полицю?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "" -#: cps/admin.py:625 +#: cps/admin.py:628 #, fuzzy msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Ви справді хочете видалити книжкову полицю?" -#: cps/admin.py:627 +#: cps/admin.py:630 #, fuzzy msgid "Are you sure you want to change Calibre library location?" msgstr "Ви справді хочете видалити книжкову полицю?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Заборонити" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "Дозволити" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "Тег не знайдено" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "Змінити налаштування SMTP" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "" -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "" -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "" -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Змінити користувача %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, python-format msgid "Success! Password for user %(user)s reset" msgstr "" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "Будь-ласка, спочатку сконфігуруйте параметри SMTP" -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "Перевірка оновлень" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "Завантаження оновлень" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Розпакування оновлення" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "Заміна файлів" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "З'єднання з базою даних закрите" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Сервер зупиняється" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Оновлення встановлені, натисніть ok і перезавантажте сторінку" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Оновлення неуспішне:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "HTTP помилка" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Помилка зʼєднання" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Помилка" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 #, fuzzy msgid "Database Settings updated" msgstr "З'єднання з базою даних закрите" -#: cps/admin.py:1876 +#: cps/admin.py:1879 #, fuzzy msgid "Database Configuration" msgstr "Особливі налаштування" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Будь-ласка, заповніть всі поля!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Додати користувача" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Користувач '%(user)s' додан" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "" -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Користувача '%(nick)s' видалено" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Користувача '%(nick)s' оновлено" @@ -536,110 +536,110 @@ msgstr "" msgid "None" msgstr "Ні" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "Неможливо відкрити книгу. Файл не існує або немає доступу." -#: cps/editbooks.py:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "" -#: cps/editbooks.py:332 +#: cps/editbooks.py:341 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "" -#: cps/editbooks.py:639 +#: cps/editbooks.py:648 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "" -#: cps/editbooks.py:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "Завантажувальний файл повинен мати розширення" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "змінити метадані" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "" -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "" -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "" @@ -904,7 +904,7 @@ msgstr "{} зірок" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Ім'я користувача" @@ -993,7 +993,7 @@ msgstr "Показувати вибір категорії" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Серії" @@ -1023,7 +1023,7 @@ msgid "Show Publisher Section" msgstr "Показувати вибір серії" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Мови" @@ -1068,10 +1068,10 @@ msgstr "Список книжок" msgid "Show Books List" msgstr "" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Пошук" @@ -1095,14 +1095,14 @@ msgstr "Рейтинг >= %(rating)s" #: cps/search.py:221 #, python-format -msgid "Read Status = %(status)s" +msgid "Read Status = '%(status)s'" msgstr "" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Розширений пошук" @@ -1342,105 +1342,105 @@ msgstr "Список рейтингів" msgid "File formats list" msgstr "Список форматів файлу" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "Будь-ласка, спочатку сконфігуруйте параметри SMTP" -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "Помилка при відправці книги: %(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 msgid "Oops! Please update your profile with a valid eReader Email." msgstr "" -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Зареєструватись" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "" -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 msgid "Cannot activate LDAP authentication" msgstr "" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "Ви увійшли як користувач: '%(nickname)s'" -#: cps/web.py:1376 +#: cps/web.py:1383 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1381 +#: cps/web.py:1388 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Помилка в імені користувача або паролі" -#: cps/web.py:1392 +#: cps/web.py:1399 msgid "New Password was send to your email address" msgstr "" -#: cps/web.py:1396 +#: cps/web.py:1403 msgid "An unknown error occurred. Please try again later." msgstr "" -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Помилка в імені користувача або паролі" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Ви увійшли як користувач: '%(nickname)s'" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "Профіль %(name)s" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Профіль оновлено" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "" @@ -1873,7 +1873,7 @@ msgid "Author" msgstr "Автор" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Опис" @@ -1898,7 +1898,7 @@ msgstr "Видалити" msgid "Add Identifier" msgstr "Додати ідентифікатор" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Теги" @@ -1933,13 +1933,13 @@ msgstr "Видавець" msgid "Language" msgstr "Мова" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Так" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Ні" @@ -2809,7 +2809,7 @@ msgid "Books ordered by file formats" msgstr "" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "" @@ -3218,44 +3218,52 @@ msgstr "Дата публікації з" msgid "Published Date To" msgstr "Дата публікації до" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "Виключити теги" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "Виключити серії" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 #, fuzzy msgid "Exclude Shelves" msgstr "Виключити серії" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "Виключити мови" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "Розширення" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "Від:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "До:" diff --git a/cps/translations/vi/LC_MESSAGES/messages.mo b/cps/translations/vi/LC_MESSAGES/messages.mo index 55d290d7..5c9e3270 100644 Binary files a/cps/translations/vi/LC_MESSAGES/messages.mo and b/cps/translations/vi/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/vi/LC_MESSAGES/messages.po b/cps/translations/vi/LC_MESSAGES/messages.po index 9986d48d..59f95fb6 100644 --- a/cps/translations/vi/LC_MESSAGES/messages.po +++ b/cps/translations/vi/LC_MESSAGES/messages.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/calibre-web\n" -"POT-Creation-Date: 2023-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2022-09-20 21:36+0700\n" "Last-Translator: Ha Link \n" "Language: vi\n" @@ -13,496 +13,496 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "Thống kê" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "Máy chủ đã khởi động lại,hãy tải lại trang" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "Máy chủ đang được tắt, hãy đóng cửa sổ này" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "Lệnh không tồn tại" -#: cps/admin.py:170 +#: cps/admin.py:173 msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "" -#: cps/admin.py:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "Không rõ" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "Trang admin" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "Thiết lập cơ bản" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "Thiết lập UI" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "Chỉnh sửa người dùng" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "Tất cả" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "Không tìm thấy user" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "{} người dung đã đươc xoá thành công" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "Hiển thị tất cả" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "Yêu cầu không đúng định dạng" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "Tên người dung khách không thể thay đổi" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "Khách không thể mang vai trò này" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "Không còn người dùng quản trị, không thể xoá vai trò admin" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "Giá trị phải là true hoặc false" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "Vai trò không hợp lệ" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "Tài khoản khách không có màn hình này" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "View không hợp lệ" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "Ngôn ngữ của khách được xác định tự động và không thể đặt được" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "Địa chỉ cung cấp không hợp lệ" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "Ngôn ngữ sách không hợp lệ" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "Tham số không tồn tại" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "Cột đọc không hợp lệ" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "Cột bị hạn chế không hợp lệ" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Thiết lập Calibre-Web đã cập nhật" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "Bạn có thực sự muốn xóa Kobo Token không?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "Bạn có thực sự muốn xóa miền này không?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "Bạn có thực sự muốn xóa người dùng này không?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "Bạn có chắc chắn muốn xóa giá này không?" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "Bạn có chắc chắn muốn thay đổi ngôn ngữ của những người dùng đã chọn?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "Bạn có chắc chắn muốn thay đổi ngôn ngữ sách hiển thị cho (những) người dùng đã chọn không?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "Bạn có chắc chắn muốn thay đổi vai trò đã chọn cho (những) người dùng đã chọn không?" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "Bạn có chắc chắn muốn thay đổi những giới hạn đã chọn cho người dung?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "Bạn có chắc chắn muốn thay đổi các giới hạn hiển thị đã chọn cho (những) người dùng đã chọn không?" -#: cps/admin.py:625 +#: cps/admin.py:628 msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "Bạn có chắc chắn muốn thay đổi hành vi đồng bộ hóa giá cho (những) người dùng đã chọn không?" -#: cps/admin.py:627 +#: cps/admin.py:630 msgid "Are you sure you want to change Calibre library location?" msgstr "Bạn có chắc chắn muốn thay đổi vị trí thư viện Calibre không?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "Bạn có chắc chắn muốn xóa cơ sở dữ liệu đồng bộ của Calibre-Web để bắt buộc đồng bộ hóa hoàn toàn với Kobo Reader của mình không?" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "Từ chối" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "Cho phép" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "{} mục nhập đồng bộ hóa đã bị xóa" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "Tag không tồn tại" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "Hành động không hợp lệ" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "Vị trí tệp nhật ký không hợp lệ, vui lòng nhập đường dẫn chính xác" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "Thêm người dùng mới" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "Lỗi cơ sở dữ liệu: %(error)s." -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "" -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "" -#: cps/admin.py:1377 +#: cps/admin.py:1380 #, fuzzy msgid "Scheduled tasks settings updated" msgstr "Thiết lập cơ sở dữ lieu đã được cập nhật" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "Lỗi không xác định xảy ra. Xin hãy thử lại sau." -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "Chỉnh sửa người dùng %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, python-format msgid "Success! Password for user %(user)s reset" msgstr "" -#: cps/admin.py:1439 +#: cps/admin.py:1442 msgid "Oops! Please configure the SMTP mail settings." msgstr "" -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "Đang giải nén tệp cập nhật" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "They thế tập tin" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "Liên kết cơ sở dữ liệu đã được đóng" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "Đang dừng server" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "Cập nhật hoàn tất, ấn okay và tải lại trang" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "Cập nhật thất bại:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "Lỗi HTTP" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "Lỗi kết nối" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "Lỗi chung" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "File cập nhật không thể được lưu trong thư mục tạm thời" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 msgid "Database Settings updated" msgstr "Thiết lập cơ sở dữ lieu đã được cập nhật" -#: cps/admin.py:1876 +#: cps/admin.py:1879 msgid "Database Configuration" msgstr "Thiết lập cơ sở dữ lieu :)))" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "Hãy điền hết các trường!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "Địa chỉ email không hợp lệ" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "Thêm người dùng mới" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "Người dùng '%(user)s' đã được tạo" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "Người dùng với địa chỉ email hoặc tên đã tồn tại." -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "Người dùng '%(nick)s' đã bị xoá" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "Không thể xoá người dùng khách" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "Người dùng '%(nick)s' đã được cập nhật" @@ -527,110 +527,110 @@ msgstr "" msgid "None" msgstr "None" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "" -#: cps/editbooks.py:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "Metadata đã được cập nhật thành công" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "File %(file)s đã được tải lên" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "Thiếu định dạng nguồn hoặc đích để convert" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "" -#: cps/editbooks.py:332 +#: cps/editbooks.py:341 #, 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:639 +#: cps/editbooks.py:648 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, 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:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "" -#: cps/editbooks.py:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "" -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "Lưu file thất bại %(file)s." -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "" @@ -899,7 +899,7 @@ msgstr "{} sao" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "Đăng nhập" @@ -988,7 +988,7 @@ msgstr "Hiển thị chọn chủ đề" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "Series" @@ -1018,7 +1018,7 @@ msgid "Show Publisher Section" msgstr "Hiển thị chọn nhà phát hành" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "Ngôn ngữ" @@ -1063,10 +1063,10 @@ 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:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "Tìm kiếm" @@ -1089,15 +1089,15 @@ msgid "Rating >= %(rating)s" msgstr "Đánh giá >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "Trạng thái đọc = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "Tìm kiếm nâng cao" @@ -1337,106 +1337,106 @@ msgstr "Danh sách đánh giá" msgid "File formats list" msgstr "Danh sách định dạng file" -#: cps/web.py:1226 +#: cps/web.py:1233 msgid "Please configure the SMTP mail settings first..." msgstr "" -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "" -#: cps/web.py:1238 +#: cps/web.py:1245 msgid "Oops! Please update your profile with a valid eReader Email." msgstr "" -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "Đăng ký" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "Email của bạn không được cho phép để đăng ký" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "" -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 msgid "Cannot activate LDAP authentication" msgstr "" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "" -#: cps/web.py:1376 +#: cps/web.py:1383 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "Không thể đăng nhập: %(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "Tên đăng nhập hoặc mật khẩu không đúng" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "Mật khẩu mới đã được gửi đến email của bạn" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "Lỗi không xác định xảy ra. Xin hãy thử lại sau." -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "Tên đăng nhập hoặc mật khẩu không đúng" -#: cps/web.py:1406 +#: cps/web.py:1413 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "Metadata đã được cập nhật thành công" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "Tìm thấy một tài khoản đã toàn tại cho địa chỉ email này" @@ -1873,7 +1873,7 @@ msgid "Author" msgstr "Tác giả" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "Mô tả" @@ -1898,7 +1898,7 @@ msgstr "Xoá" msgid "Add Identifier" msgstr "Thêm nhận diện" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "Đánh dấu" @@ -1933,13 +1933,13 @@ msgstr "Nhà xuất bản" msgid "Language" msgstr "Ngôn ngữ" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "Có" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "Không" @@ -2808,7 +2808,7 @@ msgid "Books ordered by file formats" msgstr "Sách sắp xếp theo định dạng" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "Giá sách" @@ -3215,43 +3215,51 @@ msgstr "Ngày phát hành từ" msgid "Published Date To" msgstr "Ngày phát hành tới" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "Đánh giá cao hơn" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "Đánh giá thấp hơn" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "Từ:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "Tới:" diff --git a/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.mo b/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.mo index 16e99d0b..7309e7da 100644 Binary files a/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.mo and b/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.po b/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.po index 52135ddf..dff01166 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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2020-09-27 22:18+0800\n" "Last-Translator: xlivevil \n" "Language: zh_CN\n" @@ -16,493 +16,493 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "统计" -#: cps/admin.py:146 +#: cps/admin.py:149 msgid "Server restarted, please reload page." msgstr "服务器已重启,请刷新页面" -#: cps/admin.py:148 +#: cps/admin.py:151 msgid "Performing Server shutdown, please close window." msgstr "正在关闭服务器,请关闭窗口" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "数据库重新连接成功" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "未知命令" -#: cps/admin.py:170 +#: cps/admin.py:173 msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "成功!书籍已排队进行元数据备份,请检查任务列表以获取结果" -#: cps/admin.py:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "未知" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "管理页" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "基本配置" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "界面配置" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "管理用户" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "全部" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "找不到用户" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "成功删除 {} 个用户" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "显示全部" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "格式错误的请求" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "访客名称无法更改" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "游客无法拥有此角色" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "没有其余管理员账户,无法删除管理员角色" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "值必须为 true 或 false" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "无效角色" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "游客无法查看此页面" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "无效页面" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "无法设置游客的本地化,该项设置的值将自动检测" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "无可用本地化" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "无有效书籍语言" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "参数未找到" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "无效的阅读栏目" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "无效的限制栏目" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Calibre-Web 配置已更新" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "您确定删除 Kobo 令牌吗?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "您确定要删除此域吗?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "您确定要删除此用户吗?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "您确定要删除此书架吗?" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "您确定要修改选定用户的本地化设置吗?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "您确定要修改选定用户的可见书籍语言吗?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "您确定要修改选定用户的选定角色吗?" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "您确定要修改选定用户的选定限制吗?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "您确定要修改选定用户的选定可视化限制吗?" -#: cps/admin.py:625 +#: cps/admin.py:628 msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "您确定要更改所选用户的书架同步行为吗?" -#: cps/admin.py:627 +#: cps/admin.py:630 msgid "Are you sure you want to change Calibre library location?" msgstr "您确定要更改 Calibre 库位置吗?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "Calibre-Web 将搜索更新封面,并更新缩略图,这可能需要一段时间" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "您确定要删除 Calibre-Web 的同步数据库以强制与您的 Kobo Reader 进行完全同步吗" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "拒绝" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "允许" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "{} 同步项目被删除" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "标签未找到" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "无效的动作" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json 未为 Web 应用程序配置" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "日志文件路径无效,请输入正确的路径" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "访问日志路径无效,请输入正确的路径" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "请输入 LDAP 主机、端口、DN 和用户对象标识符" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "请输入一个 LDAP 服务账号和密码 " -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "请输入一个 LDAP 服务账号" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "LDAP 组对象过滤器需要一个具有“%s”格式标识符" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "LDAP 组对象过滤器的括号不匹配" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP 用户对象过滤器需要一个具有“%s”格式标识符" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "LDAP 用户对象过滤器的括号不匹配" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP 成员用户过滤器需要有一个“%s”格式标识符" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "LDAP 成员用户过滤器中有不匹配的括号" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "LDAP CA证书、证书或密钥位置无效,请输入正确的路径" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "添加新用户" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "编辑邮件服务器设置" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "Gmail 账户验证成功" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "数据库错误:%(error)s" -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "发送给 %(email)s 的测试邮件已加入队列。请检查任务结果" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "发送测试邮件时出错:%(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "请先配置您的邮箱地址..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "邮件服务器设置已更新" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "编辑计划任务设置" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "指定任务的开始时间无效" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "指定任务的持续时间无效" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "已更新计划任务设置" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "发生一个未知错误,请稍后再试" -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "设置数据库不可写" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "编辑用户 %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, python-format msgid "Success! Password for user %(user)s reset" msgstr "用户 %(user)s 的密码已重置" -#: cps/admin.py:1439 +#: cps/admin.py:1442 msgid "Oops! Please configure the SMTP mail settings." msgstr "请先配置 SMTP 邮箱设置..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "日志文件查看器" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "正在请求更新包" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "正在下载更新包" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "正在解压更新包" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "正在替换文件" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "数据库连接已关闭" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "正在停止服务器" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "更新完成,请点击确定并刷新页面" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "更新失败:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "HTTP 错误" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "连接错误" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "建立连接超时" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "一般错误" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "更新文件无法保存在临时目录中" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "更新期间无法替换文件" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "未能获得任何 LDAP 用户" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "未能创建任何 LDAP 用户" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "错误:%(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "错误:在 LDAP 服务器的响应中没有返回用户" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "数据库中没有找到任何 LDAP 用户" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "{} 用户被成功导入" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "数据库路径无效,请输入正确的路径" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "数据库不可写入" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "密钥文件路径无效,请输入正确的路径" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "证书文件路径无效,请输入正确的路径" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "密码长度必须在1到40之间" -#: cps/admin.py:1868 +#: cps/admin.py:1871 msgid "Database Settings updated" msgstr "数据库设置已更新" -#: cps/admin.py:1876 +#: cps/admin.py:1879 msgid "Database Configuration" msgstr "数据库配置" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "请填写所有字段!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "邮箱不在有效域中" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "添加新用户" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "用户“%(user)s”已创建" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "使用此邮箱或用户名的账号已经存在" -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "用户“%(nick)s”已删除" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "无法删除游客用户" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "管理员账户不存在,无法删除用户" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "电子邮件地址不能为空,并且必须是有效的电子邮件" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "用户“%(nick)s”已更新" @@ -527,110 +527,110 @@ msgstr "自定义列号:%(column)d 在 Calibre 数据库中不存在" msgid "None" msgstr "无" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "糟糕!选择书名无法打开。文件不存在或者文件不可访问" -#: cps/editbooks.py:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "用户没有权限上传封面" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "标识符不区分大小写,覆盖旧标识符" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "已成功更新元数据" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "编辑书籍时出错: {}" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "文件 %(file)s 已上传" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "转换的源格式或目的格式缺失" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "书籍已经被成功加入 %(book_format)s 格式转换队列" -#: cps/editbooks.py:332 +#: cps/editbooks.py:341 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "转换此书籍时出现错误: %(res)s" -#: cps/editbooks.py:639 +#: cps/editbooks.py:648 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "上传的书籍可能已经存在,建议修改后重新上传: " -#: cps/editbooks.py:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "'%(langname)s' 不是一种有效语言" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "不能上传文件扩展名为“%(ext)s”的文件到此服务器" -#: cps/editbooks.py:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "要上传的文件必须具有扩展名" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "文件 %(filename)s 无法保存到临时目录" -#: cps/editbooks.py:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "移动封面文件失败 %(file)s:%(error)s" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "书籍的此格式副本已成功删除" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "书籍已成功删除" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "您没有删除书籍的权限" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "编辑元数据" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s 不是一个有效的数值,忽略" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "用户没有权限上传其他文件格式" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "创建路径 %(path)s 失败 (权限不足)" -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "保存文件 %(file)s 失败" -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "已添加 %(ext)s 格式到 %(book)s" @@ -893,7 +893,7 @@ msgstr "{} 星" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "登录" @@ -980,7 +980,7 @@ msgstr "显示分类栏目" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "丛书" @@ -1007,7 +1007,7 @@ msgid "Show Publisher Section" msgstr "显示出版社栏目" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "语言" @@ -1048,10 +1048,10 @@ msgstr "书籍列表" msgid "Show Books List" msgstr "显示书籍列表" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "搜索" @@ -1074,15 +1074,15 @@ msgid "Rating >= %(rating)s" msgstr "评分 >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "阅读状态 = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "搜索自定义栏目时出错,请重启 Calibre-Web" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "高级搜索" @@ -1320,101 +1320,101 @@ msgstr "评分列表" msgid "File formats list" msgstr "文件格式列表" -#: cps/web.py:1226 +#: cps/web.py:1233 msgid "Please configure the SMTP mail settings first..." msgstr "请先配置 SMTP 邮箱设置..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "书籍已经成功加入 %(eReadermail)s 的发送队列" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "糟糕!发送这本书籍的时候出现错误:%(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 msgid "Oops! Please update your profile with a valid eReader Email." msgstr "请先配置您的 Kindle 邮箱" -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "请等待一分钟注册下一个用户" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "注册" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "邮件服务未配置,请联系网站管理员!" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "您的电子邮件不允许注册" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "确认邮件已经发送到您的邮箱" -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 msgid "Cannot activate LDAP authentication" msgstr "无法激活 LDAP 认证" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "下次登录前请等待一分钟" -#: cps/web.py:1369 +#: cps/web.py:1376 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "您现在已以“%(nickname)s”身份登录" -#: cps/web.py:1376 +#: cps/web.py:1383 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "后备登录“%(nickname)s”:无法访问 LDAP 服务器,或用户未知" -#: cps/web.py:1381 +#: cps/web.py:1388 #, python-format msgid "Could not login: %(message)s" msgstr "无法登录:%(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 msgid "Wrong Username or Password" msgstr "用户名或密码错误" -#: cps/web.py:1392 +#: cps/web.py:1399 msgid "New Password was send to your email address" msgstr "新密码已发送到您的邮箱" -#: cps/web.py:1396 +#: cps/web.py:1403 msgid "An unknown error occurred. Please try again later." msgstr "发生一个未知错误,请稍后再试" -#: cps/web.py:1398 +#: cps/web.py:1405 msgid "Please enter valid username to reset password" msgstr "请输入有效的用户名进行密码重置" -#: cps/web.py:1406 +#: cps/web.py:1413 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "您现在已以“%(nickname)s”身份登录" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "%(name)s 的用户配置" -#: cps/web.py:1480 +#: cps/web.py:1487 msgid "Success! Profile Updated" msgstr "资料已更新" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "使用此邮箱的账号已经存在" @@ -1844,7 +1844,7 @@ msgid "Author" msgstr "作者" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "简介" @@ -1869,7 +1869,7 @@ msgstr "移除" msgid "Add Identifier" msgstr "添加书号" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "标签" @@ -1904,13 +1904,13 @@ msgstr "出版社" msgid "Language" msgstr "语言" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "确认" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "没有" @@ -2773,7 +2773,7 @@ msgid "Books ordered by file formats" msgstr "书籍按文件格式排序" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "书架列表" @@ -3178,43 +3178,51 @@ msgstr "出版日期从" msgid "Published Date To" msgstr "出版日期到" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "排除标签" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "排除丛书" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "排除书架" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "排除语言" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "扩展名" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "排除扩展名" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "评分大于" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "评分小于" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "从:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "到:" diff --git a/cps/translations/zh_Hant_TW/LC_MESSAGES/messages.mo b/cps/translations/zh_Hant_TW/LC_MESSAGES/messages.mo index 45c9740b..6c2ef935 100644 Binary files a/cps/translations/zh_Hant_TW/LC_MESSAGES/messages.mo and b/cps/translations/zh_Hant_TW/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/zh_Hant_TW/LC_MESSAGES/messages.po b/cps/translations/zh_Hant_TW/LC_MESSAGES/messages.po index b2de1559..7c340a9b 100644 --- a/cps/translations/zh_Hant_TW/LC_MESSAGES/messages.po +++ b/cps/translations/zh_Hant_TW/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-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: 2020-09-27 22:18+0800\n" "Last-Translator: xlivevil \n" "Language: zh_TW\n" @@ -16,499 +16,499 @@ msgstr "" "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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "統計" -#: cps/admin.py:146 +#: cps/admin.py:149 #, fuzzy msgid "Server restarted, please reload page." msgstr "服務器已重啟,請刷新頁面" -#: cps/admin.py:148 +#: cps/admin.py:151 #, fuzzy msgid "Performing Server shutdown, please close window." msgstr "正在關閉服務器,請關閉窗口" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "未知命令" -#: cps/admin.py:170 +#: cps/admin.py:173 #, fuzzy msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "發送給%(email)s的測試郵件已進入隊列。請檢查任務結果" -#: cps/admin.py:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "未知" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "管理頁" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "基本配置" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "界面配置" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "管理用戶" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "全部" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "找不到用戶" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "成功刪除 {} 個用戶" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "顯示全部" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "格式錯誤的請求" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "訪客名稱無法更改" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "遊客無法擁有此角色" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "管理員賬戶不存在,無法刪除管理員角色" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "值必須是 true 或 false" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "無效角色" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "遊客無法擁有此視圖" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "無效視圖" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "訪客的本地化是自動偵測而無法設置的" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "無可用本地化" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "無有效書籍語言" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "參數未找到" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "無效的閱讀列" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "無效的限制列" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "Calibre-Web配置已更新" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "您確定刪除Kobo Token嗎?" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "您確定要刪除此網域嗎?" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "您確定要刪除此用戶嗎?" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "您確定要刪除此書架嗎?" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "您確定要修改選定用戶的本地化設置嗎?" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "您確定要修改選定用戶的可見書籍語言嗎?" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "您確定要修改選定用戶的選定角色嗎?" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "您確定要修改選定用戶的選定限制嗎?" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "您確定要修改選定用戶的選定可視化限制嗎?" -#: cps/admin.py:625 +#: cps/admin.py:628 msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "您確定要更改所選用戶的書架同步行為嗎?" -#: cps/admin.py:627 +#: cps/admin.py:630 msgid "Are you sure you want to change Calibre library location?" msgstr "您確定要更改 Calibre 庫位置嗎?" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "拒絕" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "允許" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "標籤未找到" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "無效的動作" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "client_secrets.json 未為 Web 應用程序配置" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "日誌文件路徑無效,請輸入正確的路徑" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "訪問日誌路徑無效,請輸入正確的路徑" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "請輸入LDAP主機、端口、DN和用戶對象標識符" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "請輸入一個LDAP服務賬號和密碼 " -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "請輸入一個LDAP服務賬號" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "LDAP群組對象過濾器需要一個具有“%s”格式標識符號" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "LDAP群組對象過濾器的括號不匹配" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP用戶對象過濾器需要一個具有“%s”格式標識符" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "LDAP用戶對象過濾器的括號不匹配" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "LDAP成員用戶過濾器需要有一個“%s”格式標識符號" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "LDAP成員用戶過濾器中有不匹配的括號" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "LDAP CA證書、證書或密鑰位置無效,請輸入正確的路徑" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "添加新用戶" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "編輯郵件服務器設置" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "數據庫錯誤:%(error)s。" -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "發送給%(email)s的測試郵件已進入隊列。請檢查任務結果" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "發送測試郵件時出錯:%(res)s" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "請先配置您的郵箱地址..." -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "郵件服務器設置已更新" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "發生一個未知錯誤,請稍後再試。" -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "編輯用戶 %(nick)s" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, fuzzy, python-format msgid "Success! Password for user %(user)s reset" msgstr "用戶 %(user)s 的密碼已重置" -#: cps/admin.py:1439 +#: cps/admin.py:1442 #, fuzzy msgid "Oops! Please configure the SMTP mail settings." msgstr "請先配置SMTP郵箱設置..." -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "日誌文件查看器" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "正在請求更新包" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "正在下載更新包" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "正在解壓更新包" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "正在替換文件" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "數據庫連接已關閉" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "正在停止服務器" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "更新完成,請點擊確定並刷新頁面" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "更新失敗:" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "HTTP錯誤" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "連接錯誤" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "建立連接超時" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "一般錯誤" -#: cps/admin.py:1527 +#: cps/admin.py:1530 #, fuzzy msgid "Update file could not be saved in temp dir" msgstr "更新文件無法保存在臨時目錄中" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "更新時檔案無法替換變更" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "未能提取至少一個LDAP用戶" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "未能創建至少一個LDAP用戶" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "錯誤:%(ldaperror)s" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "錯誤:在LDAP服務器的響應中沒有返回用戶" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "數據庫中沒有找到至少一個LDAP用戶" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "{} 用戶被成功導入" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "數據庫路徑無效,請輸入正確的路徑" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "數據庫不可寫入" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "密鑰文件路徑無效,請輸入正確的路徑" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "證書文件路徑無效,請輸入正確的路徑" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 #, fuzzy msgid "Database Settings updated" msgstr "郵件服務器設置已更新" -#: cps/admin.py:1876 +#: cps/admin.py:1879 msgid "Database Configuration" msgstr "數據庫配置" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "請填寫所有欄位!" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "郵箱不在有效網域中" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "添加新用戶" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "用戶“%(user)s”已創建" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "使用此郵箱或用戶名的賬號已經存在。" -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "用戶“%(nick)s”已刪除" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "無法刪除訪客用戶" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "管理員賬戶不存在,無法刪除用戶" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "用戶“%(nick)s”已更新" @@ -533,110 +533,110 @@ msgstr "自定義列號:%(column)d在Calibre數據庫中不存在" msgid "None" msgstr "無" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "糟糕!選擇書名無法打開。文件不存在或者文件不可訪問" -#: cps/editbooks.py:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "標識符不區分大小寫,覆蓋舊標識符" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "已成功更新元數據" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "文件 %(file)s 已上傳" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "轉換的來源或目的格式不存在" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "書籍已經被成功加入到 %(book_format)s 格式轉換隊列" -#: cps/editbooks.py:332 +#: cps/editbooks.py:341 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "轉換此書籍時出現錯誤: %(res)s" -#: cps/editbooks.py:639 +#: cps/editbooks.py:648 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "上傳的書籍可能已經存在,建議修改後重新上傳: " -#: cps/editbooks.py:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, fuzzy, python-format msgid "'%(langname)s' is not a valid language" msgstr "%(langname)s 不是一種有效語言" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "不能上傳文件附檔名為“%(ext)s”的文件到此服務器" -#: cps/editbooks.py:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "要上傳的文件必須具有附檔名" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "文件 %(filename)s 無法保存到臨時目錄" -#: cps/editbooks.py:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "移動封面文件失敗 %(file)s:%(error)s" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "書籍格式已成功刪除" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "書籍已成功刪除" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "編輯元數據" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "%(seriesindex)s 不是一個有效的數值,忽略" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "創建路徑 %(path)s 失敗(權限拒絕)。" -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "保存文件 %(file)s 失敗。" -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "已添加 %(ext)s 格式到 %(book)s" @@ -907,7 +907,7 @@ msgstr "{} 星" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "登入" @@ -996,7 +996,7 @@ msgstr "顯示分類選擇" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "叢書" @@ -1026,7 +1026,7 @@ msgid "Show Publisher Section" msgstr "顯示出版社選擇" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "語言" @@ -1071,10 +1071,10 @@ msgstr "書籍列表" msgid "Show Books List" msgstr "顯示書籍列表" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "搜尋" @@ -1097,15 +1097,15 @@ msgid "Rating >= %(rating)s" msgstr "評分 >= %(rating)s" #: cps/search.py:221 -#, python-format -msgid "Read Status = %(status)s" +#, fuzzy, python-format +msgid "Read Status = '%(status)s'" msgstr "閱讀狀態 = %(status)s" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "搜詢自定義欄位時出錯,請重啟 Calibre-Web" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "進階搜尋" @@ -1344,109 +1344,109 @@ msgstr "評分列表" msgid "File formats list" msgstr "文件格式列表" -#: cps/web.py:1226 +#: cps/web.py:1233 #, fuzzy msgid "Please configure the SMTP mail settings first..." msgstr "請先配置SMTP郵箱設置..." -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "書籍已經成功加入 %(eReadermail)s 的發送隊列" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "糟糕!發送這本書籍的時候出現錯誤:%(res)s" -#: cps/web.py:1238 +#: cps/web.py:1245 #, fuzzy msgid "Oops! Please update your profile with a valid eReader Email." msgstr "請先設置您的kindle郵箱。" -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "註冊" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "郵件服務未配置,請聯繫網站管理員!" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "您的電子郵件不允許註冊" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "確認郵件已經發送到您的郵箱。" -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 #, fuzzy msgid "Cannot activate LDAP authentication" msgstr "無法激活LDAP認證" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, fuzzy, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "您現在已以“%(nickname)s”身份登入" -#: cps/web.py:1376 +#: cps/web.py:1383 #, fuzzy, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "備援登入“%(nickname)s”:無法訪問LDAP伺服器,或用戶未知" -#: cps/web.py:1381 +#: cps/web.py:1388 #, fuzzy, python-format msgid "Could not login: %(message)s" msgstr "無法登入:%(message)s" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 #, fuzzy msgid "Wrong Username or Password" msgstr "用戶名或密碼錯誤" -#: cps/web.py:1392 +#: cps/web.py:1399 #, fuzzy msgid "New Password was send to your email address" msgstr "新密碼已發送到您的郵箱" -#: cps/web.py:1396 +#: cps/web.py:1403 #, fuzzy msgid "An unknown error occurred. Please try again later." msgstr "發生一個未知錯誤,請稍後再試。" -#: cps/web.py:1398 +#: cps/web.py:1405 #, fuzzy msgid "Please enter valid username to reset password" msgstr "請輸入有效的用戶名進行密碼重置" -#: cps/web.py:1406 +#: cps/web.py:1413 #, fuzzy, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "您現在已以“%(nickname)s”身份登入" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "%(name)s 的用戶配置" -#: cps/web.py:1480 +#: cps/web.py:1487 #, fuzzy msgid "Success! Profile Updated" msgstr "資料已更新" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "使用此郵箱的賬號已經存在。" @@ -1879,7 +1879,7 @@ msgid "Author" msgstr "作者" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "簡介" @@ -1904,7 +1904,7 @@ msgstr "移除" msgid "Add Identifier" msgstr "添加書號" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "標籤" @@ -1939,13 +1939,13 @@ msgstr "出版社" msgid "Language" msgstr "語言" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "確認" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "沒有" @@ -2819,7 +2819,7 @@ msgid "Books ordered by file formats" msgstr "書籍按文件格式排序" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "書架列表" @@ -3226,43 +3226,51 @@ msgstr "出版日期從" msgid "Published Date To" msgstr "出版日期到" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "排除標籤" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "排除叢書" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "排除書架" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "排除語言" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "擴展名" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "排除擴展名" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "評分大於" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "評分小於" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "從:" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "到:" diff --git a/cps/web.py b/cps/web.py index 6b26f29e..e1651012 100644 --- a/cps/web.py +++ b/cps/web.py @@ -1195,8 +1195,15 @@ def serve_book(book_id, book_format, anyname): rawdata = open(os.path.join(config.get_book_path(), book.path, data.name + "." + book_format), "rb").read() result = chardet.detect(rawdata) - return make_response( - rawdata.decode(result['encoding'], 'surrogatepass').encode('utf-8', 'surrogatepass')) + try: + text_data = rawdata.decode(result['encoding']).encode('utf-8') + except UnicodeDecodeError as e: + log.error("Encoding error in text file {}: {}".format(book.id, e)) + if "surrogate" in e.reason: + text_data = rawdata.decode(result['encoding'], 'surrogatepass').encode('utf-8', 'surrogatepass') + else: + text_data = rawdata.decode(result['encoding'], 'ignore').encode('utf-8', 'ignore') + return make_response(text_data) except FileNotFoundError: log.error("File Not Found") return "File Not Found" @@ -1347,21 +1354,21 @@ def login(): @limiter.limit("3/minute", key_func=lambda: request.form.get('username', "").strip().lower()) def login_post(): form = request.form.to_dict() + username = form.get('username', "").strip().lower().replace("\n","\\n").replace("\r","") try: limiter.check() except RateLimitExceeded: flash(_(u"Please wait one minute before next login"), category="error") - return render_login(form.get("username", ""), form.get("password", "")) + return render_login(username, form.get("password", "")) if current_user is not None and current_user.is_authenticated: return redirect(url_for('web.index')) if config.config_login_type == constants.LOGIN_LDAP and not services.ldap: log.error(u"Cannot activate LDAP authentication") flash(_(u"Cannot activate LDAP authentication"), category="error") - user = ub.session.query(ub.User).filter(func.lower(ub.User.name) == form.get('username', "").strip().lower()) \ - .first() + user = ub.session.query(ub.User).filter(func.lower(ub.User.name) == username).first() remember_me = bool(form.get('remember_me')) if config.config_login_type == constants.LOGIN_LDAP and services.ldap and user and form['password'] != "": - login_result, error = services.ldap.bind_user(form['username'], form['password']) + login_result, error = services.ldap.bind_user(username, form['password']) if login_result: log.debug(u"You are now logged in as: '{}'".format(user.name)) return handle_login_user(user, @@ -1381,7 +1388,7 @@ def login_post(): flash(_(u"Could not login: %(message)s", message=error), category="error") else: ip_address = request.headers.get('X-Forwarded-For', request.remote_addr) - log.warning('LDAP Login failed for user "%s" IP-address: %s', form['username'], ip_address) + log.warning('LDAP Login failed for user "%s" IP-address: %s', username, ip_address) flash(_(u"Wrong Username or Password"), category="error") else: ip_address = request.headers.get('X-Forwarded-For', request.remote_addr) @@ -1390,7 +1397,7 @@ def login_post(): ret, __ = reset_password(user.id) if ret == 1: flash(_(u"New Password was send to your email address"), category="info") - log.info('Password reset for user "%s" IP-address: %s', form['username'], ip_address) + log.info('Password reset for user "%s" IP-address: %s', username, ip_address) else: log.error(u"An unknown error occurred. Please try again later") flash(_(u"An unknown error occurred. Please try again later."), category="error") @@ -1406,9 +1413,9 @@ def login_post(): _(u"You are now logged in as: '%(nickname)s'", nickname=user.name), "success") else: - log.warning('Login failed for user "{}" IP-address: {}'.format(form['username'], ip_address)) + log.warning('Login failed for user "{}" IP-address: {}'.format(username, ip_address)) flash(_(u"Wrong Username or Password"), category="error") - return render_login(form.get("username", ""), form.get("password", "")) + return render_login(username, form.get("password", "")) @web.route('/logout') diff --git a/messages.pot b/messages.pot index 54bac15b..c683f205 100644 --- a/messages.pot +++ b/messages.pot @@ -8,500 +8,500 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-11-06 16:47+0100\n" +"POT-Creation-Date: 2023-12-21 13:31+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \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" +"Generated-By: Babel 2.13.1\n" #: cps/about.py:84 msgid "Statistics" msgstr "" -#: cps/admin.py:146 +#: cps/admin.py:149 msgid "Server restarted, please reload page." msgstr "" -#: cps/admin.py:148 +#: cps/admin.py:151 msgid "Performing Server shutdown, please close window." msgstr "" -#: cps/admin.py:156 +#: cps/admin.py:159 msgid "Success! Database Reconnected" msgstr "" -#: cps/admin.py:159 +#: cps/admin.py:162 msgid "Unknown command" msgstr "" -#: cps/admin.py:170 +#: cps/admin.py:173 msgid "Success! Books queued for Metadata Backup, please check Tasks for result" msgstr "" -#: cps/admin.py:203 cps/editbooks.py:578 cps/editbooks.py:580 -#: cps/editbooks.py:618 cps/editbooks.py:635 cps/editbooks.py:1244 +#: cps/admin.py:206 cps/editbooks.py:587 cps/editbooks.py:589 +#: cps/editbooks.py:627 cps/editbooks.py:644 cps/editbooks.py:1256 #: cps/updater.py:613 cps/uploader.py:93 cps/uploader.py:102 msgid "Unknown" msgstr "" -#: cps/admin.py:228 +#: cps/admin.py:231 msgid "Admin page" msgstr "" -#: cps/admin.py:248 +#: cps/admin.py:251 msgid "Basic Configuration" msgstr "" -#: cps/admin.py:286 +#: cps/admin.py:289 msgid "UI Configuration" msgstr "" -#: cps/admin.py:320 cps/templates/admin.html:51 +#: cps/admin.py:323 cps/templates/admin.html:51 msgid "Edit Users" msgstr "" -#: cps/admin.py:364 cps/opds.py:506 cps/templates/grid.html:14 +#: cps/admin.py:367 cps/opds.py:506 cps/templates/grid.html:14 #: cps/templates/list.html:13 msgid "All" msgstr "" -#: cps/admin.py:391 cps/admin.py:1402 +#: cps/admin.py:394 cps/admin.py:1405 msgid "User not found" msgstr "" -#: cps/admin.py:405 +#: cps/admin.py:408 msgid "{} users deleted successfully" msgstr "" -#: cps/admin.py:428 cps/templates/config_view_edit.html:133 +#: cps/admin.py:431 cps/templates/config_view_edit.html:133 #: cps/templates/user_edit.html:45 cps/templates/user_table.html:81 msgid "Show All" msgstr "" -#: cps/admin.py:449 cps/admin.py:455 +#: cps/admin.py:452 cps/admin.py:458 msgid "Malformed request" msgstr "" -#: cps/admin.py:467 cps/admin.py:2020 +#: cps/admin.py:470 cps/admin.py:2023 msgid "Guest Name can't be changed" msgstr "" -#: cps/admin.py:479 +#: cps/admin.py:482 msgid "Guest can't have this role" msgstr "" -#: cps/admin.py:491 cps/admin.py:1974 +#: cps/admin.py:494 cps/admin.py:1977 msgid "No admin user remaining, can't remove admin role" msgstr "" -#: cps/admin.py:495 cps/admin.py:509 +#: cps/admin.py:498 cps/admin.py:512 msgid "Value has to be true or false" msgstr "" -#: cps/admin.py:497 +#: cps/admin.py:500 msgid "Invalid role" msgstr "" -#: cps/admin.py:501 +#: cps/admin.py:504 msgid "Guest can't have this view" msgstr "" -#: cps/admin.py:511 +#: cps/admin.py:514 msgid "Invalid view" msgstr "" -#: cps/admin.py:514 +#: cps/admin.py:517 msgid "Guest's Locale is determined automatically and can't be set" msgstr "" -#: cps/admin.py:518 +#: cps/admin.py:521 msgid "No Valid Locale Given" msgstr "" -#: cps/admin.py:529 +#: cps/admin.py:532 msgid "No Valid Book Language Given" msgstr "" -#: cps/admin.py:531 cps/editbooks.py:444 +#: cps/admin.py:534 cps/editbooks.py:453 msgid "Parameter not found" msgstr "" -#: cps/admin.py:568 +#: cps/admin.py:571 msgid "Invalid Read Column" msgstr "" -#: cps/admin.py:574 +#: cps/admin.py:577 msgid "Invalid Restricted Column" msgstr "" -#: cps/admin.py:594 cps/admin.py:1845 +#: cps/admin.py:597 cps/admin.py:1848 msgid "Calibre-Web configuration updated" msgstr "" -#: cps/admin.py:606 +#: cps/admin.py:609 msgid "Do you really want to delete the Kobo Token?" msgstr "" -#: cps/admin.py:608 +#: cps/admin.py:611 msgid "Do you really want to delete this domain?" msgstr "" -#: cps/admin.py:610 +#: cps/admin.py:613 msgid "Do you really want to delete this user?" msgstr "" -#: cps/admin.py:612 +#: cps/admin.py:615 msgid "Are you sure you want to delete this shelf?" msgstr "" -#: cps/admin.py:614 +#: cps/admin.py:617 msgid "Are you sure you want to change locales of selected user(s)?" msgstr "" -#: cps/admin.py:616 +#: cps/admin.py:619 msgid "Are you sure you want to change visible book languages for selected user(s)?" msgstr "" -#: cps/admin.py:618 +#: cps/admin.py:621 msgid "Are you sure you want to change the selected role for the selected user(s)?" msgstr "" -#: cps/admin.py:620 +#: cps/admin.py:623 msgid "Are you sure you want to change the selected restrictions for the selected user(s)?" msgstr "" -#: cps/admin.py:622 +#: cps/admin.py:625 msgid "Are you sure you want to change the selected visibility restrictions for the selected user(s)?" msgstr "" -#: cps/admin.py:625 +#: cps/admin.py:628 msgid "Are you sure you want to change shelf sync behavior for the selected user(s)?" msgstr "" -#: cps/admin.py:627 +#: cps/admin.py:630 msgid "Are you sure you want to change Calibre library location?" msgstr "" -#: cps/admin.py:629 +#: cps/admin.py:632 msgid "Calibre-Web will search for updated Covers and update Cover Thumbnails, this may take a while?" msgstr "" -#: cps/admin.py:632 +#: cps/admin.py:635 msgid "Are you sure you want delete Calibre-Web's sync database to force a full sync with your Kobo Reader?" msgstr "" -#: cps/admin.py:875 cps/admin.py:881 cps/admin.py:891 cps/admin.py:901 +#: cps/admin.py:878 cps/admin.py:884 cps/admin.py:894 cps/admin.py:904 #: cps/templates/modal_dialogs.html:29 cps/templates/user_table.html:41 #: cps/templates/user_table.html:58 msgid "Deny" msgstr "" -#: cps/admin.py:877 cps/admin.py:883 cps/admin.py:893 cps/admin.py:903 +#: cps/admin.py:880 cps/admin.py:886 cps/admin.py:896 cps/admin.py:906 #: cps/templates/modal_dialogs.html:28 cps/templates/user_table.html:44 #: cps/templates/user_table.html:61 msgid "Allow" msgstr "" -#: cps/admin.py:918 +#: cps/admin.py:921 msgid "{} sync entries deleted" msgstr "" -#: cps/admin.py:966 +#: cps/admin.py:969 msgid "Tag not found" msgstr "" -#: cps/admin.py:978 +#: cps/admin.py:981 msgid "Invalid Action" msgstr "" -#: cps/admin.py:1108 +#: cps/admin.py:1111 msgid "client_secrets.json Is Not Configured For Web Application" msgstr "" -#: cps/admin.py:1153 +#: cps/admin.py:1156 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1159 +#: cps/admin.py:1162 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1193 +#: cps/admin.py:1196 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:1199 +#: cps/admin.py:1202 msgid "Please Enter a LDAP Service Account and Password" msgstr "" -#: cps/admin.py:1202 +#: cps/admin.py:1205 msgid "Please Enter a LDAP Service Account" msgstr "" -#: cps/admin.py:1207 +#: cps/admin.py:1210 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1209 +#: cps/admin.py:1212 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1213 +#: cps/admin.py:1216 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1215 +#: cps/admin.py:1218 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1222 +#: cps/admin.py:1225 #, python-format msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:1224 +#: cps/admin.py:1227 msgid "LDAP Member User Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:1231 +#: cps/admin.py:1234 msgid "LDAP CACertificate, Certificate or Key Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1262 cps/templates/admin.html:53 +#: cps/admin.py:1265 cps/templates/admin.html:53 msgid "Add New User" msgstr "" -#: cps/admin.py:1271 cps/templates/admin.html:100 +#: cps/admin.py:1274 cps/templates/admin.html:100 msgid "Edit Email Server Settings" msgstr "" -#: cps/admin.py:1290 +#: cps/admin.py:1293 msgid "Success! Gmail Account Verified." msgstr "" -#: cps/admin.py:1310 cps/admin.py:1313 cps/admin.py:1695 cps/admin.py:1829 -#: cps/admin.py:1927 cps/admin.py:2048 cps/editbooks.py:230 -#: cps/editbooks.py:306 cps/editbooks.py:1206 cps/shelf.py:82 cps/shelf.py:142 +#: cps/admin.py:1313 cps/admin.py:1316 cps/admin.py:1698 cps/admin.py:1832 +#: cps/admin.py:1930 cps/admin.py:2051 cps/editbooks.py:239 +#: cps/editbooks.py:315 cps/editbooks.py:1218 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:1489 +#: cps/shelf.py:460 cps/tasks/convert.py:136 cps/web.py:1496 #, python-format msgid "Oops! Database Error: %(error)s." msgstr "" -#: cps/admin.py:1320 +#: cps/admin.py:1323 #, python-format msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result" msgstr "" -#: cps/admin.py:1323 +#: cps/admin.py:1326 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "" -#: cps/admin.py:1325 +#: cps/admin.py:1328 msgid "Please configure your e-mail address first..." msgstr "" -#: cps/admin.py:1327 +#: cps/admin.py:1330 msgid "Email Server Settings updated" msgstr "" -#: cps/admin.py:1350 cps/templates/admin.html:195 +#: cps/admin.py:1353 cps/templates/admin.html:195 msgid "Edit Scheduled Tasks Settings" msgstr "" -#: cps/admin.py:1362 +#: cps/admin.py:1365 msgid "Invalid start time for task specified" msgstr "" -#: cps/admin.py:1367 +#: cps/admin.py:1370 msgid "Invalid duration for task specified" msgstr "" -#: cps/admin.py:1377 +#: cps/admin.py:1380 msgid "Scheduled tasks settings updated" msgstr "" -#: cps/admin.py:1387 cps/admin.py:1436 cps/admin.py:2044 cps/web.py:1289 +#: cps/admin.py:1390 cps/admin.py:1439 cps/admin.py:2047 cps/web.py:1296 msgid "Oops! An unknown error occurred. Please try again later." msgstr "" -#: cps/admin.py:1391 +#: cps/admin.py:1394 msgid "Settings DB is not Writeable" msgstr "" -#: cps/admin.py:1421 cps/admin.py:2036 +#: cps/admin.py:1424 cps/admin.py:2039 #, python-format msgid "Edit User %(nick)s" msgstr "" -#: cps/admin.py:1433 +#: cps/admin.py:1436 #, python-format msgid "Success! Password for user %(user)s reset" msgstr "" -#: cps/admin.py:1439 +#: cps/admin.py:1442 msgid "Oops! Please configure the SMTP mail settings." msgstr "" -#: cps/admin.py:1450 +#: cps/admin.py:1453 msgid "Logfile viewer" msgstr "" -#: cps/admin.py:1516 +#: cps/admin.py:1519 msgid "Requesting update package" msgstr "" -#: cps/admin.py:1517 +#: cps/admin.py:1520 msgid "Downloading update package" msgstr "" -#: cps/admin.py:1518 +#: cps/admin.py:1521 msgid "Unzipping update package" msgstr "" -#: cps/admin.py:1519 +#: cps/admin.py:1522 msgid "Replacing files" msgstr "" -#: cps/admin.py:1520 +#: cps/admin.py:1523 msgid "Database connections are closed" msgstr "" -#: cps/admin.py:1521 +#: cps/admin.py:1524 msgid "Stopping server" msgstr "" -#: cps/admin.py:1522 +#: cps/admin.py:1525 msgid "Update finished, please press okay and reload page" msgstr "" -#: cps/admin.py:1523 cps/admin.py:1524 cps/admin.py:1525 cps/admin.py:1526 -#: cps/admin.py:1527 cps/admin.py:1528 +#: cps/admin.py:1526 cps/admin.py:1527 cps/admin.py:1528 cps/admin.py:1529 +#: cps/admin.py:1530 cps/admin.py:1531 msgid "Update failed:" msgstr "" -#: cps/admin.py:1523 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 +#: cps/admin.py:1526 cps/updater.py:389 cps/updater.py:624 cps/updater.py:626 msgid "HTTP Error" msgstr "" -#: cps/admin.py:1524 cps/updater.py:391 cps/updater.py:628 +#: cps/admin.py:1527 cps/updater.py:391 cps/updater.py:628 msgid "Connection error" msgstr "" -#: cps/admin.py:1525 cps/updater.py:393 cps/updater.py:630 +#: cps/admin.py:1528 cps/updater.py:393 cps/updater.py:630 msgid "Timeout while establishing connection" msgstr "" -#: cps/admin.py:1526 cps/updater.py:395 cps/updater.py:632 +#: cps/admin.py:1529 cps/updater.py:395 cps/updater.py:632 msgid "General error" msgstr "" -#: cps/admin.py:1527 +#: cps/admin.py:1530 msgid "Update file could not be saved in temp dir" msgstr "" -#: cps/admin.py:1528 +#: cps/admin.py:1531 msgid "Files could not be replaced during update" msgstr "" -#: cps/admin.py:1552 +#: cps/admin.py:1555 msgid "Failed to extract at least One LDAP User" msgstr "" -#: cps/admin.py:1597 +#: cps/admin.py:1600 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/admin.py:1610 +#: cps/admin.py:1613 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/admin.py:1614 +#: cps/admin.py:1617 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/admin.py:1647 +#: cps/admin.py:1650 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/admin.py:1649 +#: cps/admin.py:1652 msgid "{} User Successfully Imported" msgstr "" -#: cps/admin.py:1707 +#: cps/admin.py:1710 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1727 +#: cps/admin.py:1730 msgid "DB is not Writeable" msgstr "" -#: cps/admin.py:1740 +#: cps/admin.py:1743 msgid "Keyfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1744 +#: cps/admin.py:1747 msgid "Certfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:1816 +#: cps/admin.py:1819 msgid "Password length has to be between 1 and 40" msgstr "" -#: cps/admin.py:1868 +#: cps/admin.py:1871 msgid "Database Settings updated" msgstr "" -#: cps/admin.py:1876 +#: cps/admin.py:1879 msgid "Database Configuration" msgstr "" -#: cps/admin.py:1891 cps/web.py:1263 +#: cps/admin.py:1894 cps/web.py:1270 msgid "Oops! Please complete all fields." msgstr "" -#: cps/admin.py:1900 +#: cps/admin.py:1903 msgid "E-mail is not from valid domain" msgstr "" -#: cps/admin.py:1906 +#: cps/admin.py:1909 msgid "Add new user" msgstr "" -#: cps/admin.py:1917 +#: cps/admin.py:1920 #, python-format msgid "User '%(user)s' created" msgstr "" -#: cps/admin.py:1923 +#: cps/admin.py:1926 msgid "Oops! An account already exists for this Email. or name." msgstr "" -#: cps/admin.py:1953 +#: cps/admin.py:1956 #, python-format msgid "User '%(nick)s' deleted" msgstr "" -#: cps/admin.py:1956 +#: cps/admin.py:1959 msgid "Can't delete Guest User" msgstr "" -#: cps/admin.py:1959 +#: cps/admin.py:1962 msgid "No admin user remaining, can't delete user" msgstr "" -#: cps/admin.py:2014 cps/web.py:1438 +#: cps/admin.py:2017 cps/web.py:1445 msgid "Email can't be empty and has to be a valid Email" msgstr "" -#: cps/admin.py:2040 +#: cps/admin.py:2043 #, python-format msgid "User '%(nick)s' updated" msgstr "" @@ -526,110 +526,110 @@ msgstr "" msgid "None" msgstr "" -#: cps/editbooks.py:111 cps/editbooks.py:899 cps/web.py:525 cps/web.py:1530 -#: cps/web.py:1574 cps/web.py:1619 +#: cps/editbooks.py:120 cps/editbooks.py:908 cps/web.py:525 cps/web.py:1537 +#: cps/web.py:1581 cps/web.py:1626 msgid "Oops! Selected book is unavailable. File does not exist or is not accessible" msgstr "" -#: cps/editbooks.py:155 cps/editbooks.py:1227 +#: cps/editbooks.py:164 cps/editbooks.py:1239 msgid "User has no rights to upload cover" msgstr "" -#: cps/editbooks.py:175 cps/editbooks.py:720 +#: cps/editbooks.py:184 cps/editbooks.py:729 msgid "Identifiers are not Case Sensitive, Overwriting Old Identifier" msgstr "" -#: cps/editbooks.py:217 +#: cps/editbooks.py:226 msgid "Metadata successfully updated" msgstr "" -#: cps/editbooks.py:235 +#: cps/editbooks.py:244 msgid "Error editing book: {}" msgstr "" -#: cps/editbooks.py:292 +#: cps/editbooks.py:301 #, python-format msgid "File %(file)s uploaded" msgstr "" -#: cps/editbooks.py:320 +#: cps/editbooks.py:329 msgid "Source or destination format for conversion missing" msgstr "" -#: cps/editbooks.py:328 +#: cps/editbooks.py:337 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "" -#: cps/editbooks.py:332 +#: cps/editbooks.py:341 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "" -#: cps/editbooks.py:639 +#: cps/editbooks.py:648 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:694 cps/editbooks.py:1019 +#: cps/editbooks.py:703 cps/editbooks.py:1031 #, python-format msgid "'%(langname)s' is not a valid language" msgstr "" -#: cps/editbooks.py:732 cps/editbooks.py:1167 +#: cps/editbooks.py:741 cps/editbooks.py:1179 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "" -#: cps/editbooks.py:736 cps/editbooks.py:1171 +#: cps/editbooks.py:745 cps/editbooks.py:1183 msgid "File to be uploaded must have an extension" msgstr "" -#: cps/editbooks.py:744 +#: cps/editbooks.py:753 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:764 +#: cps/editbooks.py:773 #, python-format msgid "Failed to Move Cover File %(file)s: %(error)s" msgstr "" -#: cps/editbooks.py:821 cps/editbooks.py:823 +#: cps/editbooks.py:830 cps/editbooks.py:832 msgid "Book Format Successfully Deleted" msgstr "" -#: cps/editbooks.py:830 cps/editbooks.py:832 +#: cps/editbooks.py:839 cps/editbooks.py:841 msgid "Book Successfully Deleted" msgstr "" -#: cps/editbooks.py:884 +#: cps/editbooks.py:893 msgid "You are missing permissions to delete books" msgstr "" -#: cps/editbooks.py:934 +#: cps/editbooks.py:943 msgid "edit metadata" msgstr "" -#: cps/editbooks.py:983 +#: cps/editbooks.py:992 #, python-format msgid "%(seriesindex)s is not a valid number, skipping" msgstr "" -#: cps/editbooks.py:1162 +#: cps/editbooks.py:1174 msgid "User has no rights to upload additional file formats" msgstr "" -#: cps/editbooks.py:1183 +#: cps/editbooks.py:1195 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "" -#: cps/editbooks.py:1188 +#: cps/editbooks.py:1200 #, python-format msgid "Failed to store file %(file)s." msgstr "" -#: cps/editbooks.py:1212 +#: cps/editbooks.py:1224 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "" @@ -892,7 +892,7 @@ msgstr "" #: 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:1326 +#: cps/templates/login.html:21 cps/web.py:1333 msgid "Login" msgstr "" @@ -979,7 +979,7 @@ msgstr "" #: cps/render_template.py:75 cps/templates/book_edit.html:91 #: cps/templates/book_table.html:68 cps/templates/index.xml:91 -#: cps/templates/search_form.html:69 cps/web.py:1009 cps/web.py:1021 +#: cps/templates/search_form.html:70 cps/web.py:1009 cps/web.py:1021 msgid "Series" msgstr "" @@ -1006,7 +1006,7 @@ msgid "Show Publisher Section" msgstr "" #: cps/render_template.py:85 cps/templates/book_table.html:70 -#: cps/templates/index.xml:98 cps/templates/search_form.html:107 +#: cps/templates/index.xml:98 cps/templates/search_form.html:108 #: cps/web.py:1091 msgid "Languages" msgstr "" @@ -1047,10 +1047,10 @@ msgstr "" msgid "Show Books List" msgstr "" -#: cps/search.py:48 cps/search.py:398 cps/templates/book_edit.html:236 +#: cps/search.py:48 cps/search.py:399 cps/templates/book_edit.html:236 #: cps/templates/feed.xml:34 cps/templates/index.xml:12 #: cps/templates/layout.html:46 cps/templates/layout.html:49 -#: cps/templates/search_form.html:226 +#: cps/templates/search_form.html:227 msgid "Search" msgstr "" @@ -1074,14 +1074,14 @@ msgstr "" #: cps/search.py:221 #, python-format -msgid "Read Status = %(status)s" +msgid "Read Status = '%(status)s'" msgstr "" -#: cps/search.py:323 +#: cps/search.py:324 msgid "Error on search for custom columns, please restart Calibre-Web" msgstr "" -#: cps/search.py:342 cps/search.py:374 cps/templates/layout.html:57 +#: cps/search.py:343 cps/search.py:375 cps/templates/layout.html:57 msgid "Advanced Search" msgstr "" @@ -1319,101 +1319,101 @@ msgstr "" msgid "File formats list" msgstr "" -#: cps/web.py:1226 +#: cps/web.py:1233 msgid "Please configure the SMTP mail settings first..." msgstr "" -#: cps/web.py:1233 +#: cps/web.py:1240 #, python-format msgid "Success! Book queued for sending to %(eReadermail)s" msgstr "" -#: cps/web.py:1236 +#: cps/web.py:1243 #, python-format msgid "Oops! There was an error sending book: %(res)s" msgstr "" -#: cps/web.py:1238 +#: cps/web.py:1245 msgid "Oops! Please update your profile with a valid eReader Email." msgstr "" -#: cps/web.py:1254 +#: cps/web.py:1261 msgid "Please wait one minute to register next user" msgstr "" #: cps/templates/layout.html:68 cps/templates/layout.html:102 -#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1255 -#: cps/web.py:1260 cps/web.py:1264 cps/web.py:1270 cps/web.py:1290 -#: cps/web.py:1294 cps/web.py:1307 cps/web.py:1310 +#: cps/templates/login.html:27 cps/templates/register.html:17 cps/web.py:1262 +#: cps/web.py:1267 cps/web.py:1271 cps/web.py:1277 cps/web.py:1297 +#: cps/web.py:1301 cps/web.py:1314 cps/web.py:1317 msgid "Register" msgstr "" -#: cps/web.py:1259 cps/web.py:1306 +#: cps/web.py:1266 cps/web.py:1313 msgid "Oops! Email server is not configured, please contact your administrator." msgstr "" -#: cps/web.py:1292 +#: cps/web.py:1299 msgid "Oops! Your Email is not allowed." msgstr "" -#: cps/web.py:1295 +#: cps/web.py:1302 msgid "Success! Confirmation Email has been sent." msgstr "" -#: cps/web.py:1341 cps/web.py:1359 +#: cps/web.py:1348 cps/web.py:1366 msgid "Cannot activate LDAP authentication" msgstr "" -#: cps/web.py:1353 +#: cps/web.py:1360 msgid "Please wait one minute before next login" msgstr "" -#: cps/web.py:1369 +#: cps/web.py:1376 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "" -#: cps/web.py:1376 +#: cps/web.py:1383 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1381 +#: cps/web.py:1388 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1385 cps/web.py:1410 +#: cps/web.py:1392 cps/web.py:1417 msgid "Wrong Username or Password" msgstr "" -#: cps/web.py:1392 +#: cps/web.py:1399 msgid "New Password was send to your email address" msgstr "" -#: cps/web.py:1396 +#: cps/web.py:1403 msgid "An unknown error occurred. Please try again later." msgstr "" -#: cps/web.py:1398 +#: cps/web.py:1405 msgid "Please enter valid username to reset password" msgstr "" -#: cps/web.py:1406 +#: cps/web.py:1413 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "" -#: cps/web.py:1464 cps/web.py:1514 +#: cps/web.py:1471 cps/web.py:1521 #, python-format msgid "%(name)s's Profile" msgstr "" -#: cps/web.py:1480 +#: cps/web.py:1487 msgid "Success! Profile Updated" msgstr "" -#: cps/web.py:1484 +#: cps/web.py:1491 msgid "Oops! An account already exists for this Email." msgstr "" @@ -1843,7 +1843,7 @@ msgid "Author" msgstr "" #: cps/templates/book_edit.html:68 cps/templates/book_edit.html:276 -#: cps/templates/book_edit.html:291 cps/templates/search_form.html:153 +#: cps/templates/book_edit.html:291 cps/templates/search_form.html:154 msgid "Description" msgstr "" @@ -1868,7 +1868,7 @@ msgstr "" msgid "Add Identifier" msgstr "" -#: cps/templates/book_edit.html:87 cps/templates/search_form.html:51 +#: cps/templates/book_edit.html:87 cps/templates/search_form.html:52 msgid "Tags" msgstr "" @@ -1903,13 +1903,13 @@ msgstr "" msgid "Language" msgstr "" -#: cps/templates/book_edit.html:136 cps/templates/search_form.html:45 -#: cps/templates/search_form.html:164 +#: cps/templates/book_edit.html:136 cps/templates/search_form.html:46 +#: cps/templates/search_form.html:165 msgid "Yes" msgstr "" -#: cps/templates/book_edit.html:137 cps/templates/search_form.html:46 -#: cps/templates/search_form.html:165 +#: cps/templates/book_edit.html:137 cps/templates/search_form.html:47 +#: cps/templates/search_form.html:166 msgid "No" msgstr "" @@ -2772,7 +2772,7 @@ msgid "Books ordered by file formats" msgstr "" #: cps/templates/index.xml:120 cps/templates/layout.html:152 -#: cps/templates/search_form.html:87 +#: cps/templates/search_form.html:88 msgid "Shelves" msgstr "" @@ -3177,43 +3177,51 @@ msgstr "" msgid "Published Date To" msgstr "" -#: cps/templates/search_form.html:59 +#: cps/templates/search_form.html:44 +msgid "Any" +msgstr "" + +#: cps/templates/search_form.html:45 +msgid "Empty" +msgstr "" + +#: cps/templates/search_form.html:60 msgid "Exclude Tags" msgstr "" -#: cps/templates/search_form.html:77 +#: cps/templates/search_form.html:78 msgid "Exclude Series" msgstr "" -#: cps/templates/search_form.html:95 +#: cps/templates/search_form.html:96 msgid "Exclude Shelves" msgstr "" -#: cps/templates/search_form.html:115 +#: cps/templates/search_form.html:116 msgid "Exclude Languages" msgstr "" -#: cps/templates/search_form.html:126 +#: cps/templates/search_form.html:127 msgid "Extensions" msgstr "" -#: cps/templates/search_form.html:134 +#: cps/templates/search_form.html:135 msgid "Exclude Extensions" msgstr "" -#: cps/templates/search_form.html:144 +#: cps/templates/search_form.html:145 msgid "Rating Above" msgstr "" -#: cps/templates/search_form.html:148 +#: cps/templates/search_form.html:149 msgid "Rating Below" msgstr "" -#: cps/templates/search_form.html:180 +#: cps/templates/search_form.html:181 msgid "From:" msgstr "" -#: cps/templates/search_form.html:190 +#: cps/templates/search_form.html:191 msgid "To:" msgstr "" diff --git a/optional-requirements.txt b/optional-requirements.txt index 6e82fd60..6763eaff 100644 --- a/optional-requirements.txt +++ b/optional-requirements.txt @@ -1,5 +1,5 @@ # GDrive Integration -google-api-python-client>=1.7.11,<2.98.0 +google-api-python-client>=1.7.11,<2.108.0 gevent>20.6.0,<24.0.0 greenlet>=0.4.17,<2.1.0 httplib2>=0.9.2,<0.23.0 @@ -13,7 +13,7 @@ rsa>=3.4.2,<4.10.0 # Gmail google-auth-oauthlib>=0.4.3,<1.1.0 -google-api-python-client>=1.7.11,<2.98.0 +google-api-python-client>=1.7.11,<2.108.0 # goodreads goodreads>=0.3.2,<0.4.0