From 2cc9e3bbca341c6dd7024c5d59463dfb81da7ac6 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 30 Dec 2021 20:14:49 -0800 Subject: [PATCH 1/6] Removes duplicates from all books view --- bookwyrm/views/shelf/shelf.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/bookwyrm/views/shelf/shelf.py b/bookwyrm/views/shelf/shelf.py index 34914d971..2ac1422f6 100644 --- a/bookwyrm/views/shelf/shelf.py +++ b/bookwyrm/views/shelf/shelf.py @@ -72,9 +72,16 @@ class Shelf(View): "start_date" ) + if shelf_identifier: + books = books.annotate( + shelved_date=F("shelfbook__shelved_date") + ) + else: + books = books.annotate( + shelved_date=F("updated_date") + ) books = books.annotate( rating=Subquery(reviews.values("rating")[:1]), - shelved_date=F("shelfbook__shelved_date"), start_date=Subquery(reading.values("start_date")[:1]), finish_date=Subquery(reading.values("finish_date")[:1]), author=Subquery( From 31be6de6653603dd8f77ef34dcb0394ab5a36938 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 30 Dec 2021 20:23:22 -0800 Subject: [PATCH 2/6] Python formatting --- bookwyrm/views/shelf/shelf.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/bookwyrm/views/shelf/shelf.py b/bookwyrm/views/shelf/shelf.py index 2ac1422f6..85d9e39f7 100644 --- a/bookwyrm/views/shelf/shelf.py +++ b/bookwyrm/views/shelf/shelf.py @@ -73,13 +73,9 @@ class Shelf(View): ) if shelf_identifier: - books = books.annotate( - shelved_date=F("shelfbook__shelved_date") - ) + books = books.annotate(shelved_date=F("shelfbook__shelved_date")) else: - books = books.annotate( - shelved_date=F("updated_date") - ) + books = books.annotate(shelved_date=F("updated_date")) books = books.annotate( rating=Subquery(reviews.values("rating")[:1]), start_date=Subquery(reading.values("start_date")[:1]), From 265fd1cb524fbdca9d81b8787288dfb30cbcfa95 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 1 Jan 2022 13:09:24 -0800 Subject: [PATCH 3/6] Default to hidden state for local storage visibility toggle --- bookwyrm/templates/feed/feed.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/templates/feed/feed.html b/bookwyrm/templates/feed/feed.html index 45d8f1ae9..cf8b1342f 100644 --- a/bookwyrm/templates/feed/feed.html +++ b/bookwyrm/templates/feed/feed.html @@ -73,7 +73,7 @@ {% endif %} {% if annual_summary_year and tab.key == 'home' %} -
+ From 93d59c33ffbf15618693f113536cc0a1fcb89054 Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Sun, 2 Jan 2022 13:09:40 +1100 Subject: [PATCH 4/6] only show own shelves in shelf_selector dropdown --- bookwyrm/templates/snippets/shelf_selector.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/bookwyrm/templates/snippets/shelf_selector.html b/bookwyrm/templates/snippets/shelf_selector.html index f96f48a89..9a3fd2ce9 100644 --- a/bookwyrm/templates/snippets/shelf_selector.html +++ b/bookwyrm/templates/snippets/shelf_selector.html @@ -63,16 +63,18 @@ {% endfor %} {% if shelf.identifier == 'all' %} -{% for shelved_in in book.shelves.all %} +{% for user_shelf in user_shelves %} +{% if user_shelf in book.shelves.all %} +{% endif %} {% endfor %} {% else %} From 5313b283dd3c834df419cfd60420035310a2608a Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sun, 2 Jan 2022 07:16:02 -0800 Subject: [PATCH 5/6] Adds comment --- bookwyrm/views/shelf/shelf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bookwyrm/views/shelf/shelf.py b/bookwyrm/views/shelf/shelf.py index 85d9e39f7..0662f302d 100644 --- a/bookwyrm/views/shelf/shelf.py +++ b/bookwyrm/views/shelf/shelf.py @@ -75,6 +75,7 @@ class Shelf(View): if shelf_identifier: books = books.annotate(shelved_date=F("shelfbook__shelved_date")) else: + # sorting by shelved date will cause duplicates in the "all books" view books = books.annotate(shelved_date=F("updated_date")) books = books.annotate( rating=Subquery(reviews.values("rating")[:1]), From dcd1fec6952b89682c9fba9777acee57b8c4555f Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sun, 2 Jan 2022 07:38:37 -0800 Subject: [PATCH 6/6] Updates locales --- locale/de_DE/LC_MESSAGES/django.mo | Bin 61093 -> 61093 bytes locale/de_DE/LC_MESSAGES/django.po | 168 ++++++------- locale/en_US/LC_MESSAGES/django.po | 179 +++++++------- locale/es_ES/LC_MESSAGES/django.mo | Bin 73893 -> 73898 bytes locale/es_ES/LC_MESSAGES/django.po | 170 ++++++------- locale/fr_FR/LC_MESSAGES/django.mo | Bin 75740 -> 75740 bytes locale/fr_FR/LC_MESSAGES/django.po | 168 ++++++------- locale/gl_ES/LC_MESSAGES/django.mo | Bin 72278 -> 72278 bytes locale/gl_ES/LC_MESSAGES/django.po | 168 ++++++------- locale/lt_LT/LC_MESSAGES/django.mo | Bin 70920 -> 75162 bytes locale/lt_LT/LC_MESSAGES/django.po | 242 +++++++++---------- locale/pt_BR/LC_MESSAGES/django.mo | Bin 72607 -> 72607 bytes locale/pt_BR/LC_MESSAGES/django.po | 168 ++++++------- locale/zh_Hans/LC_MESSAGES/django.mo | Bin 59040 -> 68387 bytes locale/zh_Hans/LC_MESSAGES/django.po | 346 +++++++++++++-------------- locale/zh_Hant/LC_MESSAGES/django.mo | Bin 37183 -> 37183 bytes locale/zh_Hant/LC_MESSAGES/django.po | 168 ++++++------- 17 files changed, 896 insertions(+), 881 deletions(-) diff --git a/locale/de_DE/LC_MESSAGES/django.mo b/locale/de_DE/LC_MESSAGES/django.mo index 7cf62013bb09fec06261af083e948ffa8f8334bc..e469183c47f9b8be58ca9f52b98a3bdbe453d11e 100644 GIT binary patch delta 22 ecmZ2_mwD-3<_+-^*o_So3=FJ{Hm6Onj{^W`vIs^1 delta 22 ecmZ2_mwD-3<_+-^*o`a{j0~*|H>XXoj{^W{5(rNK diff --git a/locale/de_DE/LC_MESSAGES/django.po b/locale/de_DE/LC_MESSAGES/django.po index a4a2d55f4..f35af1478 100644 --- a/locale/de_DE/LC_MESSAGES/django.po +++ b/locale/de_DE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-28 20:12+0000\n" -"PO-Revision-Date: 2021-12-28 21:17\n" +"POT-Creation-Date: 2021-12-29 21:32+0000\n" +"PO-Revision-Date: 2021-12-30 00:27\n" "Last-Translator: Mouse Reeve \n" "Language-Team: German\n" "Language: de\n" @@ -60,7 +60,7 @@ msgstr "Buchtitel" msgid "Rating" msgstr "Bewertung" -#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:110 +#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:121 msgid "Sort By" msgstr "Sortieren nach" @@ -144,7 +144,7 @@ msgstr "%(value)s ist keine gültige remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s ist kein gültiger Benutzer*inname" -#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:173 +#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:170 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "Benutzer*inname" @@ -268,7 +268,7 @@ msgid "Copy address" msgstr "" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:217 msgid "Copied!" msgstr "" @@ -519,7 +519,7 @@ msgstr "" #: bookwyrm/templates/book/readthrough.html:76 #: bookwyrm/templates/groups/form.html:24 #: bookwyrm/templates/lists/bookmark_button.html:15 -#: bookwyrm/templates/lists/form.html:75 +#: bookwyrm/templates/lists/form.html:124 #: bookwyrm/templates/preferences/edit_user.html:124 #: bookwyrm/templates/settings/announcements/announcement_form.html:76 #: bookwyrm/templates/settings/federation/edit_instance.html:82 @@ -641,7 +641,7 @@ msgstr "Themen" msgid "Places" msgstr "Orte" -#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:77 +#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:74 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 #: bookwyrm/templates/search/layout.html:25 #: bookwyrm/templates/search/layout.html:50 @@ -655,7 +655,7 @@ msgstr "Zur Liste hinzufügen" #: bookwyrm/templates/book/book.html:341 #: bookwyrm/templates/book/cover_modal.html:31 -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:195 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -939,8 +939,8 @@ msgstr "" #: bookwyrm/templates/components/modal.html:11 #: bookwyrm/templates/components/tooltip.html:7 #: bookwyrm/templates/feed/layout.html:71 -#: bookwyrm/templates/get_started/layout.html:20 -#: bookwyrm/templates/get_started/layout.html:53 +#: bookwyrm/templates/get_started/layout.html:25 +#: bookwyrm/templates/get_started/layout.html:58 #: bookwyrm/templates/search/book.html:49 #: bookwyrm/templates/snippets/announcement.html:18 msgid "Close" @@ -1016,7 +1016,7 @@ msgstr "Föderierte Gemeinschaft" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:103 +#: bookwyrm/templates/layout.html:100 msgid "Directory" msgstr "Verzeichnis" @@ -1136,7 +1136,7 @@ msgstr "%(username)s hat %(username)s" msgstr "Direktnachrichten mit %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:113 +#: bookwyrm/templates/layout.html:110 msgid "Direct Messages" msgstr "Direktnachrichten" @@ -1331,7 +1331,7 @@ msgstr "Du kannst dein Leseziel jederzeit auf deiner Profil msgid "Updates" msgstr "Updates" -#: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:105 msgid "Your Books" msgstr "Deine Bücher" @@ -1408,7 +1408,7 @@ msgid "What are you reading?" msgstr "Was liest du gerade?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:138 +#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:149 msgid "Search for a book" msgstr "Nach einem Buch suchen" @@ -1428,7 +1428,7 @@ msgstr "Du kannst Bücher hinzufügen, wenn du %(site_name)s benutzt." #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/groups/group.html:20 bookwyrm/templates/layout.html:53 -#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:153 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1444,12 +1444,12 @@ msgid "Popular on %(site_name)s" msgstr "Auf %(site_name)s beliebt" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:155 +#: bookwyrm/templates/lists/list.html:166 msgid "No books found" msgstr "Keine Bücher gefunden" #: bookwyrm/templates/get_started/books.html:63 -#: bookwyrm/templates/get_started/profile.html:51 +#: bookwyrm/templates/get_started/profile.html:64 msgid "Save & continue" msgstr "Speichern & fortfahren" @@ -1458,33 +1458,33 @@ msgstr "Speichern & fortfahren" msgid "Welcome" msgstr "Willkommen" -#: bookwyrm/templates/get_started/layout.html:15 +#: bookwyrm/templates/get_started/layout.html:20 #, python-format msgid "Welcome to %(site_name)s!" msgstr "Willkommen auf %(site_name)s!" -#: bookwyrm/templates/get_started/layout.html:17 +#: bookwyrm/templates/get_started/layout.html:22 msgid "These are some first steps to get you started." msgstr "Hier sind die ersten Schritte für den Einstieg." -#: bookwyrm/templates/get_started/layout.html:31 +#: bookwyrm/templates/get_started/layout.html:36 #: bookwyrm/templates/get_started/profile.html:6 msgid "Create your profile" msgstr "Profil erstellen" -#: bookwyrm/templates/get_started/layout.html:35 +#: bookwyrm/templates/get_started/layout.html:40 msgid "Add books" msgstr "Bücher hinzufügen" -#: bookwyrm/templates/get_started/layout.html:39 +#: bookwyrm/templates/get_started/layout.html:44 msgid "Find friends" msgstr "Freunde finden" -#: bookwyrm/templates/get_started/layout.html:45 +#: bookwyrm/templates/get_started/layout.html:50 msgid "Skip this step" msgstr "Schritt überspringen" -#: bookwyrm/templates/get_started/layout.html:49 +#: bookwyrm/templates/get_started/layout.html:54 msgid "Finish" msgstr "Fertigstellen" @@ -1493,29 +1493,29 @@ msgstr "Fertigstellen" msgid "Display name:" msgstr "Anzeigename:" -#: bookwyrm/templates/get_started/profile.html:21 +#: bookwyrm/templates/get_started/profile.html:29 #: bookwyrm/templates/preferences/edit_user.html:47 msgid "Summary:" msgstr "Zusammenfassung:" -#: bookwyrm/templates/get_started/profile.html:22 +#: bookwyrm/templates/get_started/profile.html:34 msgid "A little bit about you" msgstr "Einige Angaben zu dir" -#: bookwyrm/templates/get_started/profile.html:30 +#: bookwyrm/templates/get_started/profile.html:43 #: bookwyrm/templates/preferences/edit_user.html:27 msgid "Avatar:" msgstr "Avatar:" -#: bookwyrm/templates/get_started/profile.html:39 +#: bookwyrm/templates/get_started/profile.html:52 msgid "Manually approve followers:" msgstr "Follower*innen manuell bestätigen:" -#: bookwyrm/templates/get_started/profile.html:45 +#: bookwyrm/templates/get_started/profile.html:58 msgid "Show this account in suggested users:" msgstr "Dieses Benutzer*inkonto in vorgeschlagene Benutzer*innen einschließen:" -#: bookwyrm/templates/get_started/profile.html:49 +#: bookwyrm/templates/get_started/profile.html:62 msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Dein Benutzer*inkonto wird im Verzeichnis gezeigt und möglicherweise anderen Benutzer*innen vorgeschlagen." @@ -1907,7 +1907,7 @@ msgid "Login" msgstr "Anmeldung" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:181 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:178 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Anmelden" @@ -1916,7 +1916,7 @@ msgstr "Anmelden" msgid "Success! Email address confirmed." msgstr "Alles klar! E-Mail-Adresse bestätigt." -#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:172 +#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:169 #: bookwyrm/templates/ostatus/error.html:28 #: bookwyrm/templates/snippets/register_form.html:4 msgid "Username:" @@ -1924,12 +1924,12 @@ msgstr "Benutzer*inname:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:176 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:173 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:20 msgid "Password:" msgstr "Passwort:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:178 +#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:175 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Passwort vergessen?" @@ -1961,19 +1961,19 @@ msgstr "%(site_name)s-Suche" msgid "Search for a book, user, or list" msgstr "Nach einem Buch, einem*r Benutzer*in oder einer Liste suchen" -#: bookwyrm/templates/layout.html:63 bookwyrm/templates/layout.html:64 +#: bookwyrm/templates/layout.html:63 msgid "Main navigation menu" msgstr "Navigations-Hauptmenü" -#: bookwyrm/templates/layout.html:74 +#: bookwyrm/templates/layout.html:71 msgid "Feed" msgstr "Feed" -#: bookwyrm/templates/layout.html:118 +#: bookwyrm/templates/layout.html:115 msgid "Settings" msgstr "Einstellungen" -#: bookwyrm/templates/layout.html:127 +#: bookwyrm/templates/layout.html:124 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 #: bookwyrm/templates/settings/invites/manage_invites.html:3 #: bookwyrm/templates/settings/invites/manage_invites.html:15 @@ -1981,46 +1981,46 @@ msgstr "Einstellungen" msgid "Invites" msgstr "Einladungen" -#: bookwyrm/templates/layout.html:134 +#: bookwyrm/templates/layout.html:131 msgid "Admin" msgstr "Administration" -#: bookwyrm/templates/layout.html:141 +#: bookwyrm/templates/layout.html:138 msgid "Log out" msgstr "Abmelden" -#: bookwyrm/templates/layout.html:149 bookwyrm/templates/layout.html:150 +#: bookwyrm/templates/layout.html:146 bookwyrm/templates/layout.html:147 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "Benachrichtigungen" -#: bookwyrm/templates/layout.html:177 bookwyrm/templates/ostatus/error.html:33 +#: bookwyrm/templates/layout.html:174 bookwyrm/templates/ostatus/error.html:33 msgid "password" msgstr "Passwort" -#: bookwyrm/templates/layout.html:189 +#: bookwyrm/templates/layout.html:186 msgid "Join" msgstr "Beitreten" -#: bookwyrm/templates/layout.html:223 +#: bookwyrm/templates/layout.html:220 msgid "Successfully posted status" msgstr "Status veröffentlicht" -#: bookwyrm/templates/layout.html:224 +#: bookwyrm/templates/layout.html:221 msgid "Error posting status" msgstr "Fehler beim veröffentlichen des Status" -#: bookwyrm/templates/layout.html:240 +#: bookwyrm/templates/layout.html:237 msgid "Documentation" msgstr "Handbuch" -#: bookwyrm/templates/layout.html:247 +#: bookwyrm/templates/layout.html:244 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "%(site_name)s auf %(support_title)s unterstützen" -#: bookwyrm/templates/layout.html:251 +#: bookwyrm/templates/layout.html:248 msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." msgstr "BookWyrm ist open source Software. Du kannst dich auf GitHub beteiligen oder etwas melden." @@ -2096,56 +2096,56 @@ msgstr "Diese Liste ist momentan leer" msgid "List curation:" msgstr "Listenkuratierung:" -#: bookwyrm/templates/lists/form.html:22 +#: bookwyrm/templates/lists/form.html:31 msgid "Closed" msgstr "Geschlossen" -#: bookwyrm/templates/lists/form.html:23 +#: bookwyrm/templates/lists/form.html:34 msgid "Only you can add and remove books to this list" msgstr "Nur du kannst Bücher hinzufügen oder entfernen" -#: bookwyrm/templates/lists/form.html:27 +#: bookwyrm/templates/lists/form.html:48 msgid "Curated" msgstr "Kuratiert" -#: bookwyrm/templates/lists/form.html:28 +#: bookwyrm/templates/lists/form.html:51 msgid "Anyone can suggest books, subject to your approval" msgstr "Jede*r kann Bücher vorschlagen, du musst diese bestätigen" -#: bookwyrm/templates/lists/form.html:32 +#: bookwyrm/templates/lists/form.html:65 msgctxt "curation type" msgid "Open" msgstr "Offen" -#: bookwyrm/templates/lists/form.html:33 +#: bookwyrm/templates/lists/form.html:68 msgid "Anyone can add books to this list" msgstr "Jede*r kann Bücher hinzufügen" -#: bookwyrm/templates/lists/form.html:37 +#: bookwyrm/templates/lists/form.html:82 msgid "Group" msgstr "Gruppe" -#: bookwyrm/templates/lists/form.html:38 +#: bookwyrm/templates/lists/form.html:85 msgid "Group members can add to and remove from this list" msgstr "Gruppenmitglieder können Bücher zu dieser Liste hinzufügen und von dieser entfernen" -#: bookwyrm/templates/lists/form.html:41 +#: bookwyrm/templates/lists/form.html:90 msgid "Select Group" msgstr "Gruppe auswählen" -#: bookwyrm/templates/lists/form.html:45 +#: bookwyrm/templates/lists/form.html:94 msgid "Select a group" msgstr "Eine Gruppe auswählen" -#: bookwyrm/templates/lists/form.html:56 +#: bookwyrm/templates/lists/form.html:105 msgid "You don't have any Groups yet!" msgstr "Du hast noch keine Gruppen!" -#: bookwyrm/templates/lists/form.html:58 +#: bookwyrm/templates/lists/form.html:107 msgid "Create a Group" msgstr "Gruppe erstellen" -#: bookwyrm/templates/lists/form.html:81 +#: bookwyrm/templates/lists/form.html:130 msgid "Delete list" msgstr "Liste löschen" @@ -2162,62 +2162,62 @@ msgstr "Du hast ein Buch zu dieser Liste hinzugefügt!" msgid "Added by %(username)s" msgstr "Hinzugefügt von %(username)s" -#: bookwyrm/templates/lists/list.html:76 +#: bookwyrm/templates/lists/list.html:82 msgid "List position" msgstr "Listenposition" -#: bookwyrm/templates/lists/list.html:82 +#: bookwyrm/templates/lists/list.html:88 msgid "Set" msgstr "Übernehmen" -#: bookwyrm/templates/lists/list.html:92 +#: bookwyrm/templates/lists/list.html:103 #: bookwyrm/templates/snippets/remove_from_group_button.html:19 msgid "Remove" msgstr "Entfernen" -#: bookwyrm/templates/lists/list.html:106 -#: bookwyrm/templates/lists/list.html:123 +#: bookwyrm/templates/lists/list.html:117 +#: bookwyrm/templates/lists/list.html:134 msgid "Sort List" msgstr "Liste sortieren" -#: bookwyrm/templates/lists/list.html:116 +#: bookwyrm/templates/lists/list.html:127 msgid "Direction" msgstr "Reihenfolge" -#: bookwyrm/templates/lists/list.html:130 +#: bookwyrm/templates/lists/list.html:141 msgid "Add Books" msgstr "Bücher hinzufügen" -#: bookwyrm/templates/lists/list.html:132 +#: bookwyrm/templates/lists/list.html:143 msgid "Suggest Books" msgstr "Bücher vorschlagen" -#: bookwyrm/templates/lists/list.html:143 +#: bookwyrm/templates/lists/list.html:154 msgid "search" msgstr "suchen" -#: bookwyrm/templates/lists/list.html:149 +#: bookwyrm/templates/lists/list.html:160 msgid "Clear search" msgstr "Suche zurücksetzen" -#: bookwyrm/templates/lists/list.html:154 +#: bookwyrm/templates/lists/list.html:165 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "Keine passenden Bücher zu „%(query)s“ gefunden" -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:197 msgid "Suggest" msgstr "Vorschlagen" -#: bookwyrm/templates/lists/list.html:191 +#: bookwyrm/templates/lists/list.html:208 msgid "Embed this list on a website" msgstr "" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:216 msgid "Copy embed code" msgstr "" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:218 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "" @@ -2696,7 +2696,7 @@ msgstr "Zurück zur Liste" msgid "Edit Announcement" msgstr "Ankündigung bearbeiten" -#: bookwyrm/templates/settings/announcements/announcement.html:35 +#: bookwyrm/templates/settings/announcements/announcement.html:34 msgid "Visible:" msgstr "Sichtbar:" @@ -2708,19 +2708,19 @@ msgstr "Ja" msgid "False" msgstr "Nein" -#: bookwyrm/templates/settings/announcements/announcement.html:47 +#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/dashboard/dashboard.html:71 msgid "Start date:" msgstr "Startdatum:" -#: bookwyrm/templates/settings/announcements/announcement.html:54 +#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:77 msgid "End date:" msgstr "Enddatum:" -#: bookwyrm/templates/settings/announcements/announcement.html:60 +#: bookwyrm/templates/settings/announcements/announcement.html:55 #: bookwyrm/templates/settings/announcements/announcement_form.html:64 msgid "Active:" msgstr "Aktiv:" @@ -4283,7 +4283,7 @@ msgstr "%(title)s: %(subtitle)s" msgid "Not a valid csv file" msgstr "Keine gültige CSV-Datei" -#: bookwyrm/views/landing/login.py:69 +#: bookwyrm/views/landing/login.py:70 msgid "Username or password are incorrect" msgstr "Benutzer*inname oder Passwort falsch" diff --git a/locale/en_US/LC_MESSAGES/django.po b/locale/en_US/LC_MESSAGES/django.po index ccc82bf8e..6bd84ccbf 100644 --- a/locale/en_US/LC_MESSAGES/django.po +++ b/locale/en_US/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-29 21:32+0000\n" +"POT-Creation-Date: 2022-01-02 15:29+0000\n" "PO-Revision-Date: 2021-02-28 17:19-0800\n" "Last-Translator: Mouse Reeve \n" "Language-Team: English \n" @@ -61,7 +61,7 @@ msgstr "" msgid "Rating" msgstr "" -#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:121 +#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:134 msgid "Sort By" msgstr "" @@ -154,7 +154,7 @@ msgstr "" msgid "A user with that username already exists." msgstr "" -#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:244 +#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:268 msgid "Reviews" msgstr "" @@ -269,7 +269,7 @@ msgid "Copy address" msgstr "" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/lists/list.html:230 msgid "Copied!" msgstr "" @@ -410,18 +410,18 @@ msgstr "" #: bookwyrm/templates/author/author.html:88 #: bookwyrm/templates/author/sync_modal.html:5 -#: bookwyrm/templates/book/book.html:93 +#: bookwyrm/templates/book/book.html:117 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" msgstr "" #: bookwyrm/templates/author/author.html:92 -#: bookwyrm/templates/book/book.html:96 +#: bookwyrm/templates/book/book.html:120 msgid "View on OpenLibrary" msgstr "" #: bookwyrm/templates/author/author.html:106 -#: bookwyrm/templates/book/book.html:107 +#: bookwyrm/templates/book/book.html:131 msgid "View on Inventaire" msgstr "" @@ -515,12 +515,12 @@ msgid "ISNI:" msgstr "" #: bookwyrm/templates/author/edit_author.html:115 -#: bookwyrm/templates/book/book.html:157 +#: bookwyrm/templates/book/book.html:181 #: bookwyrm/templates/book/edit/edit_book.html:121 #: bookwyrm/templates/book/readthrough.html:76 #: bookwyrm/templates/groups/form.html:24 #: bookwyrm/templates/lists/bookmark_button.html:15 -#: bookwyrm/templates/lists/form.html:124 +#: bookwyrm/templates/lists/form.html:130 #: bookwyrm/templates/preferences/edit_user.html:124 #: bookwyrm/templates/settings/announcements/announcement_form.html:76 #: bookwyrm/templates/settings/federation/edit_instance.html:82 @@ -534,14 +534,14 @@ msgstr "" #: bookwyrm/templates/author/edit_author.html:116 #: bookwyrm/templates/author/sync_modal.html:26 -#: bookwyrm/templates/book/book.html:158 bookwyrm/templates/book/book.html:216 -#: bookwyrm/templates/book/cover_modal.html:32 +#: bookwyrm/templates/book/book.html:182 bookwyrm/templates/book/book.html:240 +#: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/book/edit/edit_book.html:123 #: bookwyrm/templates/book/edit/edit_book.html:126 #: bookwyrm/templates/book/readthrough.html:77 #: bookwyrm/templates/book/sync_modal.html:26 #: bookwyrm/templates/groups/delete_group_modal.html:17 -#: bookwyrm/templates/lists/delete_list_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/snippets/delete_readthrough_modal.html:17 #: bookwyrm/templates/snippets/report_modal.html:34 @@ -566,83 +566,87 @@ msgstr "" msgid "Edit Book" msgstr "" -#: bookwyrm/templates/book/book.html:73 -#: bookwyrm/templates/book/cover_modal.html:5 -msgid "Add cover" +#: bookwyrm/templates/book/book.html:75 bookwyrm/templates/book/book.html:78 +msgid "Click to add cover" msgstr "" -#: bookwyrm/templates/book/book.html:77 +#: bookwyrm/templates/book/book.html:83 msgid "Failed to load cover" msgstr "" -#: bookwyrm/templates/book/book.html:134 +#: bookwyrm/templates/book/book.html:94 +msgid "Click to enlarge" +msgstr "" + +#: bookwyrm/templates/book/book.html:158 #, python-format msgid "(%(review_count)s review)" msgid_plural "(%(review_count)s reviews)" msgstr[0] "" msgstr[1] "" -#: bookwyrm/templates/book/book.html:146 +#: bookwyrm/templates/book/book.html:170 msgid "Add Description" msgstr "" -#: bookwyrm/templates/book/book.html:153 +#: bookwyrm/templates/book/book.html:177 #: bookwyrm/templates/book/edit/edit_book_form.html:39 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "" -#: bookwyrm/templates/book/book.html:167 +#: bookwyrm/templates/book/book.html:191 #, python-format msgid "%(count)s editions" msgstr "" -#: bookwyrm/templates/book/book.html:175 +#: bookwyrm/templates/book/book.html:199 msgid "You have shelved this edition in:" msgstr "" -#: bookwyrm/templates/book/book.html:190 +#: bookwyrm/templates/book/book.html:214 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "" -#: bookwyrm/templates/book/book.html:201 +#: bookwyrm/templates/book/book.html:225 msgid "Your reading activity" msgstr "" -#: bookwyrm/templates/book/book.html:204 +#: bookwyrm/templates/book/book.html:228 msgid "Add read dates" msgstr "" -#: bookwyrm/templates/book/book.html:213 +#: bookwyrm/templates/book/book.html:237 msgid "Create" msgstr "" -#: bookwyrm/templates/book/book.html:223 +#: bookwyrm/templates/book/book.html:247 msgid "You don't have any reading activity for this book." msgstr "" -#: bookwyrm/templates/book/book.html:249 +#: bookwyrm/templates/book/book.html:273 msgid "Your reviews" msgstr "" -#: bookwyrm/templates/book/book.html:255 +#: bookwyrm/templates/book/book.html:279 msgid "Your comments" msgstr "" -#: bookwyrm/templates/book/book.html:261 +#: bookwyrm/templates/book/book.html:285 msgid "Your quotes" msgstr "" -#: bookwyrm/templates/book/book.html:297 +#: bookwyrm/templates/book/book.html:321 msgid "Subjects" msgstr "" -#: bookwyrm/templates/book/book.html:309 +#: bookwyrm/templates/book/book.html:333 msgid "Places" msgstr "" -#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:74 +#: bookwyrm/templates/book/book.html:344 bookwyrm/templates/layout.html:74 +#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:10 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 #: bookwyrm/templates/search/layout.html:25 #: bookwyrm/templates/search/layout.html:50 @@ -650,13 +654,13 @@ msgstr "" msgid "Lists" msgstr "" -#: bookwyrm/templates/book/book.html:331 +#: bookwyrm/templates/book/book.html:355 msgid "Add to list" msgstr "" -#: bookwyrm/templates/book/book.html:341 -#: bookwyrm/templates/book/cover_modal.html:31 -#: bookwyrm/templates/lists/list.html:195 +#: bookwyrm/templates/book/book.html:365 +#: bookwyrm/templates/book/cover_add_modal.html:31 +#: bookwyrm/templates/lists/list.html:208 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -676,16 +680,38 @@ msgstr "" msgid "ASIN:" msgstr "" -#: bookwyrm/templates/book/cover_modal.html:17 +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "" + +#: bookwyrm/templates/book/cover_add_modal.html:17 #: bookwyrm/templates/book/edit/edit_book_form.html:173 msgid "Upload cover:" msgstr "" -#: bookwyrm/templates/book/cover_modal.html:23 +#: bookwyrm/templates/book/cover_add_modal.html:23 #: bookwyrm/templates/book/edit/edit_book_form.html:179 msgid "Load cover from url:" msgstr "" +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:11 +#: bookwyrm/templates/components/new_modal.html:13 +#: bookwyrm/templates/components/new_modal.html:28 +#: bookwyrm/templates/components/tooltip.html:7 +#: bookwyrm/templates/feed/layout.html:71 +#: bookwyrm/templates/get_started/layout.html:25 +#: bookwyrm/templates/get_started/layout.html:58 +#: bookwyrm/templates/search/book.html:49 +#: bookwyrm/templates/snippets/announcement.html:18 +msgid "Close" +msgstr "" + #: bookwyrm/templates/book/edit/edit_book.html:6 #: bookwyrm/templates/book/edit/edit_book.html:12 #, python-format @@ -936,17 +962,6 @@ msgstr "" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "" -#: bookwyrm/templates/components/inline_form.html:8 -#: bookwyrm/templates/components/modal.html:11 -#: bookwyrm/templates/components/tooltip.html:7 -#: bookwyrm/templates/feed/layout.html:71 -#: bookwyrm/templates/get_started/layout.html:25 -#: bookwyrm/templates/get_started/layout.html:58 -#: bookwyrm/templates/search/book.html:49 -#: bookwyrm/templates/snippets/announcement.html:18 -msgid "Close" -msgstr "" - #: bookwyrm/templates/components/tooltip.html:3 msgid "Help" msgstr "" @@ -1409,7 +1424,7 @@ msgid "What are you reading?" msgstr "" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:149 +#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:162 msgid "Search for a book" msgstr "" @@ -1429,7 +1444,7 @@ msgstr "" #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/groups/group.html:20 bookwyrm/templates/layout.html:53 -#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:153 +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:166 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1445,7 +1460,7 @@ msgid "Popular on %(site_name)s" msgstr "" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:166 +#: bookwyrm/templates/lists/list.html:179 msgid "No books found" msgstr "" @@ -1801,7 +1816,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh msgstr "" #: bookwyrm/templates/import/manual_review.html:58 -#: bookwyrm/templates/lists/curate.html:57 +#: bookwyrm/templates/lists/curate.html:59 msgid "Approve" msgstr "" @@ -2049,23 +2064,23 @@ msgstr "" msgid "Created by %(username)s" msgstr "" -#: bookwyrm/templates/lists/curate.html:8 +#: bookwyrm/templates/lists/curate.html:11 +msgid "Curate" +msgstr "" + +#: bookwyrm/templates/lists/curate.html:20 msgid "Pending Books" msgstr "" -#: bookwyrm/templates/lists/curate.html:11 -msgid "Go to list" -msgstr "" - -#: bookwyrm/templates/lists/curate.html:15 +#: bookwyrm/templates/lists/curate.html:23 msgid "You're all set!" msgstr "" -#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/curate.html:43 msgid "Suggested by" msgstr "" -#: bookwyrm/templates/lists/curate.html:63 +#: bookwyrm/templates/lists/curate.html:65 msgid "Discard" msgstr "" @@ -2074,7 +2089,7 @@ msgid "Delete this list?" msgstr "" #: bookwyrm/templates/lists/edit_form.html:5 -#: bookwyrm/templates/lists/layout.html:16 +#: bookwyrm/templates/lists/layout.html:17 msgid "Edit List" msgstr "" @@ -2089,7 +2104,7 @@ msgid "on %(site_name)s" msgstr "" #: bookwyrm/templates/lists/embed-list.html:26 -#: bookwyrm/templates/lists/list.html:29 +#: bookwyrm/templates/lists/list.html:42 msgid "This list is currently empty" msgstr "" @@ -2146,79 +2161,79 @@ msgstr "" msgid "Create a Group" msgstr "" -#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/lists/form.html:121 msgid "Delete list" msgstr "" -#: bookwyrm/templates/lists/list.html:21 +#: bookwyrm/templates/lists/list.html:34 msgid "You successfully suggested a book for this list!" msgstr "" -#: bookwyrm/templates/lists/list.html:23 +#: bookwyrm/templates/lists/list.html:36 msgid "You successfully added a book to this list!" msgstr "" -#: bookwyrm/templates/lists/list.html:67 +#: bookwyrm/templates/lists/list.html:80 #, python-format msgid "Added by %(username)s" msgstr "" -#: bookwyrm/templates/lists/list.html:82 +#: bookwyrm/templates/lists/list.html:95 msgid "List position" msgstr "" -#: bookwyrm/templates/lists/list.html:88 +#: bookwyrm/templates/lists/list.html:101 msgid "Set" msgstr "" -#: bookwyrm/templates/lists/list.html:103 +#: bookwyrm/templates/lists/list.html:116 #: bookwyrm/templates/snippets/remove_from_group_button.html:19 msgid "Remove" msgstr "" -#: bookwyrm/templates/lists/list.html:117 -#: bookwyrm/templates/lists/list.html:134 +#: bookwyrm/templates/lists/list.html:130 +#: bookwyrm/templates/lists/list.html:147 msgid "Sort List" msgstr "" -#: bookwyrm/templates/lists/list.html:127 +#: bookwyrm/templates/lists/list.html:140 msgid "Direction" msgstr "" -#: bookwyrm/templates/lists/list.html:141 +#: bookwyrm/templates/lists/list.html:154 msgid "Add Books" msgstr "" -#: bookwyrm/templates/lists/list.html:143 +#: bookwyrm/templates/lists/list.html:156 msgid "Suggest Books" msgstr "" -#: bookwyrm/templates/lists/list.html:154 +#: bookwyrm/templates/lists/list.html:167 msgid "search" msgstr "" -#: bookwyrm/templates/lists/list.html:160 +#: bookwyrm/templates/lists/list.html:173 msgid "Clear search" msgstr "" -#: bookwyrm/templates/lists/list.html:165 +#: bookwyrm/templates/lists/list.html:178 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "" -#: bookwyrm/templates/lists/list.html:197 +#: bookwyrm/templates/lists/list.html:210 msgid "Suggest" msgstr "" -#: bookwyrm/templates/lists/list.html:208 +#: bookwyrm/templates/lists/list.html:221 msgid "Embed this list on a website" msgstr "" -#: bookwyrm/templates/lists/list.html:216 +#: bookwyrm/templates/lists/list.html:229 msgid "Copy embed code" msgstr "" -#: bookwyrm/templates/lists/list.html:218 +#: bookwyrm/templates/lists/list.html:231 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "" diff --git a/locale/es_ES/LC_MESSAGES/django.mo b/locale/es_ES/LC_MESSAGES/django.mo index dcbbaf95e3fea63216e12e62411b9b005d9998cf..8dbac2136519b26abf5c2ab1a6bbb14b2c089932 100644 GIT binary patch delta 2284 zcmXZddrX&A9LMqV1R{c6o1sFc*88e@TJ4pxgQ5%=x?YIh8Vhg6=Q7pw_)Pl~GT`&(7SUD=- zYE&khFavjDBEF3}$S0`hFL*Q*z(v$auAu^P{e}G2f6|Hq`-~#dtRAN(!)u{mlj%TDTim;Cpx-FJUeIZk(AK$#JafQK{X7cVaJQ z;`dmIW2h@Dy3Nk-LZ$o=CgZpG3yxv}`rg zMrGzhRLz{mP#i>E)evgk-~9P8tfxPTdarhtVq)IN`*)^A2ncic|n3cl!1w9R%*2mRfsji*s} z8Xs;W&%!MFxxV$N1-nqsy@vX%dr`%B9(CeTRHpty)xdbT^z4r$ykgKSZI}tXJ04l>ljKIPO&n~cn0Y$hLQ*a}y zs5((Eyn{;V3BUgtrqUlo-SMB;i`TIS4@BCG6wI{;sze>62K5y@jtaQNqp^%eJFdkK zP(K*AupBd@9DOFH5zpdVxDg+VwpVlpRRaa{oSE-=jqhHpV*DFaQAf{r%pJHK^RO8e zuy>G#0w|8L8$F3iT^}lSCsCi-5VqhysD&G1?a2>g0sSvgS2u=A?WAv5obAV8JL4(X zh~0MFGvhQ=Jk!3>@php!RP_c?pI-&4dK<9;TT#Dk-(eg6i1*>DfMW`AFKYfPRA9sS z5dMr0;GzV_)ad))P9vXzGZ=!GQ5m_4x~q%@ws?Z5;#!Vcuo`tW^{5l?!(2RwH8_mA z(mgZp57Kc|fRp}s&O*nm zqyHS%;s|Qv%oJzlziKB2=zoeXoNH!F8&LCKpi=)gYJMD_#n5!SPZz3YUP^azOc#v-22^w{iReWnuzujBW z#aH`FOGloGT9%!c&!3xLTvkxrpLpVURcy_+r#HE+Pq{mGZgE>Sb-0_ibpJ4s+J9x@ Gbnt&s1uVk= delta 2303 zcmXZddrX&A9LMqV#6_+Ga=*!gbODvSD2UU_6=?#=6bVX)@Wa{&0)^pPd%9{ZXK8=5 z32C~tasC!0&*anC%0M~pLp^vA!|^AK$1&7~w@?ek-8Lo~voQ(_Q3qLt+F%!^;j5U3 zhp_-Jq1KT<8Rp;`dt?Q zlTEk?pT`t@7j=+RsDoVbXefYdsFU161u}z5WypUvwJE5DvoIY?u@GxfSK|5ZMLqYn z-#>=BnvLoH!9_aF%7@Lt2l;9>~GElsX=kzQoQc>qkVmB&v2T&P0iptC< zsG9ibdF=$3(Kfsi&coZr1>IqBeTL@4tnK^xs1l2mSdg zm_`4ZKR=6lJ|WZw=%P}eiwfvL)IOU~>o=pPJMN+}fiL+Jo%0;Co4$wIcp7!5F=00H zY`mZTV&9FZ1^ZCHdjs`aA3_!5CDe(>P?`E2RRa@YjyE@u5^f({g!;iUR86c#-E}QK zfUT&2_o0fm9~Iy*>U;15>bYN0f!su$dcmA>8KaH96&!g`6H#~xW;Q$_pv>7RgvIkm?I>=+Fx8P}1z%3q)5*l5&89zjQ zFmB^2%#3#QnwUnsfbZZ|+&tf2(OFat6vQ}l?{kgs9$e4(*QlZnk9EvqT#iN9j0)I0 zNJ9aX#MzAksMPhNQa6Zt%|`GU{1dfs{Q`UPqgYD+9O~-EQK_Bub>eM53VRt(#%;LY zj(cW;hKgs}H$1^El!~g}9MtPqiK^a4Y{DI=FWa}c3%|!laZRFQmf;@M{FkV}MzI!u z#C4dF^YUFO zU>#mYZR}<^bN{Nnm`MLqbnznUAUDv{zuXiJ1(2R;tNmWoiHcBFT8S#6b*K~e;s*=Id1rKSesM{DNx556va+mfC}r@}`n>u;x7*bda05Htj-EhoryJ;S+ne2%&gXhM Xo^5Szb=x~zn%mvhz|h}Q=W_oC2%9u; diff --git a/locale/es_ES/LC_MESSAGES/django.po b/locale/es_ES/LC_MESSAGES/django.po index d5b073536..0aaea3321 100644 --- a/locale/es_ES/LC_MESSAGES/django.po +++ b/locale/es_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-28 20:12+0000\n" -"PO-Revision-Date: 2021-12-28 22:55\n" +"POT-Creation-Date: 2021-12-29 21:32+0000\n" +"PO-Revision-Date: 2022-01-01 17:37\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Spanish\n" "Language: es\n" @@ -60,7 +60,7 @@ msgstr "Título" msgid "Rating" msgstr "Calificación" -#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:110 +#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:121 msgid "Sort By" msgstr "Ordenar por" @@ -144,7 +144,7 @@ msgstr "%(value)s no es un remote_id válido" msgid "%(value)s is not a valid username" msgstr "%(value)s no es un usuario válido" -#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:173 +#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:170 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "nombre de usuario" @@ -268,7 +268,7 @@ msgid "Copy address" msgstr "Copiar dirección" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:217 msgid "Copied!" msgstr "¡Copiado!" @@ -519,7 +519,7 @@ msgstr "ISNI:" #: bookwyrm/templates/book/readthrough.html:76 #: bookwyrm/templates/groups/form.html:24 #: bookwyrm/templates/lists/bookmark_button.html:15 -#: bookwyrm/templates/lists/form.html:75 +#: bookwyrm/templates/lists/form.html:124 #: bookwyrm/templates/preferences/edit_user.html:124 #: bookwyrm/templates/settings/announcements/announcement_form.html:76 #: bookwyrm/templates/settings/federation/edit_instance.html:82 @@ -641,7 +641,7 @@ msgstr "Sujetos" msgid "Places" msgstr "Lugares" -#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:77 +#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:74 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 #: bookwyrm/templates/search/layout.html:25 #: bookwyrm/templates/search/layout.html:50 @@ -655,7 +655,7 @@ msgstr "Agregar a lista" #: bookwyrm/templates/book/book.html:341 #: bookwyrm/templates/book/cover_modal.html:31 -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:195 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -939,8 +939,8 @@ msgstr "La carga de datos se conectará a %(source_name)s y com #: bookwyrm/templates/components/modal.html:11 #: bookwyrm/templates/components/tooltip.html:7 #: bookwyrm/templates/feed/layout.html:71 -#: bookwyrm/templates/get_started/layout.html:20 -#: bookwyrm/templates/get_started/layout.html:53 +#: bookwyrm/templates/get_started/layout.html:25 +#: bookwyrm/templates/get_started/layout.html:58 #: bookwyrm/templates/search/book.html:49 #: bookwyrm/templates/snippets/announcement.html:18 msgid "Close" @@ -1016,7 +1016,7 @@ msgstr "Comunidad federalizada" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:103 +#: bookwyrm/templates/layout.html:100 msgid "Directory" msgstr "Directorio" @@ -1136,14 +1136,14 @@ msgstr "%(username)s citó %(username)s" msgstr "Mensajes directos con %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:113 +#: bookwyrm/templates/layout.html:110 msgid "Direct Messages" msgstr "Mensajes directos" @@ -1331,7 +1331,7 @@ msgstr "Puedes establecer o cambiar tu objetivo de lectura en cualquier momento msgid "Updates" msgstr "Actualizaciones" -#: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:105 msgid "Your Books" msgstr "Tus libros" @@ -1408,7 +1408,7 @@ msgid "What are you reading?" msgstr "¿Qué estás leyendo?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:138 +#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:149 msgid "Search for a book" msgstr "Buscar libros" @@ -1428,7 +1428,7 @@ msgstr "Puedes agregar libros cuando comiences a usar %(site_name)s." #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/groups/group.html:20 bookwyrm/templates/layout.html:53 -#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:153 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1444,12 +1444,12 @@ msgid "Popular on %(site_name)s" msgstr "Popular en %(site_name)s" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:155 +#: bookwyrm/templates/lists/list.html:166 msgid "No books found" msgstr "No se encontró ningún libro" #: bookwyrm/templates/get_started/books.html:63 -#: bookwyrm/templates/get_started/profile.html:51 +#: bookwyrm/templates/get_started/profile.html:64 msgid "Save & continue" msgstr "Guardar & continuar" @@ -1458,33 +1458,33 @@ msgstr "Guardar & continuar" msgid "Welcome" msgstr "Bienvenidos" -#: bookwyrm/templates/get_started/layout.html:15 +#: bookwyrm/templates/get_started/layout.html:20 #, python-format msgid "Welcome to %(site_name)s!" msgstr "¡Bienvenido a %(site_name)s!" -#: bookwyrm/templates/get_started/layout.html:17 +#: bookwyrm/templates/get_started/layout.html:22 msgid "These are some first steps to get you started." msgstr "Estos son unos primeros pasos para empezar." -#: bookwyrm/templates/get_started/layout.html:31 +#: bookwyrm/templates/get_started/layout.html:36 #: bookwyrm/templates/get_started/profile.html:6 msgid "Create your profile" msgstr "Crear tu perfil" -#: bookwyrm/templates/get_started/layout.html:35 +#: bookwyrm/templates/get_started/layout.html:40 msgid "Add books" msgstr "Agregar libros" -#: bookwyrm/templates/get_started/layout.html:39 +#: bookwyrm/templates/get_started/layout.html:44 msgid "Find friends" msgstr "Encontrar amigos" -#: bookwyrm/templates/get_started/layout.html:45 +#: bookwyrm/templates/get_started/layout.html:50 msgid "Skip this step" msgstr "Saltar este paso" -#: bookwyrm/templates/get_started/layout.html:49 +#: bookwyrm/templates/get_started/layout.html:54 msgid "Finish" msgstr "Terminar" @@ -1493,29 +1493,29 @@ msgstr "Terminar" msgid "Display name:" msgstr "Nombre de visualización:" -#: bookwyrm/templates/get_started/profile.html:21 +#: bookwyrm/templates/get_started/profile.html:29 #: bookwyrm/templates/preferences/edit_user.html:47 msgid "Summary:" msgstr "Resumen:" -#: bookwyrm/templates/get_started/profile.html:22 +#: bookwyrm/templates/get_started/profile.html:34 msgid "A little bit about you" msgstr "Un poco sobre ti" -#: bookwyrm/templates/get_started/profile.html:30 +#: bookwyrm/templates/get_started/profile.html:43 #: bookwyrm/templates/preferences/edit_user.html:27 msgid "Avatar:" msgstr "Avatar:" -#: bookwyrm/templates/get_started/profile.html:39 +#: bookwyrm/templates/get_started/profile.html:52 msgid "Manually approve followers:" msgstr "Aprobar seguidores a mano:" -#: bookwyrm/templates/get_started/profile.html:45 +#: bookwyrm/templates/get_started/profile.html:58 msgid "Show this account in suggested users:" msgstr "Mostrar esta cuenta en los usuarios sugeridos:" -#: bookwyrm/templates/get_started/profile.html:49 +#: bookwyrm/templates/get_started/profile.html:62 msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Tu cuenta se aparecerá en el directorio, y puede ser recomendado a otros usuarios de BookWyrm." @@ -1907,7 +1907,7 @@ msgid "Login" msgstr "Iniciar sesión" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:181 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:178 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Iniciar sesión" @@ -1916,7 +1916,7 @@ msgstr "Iniciar sesión" msgid "Success! Email address confirmed." msgstr "¡Éxito! Dirección de correo electrónico confirmada." -#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:172 +#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:169 #: bookwyrm/templates/ostatus/error.html:28 #: bookwyrm/templates/snippets/register_form.html:4 msgid "Username:" @@ -1924,12 +1924,12 @@ msgstr "Nombre de usuario:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:176 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:173 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:20 msgid "Password:" msgstr "Contraseña:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:178 +#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:175 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "¿Olvidaste tu contraseña?" @@ -1961,19 +1961,19 @@ msgstr "Busqueda en %(site_name)s" msgid "Search for a book, user, or list" msgstr "Buscar un libro o un usuario o una lista" -#: bookwyrm/templates/layout.html:63 bookwyrm/templates/layout.html:64 +#: bookwyrm/templates/layout.html:63 msgid "Main navigation menu" msgstr "Menú de navigación central" -#: bookwyrm/templates/layout.html:74 +#: bookwyrm/templates/layout.html:71 msgid "Feed" msgstr "Actividad" -#: bookwyrm/templates/layout.html:118 +#: bookwyrm/templates/layout.html:115 msgid "Settings" msgstr "Configuración" -#: bookwyrm/templates/layout.html:127 +#: bookwyrm/templates/layout.html:124 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 #: bookwyrm/templates/settings/invites/manage_invites.html:3 #: bookwyrm/templates/settings/invites/manage_invites.html:15 @@ -1981,46 +1981,46 @@ msgstr "Configuración" msgid "Invites" msgstr "Invitaciones" -#: bookwyrm/templates/layout.html:134 +#: bookwyrm/templates/layout.html:131 msgid "Admin" msgstr "Administrador" -#: bookwyrm/templates/layout.html:141 +#: bookwyrm/templates/layout.html:138 msgid "Log out" msgstr "Cerrar sesión" -#: bookwyrm/templates/layout.html:149 bookwyrm/templates/layout.html:150 +#: bookwyrm/templates/layout.html:146 bookwyrm/templates/layout.html:147 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "Notificaciones" -#: bookwyrm/templates/layout.html:177 bookwyrm/templates/ostatus/error.html:33 +#: bookwyrm/templates/layout.html:174 bookwyrm/templates/ostatus/error.html:33 msgid "password" msgstr "contraseña" -#: bookwyrm/templates/layout.html:189 +#: bookwyrm/templates/layout.html:186 msgid "Join" msgstr "Unirse" -#: bookwyrm/templates/layout.html:223 +#: bookwyrm/templates/layout.html:220 msgid "Successfully posted status" msgstr "Estado publicado con éxito" -#: bookwyrm/templates/layout.html:224 +#: bookwyrm/templates/layout.html:221 msgid "Error posting status" msgstr "Error al publicar el estado" -#: bookwyrm/templates/layout.html:240 +#: bookwyrm/templates/layout.html:237 msgid "Documentation" msgstr "Documentación de Django" -#: bookwyrm/templates/layout.html:247 +#: bookwyrm/templates/layout.html:244 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "Apoyar %(site_name)s en %(support_title)s" -#: bookwyrm/templates/layout.html:251 +#: bookwyrm/templates/layout.html:248 msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." msgstr "BookWyrm es software de código abierto. Puedes contribuir o reportar problemas en GitHub." @@ -2096,56 +2096,56 @@ msgstr "Esta lista está vacia" msgid "List curation:" msgstr "Enumerar lista de comisariado:" -#: bookwyrm/templates/lists/form.html:22 +#: bookwyrm/templates/lists/form.html:31 msgid "Closed" msgstr "Cerrado" -#: bookwyrm/templates/lists/form.html:23 +#: bookwyrm/templates/lists/form.html:34 msgid "Only you can add and remove books to this list" msgstr "Solo tú puedes agregar a y sacar libros de esta lista" -#: bookwyrm/templates/lists/form.html:27 +#: bookwyrm/templates/lists/form.html:48 msgid "Curated" msgstr "De comisariado" -#: bookwyrm/templates/lists/form.html:28 +#: bookwyrm/templates/lists/form.html:51 msgid "Anyone can suggest books, subject to your approval" msgstr "Cualquier usuario puede sugerir libros, en cuanto lo hayas aprobado" -#: bookwyrm/templates/lists/form.html:32 +#: bookwyrm/templates/lists/form.html:65 msgctxt "curation type" msgid "Open" msgstr "Abrir" -#: bookwyrm/templates/lists/form.html:33 +#: bookwyrm/templates/lists/form.html:68 msgid "Anyone can add books to this list" msgstr "Cualquer usuario puede agregar libros a esta lista" -#: bookwyrm/templates/lists/form.html:37 +#: bookwyrm/templates/lists/form.html:82 msgid "Group" msgstr "Grupo" -#: bookwyrm/templates/lists/form.html:38 +#: bookwyrm/templates/lists/form.html:85 msgid "Group members can add to and remove from this list" msgstr "Los miembros del grupo pueden agregar y eliminar de esta lista" -#: bookwyrm/templates/lists/form.html:41 +#: bookwyrm/templates/lists/form.html:90 msgid "Select Group" msgstr "Seleccionar grupo" -#: bookwyrm/templates/lists/form.html:45 +#: bookwyrm/templates/lists/form.html:94 msgid "Select a group" msgstr "Seleccionar un grupo" -#: bookwyrm/templates/lists/form.html:56 +#: bookwyrm/templates/lists/form.html:105 msgid "You don't have any Groups yet!" msgstr "¡Aún no tienes ningún grupo!" -#: bookwyrm/templates/lists/form.html:58 +#: bookwyrm/templates/lists/form.html:107 msgid "Create a Group" msgstr "Crear un grupo" -#: bookwyrm/templates/lists/form.html:81 +#: bookwyrm/templates/lists/form.html:130 msgid "Delete list" msgstr "Eliminar lista" @@ -2162,62 +2162,62 @@ msgstr "¡Has agregado un libro a esta lista exitosamente!" msgid "Added by %(username)s" msgstr "Agregado por %(username)s" -#: bookwyrm/templates/lists/list.html:76 +#: bookwyrm/templates/lists/list.html:82 msgid "List position" msgstr "Posición" -#: bookwyrm/templates/lists/list.html:82 +#: bookwyrm/templates/lists/list.html:88 msgid "Set" msgstr "Establecido" -#: bookwyrm/templates/lists/list.html:92 +#: bookwyrm/templates/lists/list.html:103 #: bookwyrm/templates/snippets/remove_from_group_button.html:19 msgid "Remove" msgstr "Quitar" -#: bookwyrm/templates/lists/list.html:106 -#: bookwyrm/templates/lists/list.html:123 +#: bookwyrm/templates/lists/list.html:117 +#: bookwyrm/templates/lists/list.html:134 msgid "Sort List" msgstr "Ordena la lista" -#: bookwyrm/templates/lists/list.html:116 +#: bookwyrm/templates/lists/list.html:127 msgid "Direction" msgstr "Dirección" -#: bookwyrm/templates/lists/list.html:130 +#: bookwyrm/templates/lists/list.html:141 msgid "Add Books" msgstr "Agregar libros" -#: bookwyrm/templates/lists/list.html:132 +#: bookwyrm/templates/lists/list.html:143 msgid "Suggest Books" msgstr "Sugerir libros" -#: bookwyrm/templates/lists/list.html:143 +#: bookwyrm/templates/lists/list.html:154 msgid "search" msgstr "buscar" -#: bookwyrm/templates/lists/list.html:149 +#: bookwyrm/templates/lists/list.html:160 msgid "Clear search" msgstr "Borrar búsqueda" -#: bookwyrm/templates/lists/list.html:154 +#: bookwyrm/templates/lists/list.html:165 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "No se encontró ningún libro correspondiente a la búsqueda: \"%(query)s\"" -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:197 msgid "Suggest" msgstr "Sugerir" -#: bookwyrm/templates/lists/list.html:191 +#: bookwyrm/templates/lists/list.html:208 msgid "Embed this list on a website" msgstr "Incrustar esta lista en un sitio web" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:216 msgid "Copy embed code" msgstr "Copiar código para incrustar" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:218 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s, una lista de %(owner)s en %(site_name)s" @@ -2696,7 +2696,7 @@ msgstr "Volver a la lista de servidores" msgid "Edit Announcement" msgstr "Editar anuncio" -#: bookwyrm/templates/settings/announcements/announcement.html:35 +#: bookwyrm/templates/settings/announcements/announcement.html:34 msgid "Visible:" msgstr "Visible:" @@ -2708,19 +2708,19 @@ msgstr "Verdadero" msgid "False" msgstr "Falso" -#: bookwyrm/templates/settings/announcements/announcement.html:47 +#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/dashboard/dashboard.html:71 msgid "Start date:" msgstr "Fecha de inicio:" -#: bookwyrm/templates/settings/announcements/announcement.html:54 +#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:77 msgid "End date:" msgstr "Fecha final:" -#: bookwyrm/templates/settings/announcements/announcement.html:60 +#: bookwyrm/templates/settings/announcements/announcement.html:55 #: bookwyrm/templates/settings/announcements/announcement_form.html:64 msgid "Active:" msgstr "Activo:" @@ -4283,7 +4283,7 @@ msgstr "%(title)s: %(subtitle)s" msgid "Not a valid csv file" msgstr "No un archivo csv válido" -#: bookwyrm/views/landing/login.py:69 +#: bookwyrm/views/landing/login.py:70 msgid "Username or password are incorrect" msgstr "Nombre de usuario o contraseña es incorrecta" diff --git a/locale/fr_FR/LC_MESSAGES/django.mo b/locale/fr_FR/LC_MESSAGES/django.mo index bbac096ea57ad2cd4529cb35d9ceea92a2f0c9f3..d5c41b45f5c76791b51e4221796cf38dad5854e7 100644 GIT binary patch delta 22 ecmca}p5@MYmJI@H*^Lbp3=FJ{HjA%4S_J@Xya?C; delta 22 ecmca}p5@MYmJI@H*^Mj|j0~*|H;b=5S_J@Y90=h6 diff --git a/locale/fr_FR/LC_MESSAGES/django.po b/locale/fr_FR/LC_MESSAGES/django.po index 199a0de68..8cd141108 100644 --- a/locale/fr_FR/LC_MESSAGES/django.po +++ b/locale/fr_FR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-28 20:12+0000\n" -"PO-Revision-Date: 2021-12-28 21:17\n" +"POT-Creation-Date: 2021-12-29 21:32+0000\n" +"PO-Revision-Date: 2021-12-30 00:27\n" "Last-Translator: Mouse Reeve \n" "Language-Team: French\n" "Language: fr\n" @@ -60,7 +60,7 @@ msgstr "Titre du livre" msgid "Rating" msgstr "Note" -#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:110 +#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:121 msgid "Sort By" msgstr "Trier par" @@ -144,7 +144,7 @@ msgstr "%(value)s n’est pas une remote_id valide." msgid "%(value)s is not a valid username" msgstr "%(value)s n’est pas un nom de compte valide." -#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:173 +#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:170 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "nom du compte :" @@ -268,7 +268,7 @@ msgid "Copy address" msgstr "Copier l’adresse" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:217 msgid "Copied!" msgstr "Copié!" @@ -519,7 +519,7 @@ msgstr "ISNI :" #: bookwyrm/templates/book/readthrough.html:76 #: bookwyrm/templates/groups/form.html:24 #: bookwyrm/templates/lists/bookmark_button.html:15 -#: bookwyrm/templates/lists/form.html:75 +#: bookwyrm/templates/lists/form.html:124 #: bookwyrm/templates/preferences/edit_user.html:124 #: bookwyrm/templates/settings/announcements/announcement_form.html:76 #: bookwyrm/templates/settings/federation/edit_instance.html:82 @@ -641,7 +641,7 @@ msgstr "Sujets" msgid "Places" msgstr "Lieux" -#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:77 +#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:74 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 #: bookwyrm/templates/search/layout.html:25 #: bookwyrm/templates/search/layout.html:50 @@ -655,7 +655,7 @@ msgstr "Ajouter à la liste" #: bookwyrm/templates/book/book.html:341 #: bookwyrm/templates/book/cover_modal.html:31 -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:195 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -939,8 +939,8 @@ msgstr "Le chargement des données se connectera à %(source_name)s%(username)s a cité un passage de %(username)s" msgstr "Messages directs avec %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:113 +#: bookwyrm/templates/layout.html:110 msgid "Direct Messages" msgstr "Messages directs" @@ -1331,7 +1331,7 @@ msgstr "Vous pouvez définir ou changer votre défi lecture à n’importe quel msgid "Updates" msgstr "Mises à jour" -#: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:105 msgid "Your Books" msgstr "Vos Livres" @@ -1408,7 +1408,7 @@ msgid "What are you reading?" msgstr "Que lisez‑vous ?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:138 +#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:149 msgid "Search for a book" msgstr "Chercher un livre" @@ -1428,7 +1428,7 @@ msgstr "Vous pourrez ajouter des livres lorsque vous commencerez à utiliser %(s #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/groups/group.html:20 bookwyrm/templates/layout.html:53 -#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:153 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1444,12 +1444,12 @@ msgid "Popular on %(site_name)s" msgstr "Populaire sur %(site_name)s" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:155 +#: bookwyrm/templates/lists/list.html:166 msgid "No books found" msgstr "Aucun livre trouvé" #: bookwyrm/templates/get_started/books.html:63 -#: bookwyrm/templates/get_started/profile.html:51 +#: bookwyrm/templates/get_started/profile.html:64 msgid "Save & continue" msgstr "Enregistrer & continuer" @@ -1458,33 +1458,33 @@ msgstr "Enregistrer & continuer" msgid "Welcome" msgstr "Bienvenue" -#: bookwyrm/templates/get_started/layout.html:15 +#: bookwyrm/templates/get_started/layout.html:20 #, python-format msgid "Welcome to %(site_name)s!" msgstr "Bienvenue sur %(site_name)s !" -#: bookwyrm/templates/get_started/layout.html:17 +#: bookwyrm/templates/get_started/layout.html:22 msgid "These are some first steps to get you started." msgstr "Voici quelques étapes pour commencer votre profil." -#: bookwyrm/templates/get_started/layout.html:31 +#: bookwyrm/templates/get_started/layout.html:36 #: bookwyrm/templates/get_started/profile.html:6 msgid "Create your profile" msgstr "Créez votre profil" -#: bookwyrm/templates/get_started/layout.html:35 +#: bookwyrm/templates/get_started/layout.html:40 msgid "Add books" msgstr "Ajoutez des livres" -#: bookwyrm/templates/get_started/layout.html:39 +#: bookwyrm/templates/get_started/layout.html:44 msgid "Find friends" msgstr "Établissez des contacts" -#: bookwyrm/templates/get_started/layout.html:45 +#: bookwyrm/templates/get_started/layout.html:50 msgid "Skip this step" msgstr "Passer cette étape" -#: bookwyrm/templates/get_started/layout.html:49 +#: bookwyrm/templates/get_started/layout.html:54 msgid "Finish" msgstr "Terminer" @@ -1493,29 +1493,29 @@ msgstr "Terminer" msgid "Display name:" msgstr "Nom affiché :" -#: bookwyrm/templates/get_started/profile.html:21 +#: bookwyrm/templates/get_started/profile.html:29 #: bookwyrm/templates/preferences/edit_user.html:47 msgid "Summary:" msgstr "Résumé :" -#: bookwyrm/templates/get_started/profile.html:22 +#: bookwyrm/templates/get_started/profile.html:34 msgid "A little bit about you" msgstr "Parlez‑nous de vous" -#: bookwyrm/templates/get_started/profile.html:30 +#: bookwyrm/templates/get_started/profile.html:43 #: bookwyrm/templates/preferences/edit_user.html:27 msgid "Avatar:" msgstr "Avatar :" -#: bookwyrm/templates/get_started/profile.html:39 +#: bookwyrm/templates/get_started/profile.html:52 msgid "Manually approve followers:" msgstr "Autoriser les abonnements manuellement :" -#: bookwyrm/templates/get_started/profile.html:45 +#: bookwyrm/templates/get_started/profile.html:58 msgid "Show this account in suggested users:" msgstr "Afficher ce compte dans ceux suggérés :" -#: bookwyrm/templates/get_started/profile.html:49 +#: bookwyrm/templates/get_started/profile.html:62 msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Votre compte sera listé dans le répertoire et pourra être recommandé à d’autres utilisateurs ou utilisatrices de BookWyrm." @@ -1907,7 +1907,7 @@ msgid "Login" msgstr "Connexion" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:181 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:178 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Se connecter" @@ -1916,7 +1916,7 @@ msgstr "Se connecter" msgid "Success! Email address confirmed." msgstr "Bravo ! L’adresse email a été confirmée." -#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:172 +#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:169 #: bookwyrm/templates/ostatus/error.html:28 #: bookwyrm/templates/snippets/register_form.html:4 msgid "Username:" @@ -1924,12 +1924,12 @@ msgstr "Nom du compte :" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:176 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:173 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:20 msgid "Password:" msgstr "Mot de passe :" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:178 +#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:175 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Mot de passe oublié ?" @@ -1961,19 +1961,19 @@ msgstr "Recherche %(site_name)s" msgid "Search for a book, user, or list" msgstr "Rechercher un livre, un utilisateur ou une liste" -#: bookwyrm/templates/layout.html:63 bookwyrm/templates/layout.html:64 +#: bookwyrm/templates/layout.html:63 msgid "Main navigation menu" msgstr "Menu de navigation principal " -#: bookwyrm/templates/layout.html:74 +#: bookwyrm/templates/layout.html:71 msgid "Feed" msgstr "Fil d’actualité" -#: bookwyrm/templates/layout.html:118 +#: bookwyrm/templates/layout.html:115 msgid "Settings" msgstr "Paramètres" -#: bookwyrm/templates/layout.html:127 +#: bookwyrm/templates/layout.html:124 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 #: bookwyrm/templates/settings/invites/manage_invites.html:3 #: bookwyrm/templates/settings/invites/manage_invites.html:15 @@ -1981,46 +1981,46 @@ msgstr "Paramètres" msgid "Invites" msgstr "Invitations" -#: bookwyrm/templates/layout.html:134 +#: bookwyrm/templates/layout.html:131 msgid "Admin" msgstr "Admin" -#: bookwyrm/templates/layout.html:141 +#: bookwyrm/templates/layout.html:138 msgid "Log out" msgstr "Se déconnecter" -#: bookwyrm/templates/layout.html:149 bookwyrm/templates/layout.html:150 +#: bookwyrm/templates/layout.html:146 bookwyrm/templates/layout.html:147 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "Notifications" -#: bookwyrm/templates/layout.html:177 bookwyrm/templates/ostatus/error.html:33 +#: bookwyrm/templates/layout.html:174 bookwyrm/templates/ostatus/error.html:33 msgid "password" msgstr "Mot de passe" -#: bookwyrm/templates/layout.html:189 +#: bookwyrm/templates/layout.html:186 msgid "Join" msgstr "Rejoindre" -#: bookwyrm/templates/layout.html:223 +#: bookwyrm/templates/layout.html:220 msgid "Successfully posted status" msgstr "Publié !" -#: bookwyrm/templates/layout.html:224 +#: bookwyrm/templates/layout.html:221 msgid "Error posting status" msgstr "Erreur lors de la publication" -#: bookwyrm/templates/layout.html:240 +#: bookwyrm/templates/layout.html:237 msgid "Documentation" msgstr "Documentation" -#: bookwyrm/templates/layout.html:247 +#: bookwyrm/templates/layout.html:244 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "Soutenez %(site_name)s avec %(support_title)s" -#: bookwyrm/templates/layout.html:251 +#: bookwyrm/templates/layout.html:248 msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." msgstr "BookWyrm est un logiciel libre. Vous pouvez contribuer ou faire des rapports de bogues via GitHub." @@ -2096,56 +2096,56 @@ msgstr "Cette liste est actuellement vide" msgid "List curation:" msgstr "Modération de la liste :" -#: bookwyrm/templates/lists/form.html:22 +#: bookwyrm/templates/lists/form.html:31 msgid "Closed" msgstr "Fermée" -#: bookwyrm/templates/lists/form.html:23 +#: bookwyrm/templates/lists/form.html:34 msgid "Only you can add and remove books to this list" msgstr "Vous seulement pouvez ajouter ou retirer des livres dans cette liste" -#: bookwyrm/templates/lists/form.html:27 +#: bookwyrm/templates/lists/form.html:48 msgid "Curated" msgstr "Modérée" -#: bookwyrm/templates/lists/form.html:28 +#: bookwyrm/templates/lists/form.html:51 msgid "Anyone can suggest books, subject to your approval" msgstr "N’importe qui peut suggérer des livres, soumis à votre approbation" -#: bookwyrm/templates/lists/form.html:32 +#: bookwyrm/templates/lists/form.html:65 msgctxt "curation type" msgid "Open" msgstr "Ouvrir" -#: bookwyrm/templates/lists/form.html:33 +#: bookwyrm/templates/lists/form.html:68 msgid "Anyone can add books to this list" msgstr "N’importe qui peut suggérer des livres" -#: bookwyrm/templates/lists/form.html:37 +#: bookwyrm/templates/lists/form.html:82 msgid "Group" msgstr "Groupe" -#: bookwyrm/templates/lists/form.html:38 +#: bookwyrm/templates/lists/form.html:85 msgid "Group members can add to and remove from this list" msgstr "Les membres du groupe peuvent ajouter et supprimer des livres de cette liste" -#: bookwyrm/templates/lists/form.html:41 +#: bookwyrm/templates/lists/form.html:90 msgid "Select Group" msgstr "Sélectionner un Groupe" -#: bookwyrm/templates/lists/form.html:45 +#: bookwyrm/templates/lists/form.html:94 msgid "Select a group" msgstr "Sélectionner un groupe" -#: bookwyrm/templates/lists/form.html:56 +#: bookwyrm/templates/lists/form.html:105 msgid "You don't have any Groups yet!" msgstr "Vous n'avez pas encore de Groupe !" -#: bookwyrm/templates/lists/form.html:58 +#: bookwyrm/templates/lists/form.html:107 msgid "Create a Group" msgstr "Créer un Groupe" -#: bookwyrm/templates/lists/form.html:81 +#: bookwyrm/templates/lists/form.html:130 msgid "Delete list" msgstr "Supprimer la liste" @@ -2162,62 +2162,62 @@ msgstr "Vous avez ajouté un livre à cette liste !" msgid "Added by %(username)s" msgstr "Ajouté par %(username)s" -#: bookwyrm/templates/lists/list.html:76 +#: bookwyrm/templates/lists/list.html:82 msgid "List position" msgstr "Position" -#: bookwyrm/templates/lists/list.html:82 +#: bookwyrm/templates/lists/list.html:88 msgid "Set" msgstr "Appliquer" -#: bookwyrm/templates/lists/list.html:92 +#: bookwyrm/templates/lists/list.html:103 #: bookwyrm/templates/snippets/remove_from_group_button.html:19 msgid "Remove" msgstr "Retirer" -#: bookwyrm/templates/lists/list.html:106 -#: bookwyrm/templates/lists/list.html:123 +#: bookwyrm/templates/lists/list.html:117 +#: bookwyrm/templates/lists/list.html:134 msgid "Sort List" msgstr "Trier la liste" -#: bookwyrm/templates/lists/list.html:116 +#: bookwyrm/templates/lists/list.html:127 msgid "Direction" msgstr "Direction" -#: bookwyrm/templates/lists/list.html:130 +#: bookwyrm/templates/lists/list.html:141 msgid "Add Books" msgstr "Ajouter des livres" -#: bookwyrm/templates/lists/list.html:132 +#: bookwyrm/templates/lists/list.html:143 msgid "Suggest Books" msgstr "Suggérer des livres" -#: bookwyrm/templates/lists/list.html:143 +#: bookwyrm/templates/lists/list.html:154 msgid "search" msgstr "chercher" -#: bookwyrm/templates/lists/list.html:149 +#: bookwyrm/templates/lists/list.html:160 msgid "Clear search" msgstr "Vider la requête" -#: bookwyrm/templates/lists/list.html:154 +#: bookwyrm/templates/lists/list.html:165 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "Aucun livre trouvé pour la requête « %(query)s »" -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:197 msgid "Suggest" msgstr "Suggérer" -#: bookwyrm/templates/lists/list.html:191 +#: bookwyrm/templates/lists/list.html:208 msgid "Embed this list on a website" msgstr "Intégrez cette liste sur un autre site internet" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:216 msgid "Copy embed code" msgstr "Copier le code d'intégration" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:218 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s, une liste de %(owner)s sur %(site_name)s" @@ -2696,7 +2696,7 @@ msgstr "Retour à la liste" msgid "Edit Announcement" msgstr "Modifier l’annonce" -#: bookwyrm/templates/settings/announcements/announcement.html:35 +#: bookwyrm/templates/settings/announcements/announcement.html:34 msgid "Visible:" msgstr "Visible :" @@ -2708,19 +2708,19 @@ msgstr "Vrai" msgid "False" msgstr "Faux" -#: bookwyrm/templates/settings/announcements/announcement.html:47 +#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/dashboard/dashboard.html:71 msgid "Start date:" msgstr "Date de début :" -#: bookwyrm/templates/settings/announcements/announcement.html:54 +#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:77 msgid "End date:" msgstr "Date de fin :" -#: bookwyrm/templates/settings/announcements/announcement.html:60 +#: bookwyrm/templates/settings/announcements/announcement.html:55 #: bookwyrm/templates/settings/announcements/announcement_form.html:64 msgid "Active:" msgstr "Active :" @@ -4283,7 +4283,7 @@ msgstr "%(title)s (%(subtitle)s)" msgid "Not a valid csv file" msgstr "Fichier CSV non valide" -#: bookwyrm/views/landing/login.py:69 +#: bookwyrm/views/landing/login.py:70 msgid "Username or password are incorrect" msgstr "Identifiant ou mot de passe incorrect" diff --git a/locale/gl_ES/LC_MESSAGES/django.mo b/locale/gl_ES/LC_MESSAGES/django.mo index d0e70f055137b8d7e1ab37551b004b8af07e51b1..6ad2fc9c4c15b0092fc10148c03246d7db6058b5 100644 GIT binary patch delta 23 fcmcb%h2`27mJI@HIgAYy3=FJ{%r;A`waWznZNvyV delta 23 fcmcb%h2`27mJI@HIgBh749u(y%r{G{waWznZczwF diff --git a/locale/gl_ES/LC_MESSAGES/django.po b/locale/gl_ES/LC_MESSAGES/django.po index eeccd7f09..8a3bca23a 100644 --- a/locale/gl_ES/LC_MESSAGES/django.po +++ b/locale/gl_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-28 20:12+0000\n" -"PO-Revision-Date: 2021-12-29 06:07\n" +"POT-Creation-Date: 2021-12-29 21:32+0000\n" +"PO-Revision-Date: 2021-12-30 00:26\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Galician\n" "Language: gl\n" @@ -60,7 +60,7 @@ msgstr "Título do libro" msgid "Rating" msgstr "Puntuación" -#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:110 +#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:121 msgid "Sort By" msgstr "Ordenar por" @@ -144,7 +144,7 @@ msgstr "%(value)s non é un remote_id válido" msgid "%(value)s is not a valid username" msgstr "%(value)s non é un nome de usuaria válido" -#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:173 +#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:170 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "nome de usuaria" @@ -268,7 +268,7 @@ msgid "Copy address" msgstr "Copiar enderezo" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:217 msgid "Copied!" msgstr "Copiado!" @@ -519,7 +519,7 @@ msgstr "ISNI:" #: bookwyrm/templates/book/readthrough.html:76 #: bookwyrm/templates/groups/form.html:24 #: bookwyrm/templates/lists/bookmark_button.html:15 -#: bookwyrm/templates/lists/form.html:75 +#: bookwyrm/templates/lists/form.html:124 #: bookwyrm/templates/preferences/edit_user.html:124 #: bookwyrm/templates/settings/announcements/announcement_form.html:76 #: bookwyrm/templates/settings/federation/edit_instance.html:82 @@ -641,7 +641,7 @@ msgstr "Temas" msgid "Places" msgstr "Lugares" -#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:77 +#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:74 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 #: bookwyrm/templates/search/layout.html:25 #: bookwyrm/templates/search/layout.html:50 @@ -655,7 +655,7 @@ msgstr "Engadir a listaxe" #: bookwyrm/templates/book/book.html:341 #: bookwyrm/templates/book/cover_modal.html:31 -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:195 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -939,8 +939,8 @@ msgstr "Ao cargar os datos vas conectar con %(source_name)s e c #: bookwyrm/templates/components/modal.html:11 #: bookwyrm/templates/components/tooltip.html:7 #: bookwyrm/templates/feed/layout.html:71 -#: bookwyrm/templates/get_started/layout.html:20 -#: bookwyrm/templates/get_started/layout.html:53 +#: bookwyrm/templates/get_started/layout.html:25 +#: bookwyrm/templates/get_started/layout.html:58 #: bookwyrm/templates/search/book.html:49 #: bookwyrm/templates/snippets/announcement.html:18 msgid "Close" @@ -1016,7 +1016,7 @@ msgstr "Comunidade federada" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:103 +#: bookwyrm/templates/layout.html:100 msgid "Directory" msgstr "Directorio" @@ -1136,7 +1136,7 @@ msgstr "%(username)s citou %(username)s" msgstr "Mensaxes Directas con %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:113 +#: bookwyrm/templates/layout.html:110 msgid "Direct Messages" msgstr "Mensaxes Directas" @@ -1331,7 +1331,7 @@ msgstr "Podes establecer ou cambiar un obxectivo de lectura en calquera momento msgid "Updates" msgstr "Actualizacións" -#: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:105 msgid "Your Books" msgstr "Os teus libros" @@ -1408,7 +1408,7 @@ msgid "What are you reading?" msgstr "Que estás a ler?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:138 +#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:149 msgid "Search for a book" msgstr "Buscar un libro" @@ -1428,7 +1428,7 @@ msgstr "Podes engadir libros cando comeces a usar %(site_name)s." #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/groups/group.html:20 bookwyrm/templates/layout.html:53 -#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:153 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1444,12 +1444,12 @@ msgid "Popular on %(site_name)s" msgstr "Populares en %(site_name)s" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:155 +#: bookwyrm/templates/lists/list.html:166 msgid "No books found" msgstr "Non se atopan libros" #: bookwyrm/templates/get_started/books.html:63 -#: bookwyrm/templates/get_started/profile.html:51 +#: bookwyrm/templates/get_started/profile.html:64 msgid "Save & continue" msgstr "Gardar & continuar" @@ -1458,33 +1458,33 @@ msgstr "Gardar & continuar" msgid "Welcome" msgstr "Benvida" -#: bookwyrm/templates/get_started/layout.html:15 +#: bookwyrm/templates/get_started/layout.html:20 #, python-format msgid "Welcome to %(site_name)s!" msgstr "Sexas ben vida a %(site_name)s!" -#: bookwyrm/templates/get_started/layout.html:17 +#: bookwyrm/templates/get_started/layout.html:22 msgid "These are some first steps to get you started." msgstr "Aquí tes unhas endereitas para ir aprendendo." -#: bookwyrm/templates/get_started/layout.html:31 +#: bookwyrm/templates/get_started/layout.html:36 #: bookwyrm/templates/get_started/profile.html:6 msgid "Create your profile" msgstr "Crea o teu perfil" -#: bookwyrm/templates/get_started/layout.html:35 +#: bookwyrm/templates/get_started/layout.html:40 msgid "Add books" msgstr "Engade libros" -#: bookwyrm/templates/get_started/layout.html:39 +#: bookwyrm/templates/get_started/layout.html:44 msgid "Find friends" msgstr "Atopa amizades" -#: bookwyrm/templates/get_started/layout.html:45 +#: bookwyrm/templates/get_started/layout.html:50 msgid "Skip this step" msgstr "Omitir este paso" -#: bookwyrm/templates/get_started/layout.html:49 +#: bookwyrm/templates/get_started/layout.html:54 msgid "Finish" msgstr "Rematar" @@ -1493,29 +1493,29 @@ msgstr "Rematar" msgid "Display name:" msgstr "Nome público:" -#: bookwyrm/templates/get_started/profile.html:21 +#: bookwyrm/templates/get_started/profile.html:29 #: bookwyrm/templates/preferences/edit_user.html:47 msgid "Summary:" msgstr "Resumo:" -#: bookwyrm/templates/get_started/profile.html:22 +#: bookwyrm/templates/get_started/profile.html:34 msgid "A little bit about you" msgstr "Algo acerca de ti" -#: bookwyrm/templates/get_started/profile.html:30 +#: bookwyrm/templates/get_started/profile.html:43 #: bookwyrm/templates/preferences/edit_user.html:27 msgid "Avatar:" msgstr "Avatar:" -#: bookwyrm/templates/get_started/profile.html:39 +#: bookwyrm/templates/get_started/profile.html:52 msgid "Manually approve followers:" msgstr "Aprobar seguimentos manualmente:" -#: bookwyrm/templates/get_started/profile.html:45 +#: bookwyrm/templates/get_started/profile.html:58 msgid "Show this account in suggested users:" msgstr "Mostar esta conta en usuarias suxeridas:" -#: bookwyrm/templates/get_started/profile.html:49 +#: bookwyrm/templates/get_started/profile.html:62 msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "A túa conta aparecerá no directorio e pode ser recomendada a outras usuarias de BookWyrm." @@ -1907,7 +1907,7 @@ msgid "Login" msgstr "Conectar" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:181 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:178 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Conecta" @@ -1916,7 +1916,7 @@ msgstr "Conecta" msgid "Success! Email address confirmed." msgstr "Correcto! Enderezo de email confirmado." -#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:172 +#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:169 #: bookwyrm/templates/ostatus/error.html:28 #: bookwyrm/templates/snippets/register_form.html:4 msgid "Username:" @@ -1924,12 +1924,12 @@ msgstr "Nome de usuaria:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:176 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:173 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:20 msgid "Password:" msgstr "Contrasinal:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:178 +#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:175 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Esqueceches o contrasinal?" @@ -1961,19 +1961,19 @@ msgstr "Busca en %(site_name)s" msgid "Search for a book, user, or list" msgstr "Busca un libro, usuaria ou lista" -#: bookwyrm/templates/layout.html:63 bookwyrm/templates/layout.html:64 +#: bookwyrm/templates/layout.html:63 msgid "Main navigation menu" msgstr "Menú principal de navegación" -#: bookwyrm/templates/layout.html:74 +#: bookwyrm/templates/layout.html:71 msgid "Feed" msgstr "Fonte" -#: bookwyrm/templates/layout.html:118 +#: bookwyrm/templates/layout.html:115 msgid "Settings" msgstr "Axustes" -#: bookwyrm/templates/layout.html:127 +#: bookwyrm/templates/layout.html:124 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 #: bookwyrm/templates/settings/invites/manage_invites.html:3 #: bookwyrm/templates/settings/invites/manage_invites.html:15 @@ -1981,46 +1981,46 @@ msgstr "Axustes" msgid "Invites" msgstr "Convites" -#: bookwyrm/templates/layout.html:134 +#: bookwyrm/templates/layout.html:131 msgid "Admin" msgstr "Admin" -#: bookwyrm/templates/layout.html:141 +#: bookwyrm/templates/layout.html:138 msgid "Log out" msgstr "Desconectar" -#: bookwyrm/templates/layout.html:149 bookwyrm/templates/layout.html:150 +#: bookwyrm/templates/layout.html:146 bookwyrm/templates/layout.html:147 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "Notificacións" -#: bookwyrm/templates/layout.html:177 bookwyrm/templates/ostatus/error.html:33 +#: bookwyrm/templates/layout.html:174 bookwyrm/templates/ostatus/error.html:33 msgid "password" msgstr "contrasinal" -#: bookwyrm/templates/layout.html:189 +#: bookwyrm/templates/layout.html:186 msgid "Join" msgstr "Únete" -#: bookwyrm/templates/layout.html:223 +#: bookwyrm/templates/layout.html:220 msgid "Successfully posted status" msgstr "Publicación correcta" -#: bookwyrm/templates/layout.html:224 +#: bookwyrm/templates/layout.html:221 msgid "Error posting status" msgstr "Erro ao publicar" -#: bookwyrm/templates/layout.html:240 +#: bookwyrm/templates/layout.html:237 msgid "Documentation" msgstr "Documentación" -#: bookwyrm/templates/layout.html:247 +#: bookwyrm/templates/layout.html:244 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "Axuda a %(site_name)s en %(support_title)s" -#: bookwyrm/templates/layout.html:251 +#: bookwyrm/templates/layout.html:248 msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." msgstr "O código fonte de BookWyrm é público. Podes colaborar ou informar de problemas en GitHub." @@ -2096,56 +2096,56 @@ msgstr "A lista está baleira neste intre" msgid "List curation:" msgstr "Mantemento da lista:" -#: bookwyrm/templates/lists/form.html:22 +#: bookwyrm/templates/lists/form.html:31 msgid "Closed" msgstr "Pechada" -#: bookwyrm/templates/lists/form.html:23 +#: bookwyrm/templates/lists/form.html:34 msgid "Only you can add and remove books to this list" msgstr "Só ti podes engadir e eliminar libros desta lista" -#: bookwyrm/templates/lists/form.html:27 +#: bookwyrm/templates/lists/form.html:48 msgid "Curated" msgstr "Xestionada" -#: bookwyrm/templates/lists/form.html:28 +#: bookwyrm/templates/lists/form.html:51 msgid "Anyone can suggest books, subject to your approval" msgstr "Calquera pode suxerir libros, suxeita á túa aprobación" -#: bookwyrm/templates/lists/form.html:32 +#: bookwyrm/templates/lists/form.html:65 msgctxt "curation type" msgid "Open" msgstr "Aberta" -#: bookwyrm/templates/lists/form.html:33 +#: bookwyrm/templates/lists/form.html:68 msgid "Anyone can add books to this list" msgstr "Calquera pode engadir libros á lista" -#: bookwyrm/templates/lists/form.html:37 +#: bookwyrm/templates/lists/form.html:82 msgid "Group" msgstr "Grupo" -#: bookwyrm/templates/lists/form.html:38 +#: bookwyrm/templates/lists/form.html:85 msgid "Group members can add to and remove from this list" msgstr "As persoas do grupo poden engadir e eliminar libros desta lista" -#: bookwyrm/templates/lists/form.html:41 +#: bookwyrm/templates/lists/form.html:90 msgid "Select Group" msgstr "Elexir grupo" -#: bookwyrm/templates/lists/form.html:45 +#: bookwyrm/templates/lists/form.html:94 msgid "Select a group" msgstr "Elexir un grupo" -#: bookwyrm/templates/lists/form.html:56 +#: bookwyrm/templates/lists/form.html:105 msgid "You don't have any Groups yet!" msgstr "Aínda non tes Grupos!" -#: bookwyrm/templates/lists/form.html:58 +#: bookwyrm/templates/lists/form.html:107 msgid "Create a Group" msgstr "Crea un Grupo" -#: bookwyrm/templates/lists/form.html:81 +#: bookwyrm/templates/lists/form.html:130 msgid "Delete list" msgstr "Eliminar lista" @@ -2162,62 +2162,62 @@ msgstr "Engadiches correctamente un libro a esta lista!" msgid "Added by %(username)s" msgstr "Engadido por %(username)s" -#: bookwyrm/templates/lists/list.html:76 +#: bookwyrm/templates/lists/list.html:82 msgid "List position" msgstr "Posición da lista" -#: bookwyrm/templates/lists/list.html:82 +#: bookwyrm/templates/lists/list.html:88 msgid "Set" msgstr "Establecer" -#: bookwyrm/templates/lists/list.html:92 +#: bookwyrm/templates/lists/list.html:103 #: bookwyrm/templates/snippets/remove_from_group_button.html:19 msgid "Remove" msgstr "Eliminar" -#: bookwyrm/templates/lists/list.html:106 -#: bookwyrm/templates/lists/list.html:123 +#: bookwyrm/templates/lists/list.html:117 +#: bookwyrm/templates/lists/list.html:134 msgid "Sort List" msgstr "Ordenar lista" -#: bookwyrm/templates/lists/list.html:116 +#: bookwyrm/templates/lists/list.html:127 msgid "Direction" msgstr "Dirección" -#: bookwyrm/templates/lists/list.html:130 +#: bookwyrm/templates/lists/list.html:141 msgid "Add Books" msgstr "Engadir Libros" -#: bookwyrm/templates/lists/list.html:132 +#: bookwyrm/templates/lists/list.html:143 msgid "Suggest Books" msgstr "Suxerir Libros" -#: bookwyrm/templates/lists/list.html:143 +#: bookwyrm/templates/lists/list.html:154 msgid "search" msgstr "buscar" -#: bookwyrm/templates/lists/list.html:149 +#: bookwyrm/templates/lists/list.html:160 msgid "Clear search" msgstr "Limpar busca" -#: bookwyrm/templates/lists/list.html:154 +#: bookwyrm/templates/lists/list.html:165 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "Non se atopan libros coa consulta \"%(query)s\"" -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:197 msgid "Suggest" msgstr "Suxire" -#: bookwyrm/templates/lists/list.html:191 +#: bookwyrm/templates/lists/list.html:208 msgid "Embed this list on a website" msgstr "Utiliza esta lista nunha páxina web" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:216 msgid "Copy embed code" msgstr "Copia o código a incluír" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:218 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s, unha lista de %(owner)s en %(site_name)s" @@ -2696,7 +2696,7 @@ msgstr "Volver á lista" msgid "Edit Announcement" msgstr "Editar anuncio" -#: bookwyrm/templates/settings/announcements/announcement.html:35 +#: bookwyrm/templates/settings/announcements/announcement.html:34 msgid "Visible:" msgstr "Visible:" @@ -2708,19 +2708,19 @@ msgstr "Certo" msgid "False" msgstr "Falso" -#: bookwyrm/templates/settings/announcements/announcement.html:47 +#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/dashboard/dashboard.html:71 msgid "Start date:" msgstr "Data de inicio:" -#: bookwyrm/templates/settings/announcements/announcement.html:54 +#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:77 msgid "End date:" msgstr "Data de fin:" -#: bookwyrm/templates/settings/announcements/announcement.html:60 +#: bookwyrm/templates/settings/announcements/announcement.html:55 #: bookwyrm/templates/settings/announcements/announcement_form.html:64 msgid "Active:" msgstr "Activo:" @@ -4283,7 +4283,7 @@ msgstr "%(title)s: %(subtitle)s" msgid "Not a valid csv file" msgstr "Non é un ficheiro csv válido" -#: bookwyrm/views/landing/login.py:69 +#: bookwyrm/views/landing/login.py:70 msgid "Username or password are incorrect" msgstr "O nome de usuaria ou contrasinal non son correctos" diff --git a/locale/lt_LT/LC_MESSAGES/django.mo b/locale/lt_LT/LC_MESSAGES/django.mo index 21cce6fa704edb83cd31f036fc4884c304c6389a..eab1a45239146b5bb541f9fc8e7da07fab0c2dfe 100644 GIT binary patch delta 23518 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 &frY#T)Chbsm4<)^($8Rh@uSqjrox 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

7|iDa%MGnNWLq>~Bh zPoj;yCa*Vj(w|Jkvl8;qb}k;FpoVSNmh^hk?QHtz^hVYllzZO)U>b*#*h5GmjHJOU zD&@2lhmiN~^SkQVPL)6Fox&jE{)A(c_n==rWpNL7v29wBP9y$Sf2i6;WP}}{K9y<_ zo{_hLye622Uy)agcmrGSGt$?I$I?-A!WWcfC8R%v_(eB|dlkuwl zNzyL}*=X&BdR`K)5if;n2>(*{J>doM{)F_WGIdUppOK6##EaX0XOph2-zXlrQd`tN zD8`o{XEW*bu7 zCw0h(%YmuWCx&K7%`thUcS_pyN-4=R;!@wvi1AI`F>h`5lu>J@XD%66GCnT8d{lhN zgp%b_bFZD`lX9bB&eXaaxA~;ZT%RMQj>a3|JUro)BdOfX+&)iSET!rTT;q7{Fb6+1ej#0+^SKo*trkGUA~)#M7n\n" "Language-Team: Lithuanian\n" "Language: lt\n" @@ -60,7 +60,7 @@ msgstr "Knygos antraštė" msgid "Rating" msgstr "Įvertinimas" -#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:110 +#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:121 msgid "Sort By" msgstr "Rūšiuoti pagal" @@ -144,7 +144,7 @@ msgstr "%(value)s yra negaliojantis remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s yra negaliojantis naudotojo vardas" -#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:173 +#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:170 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "naudotojo vardas" @@ -247,94 +247,94 @@ msgstr "Kažkas nepavyko. Atsiprašome." #: bookwyrm/templates/feed/summary_card.html:8 #, python-format msgid "%(year)s in the books" -msgstr "" +msgstr "%(year)s metai knygomis" #: bookwyrm/templates/annual_summary/layout.html:43 #, python-format msgid "%(year)s in the books" -msgstr "" +msgstr "%(year)s knygos" #: bookwyrm/templates/annual_summary/layout.html:47 #, python-format msgid "%(display_name)s’s year of reading" -msgstr "" +msgstr "%(display_name)s’s skaitymo metai" #: bookwyrm/templates/annual_summary/layout.html:53 msgid "Share this page" -msgstr "" +msgstr "Dalintis šiuo puslapiu" #: bookwyrm/templates/annual_summary/layout.html:67 msgid "Copy address" -msgstr "" +msgstr "Kopijuoti adresą" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:217 msgid "Copied!" msgstr "Nukopijuota" #: bookwyrm/templates/annual_summary/layout.html:77 msgid "Sharing status: public with key" -msgstr "" +msgstr "Dalinimosi būsena: vieša, naudojantis raktu" #: bookwyrm/templates/annual_summary/layout.html:78 msgid "The page can be seen by anyone with the complete address." -msgstr "" +msgstr "Šis puslapis gali būti matomas, naudojant pilną adresą." #: bookwyrm/templates/annual_summary/layout.html:83 msgid "Make page private" -msgstr "" +msgstr "Padaryti puslapį privačiu" #: bookwyrm/templates/annual_summary/layout.html:89 msgid "Sharing status: private" -msgstr "" +msgstr "Dalinimosi būsena: privatu" #: bookwyrm/templates/annual_summary/layout.html:90 msgid "The page is private, only you can see it." -msgstr "" +msgstr "Šis puslapis yra privatus, tik jūs galite jį matyti." #: bookwyrm/templates/annual_summary/layout.html:95 msgid "Make page public" -msgstr "" +msgstr "Padaryti puslapį viešu" #: bookwyrm/templates/annual_summary/layout.html:99 msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." -msgstr "" +msgstr "Jei padarysite puslapį privačiu - senas raktas nustos galioti. Ateityje, viešinant puslapį, bus sukurtas naujas raktas." #: bookwyrm/templates/annual_summary/layout.html:112 #, python-format msgid "Sadly %(display_name)s didn’t finish any book in %(year)s" -msgstr "" +msgstr "%(display_name)s %(year)s metais neperskaitė nei vienos knygos. Liūdna" #: bookwyrm/templates/annual_summary/layout.html:118 #, python-format msgid "In %(year)s, %(display_name)s read %(books_total)s book
for a total of %(pages_total)s pages!" msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
for a total of %(pages_total)s pages!" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%(year)s metais, %(display_name)s perskaitė %(books_total)s knygą
viso%(pages_total)s puslapių!" +msgstr[1] "%(year)s metais, %(display_name)s perskaitė %(books_total)s knygas
viso%(pages_total)s puslapių!" +msgstr[2] "%(year)s metais, %(display_name)s perskaitė %(books_total)s knygas
viso%(pages_total)s puslapių!" +msgstr[3] "%(year)s metais, %(display_name)s perskaitė %(books_total)s knygas
viso%(pages_total)s puslapių!" #: bookwyrm/templates/annual_summary/layout.html:124 msgid "That’s great!" -msgstr "" +msgstr "Šaunu!" #: bookwyrm/templates/annual_summary/layout.html:127 #, python-format msgid "That makes an average of %(pages)s pages per book." -msgstr "" +msgstr "Tai sudaro vidutiniškai %(pages)s per knygą." #: bookwyrm/templates/annual_summary/layout.html:132 #, python-format msgid "(%(no_page_number)s book doesn’t have pages)" msgid_plural "(%(no_page_number)s books don’t have pages)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "(%(no_page_number)s knyga neturi puslapių)" +msgstr[1] "(%(no_page_number)s knygos neturi puslapių)" +msgstr[2] "(%(no_page_number)s knygos neturi puslapių)" +msgstr[3] "(%(no_page_number)s knygos neturi puslapių)" #: bookwyrm/templates/annual_summary/layout.html:148 msgid "Their shortest read this year…" -msgstr "" +msgstr "Trumpiausias skaitinys tais metais…" #: bookwyrm/templates/annual_summary/layout.html:155 #: bookwyrm/templates/annual_summary/layout.html:176 @@ -350,34 +350,34 @@ msgstr " " #: bookwyrm/templates/annual_summary/layout.html:182 #, python-format msgid "%(pages)s pages" -msgstr "" +msgstr "%(pages)s puslapiai" #: bookwyrm/templates/annual_summary/layout.html:169 msgid "…and the longest" -msgstr "" +msgstr "... ir ilgiausias" #: bookwyrm/templates/annual_summary/layout.html:199 #, python-format msgid "%(display_name)s left %(ratings_total)s rating,
their average rating is %(rating_average)s" msgid_plural "%(display_name)s left %(ratings_total)s ratings,
their average rating is %(rating_average)s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%(display_name)s įvertino %(ratings_total)s knygų,
vidutinis įvertinimas %(rating_average)s" +msgstr[1] "%(display_name)s įvertino %(ratings_total)s knygų,
vidutinis įvertinimas %(rating_average)s" +msgstr[2] "%(display_name)s įvertino %(ratings_total)s knygų,
vidutinis įvertinimas %(rating_average)s" +msgstr[3] "%(display_name)s įvertino %(ratings_total)s knygų,
vidutinis įvertinimas %(rating_average)s" #: bookwyrm/templates/annual_summary/layout.html:213 msgid "Their best rated review" -msgstr "" +msgstr "Geriausiai įvertinta apžvalga" #: bookwyrm/templates/annual_summary/layout.html:226 #, python-format msgid "Their rating: %(rating)s" -msgstr "" +msgstr "Įvertinimas: %(rating)s" #: bookwyrm/templates/annual_summary/layout.html:243 #, python-format msgid "All the books %(display_name)s read in %(year)s" -msgstr "" +msgstr "Visos %(display_name)s %(year)s metais perskaitytos knygos" #: bookwyrm/templates/author/author.html:18 #: bookwyrm/templates/author/author.html:19 @@ -525,7 +525,7 @@ msgstr "ISNI:" #: bookwyrm/templates/book/readthrough.html:76 #: bookwyrm/templates/groups/form.html:24 #: bookwyrm/templates/lists/bookmark_button.html:15 -#: bookwyrm/templates/lists/form.html:75 +#: bookwyrm/templates/lists/form.html:124 #: bookwyrm/templates/preferences/edit_user.html:124 #: bookwyrm/templates/settings/announcements/announcement_form.html:76 #: bookwyrm/templates/settings/federation/edit_instance.html:82 @@ -649,7 +649,7 @@ msgstr "Temos" msgid "Places" msgstr "Vietos" -#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:77 +#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:74 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 #: bookwyrm/templates/search/layout.html:25 #: bookwyrm/templates/search/layout.html:50 @@ -663,7 +663,7 @@ msgstr "Pridėti prie sąrašo" #: bookwyrm/templates/book/book.html:341 #: bookwyrm/templates/book/cover_modal.html:31 -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:195 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -947,8 +947,8 @@ msgstr "Duomenų įkėlimas prisijungs prie %(source_name)s ir #: bookwyrm/templates/components/modal.html:11 #: bookwyrm/templates/components/tooltip.html:7 #: bookwyrm/templates/feed/layout.html:71 -#: bookwyrm/templates/get_started/layout.html:20 -#: bookwyrm/templates/get_started/layout.html:53 +#: bookwyrm/templates/get_started/layout.html:25 +#: bookwyrm/templates/get_started/layout.html:58 #: bookwyrm/templates/search/book.html:49 #: bookwyrm/templates/snippets/announcement.html:18 msgid "Close" @@ -1024,7 +1024,7 @@ msgstr "Sujungta bendruomenė" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:103 +#: bookwyrm/templates/layout.html:100 msgid "Directory" msgstr "Bendruomenė" @@ -1148,7 +1148,7 @@ msgstr "%(username)s citavo %(username)s" msgstr "Asmeninis susirašinėjimas su %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:113 +#: bookwyrm/templates/layout.html:110 msgid "Direct Messages" msgstr "Asmeninės žinutės" @@ -1317,7 +1317,7 @@ msgstr "Išsaugoti nustatymus" #: bookwyrm/templates/feed/feed.html:63 #, python-format msgid "load 0 unread status(es)" -msgstr "įkelti 0 neperskaitytų būsena" +msgstr "įkelti 0 neperskaitytas būsenas" #: bookwyrm/templates/feed/feed.html:86 msgid "There aren't any activities right now! Try following a user to get started" @@ -1343,7 +1343,7 @@ msgstr "Bet kuriuo metu galite pakeisti savo skaitymo tikslą savo %(support_title)s" msgstr "Paremkite %(site_name)s per %(support_title)s" -#: bookwyrm/templates/layout.html:251 +#: bookwyrm/templates/layout.html:248 msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." msgstr "„BookWyrm“ šaltinio kodas yra laisvai prieinamas. Galite prisidėti arba pranešti apie klaidas per GitHub." @@ -2116,56 +2116,56 @@ msgstr "Šiuo metu sąrašas tuščias" msgid "List curation:" msgstr "Sąrašo kuravimas:" -#: bookwyrm/templates/lists/form.html:22 +#: bookwyrm/templates/lists/form.html:31 msgid "Closed" msgstr "Uždaryta" -#: bookwyrm/templates/lists/form.html:23 +#: bookwyrm/templates/lists/form.html:34 msgid "Only you can add and remove books to this list" msgstr "Tik jūs galite pridėti ar pašalinti knygas iš šio sąrašo" -#: bookwyrm/templates/lists/form.html:27 +#: bookwyrm/templates/lists/form.html:48 msgid "Curated" msgstr "Kuruojama" -#: bookwyrm/templates/lists/form.html:28 +#: bookwyrm/templates/lists/form.html:51 msgid "Anyone can suggest books, subject to your approval" msgstr "Knygas gali siūlyti visi, tačiau jūs turėsite patvirtinti" -#: bookwyrm/templates/lists/form.html:32 +#: bookwyrm/templates/lists/form.html:65 msgctxt "curation type" msgid "Open" msgstr "Atidaryti" -#: bookwyrm/templates/lists/form.html:33 +#: bookwyrm/templates/lists/form.html:68 msgid "Anyone can add books to this list" msgstr "Visi gali pridėti knygų į sąrašą" -#: bookwyrm/templates/lists/form.html:37 +#: bookwyrm/templates/lists/form.html:82 msgid "Group" msgstr "Grupė" -#: bookwyrm/templates/lists/form.html:38 +#: bookwyrm/templates/lists/form.html:85 msgid "Group members can add to and remove from this list" msgstr "Grupės nariai gali pridėti ir išimti iš sąrašo" -#: bookwyrm/templates/lists/form.html:41 +#: bookwyrm/templates/lists/form.html:90 msgid "Select Group" msgstr "Pasirinkti grupę" -#: bookwyrm/templates/lists/form.html:45 +#: bookwyrm/templates/lists/form.html:94 msgid "Select a group" msgstr "Pasirinkite grupę" -#: bookwyrm/templates/lists/form.html:56 +#: bookwyrm/templates/lists/form.html:105 msgid "You don't have any Groups yet!" msgstr "Dar neturite grupių!" -#: bookwyrm/templates/lists/form.html:58 +#: bookwyrm/templates/lists/form.html:107 msgid "Create a Group" msgstr "Sukurti grupę" -#: bookwyrm/templates/lists/form.html:81 +#: bookwyrm/templates/lists/form.html:130 msgid "Delete list" msgstr "Ištrinti sąrašą" @@ -2182,62 +2182,62 @@ msgstr "Sėkmingai pridėjote knygą į šį sąrašą!" msgid "Added by %(username)s" msgstr "Pridėjo %(username)s" -#: bookwyrm/templates/lists/list.html:76 +#: bookwyrm/templates/lists/list.html:82 msgid "List position" msgstr "Sąrašo pozicija" -#: bookwyrm/templates/lists/list.html:82 +#: bookwyrm/templates/lists/list.html:88 msgid "Set" msgstr "Nustatyti" -#: bookwyrm/templates/lists/list.html:92 +#: bookwyrm/templates/lists/list.html:103 #: bookwyrm/templates/snippets/remove_from_group_button.html:19 msgid "Remove" msgstr "Pašalinti" -#: bookwyrm/templates/lists/list.html:106 -#: bookwyrm/templates/lists/list.html:123 +#: bookwyrm/templates/lists/list.html:117 +#: bookwyrm/templates/lists/list.html:134 msgid "Sort List" msgstr "Rūšiuoti sąrašą" -#: bookwyrm/templates/lists/list.html:116 +#: bookwyrm/templates/lists/list.html:127 msgid "Direction" msgstr "Kryptis" -#: bookwyrm/templates/lists/list.html:130 +#: bookwyrm/templates/lists/list.html:141 msgid "Add Books" msgstr "Pridėti knygų" -#: bookwyrm/templates/lists/list.html:132 +#: bookwyrm/templates/lists/list.html:143 msgid "Suggest Books" msgstr "Siūlyti knygų" -#: bookwyrm/templates/lists/list.html:143 +#: bookwyrm/templates/lists/list.html:154 msgid "search" msgstr "paieška" -#: bookwyrm/templates/lists/list.html:149 +#: bookwyrm/templates/lists/list.html:160 msgid "Clear search" msgstr "Išvalyti paiešką" -#: bookwyrm/templates/lists/list.html:154 +#: bookwyrm/templates/lists/list.html:165 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "Pagal paiešką „%(query)s“ knygų nerasta" -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:197 msgid "Suggest" msgstr "Siūlyti" -#: bookwyrm/templates/lists/list.html:191 +#: bookwyrm/templates/lists/list.html:208 msgid "Embed this list on a website" msgstr "Įdėkite šį sąrašą į tinklalapį" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:216 msgid "Copy embed code" msgstr "Nukopijuokite įterptinį kodą" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:218 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s, sąrašą sudarė %(owner)s, per %(site_name)s" @@ -2716,7 +2716,7 @@ msgstr "Atgal į sąrašą" msgid "Edit Announcement" msgstr "Redaguoti pranešimą" -#: bookwyrm/templates/settings/announcements/announcement.html:35 +#: bookwyrm/templates/settings/announcements/announcement.html:34 msgid "Visible:" msgstr "Matoma:" @@ -2728,19 +2728,19 @@ msgstr "Tiesa" msgid "False" msgstr "Netiesa" -#: bookwyrm/templates/settings/announcements/announcement.html:47 +#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/dashboard/dashboard.html:71 msgid "Start date:" msgstr "Pradžios data:" -#: bookwyrm/templates/settings/announcements/announcement.html:54 +#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:77 msgid "End date:" msgstr "Pabaigos data:" -#: bookwyrm/templates/settings/announcements/announcement.html:60 +#: bookwyrm/templates/settings/announcements/announcement.html:55 #: bookwyrm/templates/settings/announcements/announcement_form.html:64 msgid "Active:" msgstr "Aktyvu:" @@ -4327,7 +4327,7 @@ msgstr "%(title)s: %(subtitle)s" msgid "Not a valid csv file" msgstr "Netinkamas csv failas" -#: bookwyrm/views/landing/login.py:69 +#: bookwyrm/views/landing/login.py:70 msgid "Username or password are incorrect" msgstr "Naudotojo vardas arba slaptažodis neteisingi" diff --git a/locale/pt_BR/LC_MESSAGES/django.mo b/locale/pt_BR/LC_MESSAGES/django.mo index 3862e0bb954ad25ba4268e1bcb3bf78a4c750d29..6a2b4028299c4119a7e71cd6075a532d888bfbbc 100644 GIT binary patch delta 23 fcmbQgon`)ZmJI@HIgAYy3=FJ{%r{G{ZO;P$Wt#{c delta 23 fcmbQgon`)ZmJI@HIgBh73=FIcEH+E5ZO;P$W%39l diff --git a/locale/pt_BR/LC_MESSAGES/django.po b/locale/pt_BR/LC_MESSAGES/django.po index f8bbf8ec9..5447c1470 100644 --- a/locale/pt_BR/LC_MESSAGES/django.po +++ b/locale/pt_BR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-28 20:12+0000\n" -"PO-Revision-Date: 2021-12-29 00:08\n" +"POT-Creation-Date: 2021-12-29 21:32+0000\n" +"PO-Revision-Date: 2021-12-30 00:27\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt\n" @@ -60,7 +60,7 @@ msgstr "Título do livro" msgid "Rating" msgstr "Avaliação" -#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:110 +#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:121 msgid "Sort By" msgstr "Organizar por" @@ -144,7 +144,7 @@ msgstr "%(value)s não é um remote_id válido" msgid "%(value)s is not a valid username" msgstr "%(value)s não é um nome de usuário válido" -#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:173 +#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:170 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "nome de usuário" @@ -268,7 +268,7 @@ msgid "Copy address" msgstr "Copiar endereço" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:217 msgid "Copied!" msgstr "Copiado!" @@ -519,7 +519,7 @@ msgstr "ISNI:" #: bookwyrm/templates/book/readthrough.html:76 #: bookwyrm/templates/groups/form.html:24 #: bookwyrm/templates/lists/bookmark_button.html:15 -#: bookwyrm/templates/lists/form.html:75 +#: bookwyrm/templates/lists/form.html:124 #: bookwyrm/templates/preferences/edit_user.html:124 #: bookwyrm/templates/settings/announcements/announcement_form.html:76 #: bookwyrm/templates/settings/federation/edit_instance.html:82 @@ -641,7 +641,7 @@ msgstr "Assuntos" msgid "Places" msgstr "Lugares" -#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:77 +#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:74 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 #: bookwyrm/templates/search/layout.html:25 #: bookwyrm/templates/search/layout.html:50 @@ -655,7 +655,7 @@ msgstr "Adicionar à lista" #: bookwyrm/templates/book/book.html:341 #: bookwyrm/templates/book/cover_modal.html:31 -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:195 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -939,8 +939,8 @@ msgstr "Para carregar informações nos conectaremos a %(source_name)s%(username)s citou %(username)s" msgstr "Mensagens diretas com %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:113 +#: bookwyrm/templates/layout.html:110 msgid "Direct Messages" msgstr "Mensagens diretas" @@ -1331,7 +1331,7 @@ msgstr "Você pode definir ou alterar sua meta de leitura a qualquer momento em msgid "Updates" msgstr "Atualizações" -#: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:105 msgid "Your Books" msgstr "Seus livros" @@ -1408,7 +1408,7 @@ msgid "What are you reading?" msgstr "O que você está lendo?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:138 +#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:149 msgid "Search for a book" msgstr "Pesquisar livro" @@ -1428,7 +1428,7 @@ msgstr "Você pode adicionar livros quando começar a usar o %(site_name)s." #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/groups/group.html:20 bookwyrm/templates/layout.html:53 -#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:153 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1444,12 +1444,12 @@ msgid "Popular on %(site_name)s" msgstr "Popular em %(site_name)s" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:155 +#: bookwyrm/templates/lists/list.html:166 msgid "No books found" msgstr "Nenhum livro encontrado" #: bookwyrm/templates/get_started/books.html:63 -#: bookwyrm/templates/get_started/profile.html:51 +#: bookwyrm/templates/get_started/profile.html:64 msgid "Save & continue" msgstr "Salvar & continuar" @@ -1458,33 +1458,33 @@ msgstr "Salvar & continuar" msgid "Welcome" msgstr "Bem-vindo(a)" -#: bookwyrm/templates/get_started/layout.html:15 +#: bookwyrm/templates/get_started/layout.html:20 #, python-format msgid "Welcome to %(site_name)s!" msgstr "Bem-vindol(a) a %(site_name)s!" -#: bookwyrm/templates/get_started/layout.html:17 +#: bookwyrm/templates/get_started/layout.html:22 msgid "These are some first steps to get you started." msgstr "Estes são os primeiros passos para você começar." -#: bookwyrm/templates/get_started/layout.html:31 +#: bookwyrm/templates/get_started/layout.html:36 #: bookwyrm/templates/get_started/profile.html:6 msgid "Create your profile" msgstr "Crie seu perfil" -#: bookwyrm/templates/get_started/layout.html:35 +#: bookwyrm/templates/get_started/layout.html:40 msgid "Add books" msgstr "Adicione livros" -#: bookwyrm/templates/get_started/layout.html:39 +#: bookwyrm/templates/get_started/layout.html:44 msgid "Find friends" msgstr "Encontre amigos" -#: bookwyrm/templates/get_started/layout.html:45 +#: bookwyrm/templates/get_started/layout.html:50 msgid "Skip this step" msgstr "Ignorar este passo" -#: bookwyrm/templates/get_started/layout.html:49 +#: bookwyrm/templates/get_started/layout.html:54 msgid "Finish" msgstr "Finalizar" @@ -1493,29 +1493,29 @@ msgstr "Finalizar" msgid "Display name:" msgstr "Nome de exibição:" -#: bookwyrm/templates/get_started/profile.html:21 +#: bookwyrm/templates/get_started/profile.html:29 #: bookwyrm/templates/preferences/edit_user.html:47 msgid "Summary:" msgstr "Bio:" -#: bookwyrm/templates/get_started/profile.html:22 +#: bookwyrm/templates/get_started/profile.html:34 msgid "A little bit about you" msgstr "Um pouco sobre você" -#: bookwyrm/templates/get_started/profile.html:30 +#: bookwyrm/templates/get_started/profile.html:43 #: bookwyrm/templates/preferences/edit_user.html:27 msgid "Avatar:" msgstr "Imagem de perfil:" -#: bookwyrm/templates/get_started/profile.html:39 +#: bookwyrm/templates/get_started/profile.html:52 msgid "Manually approve followers:" msgstr "Aprovar seguidores manualmente:" -#: bookwyrm/templates/get_started/profile.html:45 +#: bookwyrm/templates/get_started/profile.html:58 msgid "Show this account in suggested users:" msgstr "Mostrar conta nas sugestões de usuários:" -#: bookwyrm/templates/get_started/profile.html:49 +#: bookwyrm/templates/get_started/profile.html:62 msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "Sua conta aparecerá no diretório e poderá ser recomendada para outros usuários da BookWyrm." @@ -1907,7 +1907,7 @@ msgid "Login" msgstr "Entrar" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:181 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:178 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Entrar" @@ -1916,7 +1916,7 @@ msgstr "Entrar" msgid "Success! Email address confirmed." msgstr "Endereço de e-mail confirmado com sucesso." -#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:172 +#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:169 #: bookwyrm/templates/ostatus/error.html:28 #: bookwyrm/templates/snippets/register_form.html:4 msgid "Username:" @@ -1924,12 +1924,12 @@ msgstr "Usuário:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:176 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:173 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:20 msgid "Password:" msgstr "Senha:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:178 +#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:175 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Esqueceu sua senha?" @@ -1961,19 +1961,19 @@ msgstr "Busca %(site_name)s" msgid "Search for a book, user, or list" msgstr "Pesquisar livro, usuário ou lista" -#: bookwyrm/templates/layout.html:63 bookwyrm/templates/layout.html:64 +#: bookwyrm/templates/layout.html:63 msgid "Main navigation menu" msgstr "Menu de navegação principal" -#: bookwyrm/templates/layout.html:74 +#: bookwyrm/templates/layout.html:71 msgid "Feed" msgstr "Novidades" -#: bookwyrm/templates/layout.html:118 +#: bookwyrm/templates/layout.html:115 msgid "Settings" msgstr "Configurações" -#: bookwyrm/templates/layout.html:127 +#: bookwyrm/templates/layout.html:124 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 #: bookwyrm/templates/settings/invites/manage_invites.html:3 #: bookwyrm/templates/settings/invites/manage_invites.html:15 @@ -1981,46 +1981,46 @@ msgstr "Configurações" msgid "Invites" msgstr "Convites" -#: bookwyrm/templates/layout.html:134 +#: bookwyrm/templates/layout.html:131 msgid "Admin" msgstr "Admin" -#: bookwyrm/templates/layout.html:141 +#: bookwyrm/templates/layout.html:138 msgid "Log out" msgstr "Sair" -#: bookwyrm/templates/layout.html:149 bookwyrm/templates/layout.html:150 +#: bookwyrm/templates/layout.html:146 bookwyrm/templates/layout.html:147 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "Notificações" -#: bookwyrm/templates/layout.html:177 bookwyrm/templates/ostatus/error.html:33 +#: bookwyrm/templates/layout.html:174 bookwyrm/templates/ostatus/error.html:33 msgid "password" msgstr "senha" -#: bookwyrm/templates/layout.html:189 +#: bookwyrm/templates/layout.html:186 msgid "Join" msgstr "Registrar" -#: bookwyrm/templates/layout.html:223 +#: bookwyrm/templates/layout.html:220 msgid "Successfully posted status" msgstr "Publicação feita com sucesso" -#: bookwyrm/templates/layout.html:224 +#: bookwyrm/templates/layout.html:221 msgid "Error posting status" msgstr "Erro ao publicar" -#: bookwyrm/templates/layout.html:240 +#: bookwyrm/templates/layout.html:237 msgid "Documentation" msgstr "Documentação" -#: bookwyrm/templates/layout.html:247 +#: bookwyrm/templates/layout.html:244 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "Apoie a instância %(site_name)s: %(support_title)s" -#: bookwyrm/templates/layout.html:251 +#: bookwyrm/templates/layout.html:248 msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." msgstr "O código-fonte da BookWyrm está disponível gratuitamente. Você pode contribuir ou reportar problemas no GitHub." @@ -2096,56 +2096,56 @@ msgstr "Esta lista está vazia" msgid "List curation:" msgstr "Configuração da lista:" -#: bookwyrm/templates/lists/form.html:22 +#: bookwyrm/templates/lists/form.html:31 msgid "Closed" msgstr "Fechada" -#: bookwyrm/templates/lists/form.html:23 +#: bookwyrm/templates/lists/form.html:34 msgid "Only you can add and remove books to this list" msgstr "Só você pode adicionar ou remover livros" -#: bookwyrm/templates/lists/form.html:27 +#: bookwyrm/templates/lists/form.html:48 msgid "Curated" msgstr "Moderada" -#: bookwyrm/templates/lists/form.html:28 +#: bookwyrm/templates/lists/form.html:51 msgid "Anyone can suggest books, subject to your approval" msgstr "Qualquer pessoa pode sugerir livros para sua aprovação" -#: bookwyrm/templates/lists/form.html:32 +#: bookwyrm/templates/lists/form.html:65 msgctxt "curation type" msgid "Open" msgstr "Aberta" -#: bookwyrm/templates/lists/form.html:33 +#: bookwyrm/templates/lists/form.html:68 msgid "Anyone can add books to this list" msgstr "Qualquer pessoa pode adicionar livros à lista" -#: bookwyrm/templates/lists/form.html:37 +#: bookwyrm/templates/lists/form.html:82 msgid "Group" msgstr "Grupo" -#: bookwyrm/templates/lists/form.html:38 +#: bookwyrm/templates/lists/form.html:85 msgid "Group members can add to and remove from this list" msgstr "Membros do grupo podem adicionar e remover itens da lista" -#: bookwyrm/templates/lists/form.html:41 +#: bookwyrm/templates/lists/form.html:90 msgid "Select Group" msgstr "Selecionar grupo" -#: bookwyrm/templates/lists/form.html:45 +#: bookwyrm/templates/lists/form.html:94 msgid "Select a group" msgstr "Selecione um grupo" -#: bookwyrm/templates/lists/form.html:56 +#: bookwyrm/templates/lists/form.html:105 msgid "You don't have any Groups yet!" msgstr "Você ainda não tem nenhum Grupo!" -#: bookwyrm/templates/lists/form.html:58 +#: bookwyrm/templates/lists/form.html:107 msgid "Create a Group" msgstr "Criar grupo" -#: bookwyrm/templates/lists/form.html:81 +#: bookwyrm/templates/lists/form.html:130 msgid "Delete list" msgstr "Excluir lista" @@ -2162,62 +2162,62 @@ msgstr "Você adicionou um livro a esta lista com sucesso!" msgid "Added by %(username)s" msgstr "Adicionado por %(username)s" -#: bookwyrm/templates/lists/list.html:76 +#: bookwyrm/templates/lists/list.html:82 msgid "List position" msgstr "Posição na lista" -#: bookwyrm/templates/lists/list.html:82 +#: bookwyrm/templates/lists/list.html:88 msgid "Set" msgstr "Definir" -#: bookwyrm/templates/lists/list.html:92 +#: bookwyrm/templates/lists/list.html:103 #: bookwyrm/templates/snippets/remove_from_group_button.html:19 msgid "Remove" msgstr "Remover" -#: bookwyrm/templates/lists/list.html:106 -#: bookwyrm/templates/lists/list.html:123 +#: bookwyrm/templates/lists/list.html:117 +#: bookwyrm/templates/lists/list.html:134 msgid "Sort List" msgstr "Ordenar lista" -#: bookwyrm/templates/lists/list.html:116 +#: bookwyrm/templates/lists/list.html:127 msgid "Direction" msgstr "Sentido" -#: bookwyrm/templates/lists/list.html:130 +#: bookwyrm/templates/lists/list.html:141 msgid "Add Books" msgstr "Adicionar livros" -#: bookwyrm/templates/lists/list.html:132 +#: bookwyrm/templates/lists/list.html:143 msgid "Suggest Books" msgstr "Sugerir livros" -#: bookwyrm/templates/lists/list.html:143 +#: bookwyrm/templates/lists/list.html:154 msgid "search" msgstr "pesquisar" -#: bookwyrm/templates/lists/list.html:149 +#: bookwyrm/templates/lists/list.html:160 msgid "Clear search" msgstr "Limpar pesquisa" -#: bookwyrm/templates/lists/list.html:154 +#: bookwyrm/templates/lists/list.html:165 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "Nenhum livro encontrado para \"%(query)s\"" -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:197 msgid "Suggest" msgstr "Sugerir" -#: bookwyrm/templates/lists/list.html:191 +#: bookwyrm/templates/lists/list.html:208 msgid "Embed this list on a website" msgstr "Incorpore esta lista em um site" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:216 msgid "Copy embed code" msgstr "Copiar código de incorporação" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:218 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s, uma lista de %(owner)s em %(site_name)s" @@ -2696,7 +2696,7 @@ msgstr "Voltar à lista" msgid "Edit Announcement" msgstr "Editar aviso" -#: bookwyrm/templates/settings/announcements/announcement.html:35 +#: bookwyrm/templates/settings/announcements/announcement.html:34 msgid "Visible:" msgstr "Visível:" @@ -2708,19 +2708,19 @@ msgstr "Verdadeiro" msgid "False" msgstr "Falso" -#: bookwyrm/templates/settings/announcements/announcement.html:47 +#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/dashboard/dashboard.html:71 msgid "Start date:" msgstr "Data de início:" -#: bookwyrm/templates/settings/announcements/announcement.html:54 +#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:77 msgid "End date:" msgstr "Data final:" -#: bookwyrm/templates/settings/announcements/announcement.html:60 +#: bookwyrm/templates/settings/announcements/announcement.html:55 #: bookwyrm/templates/settings/announcements/announcement_form.html:64 msgid "Active:" msgstr "Ativo:" @@ -4283,7 +4283,7 @@ msgstr "%(title)s: %(subtitle)s" msgid "Not a valid csv file" msgstr "Não é um arquivo csv válido" -#: bookwyrm/views/landing/login.py:69 +#: bookwyrm/views/landing/login.py:70 msgid "Username or password are incorrect" msgstr "Nome de usuário ou senha incorretos" diff --git a/locale/zh_Hans/LC_MESSAGES/django.mo b/locale/zh_Hans/LC_MESSAGES/django.mo index fdd768973fc969ad186d9e25d2748400c0a31ebc..652b1518188d53d256ede815402b810246ee3a73 100644 GIT binary patch literal 68387 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 Pk$ENb9Nuf6DdX{f5(IvI delta 18428 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 YW5@gFylEP`Jt%R&y}\n" "Language-Team: Chinese Simplified\n" "Language: zh\n" @@ -60,7 +60,7 @@ msgstr "书名" msgid "Rating" msgstr "评价" -#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:110 +#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:121 msgid "Sort By" msgstr "排序方式" @@ -144,7 +144,7 @@ msgstr "%(value)s 不是有效的 remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s 不是有效的用户名" -#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:173 +#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:170 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "用户名" @@ -247,88 +247,88 @@ msgstr "某些东西出错了!对不起啦。" #: bookwyrm/templates/feed/summary_card.html:8 #, python-format msgid "%(year)s in the books" -msgstr "" +msgstr "书中的 %(year)s" #: bookwyrm/templates/annual_summary/layout.html:43 #, python-format msgid "%(year)s in the books" -msgstr "" +msgstr "书中的 %(year)s" #: bookwyrm/templates/annual_summary/layout.html:47 #, python-format msgid "%(display_name)s’s year of reading" -msgstr "" +msgstr "%(display_name)s 阅读的一年" #: bookwyrm/templates/annual_summary/layout.html:53 msgid "Share this page" -msgstr "" +msgstr "分享此页面" #: bookwyrm/templates/annual_summary/layout.html:67 msgid "Copy address" -msgstr "" +msgstr "复制地址" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:217 msgid "Copied!" -msgstr "" +msgstr "复制成功!" #: bookwyrm/templates/annual_summary/layout.html:77 msgid "Sharing status: public with key" -msgstr "" +msgstr "共享状态:公开(需要密钥)" #: bookwyrm/templates/annual_summary/layout.html:78 msgid "The page can be seen by anyone with the complete address." -msgstr "" +msgstr "有完整地址的任何人都可以看到该页面。" #: bookwyrm/templates/annual_summary/layout.html:83 msgid "Make page private" -msgstr "" +msgstr "将页面设为私密" #: bookwyrm/templates/annual_summary/layout.html:89 msgid "Sharing status: private" -msgstr "" +msgstr "共享状态:私密" #: bookwyrm/templates/annual_summary/layout.html:90 msgid "The page is private, only you can see it." -msgstr "" +msgstr "页面是私密的,只有您可以看到。" #: bookwyrm/templates/annual_summary/layout.html:95 msgid "Make page public" -msgstr "" +msgstr "将页面设为公开" #: bookwyrm/templates/annual_summary/layout.html:99 msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." -msgstr "" +msgstr "当您将您的页面设置为私密时,旧的密钥将不再允许访问该页面。 如果页面再次公开,将创建一个新的密钥。" #: bookwyrm/templates/annual_summary/layout.html:112 #, python-format msgid "Sadly %(display_name)s didn’t finish any book in %(year)s" -msgstr "" +msgstr "很遗憾 %(display_name)s 在 %(year)s 并没有读完任何书" #: bookwyrm/templates/annual_summary/layout.html:118 #, python-format msgid "In %(year)s, %(display_name)s read %(books_total)s book
for a total of %(pages_total)s pages!" msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
for a total of %(pages_total)s pages!" -msgstr[0] "" +msgstr[0] "在 %(year)s,%(display_name)s 读了 %(books_total)s 本书
总共 %(pages_total)s 页!" #: bookwyrm/templates/annual_summary/layout.html:124 msgid "That’s great!" -msgstr "" +msgstr "太棒了!" #: bookwyrm/templates/annual_summary/layout.html:127 #, python-format msgid "That makes an average of %(pages)s pages per book." -msgstr "" +msgstr "这样每本书平均下来有 %(pages)s 页。" #: bookwyrm/templates/annual_summary/layout.html:132 #, python-format msgid "(%(no_page_number)s book doesn’t have pages)" msgid_plural "(%(no_page_number)s books don’t have pages)" -msgstr[0] "" +msgstr[0] "(%(no_page_number)s 本书没有页码)" #: bookwyrm/templates/annual_summary/layout.html:148 msgid "Their shortest read this year…" -msgstr "" +msgstr "TA 今年阅读最短的…" #: bookwyrm/templates/annual_summary/layout.html:155 #: bookwyrm/templates/annual_summary/layout.html:176 @@ -344,31 +344,31 @@ msgstr "作者" #: bookwyrm/templates/annual_summary/layout.html:182 #, python-format msgid "%(pages)s pages" -msgstr "" +msgstr "%(pages)s 页" #: bookwyrm/templates/annual_summary/layout.html:169 msgid "…and the longest" -msgstr "" +msgstr "…最长的" #: bookwyrm/templates/annual_summary/layout.html:199 #, python-format msgid "%(display_name)s left %(ratings_total)s rating,
their average rating is %(rating_average)s" msgid_plural "%(display_name)s left %(ratings_total)s ratings,
their average rating is %(rating_average)s" -msgstr[0] "" +msgstr[0] "%(display_name)s 留下了 %(ratings_total)s 条评分,
TA 的平均评分是 %(rating_average)s" #: bookwyrm/templates/annual_summary/layout.html:213 msgid "Their best rated review" -msgstr "" +msgstr "TA 评分最好的评论" #: bookwyrm/templates/annual_summary/layout.html:226 #, python-format msgid "Their rating: %(rating)s" -msgstr "" +msgstr "TA 的评分:%(rating)s" #: bookwyrm/templates/annual_summary/layout.html:243 #, python-format msgid "All the books %(display_name)s read in %(year)s" -msgstr "" +msgstr "在 %(year)s 里 %(display_name)s 阅读的所有书" #: bookwyrm/templates/author/author.html:18 #: bookwyrm/templates/author/author.html:19 @@ -377,7 +377,7 @@ msgstr "编辑作者" #: bookwyrm/templates/author/author.html:40 msgid "Author details" -msgstr "" +msgstr "作者详情" #: bookwyrm/templates/author/author.html:44 #: bookwyrm/templates/author/edit_author.html:42 @@ -394,7 +394,7 @@ msgstr "逝世:" #: bookwyrm/templates/author/author.html:70 msgid "External links" -msgstr "" +msgstr "外部链接" #: bookwyrm/templates/author/author.html:75 msgid "Wikipedia" @@ -402,14 +402,14 @@ msgstr "维基百科" #: bookwyrm/templates/author/author.html:83 msgid "View ISNI record" -msgstr "" +msgstr "查看 ISNI 记录" #: bookwyrm/templates/author/author.html:88 #: bookwyrm/templates/author/sync_modal.html:5 #: bookwyrm/templates/book/book.html:93 #: bookwyrm/templates/book/sync_modal.html:5 msgid "Load data" -msgstr "" +msgstr "加载数据" #: bookwyrm/templates/author/author.html:92 #: bookwyrm/templates/book/book.html:96 @@ -508,7 +508,7 @@ msgstr "Goodreads key:" #: bookwyrm/templates/author/edit_author.html:105 msgid "ISNI:" -msgstr "" +msgstr "ISNI:" #: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/book/book.html:157 @@ -516,7 +516,7 @@ msgstr "" #: bookwyrm/templates/book/readthrough.html:76 #: bookwyrm/templates/groups/form.html:24 #: bookwyrm/templates/lists/bookmark_button.html:15 -#: bookwyrm/templates/lists/form.html:75 +#: bookwyrm/templates/lists/form.html:124 #: bookwyrm/templates/preferences/edit_user.html:124 #: bookwyrm/templates/settings/announcements/announcement_form.html:76 #: bookwyrm/templates/settings/federation/edit_instance.html:82 @@ -547,7 +547,7 @@ msgstr "取消" #: bookwyrm/templates/author/sync_modal.html:15 #, python-format msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." -msgstr "" +msgstr "加载数据会连接到 %(source_name)s 并检查这里还没有记录的与作者相关的元数据。现存的元数据不会被覆盖。" #: bookwyrm/templates/author/sync_modal.html:23 #: bookwyrm/templates/book/edit/edit_book.html:108 @@ -594,7 +594,7 @@ msgstr "%(count)s 个版本" #: bookwyrm/templates/book/book.html:175 msgid "You have shelved this edition in:" -msgstr "" +msgstr "此版本已在你的书架上:" #: bookwyrm/templates/book/book.html:190 #, python-format @@ -637,7 +637,7 @@ msgstr "主题" msgid "Places" msgstr "地点" -#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:77 +#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:74 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 #: bookwyrm/templates/search/layout.html:25 #: bookwyrm/templates/search/layout.html:50 @@ -651,7 +651,7 @@ msgstr "添加到列表" #: bookwyrm/templates/book/book.html:341 #: bookwyrm/templates/book/cover_modal.html:31 -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:195 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -699,16 +699,16 @@ msgstr "确认书目信息" #: bookwyrm/templates/book/edit/edit_book.html:56 #, python-format msgid "Is \"%(name)s\" one of these authors?" -msgstr "" +msgstr "“%(name)s” 是这些作者之一吗?" #: bookwyrm/templates/book/edit/edit_book.html:67 #: bookwyrm/templates/book/edit/edit_book.html:69 msgid "Author of " -msgstr "" +msgstr "所著书有 " #: bookwyrm/templates/book/edit/edit_book.html:69 msgid "Find more information at isni.org" -msgstr "" +msgstr "在 isni.org 查找更多信息" #: bookwyrm/templates/book/edit/edit_book.html:79 msgid "This is a new author" @@ -790,16 +790,16 @@ msgstr "添加作者:" #: bookwyrm/templates/book/edit/edit_book_form.html:145 #: bookwyrm/templates/book/edit/edit_book_form.html:148 msgid "Add Author" -msgstr "" +msgstr "添加作者" #: bookwyrm/templates/book/edit/edit_book_form.html:146 #: bookwyrm/templates/book/edit/edit_book_form.html:149 msgid "Jane Doe" -msgstr "" +msgstr "张三" #: bookwyrm/templates/book/edit/edit_book_form.html:152 msgid "Add Another Author" -msgstr "" +msgstr "添加另一作者" #: bookwyrm/templates/book/edit/edit_book_form.html:160 #: bookwyrm/templates/shelf/shelf.html:143 @@ -929,14 +929,14 @@ msgstr "删除这些阅读日期" #: bookwyrm/templates/book/sync_modal.html:15 #, python-format msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." -msgstr "" +msgstr "加载数据会连接到 %(source_name)s 并检查这里还没有记录的与书籍相关的元数据。现存的元数据不会被覆盖。" #: bookwyrm/templates/components/inline_form.html:8 #: bookwyrm/templates/components/modal.html:11 #: bookwyrm/templates/components/tooltip.html:7 #: bookwyrm/templates/feed/layout.html:71 -#: bookwyrm/templates/get_started/layout.html:20 -#: bookwyrm/templates/get_started/layout.html:53 +#: bookwyrm/templates/get_started/layout.html:25 +#: bookwyrm/templates/get_started/layout.html:58 #: bookwyrm/templates/search/book.html:49 #: bookwyrm/templates/snippets/announcement.html:18 msgid "Close" @@ -1012,7 +1012,7 @@ msgstr "跨站社区" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:103 +#: bookwyrm/templates/layout.html:100 msgid "Directory" msgstr "目录" @@ -1022,7 +1022,7 @@ msgstr "使你的个人资料可以被其它 BookWyrm 用户发现。" #: bookwyrm/templates/directory/directory.html:21 msgid "Join Directory" -msgstr "" +msgstr "加入目录" #: bookwyrm/templates/directory/directory.html:24 #, python-format @@ -1130,7 +1130,7 @@ msgstr "%(username)s 引用了 %(username)s" msgstr "与 %(username)s 私信" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:113 +#: bookwyrm/templates/layout.html:110 msgid "Direct Messages" msgstr "私信" @@ -1286,15 +1286,15 @@ msgstr "你现在没有消息。" #: bookwyrm/templates/feed/feed.html:27 msgid "Feed settings" -msgstr "" +msgstr "源设置" #: bookwyrm/templates/feed/feed.html:39 msgid "Saved!" -msgstr "" +msgstr "已保存!" #: bookwyrm/templates/feed/feed.html:53 msgid "Save settings" -msgstr "" +msgstr "保存设置" #: bookwyrm/templates/feed/feed.html:63 #, python-format @@ -1307,7 +1307,7 @@ msgstr "现在还没有任何活动!尝试从关注一个用户开始吧" #: bookwyrm/templates/feed/feed.html:87 msgid "Alternatively, you can try enabling more status types" -msgstr "" +msgstr "或者,您可以尝试启用更多的状态种类" #: bookwyrm/templates/feed/goal_card.html:6 #: bookwyrm/templates/feed/layout.html:90 @@ -1325,7 +1325,7 @@ msgstr "你可以在任何时候从你的个人资料页面 msgid "Updates" msgstr "更新" -#: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:105 msgid "Your Books" msgstr "你的书目" @@ -1381,12 +1381,12 @@ msgstr "查看目录" #: bookwyrm/templates/feed/summary_card.html:21 msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" -msgstr "" +msgstr "年末是总结过去 12 个月阅读的所有书籍的最佳时机。你阅读了多少页书?哪一本书是你今年评价最高的?我们汇编了这些统计数据以及更多!" #: bookwyrm/templates/feed/summary_card.html:26 #, python-format msgid "Discover your stats for %(year)s!" -msgstr "" +msgstr "探索您的 %(year)s 统计!" #: bookwyrm/templates/get_started/book_preview.html:6 #, python-format @@ -1395,14 +1395,14 @@ msgstr "你读过 %(book_title)s 了吗?" #: bookwyrm/templates/get_started/book_preview.html:7 msgid "Add to your books" -msgstr "" +msgstr "添加到您的书籍中" #: bookwyrm/templates/get_started/books.html:6 msgid "What are you reading?" msgstr "你在阅读什么?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:138 +#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:149 msgid "Search for a book" msgstr "搜索书目" @@ -1422,7 +1422,7 @@ msgstr "你可以在开始使用 %(site_name)s 后添加书目。" #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/groups/group.html:20 bookwyrm/templates/layout.html:53 -#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:153 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1438,12 +1438,12 @@ msgid "Popular on %(site_name)s" msgstr "%(site_name)s 上的热门" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:155 +#: bookwyrm/templates/lists/list.html:166 msgid "No books found" msgstr "没有找到书目" #: bookwyrm/templates/get_started/books.html:63 -#: bookwyrm/templates/get_started/profile.html:51 +#: bookwyrm/templates/get_started/profile.html:64 msgid "Save & continue" msgstr "保存 & 继续" @@ -1452,33 +1452,33 @@ msgstr "保存 & 继续" msgid "Welcome" msgstr "欢迎" -#: bookwyrm/templates/get_started/layout.html:15 +#: bookwyrm/templates/get_started/layout.html:20 #, python-format msgid "Welcome to %(site_name)s!" msgstr "欢迎来到 %(site_name)s!" -#: bookwyrm/templates/get_started/layout.html:17 +#: bookwyrm/templates/get_started/layout.html:22 msgid "These are some first steps to get you started." msgstr "这些最初的步骤可以帮助你入门。" -#: bookwyrm/templates/get_started/layout.html:31 +#: bookwyrm/templates/get_started/layout.html:36 #: bookwyrm/templates/get_started/profile.html:6 msgid "Create your profile" msgstr "创建你的个人资料" -#: bookwyrm/templates/get_started/layout.html:35 +#: bookwyrm/templates/get_started/layout.html:40 msgid "Add books" msgstr "添加书目" -#: bookwyrm/templates/get_started/layout.html:39 +#: bookwyrm/templates/get_started/layout.html:44 msgid "Find friends" msgstr "寻找同好" -#: bookwyrm/templates/get_started/layout.html:45 +#: bookwyrm/templates/get_started/layout.html:50 msgid "Skip this step" msgstr "跳过此步骤" -#: bookwyrm/templates/get_started/layout.html:49 +#: bookwyrm/templates/get_started/layout.html:54 msgid "Finish" msgstr "完成" @@ -1487,29 +1487,29 @@ msgstr "完成" msgid "Display name:" msgstr "显示名称:" -#: bookwyrm/templates/get_started/profile.html:21 +#: bookwyrm/templates/get_started/profile.html:29 #: bookwyrm/templates/preferences/edit_user.html:47 msgid "Summary:" msgstr "概要:" -#: bookwyrm/templates/get_started/profile.html:22 +#: bookwyrm/templates/get_started/profile.html:34 msgid "A little bit about you" msgstr "少许关于你的信息" -#: bookwyrm/templates/get_started/profile.html:30 +#: bookwyrm/templates/get_started/profile.html:43 #: bookwyrm/templates/preferences/edit_user.html:27 msgid "Avatar:" msgstr "头像:" -#: bookwyrm/templates/get_started/profile.html:39 +#: bookwyrm/templates/get_started/profile.html:52 msgid "Manually approve followers:" msgstr "手动批准关注者:" -#: bookwyrm/templates/get_started/profile.html:45 +#: bookwyrm/templates/get_started/profile.html:58 msgid "Show this account in suggested users:" msgstr "在推荐的用户中显示此帐号:" -#: bookwyrm/templates/get_started/profile.html:49 +#: bookwyrm/templates/get_started/profile.html:62 msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "你的帐号会显示在目录中,并且可能会受其它 BookWyrm 用户推荐。" @@ -1720,7 +1720,7 @@ msgstr "ISBN" #: bookwyrm/templates/import/import_status.html:110 msgid "Openlibrary key" -msgstr "" +msgstr "Openlibrary key" #: bookwyrm/templates/import/import_status.html:114 #: bookwyrm/templates/shelf/shelf.html:145 @@ -1897,7 +1897,7 @@ msgid "Login" msgstr "登录" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:181 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:178 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "登录" @@ -1906,7 +1906,7 @@ msgstr "登录" msgid "Success! Email address confirmed." msgstr "成功!邮箱地址已确认。" -#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:172 +#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:169 #: bookwyrm/templates/ostatus/error.html:28 #: bookwyrm/templates/snippets/register_form.html:4 msgid "Username:" @@ -1914,12 +1914,12 @@ msgstr "用户名:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:176 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:173 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:20 msgid "Password:" msgstr "密码:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:178 +#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:175 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "忘记了密码?" @@ -1951,19 +1951,19 @@ msgstr "%(site_name)s 搜索" msgid "Search for a book, user, or list" msgstr "搜索书籍、用户或列表" -#: bookwyrm/templates/layout.html:63 bookwyrm/templates/layout.html:64 +#: bookwyrm/templates/layout.html:63 msgid "Main navigation menu" msgstr "主导航菜单" -#: bookwyrm/templates/layout.html:74 +#: bookwyrm/templates/layout.html:71 msgid "Feed" msgstr "动态" -#: bookwyrm/templates/layout.html:118 +#: bookwyrm/templates/layout.html:115 msgid "Settings" msgstr "设置" -#: bookwyrm/templates/layout.html:127 +#: bookwyrm/templates/layout.html:124 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 #: bookwyrm/templates/settings/invites/manage_invites.html:3 #: bookwyrm/templates/settings/invites/manage_invites.html:15 @@ -1971,46 +1971,46 @@ msgstr "设置" msgid "Invites" msgstr "邀请" -#: bookwyrm/templates/layout.html:134 +#: bookwyrm/templates/layout.html:131 msgid "Admin" msgstr "管理员" -#: bookwyrm/templates/layout.html:141 +#: bookwyrm/templates/layout.html:138 msgid "Log out" msgstr "登出" -#: bookwyrm/templates/layout.html:149 bookwyrm/templates/layout.html:150 +#: bookwyrm/templates/layout.html:146 bookwyrm/templates/layout.html:147 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "通知" -#: bookwyrm/templates/layout.html:177 bookwyrm/templates/ostatus/error.html:33 +#: bookwyrm/templates/layout.html:174 bookwyrm/templates/ostatus/error.html:33 msgid "password" msgstr "密码" -#: bookwyrm/templates/layout.html:189 +#: bookwyrm/templates/layout.html:186 msgid "Join" msgstr "加入" -#: bookwyrm/templates/layout.html:223 +#: bookwyrm/templates/layout.html:220 msgid "Successfully posted status" msgstr "成功发布的状态" -#: bookwyrm/templates/layout.html:224 +#: bookwyrm/templates/layout.html:221 msgid "Error posting status" msgstr "发布状态时出错" -#: bookwyrm/templates/layout.html:240 +#: bookwyrm/templates/layout.html:237 msgid "Documentation" msgstr "文档" -#: bookwyrm/templates/layout.html:247 +#: bookwyrm/templates/layout.html:244 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "在 %(support_title)s 上支持 %(site_name)s" -#: bookwyrm/templates/layout.html:251 +#: bookwyrm/templates/layout.html:248 msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." msgstr "BookWyrm 是开源软件。你可以在 GitHub 贡献或报告问题。" @@ -2070,12 +2070,12 @@ msgstr "编辑列表" #: bookwyrm/templates/lists/embed-list.html:7 #, python-format msgid "%(list_name)s, a list by %(owner)s" -msgstr "" +msgstr "%(list_name)s,来自 %(owner)s 的列表" #: bookwyrm/templates/lists/embed-list.html:17 #, python-format msgid "on %(site_name)s" -msgstr "" +msgstr "在 %(site_name)s" #: bookwyrm/templates/lists/embed-list.html:26 #: bookwyrm/templates/lists/list.html:29 @@ -2086,56 +2086,56 @@ msgstr "此列表当前是空的" msgid "List curation:" msgstr "列表策展:" -#: bookwyrm/templates/lists/form.html:22 +#: bookwyrm/templates/lists/form.html:31 msgid "Closed" msgstr "已关闭" -#: bookwyrm/templates/lists/form.html:23 +#: bookwyrm/templates/lists/form.html:34 msgid "Only you can add and remove books to this list" msgstr "只有你可以在此列表中添加或移除书目" -#: bookwyrm/templates/lists/form.html:27 +#: bookwyrm/templates/lists/form.html:48 msgid "Curated" msgstr "策展" -#: bookwyrm/templates/lists/form.html:28 +#: bookwyrm/templates/lists/form.html:51 msgid "Anyone can suggest books, subject to your approval" msgstr "任何人都可以推荐书目、主题让你批准" -#: bookwyrm/templates/lists/form.html:32 +#: bookwyrm/templates/lists/form.html:65 msgctxt "curation type" msgid "Open" msgstr "开放" -#: bookwyrm/templates/lists/form.html:33 +#: bookwyrm/templates/lists/form.html:68 msgid "Anyone can add books to this list" msgstr "任何人都可以向此列表中添加书目" -#: bookwyrm/templates/lists/form.html:37 +#: bookwyrm/templates/lists/form.html:82 msgid "Group" msgstr "组(Group)" -#: bookwyrm/templates/lists/form.html:38 +#: bookwyrm/templates/lists/form.html:85 msgid "Group members can add to and remove from this list" msgstr "群组成员可以添加并从列表中移除" -#: bookwyrm/templates/lists/form.html:41 +#: bookwyrm/templates/lists/form.html:90 msgid "Select Group" msgstr "选择群组" -#: bookwyrm/templates/lists/form.html:45 +#: bookwyrm/templates/lists/form.html:94 msgid "Select a group" msgstr "选择一个群组" -#: bookwyrm/templates/lists/form.html:56 +#: bookwyrm/templates/lists/form.html:105 msgid "You don't have any Groups yet!" msgstr "您目前尚未拥有任何群组!" -#: bookwyrm/templates/lists/form.html:58 +#: bookwyrm/templates/lists/form.html:107 msgid "Create a Group" msgstr "创建一个群组" -#: bookwyrm/templates/lists/form.html:81 +#: bookwyrm/templates/lists/form.html:130 msgid "Delete list" msgstr "删除列表" @@ -2152,65 +2152,65 @@ msgstr "你成功向此列表添加了一本书!" msgid "Added by %(username)s" msgstr "由 %(username)s 添加" -#: bookwyrm/templates/lists/list.html:76 +#: bookwyrm/templates/lists/list.html:82 msgid "List position" msgstr "列表位置:" -#: bookwyrm/templates/lists/list.html:82 +#: bookwyrm/templates/lists/list.html:88 msgid "Set" msgstr "设定" -#: bookwyrm/templates/lists/list.html:92 +#: bookwyrm/templates/lists/list.html:103 #: bookwyrm/templates/snippets/remove_from_group_button.html:19 msgid "Remove" msgstr "移除" -#: bookwyrm/templates/lists/list.html:106 -#: bookwyrm/templates/lists/list.html:123 +#: bookwyrm/templates/lists/list.html:117 +#: bookwyrm/templates/lists/list.html:134 msgid "Sort List" msgstr "排序列表" -#: bookwyrm/templates/lists/list.html:116 +#: bookwyrm/templates/lists/list.html:127 msgid "Direction" msgstr "方向" -#: bookwyrm/templates/lists/list.html:130 +#: bookwyrm/templates/lists/list.html:141 msgid "Add Books" msgstr "添加书目" -#: bookwyrm/templates/lists/list.html:132 +#: bookwyrm/templates/lists/list.html:143 msgid "Suggest Books" msgstr "推荐书目" -#: bookwyrm/templates/lists/list.html:143 +#: bookwyrm/templates/lists/list.html:154 msgid "search" msgstr "搜索" -#: bookwyrm/templates/lists/list.html:149 +#: bookwyrm/templates/lists/list.html:160 msgid "Clear search" msgstr "清除搜索" -#: bookwyrm/templates/lists/list.html:154 +#: bookwyrm/templates/lists/list.html:165 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "没有符合 “%(query)s” 请求的书目" -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:197 msgid "Suggest" msgstr "推荐" -#: bookwyrm/templates/lists/list.html:191 +#: bookwyrm/templates/lists/list.html:208 msgid "Embed this list on a website" -msgstr "" +msgstr "将此列表嵌入到网站" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:216 msgid "Copy embed code" -msgstr "" +msgstr "复制嵌入代码" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:218 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" -msgstr "" +msgstr "%(list_name)s,%(owner)s 在 %(site_name)s 上的列表" #: bookwyrm/templates/lists/list_items.html:15 msgid "Saved" @@ -2400,116 +2400,116 @@ msgstr "你什么也没错过!" #: bookwyrm/templates/ostatus/error.html:7 #, python-format msgid "%(account)s is not a valid username" -msgstr "" +msgstr "%(account)s 不是有效的用户名" #: bookwyrm/templates/ostatus/error.html:8 #: bookwyrm/templates/ostatus/error.html:13 msgid "Check you have the correct username before trying again" -msgstr "" +msgstr "请在重试前检查用户名是否正确" #: bookwyrm/templates/ostatus/error.html:12 #, python-format msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" -msgstr "" +msgstr "找不到 %(account)s 或者是 %(remote_domain)s 不支持身份查找" #: bookwyrm/templates/ostatus/error.html:17 #, python-format msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" -msgstr "" +msgstr "找到了%(account)s 但是 %(remote_domain)s 不支持“远程关注”" #: bookwyrm/templates/ostatus/error.html:18 #, python-format msgid "Try searching for %(user)s on %(remote_domain)s instead" -msgstr "" +msgstr "请尝试改为在 %(remote_domain)s 上查找 %(user)s" #: bookwyrm/templates/ostatus/error.html:46 #, python-format msgid "Something went wrong trying to follow %(account)s" -msgstr "" +msgstr "试图关注 %(account)s 时出了错" #: bookwyrm/templates/ostatus/error.html:47 msgid "Check you have the correct username before trying again." -msgstr "" +msgstr "请在重试前检查用户名是否正确。" #: bookwyrm/templates/ostatus/error.html:51 #, python-format msgid "You have blocked %(account)s" -msgstr "" +msgstr "您已屏蔽 %(account)s" #: bookwyrm/templates/ostatus/error.html:55 #, python-format msgid "%(account)s has blocked you" -msgstr "" +msgstr "%(account)s 已屏蔽你" #: bookwyrm/templates/ostatus/error.html:59 #, python-format msgid "You are already following %(account)s" -msgstr "" +msgstr "您已在关注 %(account)s" #: bookwyrm/templates/ostatus/error.html:63 #, python-format msgid "You have already requested to follow %(account)s" -msgstr "" +msgstr "您已请求关注 %(account)s" #: bookwyrm/templates/ostatus/remote_follow.html:6 #, python-format msgid "Follow %(username)s on the fediverse" -msgstr "" +msgstr "在联邦宇宙上关注 %(username)s" #: bookwyrm/templates/ostatus/remote_follow.html:33 #, python-format msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." -msgstr "" +msgstr "从另一个联邦宇宙帐户关注 %(username)s ,如 BookWyrm、Mastodon 或 Pleroma。" #: bookwyrm/templates/ostatus/remote_follow.html:40 msgid "User handle to follow from:" -msgstr "" +msgstr "要关注此用户的用户代号:" #: bookwyrm/templates/ostatus/remote_follow.html:42 msgid "Follow!" -msgstr "" +msgstr "关注!" #: bookwyrm/templates/ostatus/remote_follow_button.html:8 msgid "Follow on Fediverse" -msgstr "" +msgstr "在联邦宇宙中关注" #: bookwyrm/templates/ostatus/remote_follow_button.html:12 msgid "This link opens in a pop-up window" -msgstr "" +msgstr "此链接会在弹出窗口中打开" #: bookwyrm/templates/ostatus/subscribe.html:8 #, python-format msgid "Log in to %(sitename)s" -msgstr "" +msgstr "登录到 %(sitename)s" #: bookwyrm/templates/ostatus/subscribe.html:10 #, python-format msgid "Error following from %(sitename)s" -msgstr "" +msgstr "从 %(sitename)s 关注出错" #: bookwyrm/templates/ostatus/subscribe.html:12 #: bookwyrm/templates/ostatus/subscribe.html:22 #, python-format msgid "Follow from %(sitename)s" -msgstr "" +msgstr "从 %(sitename)s 关注" #: bookwyrm/templates/ostatus/subscribe.html:18 msgid "Uh oh..." -msgstr "" +msgstr "哎呀..." #: bookwyrm/templates/ostatus/subscribe.html:20 msgid "Let's log in first..." -msgstr "" +msgstr "让我们先登录..." #: bookwyrm/templates/ostatus/subscribe.html:51 #, python-format msgid "Follow %(username)s" -msgstr "" +msgstr "关注 %(username)s" #: bookwyrm/templates/ostatus/success.html:28 #, python-format msgid "You are now following %(display_name)s!" -msgstr "" +msgstr "您正在关注 %(display_name)s!" #: bookwyrm/templates/preferences/blocks.html:4 #: bookwyrm/templates/preferences/blocks.html:7 @@ -2572,15 +2572,15 @@ msgstr "隐私" #: bookwyrm/templates/preferences/edit_user.html:69 msgid "Show reading goal prompt in feed" -msgstr "" +msgstr "在状态流中显示阅读目标提示" #: bookwyrm/templates/preferences/edit_user.html:75 msgid "Show suggested users" -msgstr "" +msgstr "显示推荐用户" #: bookwyrm/templates/preferences/edit_user.html:81 msgid "Show this account in suggested users" -msgstr "" +msgstr "在推荐的用户中显示此帐号" #: bookwyrm/templates/preferences/edit_user.html:85 #, python-format @@ -2593,7 +2593,7 @@ msgstr "偏好的时区:" #: bookwyrm/templates/preferences/edit_user.html:111 msgid "Manually approve followers" -msgstr "" +msgstr "手动批准关注者" #: bookwyrm/templates/preferences/edit_user.html:116 msgid "Default post privacy:" @@ -2624,7 +2624,7 @@ msgstr "想要阅读《%(book_title)s》" #: bookwyrm/templates/search/book.html:42 msgid "Results from" -msgstr "" +msgstr "结果来自" #: bookwyrm/templates/search/book.html:47 #: bookwyrm/templates/settings/reports/reports.html:25 @@ -2686,7 +2686,7 @@ msgstr "回到列表" msgid "Edit Announcement" msgstr "编辑公告" -#: bookwyrm/templates/settings/announcements/announcement.html:35 +#: bookwyrm/templates/settings/announcements/announcement.html:34 msgid "Visible:" msgstr "可见:" @@ -2698,19 +2698,19 @@ msgstr "是" msgid "False" msgstr "否" -#: bookwyrm/templates/settings/announcements/announcement.html:47 +#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/dashboard/dashboard.html:71 msgid "Start date:" msgstr "开始日期:" -#: bookwyrm/templates/settings/announcements/announcement.html:54 +#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:77 msgid "End date:" msgstr "结束日期:" -#: bookwyrm/templates/settings/announcements/announcement.html:60 +#: bookwyrm/templates/settings/announcements/announcement.html:55 #: bookwyrm/templates/settings/announcements/announcement_form.html:64 msgid "Active:" msgstr "活跃:" @@ -3976,7 +3976,7 @@ msgstr "想要阅读" #: bookwyrm/templates/snippets/shelf_selector.html:73 #: bookwyrm/templates/snippets/shelf_selector.html:84 msgid "Remove from" -msgstr "" +msgstr "移除自" #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 msgid "More shelves" @@ -4208,7 +4208,7 @@ msgstr "查看所有书目" #: bookwyrm/templates/user/user.html:58 #, python-format msgid "%(current_year)s Reading Goal" -msgstr "" +msgstr "%(current_year)s 阅读目标" #: bookwyrm/templates/user/user.html:65 msgid "User Activity" @@ -4261,7 +4261,7 @@ msgstr "%(title)s:%(subtitle)s" msgid "Not a valid csv file" msgstr "不是有效的 csv 文件" -#: bookwyrm/views/landing/login.py:69 +#: bookwyrm/views/landing/login.py:70 msgid "Username or password are incorrect" msgstr "用户名或密码不正确" diff --git a/locale/zh_Hant/LC_MESSAGES/django.mo b/locale/zh_Hant/LC_MESSAGES/django.mo index fcfea57064a4a4560758d8a603d24c2cc670531a..ced6e886cc9aac7d41bc43ac387adcc60a62ebb8 100644 GIT binary patch delta 23 ecmdnLh-v>KrVU039L5F;1_o9}W}B@NSPcPVM+X@I delta 23 ecmdnLh-v>KrVU0397YxjMut{~=9{e&SPcPVwg)2s diff --git a/locale/zh_Hant/LC_MESSAGES/django.po b/locale/zh_Hant/LC_MESSAGES/django.po index 15bd82c07..8b1665a5e 100644 --- a/locale/zh_Hant/LC_MESSAGES/django.po +++ b/locale/zh_Hant/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-28 20:12+0000\n" -"PO-Revision-Date: 2021-12-28 21:17\n" +"POT-Creation-Date: 2021-12-29 21:32+0000\n" +"PO-Revision-Date: 2021-12-30 00:26\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Chinese Traditional\n" "Language: zh\n" @@ -60,7 +60,7 @@ msgstr "書名" msgid "Rating" msgstr "評價" -#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:110 +#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:121 msgid "Sort By" msgstr "排序方式" @@ -144,7 +144,7 @@ msgstr "%(value)s 不是有效的 remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s 不是有效的使用者名稱" -#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:173 +#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:170 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "使用者名稱" @@ -268,7 +268,7 @@ msgid "Copy address" msgstr "" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:217 msgid "Copied!" msgstr "" @@ -516,7 +516,7 @@ msgstr "" #: bookwyrm/templates/book/readthrough.html:76 #: bookwyrm/templates/groups/form.html:24 #: bookwyrm/templates/lists/bookmark_button.html:15 -#: bookwyrm/templates/lists/form.html:75 +#: bookwyrm/templates/lists/form.html:124 #: bookwyrm/templates/preferences/edit_user.html:124 #: bookwyrm/templates/settings/announcements/announcement_form.html:76 #: bookwyrm/templates/settings/federation/edit_instance.html:82 @@ -637,7 +637,7 @@ msgstr "主題" msgid "Places" msgstr "地點" -#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:77 +#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:74 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 #: bookwyrm/templates/search/layout.html:25 #: bookwyrm/templates/search/layout.html:50 @@ -651,7 +651,7 @@ msgstr "新增到列表" #: bookwyrm/templates/book/book.html:341 #: bookwyrm/templates/book/cover_modal.html:31 -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:195 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -935,8 +935,8 @@ msgstr "" #: bookwyrm/templates/components/modal.html:11 #: bookwyrm/templates/components/tooltip.html:7 #: bookwyrm/templates/feed/layout.html:71 -#: bookwyrm/templates/get_started/layout.html:20 -#: bookwyrm/templates/get_started/layout.html:53 +#: bookwyrm/templates/get_started/layout.html:25 +#: bookwyrm/templates/get_started/layout.html:58 #: bookwyrm/templates/search/book.html:49 #: bookwyrm/templates/snippets/announcement.html:18 msgid "Close" @@ -1012,7 +1012,7 @@ msgstr "跨站社群" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:103 +#: bookwyrm/templates/layout.html:100 msgid "Directory" msgstr "目錄" @@ -1130,7 +1130,7 @@ msgstr "" #: bookwyrm/templates/discover/discover.html:4 #: bookwyrm/templates/discover/discover.html:10 -#: bookwyrm/templates/layout.html:80 +#: bookwyrm/templates/layout.html:77 msgid "Discover" msgstr "" @@ -1253,12 +1253,12 @@ msgid "%(site_name)s home page" msgstr "" #: bookwyrm/templates/embed-layout.html:34 -#: bookwyrm/templates/landing/about.html:7 bookwyrm/templates/layout.html:232 +#: bookwyrm/templates/landing/about.html:7 bookwyrm/templates/layout.html:229 #, python-format msgid "About %(site_name)s" msgstr "關於 %(site_name)s" -#: bookwyrm/templates/embed-layout.html:40 bookwyrm/templates/layout.html:236 +#: bookwyrm/templates/embed-layout.html:40 bookwyrm/templates/layout.html:233 msgid "Contact site admin" msgstr "聯絡網站管理員" @@ -1272,7 +1272,7 @@ msgid "Direct Messages with %(username)s" msgstr "與 %(username)s 私信" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:113 +#: bookwyrm/templates/layout.html:110 msgid "Direct Messages" msgstr "私信" @@ -1325,7 +1325,7 @@ msgstr "你可以在任何時候從你的使用者資料頁 msgid "Updates" msgstr "更新" -#: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:108 +#: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:105 msgid "Your Books" msgstr "你的書目" @@ -1402,7 +1402,7 @@ msgid "What are you reading?" msgstr "你在閱讀什麼?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:138 +#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:149 msgid "Search for a book" msgstr "搜尋書目" @@ -1422,7 +1422,7 @@ msgstr "你可以在開始使用 %(site_name)s 後新增書目。" #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/groups/group.html:20 bookwyrm/templates/layout.html:53 -#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:153 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1438,12 +1438,12 @@ msgid "Popular on %(site_name)s" msgstr "%(site_name)s 上的熱門" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:155 +#: bookwyrm/templates/lists/list.html:166 msgid "No books found" msgstr "沒有找到書目" #: bookwyrm/templates/get_started/books.html:63 -#: bookwyrm/templates/get_started/profile.html:51 +#: bookwyrm/templates/get_started/profile.html:64 msgid "Save & continue" msgstr "儲存 & 繼續" @@ -1452,33 +1452,33 @@ msgstr "儲存 & 繼續" msgid "Welcome" msgstr "歡迎" -#: bookwyrm/templates/get_started/layout.html:15 +#: bookwyrm/templates/get_started/layout.html:20 #, python-format msgid "Welcome to %(site_name)s!" msgstr "歡迎來到 %(site_name)s!" -#: bookwyrm/templates/get_started/layout.html:17 +#: bookwyrm/templates/get_started/layout.html:22 msgid "These are some first steps to get you started." msgstr "這些最初的步驟可以幫助你入門。" -#: bookwyrm/templates/get_started/layout.html:31 +#: bookwyrm/templates/get_started/layout.html:36 #: bookwyrm/templates/get_started/profile.html:6 msgid "Create your profile" msgstr "建立你的使用者資料" -#: bookwyrm/templates/get_started/layout.html:35 +#: bookwyrm/templates/get_started/layout.html:40 msgid "Add books" msgstr "新增書目" -#: bookwyrm/templates/get_started/layout.html:39 +#: bookwyrm/templates/get_started/layout.html:44 msgid "Find friends" msgstr "尋找同好" -#: bookwyrm/templates/get_started/layout.html:45 +#: bookwyrm/templates/get_started/layout.html:50 msgid "Skip this step" msgstr "跳過此步驟" -#: bookwyrm/templates/get_started/layout.html:49 +#: bookwyrm/templates/get_started/layout.html:54 msgid "Finish" msgstr "完成" @@ -1487,29 +1487,29 @@ msgstr "完成" msgid "Display name:" msgstr "顯示名稱:" -#: bookwyrm/templates/get_started/profile.html:21 +#: bookwyrm/templates/get_started/profile.html:29 #: bookwyrm/templates/preferences/edit_user.html:47 msgid "Summary:" msgstr "概要:" -#: bookwyrm/templates/get_started/profile.html:22 +#: bookwyrm/templates/get_started/profile.html:34 msgid "A little bit about you" msgstr "少許關於你的資訊" -#: bookwyrm/templates/get_started/profile.html:30 +#: bookwyrm/templates/get_started/profile.html:43 #: bookwyrm/templates/preferences/edit_user.html:27 msgid "Avatar:" msgstr "頭像:" -#: bookwyrm/templates/get_started/profile.html:39 +#: bookwyrm/templates/get_started/profile.html:52 msgid "Manually approve followers:" msgstr "手動批准關注者:" -#: bookwyrm/templates/get_started/profile.html:45 +#: bookwyrm/templates/get_started/profile.html:58 msgid "Show this account in suggested users:" msgstr "在推薦的使用者中顯示此帳號:" -#: bookwyrm/templates/get_started/profile.html:49 +#: bookwyrm/templates/get_started/profile.html:62 msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." msgstr "你的帳號會顯示在目錄中,並且可能會受其它 BookWyrm 使用者推薦。" @@ -1897,7 +1897,7 @@ msgid "Login" msgstr "登入" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:181 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:178 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "登入" @@ -1906,7 +1906,7 @@ msgstr "登入" msgid "Success! Email address confirmed." msgstr "" -#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:172 +#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:169 #: bookwyrm/templates/ostatus/error.html:28 #: bookwyrm/templates/snippets/register_form.html:4 msgid "Username:" @@ -1914,12 +1914,12 @@ msgstr "使用者名稱:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:176 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:173 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:20 msgid "Password:" msgstr "密碼:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:178 +#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:175 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "忘記了密碼?" @@ -1951,19 +1951,19 @@ msgstr "" msgid "Search for a book, user, or list" msgstr "" -#: bookwyrm/templates/layout.html:63 bookwyrm/templates/layout.html:64 +#: bookwyrm/templates/layout.html:63 msgid "Main navigation menu" msgstr "主導航選單" -#: bookwyrm/templates/layout.html:74 +#: bookwyrm/templates/layout.html:71 msgid "Feed" msgstr "動態" -#: bookwyrm/templates/layout.html:118 +#: bookwyrm/templates/layout.html:115 msgid "Settings" msgstr "設定" -#: bookwyrm/templates/layout.html:127 +#: bookwyrm/templates/layout.html:124 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 #: bookwyrm/templates/settings/invites/manage_invites.html:3 #: bookwyrm/templates/settings/invites/manage_invites.html:15 @@ -1971,46 +1971,46 @@ msgstr "設定" msgid "Invites" msgstr "邀請" -#: bookwyrm/templates/layout.html:134 +#: bookwyrm/templates/layout.html:131 msgid "Admin" msgstr "管理員" -#: bookwyrm/templates/layout.html:141 +#: bookwyrm/templates/layout.html:138 msgid "Log out" msgstr "登出" -#: bookwyrm/templates/layout.html:149 bookwyrm/templates/layout.html:150 +#: bookwyrm/templates/layout.html:146 bookwyrm/templates/layout.html:147 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "通知" -#: bookwyrm/templates/layout.html:177 bookwyrm/templates/ostatus/error.html:33 +#: bookwyrm/templates/layout.html:174 bookwyrm/templates/ostatus/error.html:33 msgid "password" msgstr "密碼" -#: bookwyrm/templates/layout.html:189 +#: bookwyrm/templates/layout.html:186 msgid "Join" msgstr "加入" -#: bookwyrm/templates/layout.html:223 +#: bookwyrm/templates/layout.html:220 msgid "Successfully posted status" msgstr "" -#: bookwyrm/templates/layout.html:224 +#: bookwyrm/templates/layout.html:221 msgid "Error posting status" msgstr "" -#: bookwyrm/templates/layout.html:240 +#: bookwyrm/templates/layout.html:237 msgid "Documentation" msgstr "文件:" -#: bookwyrm/templates/layout.html:247 +#: bookwyrm/templates/layout.html:244 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "在 %(support_title)s 上支援 %(site_name)s" -#: bookwyrm/templates/layout.html:251 +#: bookwyrm/templates/layout.html:248 msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." msgstr "BookWyrm 是開源軟體。你可以在 GitHub 貢獻或報告問題。" @@ -2086,56 +2086,56 @@ msgstr "此列表當前是空的" msgid "List curation:" msgstr "列表管理:" -#: bookwyrm/templates/lists/form.html:22 +#: bookwyrm/templates/lists/form.html:31 msgid "Closed" msgstr "已關閉" -#: bookwyrm/templates/lists/form.html:23 +#: bookwyrm/templates/lists/form.html:34 msgid "Only you can add and remove books to this list" msgstr "只有你可以在此列表中新增或移除書目" -#: bookwyrm/templates/lists/form.html:27 +#: bookwyrm/templates/lists/form.html:48 msgid "Curated" msgstr "管理" -#: bookwyrm/templates/lists/form.html:28 +#: bookwyrm/templates/lists/form.html:51 msgid "Anyone can suggest books, subject to your approval" msgstr "任何人都可以推薦書目、主題,但須經你的批准。" -#: bookwyrm/templates/lists/form.html:32 +#: bookwyrm/templates/lists/form.html:65 msgctxt "curation type" msgid "Open" msgstr "" -#: bookwyrm/templates/lists/form.html:33 +#: bookwyrm/templates/lists/form.html:68 msgid "Anyone can add books to this list" msgstr "任何人都可以向此列表新增書目" -#: bookwyrm/templates/lists/form.html:37 +#: bookwyrm/templates/lists/form.html:82 msgid "Group" msgstr "" -#: bookwyrm/templates/lists/form.html:38 +#: bookwyrm/templates/lists/form.html:85 msgid "Group members can add to and remove from this list" msgstr "" -#: bookwyrm/templates/lists/form.html:41 +#: bookwyrm/templates/lists/form.html:90 msgid "Select Group" msgstr "" -#: bookwyrm/templates/lists/form.html:45 +#: bookwyrm/templates/lists/form.html:94 msgid "Select a group" msgstr "" -#: bookwyrm/templates/lists/form.html:56 +#: bookwyrm/templates/lists/form.html:105 msgid "You don't have any Groups yet!" msgstr "" -#: bookwyrm/templates/lists/form.html:58 +#: bookwyrm/templates/lists/form.html:107 msgid "Create a Group" msgstr "" -#: bookwyrm/templates/lists/form.html:81 +#: bookwyrm/templates/lists/form.html:130 msgid "Delete list" msgstr "" @@ -2152,62 +2152,62 @@ msgstr "你成功在此列表新增了一本書!" msgid "Added by %(username)s" msgstr "由 %(username)s 新增" -#: bookwyrm/templates/lists/list.html:76 +#: bookwyrm/templates/lists/list.html:82 msgid "List position" msgstr "列表位置:" -#: bookwyrm/templates/lists/list.html:82 +#: bookwyrm/templates/lists/list.html:88 msgid "Set" msgstr "設定" -#: bookwyrm/templates/lists/list.html:92 +#: bookwyrm/templates/lists/list.html:103 #: bookwyrm/templates/snippets/remove_from_group_button.html:19 msgid "Remove" msgstr "移除" -#: bookwyrm/templates/lists/list.html:106 -#: bookwyrm/templates/lists/list.html:123 +#: bookwyrm/templates/lists/list.html:117 +#: bookwyrm/templates/lists/list.html:134 msgid "Sort List" msgstr "排序列表" -#: bookwyrm/templates/lists/list.html:116 +#: bookwyrm/templates/lists/list.html:127 msgid "Direction" msgstr "方向" -#: bookwyrm/templates/lists/list.html:130 +#: bookwyrm/templates/lists/list.html:141 msgid "Add Books" msgstr "新增書目" -#: bookwyrm/templates/lists/list.html:132 +#: bookwyrm/templates/lists/list.html:143 msgid "Suggest Books" msgstr "推薦書目" -#: bookwyrm/templates/lists/list.html:143 +#: bookwyrm/templates/lists/list.html:154 msgid "search" msgstr "搜尋" -#: bookwyrm/templates/lists/list.html:149 +#: bookwyrm/templates/lists/list.html:160 msgid "Clear search" msgstr "清除搜尋" -#: bookwyrm/templates/lists/list.html:154 +#: bookwyrm/templates/lists/list.html:165 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "沒有符合 \"%(query)s\" 請求的書目" -#: bookwyrm/templates/lists/list.html:182 +#: bookwyrm/templates/lists/list.html:197 msgid "Suggest" msgstr "推薦" -#: bookwyrm/templates/lists/list.html:191 +#: bookwyrm/templates/lists/list.html:208 msgid "Embed this list on a website" msgstr "" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:216 msgid "Copy embed code" msgstr "" -#: bookwyrm/templates/lists/list.html:194 +#: bookwyrm/templates/lists/list.html:218 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "" @@ -2686,7 +2686,7 @@ msgstr "回到列表" msgid "Edit Announcement" msgstr "編輯公告" -#: bookwyrm/templates/settings/announcements/announcement.html:35 +#: bookwyrm/templates/settings/announcements/announcement.html:34 msgid "Visible:" msgstr "可見:" @@ -2698,19 +2698,19 @@ msgstr "是" msgid "False" msgstr "否" -#: bookwyrm/templates/settings/announcements/announcement.html:47 +#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/dashboard/dashboard.html:71 msgid "Start date:" msgstr "開始日期:" -#: bookwyrm/templates/settings/announcements/announcement.html:54 +#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:77 msgid "End date:" msgstr "結束日期:" -#: bookwyrm/templates/settings/announcements/announcement.html:60 +#: bookwyrm/templates/settings/announcements/announcement.html:55 #: bookwyrm/templates/settings/announcements/announcement_form.html:64 msgid "Active:" msgstr "活躍:" @@ -4261,7 +4261,7 @@ msgstr "" msgid "Not a valid csv file" msgstr "不是有效的 csv 檔案" -#: bookwyrm/views/landing/login.py:69 +#: bookwyrm/views/landing/login.py:70 msgid "Username or password are incorrect" msgstr ""