Merge branch 'main' into production

This commit is contained in:
Mouse Reeve 2021-12-27 14:56:45 -08:00
commit 4ca0834b43
19 changed files with 406 additions and 281 deletions

View file

@ -1,6 +1,7 @@
{% extends 'layout.html' %} {% extends 'layout.html' %}
{% load i18n %} {% load i18n %}
{% load static %} {% load static %}
{% load humanize %}
{% block title %}{% blocktrans %}{{ year }} in the books{% endblocktrans %}{% endblock %} {% block title %}{% blocktrans %}{{ year }} in the books{% endblocktrans %}{% endblock %}
@ -111,7 +112,7 @@
<p class="subtitle is-5">{% trans "Thats great!" %}</p> <p class="subtitle is-5">{% trans "Thats great!" %}</p>
<p class="title is-4 is-serif"> <p class="title is-4 is-serif">
{% blocktrans %}That makes an average of {{ pages_average }} pages per book.{% endblocktrans %} {% blocktrans with pages=pages_average|intcomma %}That makes an average of {{ pages }} pages per book.{% endblocktrans %}
</p> </p>
{% if no_page_number %} {% if no_page_number %}

View file

@ -5,7 +5,7 @@ from uuid import uuid4
from django.contrib.auth.decorators import login_required from django.contrib.auth.decorators import login_required
from django.db.models import Case, When, Avg, Sum from django.db.models import Case, When, Avg, Sum
from django.http import Http404 from django.http import Http404
from django.shortcuts import get_object_or_404, redirect from django.shortcuts import redirect
from django.template.response import TemplateResponse from django.template.response import TemplateResponse
from django.views import View from django.views import View
from django.views.decorators.http import require_POST from django.views.decorators.http import require_POST
@ -41,7 +41,14 @@ class AnnualSummary(View):
) )
# get data # get data
read_book_ids_in_year = get_read_book_ids_in_year(user, year) read_book_ids_in_year = (
user.readthrough_set.filter(
finish_date__year__gte=year,
finish_date__year__lt=int(year) + 1,
)
.order_by("-finish_date")
.values_list("book__id", flat=True)
)
if len(read_book_ids_in_year) == 0: if len(read_book_ids_in_year) == 0:
data = { data = {
@ -222,45 +229,6 @@ def get_earliest_year(user, year):
return year return year
def get_read_book_ids_in_year(user, year):
"""return an ordered QuerySet of the read book ids"""
read_shelf = get_object_or_404(user.shelf_set, identifier="read")
shelved_book_ids = (
models.ShelfBook.objects.filter(shelf=read_shelf)
.filter(user=user)
.values_list("book", "shelved_date")
)
book_dates = []
for book in shelved_book_ids:
finished_in_year = (
models.ReadThrough.objects.filter(user__id=user.id)
.filter(book_id=book[0])
.filter(finish_date__year=year)
.values("finish_date")
.first()
)
if finished_in_year:
# Finished a readthrough in the year
book_dates.append((book[0], finished_in_year["finish_date"]))
else:
has_other_year_readthrough = (
models.ReadThrough.objects.filter(user__id=user.id)
.filter(book_id=book[0])
.exists()
)
if not has_other_year_readthrough and book[1].year == int(year):
# No readthrough but shelved this year
book_dates.append(book)
book_dates = sorted(book_dates, key=lambda tup: tup[1])
return [book[0] for book in book_dates]
def get_books_from_shelfbooks(books_ids): def get_books_from_shelfbooks(books_ids):
"""return an ordered QuerySet of books from a list""" """return an ordered QuerySet of books from a list"""

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-08 15:40+0000\n" "POT-Creation-Date: 2021-12-27 20:43+0000\n"
"PO-Revision-Date: 2021-12-16 14:48\n" "PO-Revision-Date: 2021-12-27 22:00\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: German\n" "Language-Team: German\n"
"Language: de\n" "Language: de\n"
@ -72,16 +72,16 @@ msgstr "Aufsteigend"
msgid "Descending" msgid "Descending"
msgstr "Absteigend" msgstr "Absteigend"
#: bookwyrm/importers/importer.py:141 bookwyrm/importers/importer.py:163 #: bookwyrm/importers/importer.py:145 bookwyrm/importers/importer.py:167
msgid "Error loading book" msgid "Error loading book"
msgstr "Fehler beim Laden des Buches" msgstr "Fehler beim Laden des Buches"
#: bookwyrm/importers/importer.py:150 #: bookwyrm/importers/importer.py:154
msgid "Could not find a match for book" msgid "Could not find a match for book"
msgstr "Keine Übereinstimmung für das Buch gefunden" msgstr "Keine Übereinstimmung für das Buch gefunden"
#: bookwyrm/models/base_model.py:17 #: bookwyrm/models/base_model.py:17
#: bookwyrm/templates/import/import_status.html:190 #: bookwyrm/templates/import/import_status.html:200
msgid "Pending" msgid "Pending"
msgstr "Ausstehend" msgstr "Ausstehend"
@ -1505,28 +1505,28 @@ msgstr "Bücher importieren"
msgid "Data source:" msgid "Data source:"
msgstr "Datenquelle:" msgstr "Datenquelle:"
#: bookwyrm/templates/import/import.html:37 #: bookwyrm/templates/import/import.html:40
msgid "Data file:" msgid "Data file:"
msgstr "Datei:" msgstr "Datei:"
#: bookwyrm/templates/import/import.html:45 #: bookwyrm/templates/import/import.html:48
msgid "Include reviews" msgid "Include reviews"
msgstr "Besprechungen einschließen" msgstr "Besprechungen einschließen"
#: bookwyrm/templates/import/import.html:50 #: bookwyrm/templates/import/import.html:53
msgid "Privacy setting for imported reviews:" msgid "Privacy setting for imported reviews:"
msgstr "Datenschutzeinstellung für importierte Besprechungen:" msgstr "Datenschutzeinstellung für importierte Besprechungen:"
#: bookwyrm/templates/import/import.html:56 #: bookwyrm/templates/import/import.html:59
#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 #: bookwyrm/templates/settings/federation/instance_blocklist.html:64
msgid "Import" msgid "Import"
msgstr "Importieren" msgstr "Importieren"
#: bookwyrm/templates/import/import.html:61 #: bookwyrm/templates/import/import.html:64
msgid "Recent Imports" msgid "Recent Imports"
msgstr "Zuletzt importiert" msgstr "Zuletzt importiert"
#: bookwyrm/templates/import/import.html:63 #: bookwyrm/templates/import/import.html:66
msgid "No recent imports" msgid "No recent imports"
msgstr "Keine aktuellen Importe" msgstr "Keine aktuellen Importe"
@ -1594,27 +1594,31 @@ msgstr "Titel"
msgid "ISBN" msgid "ISBN"
msgstr "ISBN" msgstr "ISBN"
#: bookwyrm/templates/import/import_status.html:109 #: bookwyrm/templates/import/import_status.html:110
msgid "Openlibrary key"
msgstr ""
#: bookwyrm/templates/import/import_status.html:114
#: bookwyrm/templates/shelf/shelf.html:145 #: bookwyrm/templates/shelf/shelf.html:145
#: bookwyrm/templates/shelf/shelf.html:169 #: bookwyrm/templates/shelf/shelf.html:169
msgid "Author" msgid "Author"
msgstr "Autor*in" msgstr "Autor*in"
#: bookwyrm/templates/import/import_status.html:112 #: bookwyrm/templates/import/import_status.html:117
msgid "Shelf" msgid "Shelf"
msgstr "Regal" msgstr "Regal"
#: bookwyrm/templates/import/import_status.html:115 #: bookwyrm/templates/import/import_status.html:120
#: bookwyrm/templates/import/manual_review.html:13 #: bookwyrm/templates/import/manual_review.html:13
#: bookwyrm/templates/snippets/create_status.html:17 #: bookwyrm/templates/snippets/create_status.html:17
msgid "Review" msgid "Review"
msgstr "Besprechen" msgstr "Besprechen"
#: bookwyrm/templates/import/import_status.html:119 #: bookwyrm/templates/import/import_status.html:124
msgid "Book" msgid "Book"
msgstr "Buch" msgstr "Buch"
#: bookwyrm/templates/import/import_status.html:122 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:38 #: bookwyrm/templates/settings/announcements/announcements.html:38
#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:44
@ -1624,31 +1628,31 @@ msgstr "Buch"
msgid "Status" msgid "Status"
msgstr "Status" msgstr "Status"
#: bookwyrm/templates/import/import_status.html:130 #: bookwyrm/templates/import/import_status.html:135
msgid "Import preview unavailable." msgid "Import preview unavailable."
msgstr "" msgstr ""
#: bookwyrm/templates/import/import_status.html:162 #: bookwyrm/templates/import/import_status.html:172
msgid "View imported review" msgid "View imported review"
msgstr "" msgstr ""
#: bookwyrm/templates/import/import_status.html:176 #: bookwyrm/templates/import/import_status.html:186
msgid "Imported" msgid "Imported"
msgstr "Importiert" msgstr "Importiert"
#: bookwyrm/templates/import/import_status.html:182 #: bookwyrm/templates/import/import_status.html:192
msgid "Needs manual review" msgid "Needs manual review"
msgstr "" msgstr ""
#: bookwyrm/templates/import/import_status.html:195 #: bookwyrm/templates/import/import_status.html:205
msgid "Retry" msgid "Retry"
msgstr "Erneut versuchen" msgstr "Erneut versuchen"
#: bookwyrm/templates/import/import_status.html:213 #: bookwyrm/templates/import/import_status.html:223
msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format."
msgstr "" msgstr ""
#: bookwyrm/templates/import/import_status.html:215 #: bookwyrm/templates/import/import_status.html:225
msgid "Update import" msgid "Update import"
msgstr "" msgstr ""
@ -4145,7 +4149,7 @@ msgstr "Datei überschreitet die maximale Größe von 10MB"
msgid "%(title)s: %(subtitle)s" msgid "%(title)s: %(subtitle)s"
msgstr "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s"
#: bookwyrm/views/imports/import_data.py:64 #: bookwyrm/views/imports/import_data.py:67
msgid "Not a valid csv file" msgid "Not a valid csv file"
msgstr "Keine gültige CSV-Datei" msgstr "Keine gültige CSV-Datei"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.0.1\n" "Project-Id-Version: 0.0.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-27 20:43+0000\n" "POT-Creation-Date: 2021-12-27 22:24+0000\n"
"PO-Revision-Date: 2021-02-28 17:19-0800\n" "PO-Revision-Date: 2021-02-28 17:19-0800\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: English <LL@li.org>\n" "Language-Team: English <LL@li.org>\n"
@ -145,7 +145,7 @@ msgstr ""
msgid "%(value)s is not a valid username" msgid "%(value)s is not a valid username"
msgstr "" msgstr ""
#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:171 #: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:173
#: bookwyrm/templates/ostatus/error.html:29 #: bookwyrm/templates/ostatus/error.html:29
msgid "username" msgid "username"
msgstr "" msgstr ""
@ -244,6 +244,132 @@ msgstr ""
msgid "Something went wrong! Sorry about that." msgid "Something went wrong! Sorry about that."
msgstr "" msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:6
#: bookwyrm/templates/feed/summary_card.html:8
#, python-format
msgid "%(year)s in the books"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:42
#, python-format
msgid "%(year)s <em>in the books</em>"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:46
#, python-format
msgid "<em>%(display_name)ss</em> year of reading"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:52
msgid "Share this page"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:60
msgid "Copy address"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:60
#: bookwyrm/templates/lists/list.html:194
msgid "Copied!"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:68
msgid "Sharing status: <strong>public with key</strong>"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:69
msgid "The page can be seen by anyone with the complete address."
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:74
msgid "Make page private"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:80
msgid "Sharing status: <strong>private</strong>"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:81
msgid "The page is private, only you can see it."
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:86
msgid "Make page public"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:90
msgid "When you make your page private, the old key wont give access to the page anymore. A new key will be created if the page is once again made public."
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:103
#, python-format
msgid "Sadly %(display_name)s didnt finish any book in %(year)s"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:109
#, python-format
msgid "In %(year)s, %(display_name)s read %(books_total)s books<br />for a total of %(pages_total)s pages!"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:111
msgid "Thats great!"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:114
#, python-format
msgid "That makes an average of %(pages_average)s pages per book."
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:119
#, python-format
msgid "(%(no_page_number)s book doesnt have pages)"
msgid_plural "(%(no_page_number)s books dont have pages)"
msgstr[0] ""
msgstr[1] ""
#: bookwyrm/templates/annual_summary/layout.html:135
msgid "Their shortest read this year…"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:142
#: bookwyrm/templates/annual_summary/layout.html:163
#: bookwyrm/templates/annual_summary/layout.html:203
#: bookwyrm/templates/book/book.html:47
#: bookwyrm/templates/discover/large-book.html:22
#: bookwyrm/templates/landing/large-book.html:25
#: bookwyrm/templates/landing/small-book.html:18
msgid "by"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:148
#: bookwyrm/templates/annual_summary/layout.html:169
#, python-format
msgid "<strong>%(pages)s</strong> pages"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:156
msgid "…and the longest"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:186
#, python-format
msgid "%(display_name)s left %(ratings_total)s ratings, <br />their average rating is %(rating_average)s"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:196
msgid "Their best rated review"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:209
#, python-format
msgid "Their rating: <strong>%(rating)s</strong>"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:226
#, python-format
msgid "All the books %(display_name)s read in 2021"
msgstr ""
#: bookwyrm/templates/author/author.html:18 #: bookwyrm/templates/author/author.html:18
#: bookwyrm/templates/author/author.html:19 #: bookwyrm/templates/author/author.html:19
msgid "Edit Author" msgid "Edit Author"
@ -432,13 +558,6 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: bookwyrm/templates/book/book.html:47
#: bookwyrm/templates/discover/large-book.html:22
#: bookwyrm/templates/landing/large-book.html:25
#: bookwyrm/templates/landing/small-book.html:18
msgid "by"
msgstr ""
#: bookwyrm/templates/book/book.html:55 bookwyrm/templates/book/book.html:56 #: bookwyrm/templates/book/book.html:55 bookwyrm/templates/book/book.html:56
msgid "Edit Book" msgid "Edit Book"
msgstr "" msgstr ""
@ -519,7 +638,7 @@ msgstr ""
msgid "Places" msgid "Places"
msgstr "" msgstr ""
#: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:75 #: bookwyrm/templates/book/book.html:320 bookwyrm/templates/layout.html:77
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
#: bookwyrm/templates/search/layout.html:25 #: bookwyrm/templates/search/layout.html:25
#: bookwyrm/templates/search/layout.html:50 #: bookwyrm/templates/search/layout.html:50
@ -894,7 +1013,7 @@ msgstr ""
#: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:4
#: bookwyrm/templates/directory/directory.html:9 #: bookwyrm/templates/directory/directory.html:9
#: bookwyrm/templates/layout.html:101 #: bookwyrm/templates/layout.html:103
msgid "Directory" msgid "Directory"
msgstr "" msgstr ""
@ -1012,7 +1131,7 @@ msgstr ""
#: bookwyrm/templates/discover/discover.html:4 #: bookwyrm/templates/discover/discover.html:4
#: bookwyrm/templates/discover/discover.html:10 #: bookwyrm/templates/discover/discover.html:10
#: bookwyrm/templates/layout.html:78 #: bookwyrm/templates/layout.html:80
msgid "Discover" msgid "Discover"
msgstr "" msgstr ""
@ -1129,18 +1248,18 @@ msgstr ""
msgid "Reset your %(site_name)s password" msgid "Reset your %(site_name)s password"
msgstr "" msgstr ""
#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:37 #: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:39
#, python-format #, python-format
msgid "%(site_name)s home page" msgid "%(site_name)s home page"
msgstr "" msgstr ""
#: bookwyrm/templates/embed-layout.html:34 #: bookwyrm/templates/embed-layout.html:34
#: bookwyrm/templates/landing/about.html:7 bookwyrm/templates/layout.html:230 #: bookwyrm/templates/landing/about.html:7 bookwyrm/templates/layout.html:232
#, python-format #, python-format
msgid "About %(site_name)s" msgid "About %(site_name)s"
msgstr "" msgstr ""
#: bookwyrm/templates/embed-layout.html:40 bookwyrm/templates/layout.html:234 #: bookwyrm/templates/embed-layout.html:40 bookwyrm/templates/layout.html:236
msgid "Contact site admin" msgid "Contact site admin"
msgstr "" msgstr ""
@ -1154,7 +1273,7 @@ msgid "Direct Messages with <a href=\"%(path)s\">%(username)s</a>"
msgstr "" msgstr ""
#: bookwyrm/templates/feed/direct_messages.html:10 #: bookwyrm/templates/feed/direct_messages.html:10
#: bookwyrm/templates/layout.html:111 #: bookwyrm/templates/layout.html:113
msgid "Direct Messages" msgid "Direct Messages"
msgstr "" msgstr ""
@ -1183,11 +1302,11 @@ msgstr ""
msgid "load <span data-poll=\"stream/%(tab_key)s\">0</span> unread status(es)" msgid "load <span data-poll=\"stream/%(tab_key)s\">0</span> unread status(es)"
msgstr "" msgstr ""
#: bookwyrm/templates/feed/feed.html:80 #: bookwyrm/templates/feed/feed.html:86
msgid "There aren't any activities right now! Try following a user to get started" msgid "There aren't any activities right now! Try following a user to get started"
msgstr "" msgstr ""
#: bookwyrm/templates/feed/feed.html:81 #: bookwyrm/templates/feed/feed.html:87
msgid "Alternatively, you can try enabling more status types" msgid "Alternatively, you can try enabling more status types"
msgstr "" msgstr ""
@ -1207,7 +1326,7 @@ msgstr ""
msgid "Updates" msgid "Updates"
msgstr "" msgstr ""
#: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:106 #: bookwyrm/templates/feed/layout.html:12 bookwyrm/templates/layout.html:108
msgid "Your Books" msgid "Your Books"
msgstr "" msgstr ""
@ -1261,6 +1380,15 @@ msgstr ""
msgid "View directory" msgid "View directory"
msgstr "" msgstr ""
#: bookwyrm/templates/feed/summary_card.html:14
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 ""
#: bookwyrm/templates/feed/summary_card.html:19
#, python-format
msgid "Discover your stats for %(year)s!"
msgstr ""
#: bookwyrm/templates/get_started/book_preview.html:6 #: bookwyrm/templates/get_started/book_preview.html:6
#, python-format #, python-format
msgid "Have you read %(book_title)s?" msgid "Have you read %(book_title)s?"
@ -1275,7 +1403,7 @@ msgid "What are you reading?"
msgstr "" msgstr ""
#: bookwyrm/templates/get_started/books.html:9 #: bookwyrm/templates/get_started/books.html:9
#: bookwyrm/templates/layout.html:45 bookwyrm/templates/lists/list.html:138 #: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:138
msgid "Search for a book" msgid "Search for a book"
msgstr "" msgstr ""
@ -1294,8 +1422,8 @@ msgstr ""
#: bookwyrm/templates/get_started/users.html:18 #: bookwyrm/templates/get_started/users.html:18
#: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/get_started/users.html:19
#: bookwyrm/templates/groups/group.html:19 #: bookwyrm/templates/groups/group.html:19
#: bookwyrm/templates/groups/group.html:20 bookwyrm/templates/layout.html:51 #: bookwyrm/templates/groups/group.html:20 bookwyrm/templates/layout.html:53
#: bookwyrm/templates/layout.html:52 bookwyrm/templates/lists/list.html:142 #: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:142
#: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:4
#: bookwyrm/templates/search/layout.html:9 #: bookwyrm/templates/search/layout.html:9
msgid "Search" msgid "Search"
@ -1774,7 +1902,7 @@ msgid "Login"
msgstr "" msgstr ""
#: bookwyrm/templates/landing/login.html:7 #: bookwyrm/templates/landing/login.html:7
#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:179 #: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:181
#: bookwyrm/templates/ostatus/error.html:37 #: bookwyrm/templates/ostatus/error.html:37
msgid "Log in" msgid "Log in"
msgstr "" msgstr ""
@ -1783,7 +1911,7 @@ msgstr ""
msgid "Success! Email address confirmed." msgid "Success! Email address confirmed."
msgstr "" msgstr ""
#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:170 #: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:172
#: bookwyrm/templates/ostatus/error.html:28 #: bookwyrm/templates/ostatus/error.html:28
#: bookwyrm/templates/snippets/register_form.html:4 #: bookwyrm/templates/snippets/register_form.html:4
msgid "Username:" msgid "Username:"
@ -1791,12 +1919,12 @@ msgstr ""
#: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/login.html:27
#: bookwyrm/templates/landing/password_reset.html:26 #: bookwyrm/templates/landing/password_reset.html:26
#: bookwyrm/templates/layout.html:174 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/layout.html:176 bookwyrm/templates/ostatus/error.html:32
#: bookwyrm/templates/snippets/register_form.html:20 #: bookwyrm/templates/snippets/register_form.html:20
msgid "Password:" msgid "Password:"
msgstr "" msgstr ""
#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:176 #: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:178
#: bookwyrm/templates/ostatus/error.html:34 #: bookwyrm/templates/ostatus/error.html:34
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "" msgstr ""
@ -1824,23 +1952,23 @@ msgstr ""
msgid "%(site_name)s search" msgid "%(site_name)s search"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:43 #: bookwyrm/templates/layout.html:45
msgid "Search for a book, user, or list" msgid "Search for a book, user, or list"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:61 bookwyrm/templates/layout.html:62 #: bookwyrm/templates/layout.html:63 bookwyrm/templates/layout.html:64
msgid "Main navigation menu" msgid "Main navigation menu"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:72 #: bookwyrm/templates/layout.html:74
msgid "Feed" msgid "Feed"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:116 #: bookwyrm/templates/layout.html:118
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:125 #: bookwyrm/templates/layout.html:127
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:15
#: bookwyrm/templates/settings/invites/manage_invites.html:3 #: bookwyrm/templates/settings/invites/manage_invites.html:3
#: bookwyrm/templates/settings/invites/manage_invites.html:15 #: bookwyrm/templates/settings/invites/manage_invites.html:15
@ -1848,46 +1976,46 @@ msgstr ""
msgid "Invites" msgid "Invites"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:132 #: bookwyrm/templates/layout.html:134
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:139 #: bookwyrm/templates/layout.html:141
msgid "Log out" msgid "Log out"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:147 bookwyrm/templates/layout.html:148 #: bookwyrm/templates/layout.html:149 bookwyrm/templates/layout.html:150
#: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:5
#: bookwyrm/templates/notifications/notifications_page.html:10 #: bookwyrm/templates/notifications/notifications_page.html:10
msgid "Notifications" msgid "Notifications"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:175 bookwyrm/templates/ostatus/error.html:33 #: bookwyrm/templates/layout.html:177 bookwyrm/templates/ostatus/error.html:33
msgid "password" msgid "password"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:187 #: bookwyrm/templates/layout.html:189
msgid "Join" msgid "Join"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:221 #: bookwyrm/templates/layout.html:223
msgid "Successfully posted status" msgid "Successfully posted status"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:222 #: bookwyrm/templates/layout.html:224
msgid "Error posting status" msgid "Error posting status"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:238 #: bookwyrm/templates/layout.html:240
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:245 #: bookwyrm/templates/layout.html:247
#, python-format #, python-format
msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:249 #: bookwyrm/templates/layout.html:251
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
msgstr "" msgstr ""
@ -2080,15 +2208,11 @@ msgstr ""
msgid "Embed this list on a website" msgid "Embed this list on a website"
msgstr "" msgstr ""
#: bookwyrm/templates/lists/list.html:193 #: bookwyrm/templates/lists/list.html:194
msgid "Copy embed code" msgid "Copy embed code"
msgstr "" msgstr ""
#: bookwyrm/templates/lists/list.html:193 #: bookwyrm/templates/lists/list.html:194
msgid "Copied!"
msgstr ""
#: bookwyrm/templates/lists/list.html:193
#, python-format #, python-format
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
msgstr "" msgstr ""

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-08 15:40+0000\n" "POT-Creation-Date: 2021-12-27 20:43+0000\n"
"PO-Revision-Date: 2021-12-09 18:56\n" "PO-Revision-Date: 2021-12-27 22:00\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Spanish\n" "Language-Team: Spanish\n"
"Language: es\n" "Language: es\n"
@ -72,16 +72,16 @@ msgstr "Ascendente"
msgid "Descending" msgid "Descending"
msgstr "Descendente" msgstr "Descendente"
#: bookwyrm/importers/importer.py:141 bookwyrm/importers/importer.py:163 #: bookwyrm/importers/importer.py:145 bookwyrm/importers/importer.py:167
msgid "Error loading book" msgid "Error loading book"
msgstr "Error en cargar libro" msgstr "Error en cargar libro"
#: bookwyrm/importers/importer.py:150 #: bookwyrm/importers/importer.py:154
msgid "Could not find a match for book" msgid "Could not find a match for book"
msgstr "No se pudo encontrar el libro" msgstr "No se pudo encontrar el libro"
#: bookwyrm/models/base_model.py:17 #: bookwyrm/models/base_model.py:17
#: bookwyrm/templates/import/import_status.html:190 #: bookwyrm/templates/import/import_status.html:200
msgid "Pending" msgid "Pending"
msgstr "Pendiente" msgstr "Pendiente"
@ -1505,28 +1505,28 @@ msgstr "Importar libros"
msgid "Data source:" msgid "Data source:"
msgstr "Fuente de datos:" msgstr "Fuente de datos:"
#: bookwyrm/templates/import/import.html:37 #: bookwyrm/templates/import/import.html:40
msgid "Data file:" msgid "Data file:"
msgstr "Archivo de datos:" msgstr "Archivo de datos:"
#: bookwyrm/templates/import/import.html:45 #: bookwyrm/templates/import/import.html:48
msgid "Include reviews" msgid "Include reviews"
msgstr "Incluir reseñas" msgstr "Incluir reseñas"
#: bookwyrm/templates/import/import.html:50 #: bookwyrm/templates/import/import.html:53
msgid "Privacy setting for imported reviews:" msgid "Privacy setting for imported reviews:"
msgstr "Configuración de privacidad para las reseñas importadas:" msgstr "Configuración de privacidad para las reseñas importadas:"
#: bookwyrm/templates/import/import.html:56 #: bookwyrm/templates/import/import.html:59
#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 #: bookwyrm/templates/settings/federation/instance_blocklist.html:64
msgid "Import" msgid "Import"
msgstr "Importar" msgstr "Importar"
#: bookwyrm/templates/import/import.html:61 #: bookwyrm/templates/import/import.html:64
msgid "Recent Imports" msgid "Recent Imports"
msgstr "Importaciones recientes" msgstr "Importaciones recientes"
#: bookwyrm/templates/import/import.html:63 #: bookwyrm/templates/import/import.html:66
msgid "No recent imports" msgid "No recent imports"
msgstr "No hay ninguna importación reciente" msgstr "No hay ninguna importación reciente"
@ -1594,27 +1594,31 @@ msgstr "Título"
msgid "ISBN" msgid "ISBN"
msgstr "ISBN" msgstr "ISBN"
#: bookwyrm/templates/import/import_status.html:109 #: bookwyrm/templates/import/import_status.html:110
msgid "Openlibrary key"
msgstr "Clave de OpenLibrary"
#: bookwyrm/templates/import/import_status.html:114
#: bookwyrm/templates/shelf/shelf.html:145 #: bookwyrm/templates/shelf/shelf.html:145
#: bookwyrm/templates/shelf/shelf.html:169 #: bookwyrm/templates/shelf/shelf.html:169
msgid "Author" msgid "Author"
msgstr "Autor/Autora" msgstr "Autor/Autora"
#: bookwyrm/templates/import/import_status.html:112 #: bookwyrm/templates/import/import_status.html:117
msgid "Shelf" msgid "Shelf"
msgstr "Estantería" msgstr "Estantería"
#: bookwyrm/templates/import/import_status.html:115 #: bookwyrm/templates/import/import_status.html:120
#: bookwyrm/templates/import/manual_review.html:13 #: bookwyrm/templates/import/manual_review.html:13
#: bookwyrm/templates/snippets/create_status.html:17 #: bookwyrm/templates/snippets/create_status.html:17
msgid "Review" msgid "Review"
msgstr "Reseña" msgstr "Reseña"
#: bookwyrm/templates/import/import_status.html:119 #: bookwyrm/templates/import/import_status.html:124
msgid "Book" msgid "Book"
msgstr "Libro" msgstr "Libro"
#: bookwyrm/templates/import/import_status.html:122 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:38 #: bookwyrm/templates/settings/announcements/announcements.html:38
#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:44
@ -1624,31 +1628,31 @@ msgstr "Libro"
msgid "Status" msgid "Status"
msgstr "Estado" msgstr "Estado"
#: bookwyrm/templates/import/import_status.html:130 #: bookwyrm/templates/import/import_status.html:135
msgid "Import preview unavailable." msgid "Import preview unavailable."
msgstr "Previsualización de la importación no disponible." msgstr "Previsualización de la importación no disponible."
#: bookwyrm/templates/import/import_status.html:162 #: bookwyrm/templates/import/import_status.html:172
msgid "View imported review" msgid "View imported review"
msgstr "Ver reseña importada" msgstr "Ver reseña importada"
#: bookwyrm/templates/import/import_status.html:176 #: bookwyrm/templates/import/import_status.html:186
msgid "Imported" msgid "Imported"
msgstr "Importado" msgstr "Importado"
#: bookwyrm/templates/import/import_status.html:182 #: bookwyrm/templates/import/import_status.html:192
msgid "Needs manual review" msgid "Needs manual review"
msgstr "Necesita revisión manual" msgstr "Necesita revisión manual"
#: bookwyrm/templates/import/import_status.html:195 #: bookwyrm/templates/import/import_status.html:205
msgid "Retry" msgid "Retry"
msgstr "Reintentar" msgstr "Reintentar"
#: bookwyrm/templates/import/import_status.html:213 #: bookwyrm/templates/import/import_status.html:223
msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format."
msgstr "Esta importación está en un formato antiguo que ya no es compatible. Si desea solucionar los elementos que faltan en esta importación, haga clic en el botón de abajo para actualizar el formato de importación." msgstr "Esta importación está en un formato antiguo que ya no es compatible. Si desea solucionar los elementos que faltan en esta importación, haga clic en el botón de abajo para actualizar el formato de importación."
#: bookwyrm/templates/import/import_status.html:215 #: bookwyrm/templates/import/import_status.html:225
msgid "Update import" msgid "Update import"
msgstr "Actualizar importación" msgstr "Actualizar importación"
@ -4145,7 +4149,7 @@ msgstr "Archivo excede el tamaño máximo: 10MB"
msgid "%(title)s: %(subtitle)s" msgid "%(title)s: %(subtitle)s"
msgstr "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s"
#: bookwyrm/views/imports/import_data.py:64 #: bookwyrm/views/imports/import_data.py:67
msgid "Not a valid csv file" msgid "Not a valid csv file"
msgstr "No un archivo csv válido" msgstr "No un archivo csv válido"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-08 15:40+0000\n" "POT-Creation-Date: 2021-12-27 20:43+0000\n"
"PO-Revision-Date: 2021-12-26 09:59\n" "PO-Revision-Date: 2021-12-27 22:00\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: French\n" "Language-Team: French\n"
"Language: fr\n" "Language: fr\n"
@ -72,16 +72,16 @@ msgstr "Ordre croissant"
msgid "Descending" msgid "Descending"
msgstr "Ordre décroissant" msgstr "Ordre décroissant"
#: bookwyrm/importers/importer.py:141 bookwyrm/importers/importer.py:163 #: bookwyrm/importers/importer.py:145 bookwyrm/importers/importer.py:167
msgid "Error loading book" msgid "Error loading book"
msgstr "Erreur lors du chargement du livre" msgstr "Erreur lors du chargement du livre"
#: bookwyrm/importers/importer.py:150 #: bookwyrm/importers/importer.py:154
msgid "Could not find a match for book" msgid "Could not find a match for book"
msgstr "Impossible de trouver une correspondance pour le livre" msgstr "Impossible de trouver une correspondance pour le livre"
#: bookwyrm/models/base_model.py:17 #: bookwyrm/models/base_model.py:17
#: bookwyrm/templates/import/import_status.html:190 #: bookwyrm/templates/import/import_status.html:200
msgid "Pending" msgid "Pending"
msgstr "En attente" msgstr "En attente"
@ -1505,28 +1505,28 @@ msgstr "Importer des livres"
msgid "Data source:" msgid "Data source:"
msgstr "Source de données:" msgstr "Source de données:"
#: bookwyrm/templates/import/import.html:37 #: bookwyrm/templates/import/import.html:40
msgid "Data file:" msgid "Data file:"
msgstr "Fichier de données:" msgstr "Fichier de données:"
#: bookwyrm/templates/import/import.html:45 #: bookwyrm/templates/import/import.html:48
msgid "Include reviews" msgid "Include reviews"
msgstr "Importer les critiques" msgstr "Importer les critiques"
#: bookwyrm/templates/import/import.html:50 #: bookwyrm/templates/import/import.html:53
msgid "Privacy setting for imported reviews:" msgid "Privacy setting for imported reviews:"
msgstr "Confidentialité des critiques importées:" msgstr "Confidentialité des critiques importées:"
#: bookwyrm/templates/import/import.html:56 #: bookwyrm/templates/import/import.html:59
#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 #: bookwyrm/templates/settings/federation/instance_blocklist.html:64
msgid "Import" msgid "Import"
msgstr "Importer" msgstr "Importer"
#: bookwyrm/templates/import/import.html:61 #: bookwyrm/templates/import/import.html:64
msgid "Recent Imports" msgid "Recent Imports"
msgstr "Importations récentes" msgstr "Importations récentes"
#: bookwyrm/templates/import/import.html:63 #: bookwyrm/templates/import/import.html:66
msgid "No recent imports" msgid "No recent imports"
msgstr "Aucune importation récente" msgstr "Aucune importation récente"
@ -1594,27 +1594,31 @@ msgstr "Titre"
msgid "ISBN" msgid "ISBN"
msgstr "ISBN" msgstr "ISBN"
#: bookwyrm/templates/import/import_status.html:109 #: bookwyrm/templates/import/import_status.html:110
msgid "Openlibrary key"
msgstr ""
#: bookwyrm/templates/import/import_status.html:114
#: bookwyrm/templates/shelf/shelf.html:145 #: bookwyrm/templates/shelf/shelf.html:145
#: bookwyrm/templates/shelf/shelf.html:169 #: bookwyrm/templates/shelf/shelf.html:169
msgid "Author" msgid "Author"
msgstr "Auteur/autrice" msgstr "Auteur/autrice"
#: bookwyrm/templates/import/import_status.html:112 #: bookwyrm/templates/import/import_status.html:117
msgid "Shelf" msgid "Shelf"
msgstr "Étagère" msgstr "Étagère"
#: bookwyrm/templates/import/import_status.html:115 #: bookwyrm/templates/import/import_status.html:120
#: bookwyrm/templates/import/manual_review.html:13 #: bookwyrm/templates/import/manual_review.html:13
#: bookwyrm/templates/snippets/create_status.html:17 #: bookwyrm/templates/snippets/create_status.html:17
msgid "Review" msgid "Review"
msgstr "Critique" msgstr "Critique"
#: bookwyrm/templates/import/import_status.html:119 #: bookwyrm/templates/import/import_status.html:124
msgid "Book" msgid "Book"
msgstr "Livre" msgstr "Livre"
#: bookwyrm/templates/import/import_status.html:122 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:38 #: bookwyrm/templates/settings/announcements/announcements.html:38
#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:44
@ -1624,31 +1628,31 @@ msgstr "Livre"
msgid "Status" msgid "Status"
msgstr "Statut" msgstr "Statut"
#: bookwyrm/templates/import/import_status.html:130 #: bookwyrm/templates/import/import_status.html:135
msgid "Import preview unavailable." msgid "Import preview unavailable."
msgstr "Aperçu de l'importation indisponible." msgstr "Aperçu de l'importation indisponible."
#: bookwyrm/templates/import/import_status.html:162 #: bookwyrm/templates/import/import_status.html:172
msgid "View imported review" msgid "View imported review"
msgstr "Afficher la critique importée" msgstr "Afficher la critique importée"
#: bookwyrm/templates/import/import_status.html:176 #: bookwyrm/templates/import/import_status.html:186
msgid "Imported" msgid "Imported"
msgstr "Importé" msgstr "Importé"
#: bookwyrm/templates/import/import_status.html:182 #: bookwyrm/templates/import/import_status.html:192
msgid "Needs manual review" msgid "Needs manual review"
msgstr "Nécessite une vérification manuelle" msgstr "Nécessite une vérification manuelle"
#: bookwyrm/templates/import/import_status.html:195 #: bookwyrm/templates/import/import_status.html:205
msgid "Retry" msgid "Retry"
msgstr "Réessayer" msgstr "Réessayer"
#: bookwyrm/templates/import/import_status.html:213 #: bookwyrm/templates/import/import_status.html:223
msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format."
msgstr "Cette importation est dans un ancien format qui n'est plus pris en charge. Si vous souhaitez corriger les éléments manquants de cette importation, cliquez sur le bouton ci-dessous pour mettre à jour le format d'importation." msgstr "Cette importation est dans un ancien format qui n'est plus pris en charge. Si vous souhaitez corriger les éléments manquants de cette importation, cliquez sur le bouton ci-dessous pour mettre à jour le format d'importation."
#: bookwyrm/templates/import/import_status.html:215 #: bookwyrm/templates/import/import_status.html:225
msgid "Update import" msgid "Update import"
msgstr "Mettre à jour l'importation" msgstr "Mettre à jour l'importation"
@ -4145,7 +4149,7 @@ msgstr "Ce fichier dépasse la taille limite: 10Mo"
msgid "%(title)s: %(subtitle)s" msgid "%(title)s: %(subtitle)s"
msgstr "%(title)s (%(subtitle)s)" msgstr "%(title)s (%(subtitle)s)"
#: bookwyrm/views/imports/import_data.py:64 #: bookwyrm/views/imports/import_data.py:67
msgid "Not a valid csv file" msgid "Not a valid csv file"
msgstr "Fichier CSV non valide" msgstr "Fichier CSV non valide"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-08 15:40+0000\n" "POT-Creation-Date: 2021-12-27 20:43+0000\n"
"PO-Revision-Date: 2021-12-10 05:04\n" "PO-Revision-Date: 2021-12-27 22:00\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Galician\n" "Language-Team: Galician\n"
"Language: gl\n" "Language: gl\n"
@ -72,16 +72,16 @@ msgstr "Ascendente"
msgid "Descending" msgid "Descending"
msgstr "Descendente" msgstr "Descendente"
#: bookwyrm/importers/importer.py:141 bookwyrm/importers/importer.py:163 #: bookwyrm/importers/importer.py:145 bookwyrm/importers/importer.py:167
msgid "Error loading book" msgid "Error loading book"
msgstr "Erro ao cargar o libro" msgstr "Erro ao cargar o libro"
#: bookwyrm/importers/importer.py:150 #: bookwyrm/importers/importer.py:154
msgid "Could not find a match for book" msgid "Could not find a match for book"
msgstr "Non se atopan coincidencias para o libro" msgstr "Non se atopan coincidencias para o libro"
#: bookwyrm/models/base_model.py:17 #: bookwyrm/models/base_model.py:17
#: bookwyrm/templates/import/import_status.html:190 #: bookwyrm/templates/import/import_status.html:200
msgid "Pending" msgid "Pending"
msgstr "Pendente" msgstr "Pendente"
@ -1505,28 +1505,28 @@ msgstr "Importar libros"
msgid "Data source:" msgid "Data source:"
msgstr "Fonte de datos:" msgstr "Fonte de datos:"
#: bookwyrm/templates/import/import.html:37 #: bookwyrm/templates/import/import.html:40
msgid "Data file:" msgid "Data file:"
msgstr "Ficheiro de datos:" msgstr "Ficheiro de datos:"
#: bookwyrm/templates/import/import.html:45 #: bookwyrm/templates/import/import.html:48
msgid "Include reviews" msgid "Include reviews"
msgstr "Incluír recensións" msgstr "Incluír recensións"
#: bookwyrm/templates/import/import.html:50 #: bookwyrm/templates/import/import.html:53
msgid "Privacy setting for imported reviews:" msgid "Privacy setting for imported reviews:"
msgstr "Axuste de privacidade para recensións importadas:" msgstr "Axuste de privacidade para recensións importadas:"
#: bookwyrm/templates/import/import.html:56 #: bookwyrm/templates/import/import.html:59
#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 #: bookwyrm/templates/settings/federation/instance_blocklist.html:64
msgid "Import" msgid "Import"
msgstr "Importar" msgstr "Importar"
#: bookwyrm/templates/import/import.html:61 #: bookwyrm/templates/import/import.html:64
msgid "Recent Imports" msgid "Recent Imports"
msgstr "Importacións recentes" msgstr "Importacións recentes"
#: bookwyrm/templates/import/import.html:63 #: bookwyrm/templates/import/import.html:66
msgid "No recent imports" msgid "No recent imports"
msgstr "Sen importacións recentes" msgstr "Sen importacións recentes"
@ -1594,27 +1594,31 @@ msgstr "Título"
msgid "ISBN" msgid "ISBN"
msgstr "ISBN" msgstr "ISBN"
#: bookwyrm/templates/import/import_status.html:109 #: bookwyrm/templates/import/import_status.html:110
msgid "Openlibrary key"
msgstr ""
#: bookwyrm/templates/import/import_status.html:114
#: bookwyrm/templates/shelf/shelf.html:145 #: bookwyrm/templates/shelf/shelf.html:145
#: bookwyrm/templates/shelf/shelf.html:169 #: bookwyrm/templates/shelf/shelf.html:169
msgid "Author" msgid "Author"
msgstr "Autor" msgstr "Autor"
#: bookwyrm/templates/import/import_status.html:112 #: bookwyrm/templates/import/import_status.html:117
msgid "Shelf" msgid "Shelf"
msgstr "Estante" msgstr "Estante"
#: bookwyrm/templates/import/import_status.html:115 #: bookwyrm/templates/import/import_status.html:120
#: bookwyrm/templates/import/manual_review.html:13 #: bookwyrm/templates/import/manual_review.html:13
#: bookwyrm/templates/snippets/create_status.html:17 #: bookwyrm/templates/snippets/create_status.html:17
msgid "Review" msgid "Review"
msgstr "Revisar" msgstr "Revisar"
#: bookwyrm/templates/import/import_status.html:119 #: bookwyrm/templates/import/import_status.html:124
msgid "Book" msgid "Book"
msgstr "Libro" msgstr "Libro"
#: bookwyrm/templates/import/import_status.html:122 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:38 #: bookwyrm/templates/settings/announcements/announcements.html:38
#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:44
@ -1624,31 +1628,31 @@ msgstr "Libro"
msgid "Status" msgid "Status"
msgstr "Estado" msgstr "Estado"
#: bookwyrm/templates/import/import_status.html:130 #: bookwyrm/templates/import/import_status.html:135
msgid "Import preview unavailable." msgid "Import preview unavailable."
msgstr "Non dispoñible vista previa da importación." msgstr "Non dispoñible vista previa da importación."
#: bookwyrm/templates/import/import_status.html:162 #: bookwyrm/templates/import/import_status.html:172
msgid "View imported review" msgid "View imported review"
msgstr "Ver revisión importada" msgstr "Ver revisión importada"
#: bookwyrm/templates/import/import_status.html:176 #: bookwyrm/templates/import/import_status.html:186
msgid "Imported" msgid "Imported"
msgstr "Importado" msgstr "Importado"
#: bookwyrm/templates/import/import_status.html:182 #: bookwyrm/templates/import/import_status.html:192
msgid "Needs manual review" msgid "Needs manual review"
msgstr "Precisa revisión manual" msgstr "Precisa revisión manual"
#: bookwyrm/templates/import/import_status.html:195 #: bookwyrm/templates/import/import_status.html:205
msgid "Retry" msgid "Retry"
msgstr "Volver a intentar" msgstr "Volver a intentar"
#: bookwyrm/templates/import/import_status.html:213 #: bookwyrm/templates/import/import_status.html:223
msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format."
msgstr "Esta importación ten un formato antigo xa non soportado. Se queres intentar recuperar os elementos que faltan nesta importación preme no botón inferior para actualizar o formato de importación." msgstr "Esta importación ten un formato antigo xa non soportado. Se queres intentar recuperar os elementos que faltan nesta importación preme no botón inferior para actualizar o formato de importación."
#: bookwyrm/templates/import/import_status.html:215 #: bookwyrm/templates/import/import_status.html:225
msgid "Update import" msgid "Update import"
msgstr "Actualizar importación" msgstr "Actualizar importación"
@ -4145,7 +4149,7 @@ msgstr "O ficheiro supera o tamaño máximo: 10MB"
msgid "%(title)s: %(subtitle)s" msgid "%(title)s: %(subtitle)s"
msgstr "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s"
#: bookwyrm/views/imports/import_data.py:64 #: bookwyrm/views/imports/import_data.py:67
msgid "Not a valid csv file" msgid "Not a valid csv file"
msgstr "Non é un ficheiro csv válido" msgstr "Non é un ficheiro csv válido"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-08 15:40+0000\n" "POT-Creation-Date: 2021-12-27 20:43+0000\n"
"PO-Revision-Date: 2021-12-26 20:36\n" "PO-Revision-Date: 2021-12-27 22:00\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Lithuanian\n" "Language-Team: Lithuanian\n"
"Language: lt\n" "Language: lt\n"
@ -72,16 +72,16 @@ msgstr "Didėjančia tvarka"
msgid "Descending" msgid "Descending"
msgstr "Mažėjančia tvarka" msgstr "Mažėjančia tvarka"
#: bookwyrm/importers/importer.py:141 bookwyrm/importers/importer.py:163 #: bookwyrm/importers/importer.py:145 bookwyrm/importers/importer.py:167
msgid "Error loading book" msgid "Error loading book"
msgstr "Klaida įkeliant knygą" msgstr "Klaida įkeliant knygą"
#: bookwyrm/importers/importer.py:150 #: bookwyrm/importers/importer.py:154
msgid "Could not find a match for book" msgid "Could not find a match for book"
msgstr "Nepavyko rasti tokios knygos" msgstr "Nepavyko rasti tokios knygos"
#: bookwyrm/models/base_model.py:17 #: bookwyrm/models/base_model.py:17
#: bookwyrm/templates/import/import_status.html:190 #: bookwyrm/templates/import/import_status.html:200
msgid "Pending" msgid "Pending"
msgstr "Laukiama" msgstr "Laukiama"
@ -1515,28 +1515,28 @@ msgstr "Importuoti knygas"
msgid "Data source:" msgid "Data source:"
msgstr "Duomenų šaltinis:" msgstr "Duomenų šaltinis:"
#: bookwyrm/templates/import/import.html:37 #: bookwyrm/templates/import/import.html:40
msgid "Data file:" msgid "Data file:"
msgstr "Duomenų failas:" msgstr "Duomenų failas:"
#: bookwyrm/templates/import/import.html:45 #: bookwyrm/templates/import/import.html:48
msgid "Include reviews" msgid "Include reviews"
msgstr "Įtraukti atsiliepimus" msgstr "Įtraukti atsiliepimus"
#: bookwyrm/templates/import/import.html:50 #: bookwyrm/templates/import/import.html:53
msgid "Privacy setting for imported reviews:" msgid "Privacy setting for imported reviews:"
msgstr "Privatumo nustatymai svarbiems atsiliepimams:" msgstr "Privatumo nustatymai svarbiems atsiliepimams:"
#: bookwyrm/templates/import/import.html:56 #: bookwyrm/templates/import/import.html:59
#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 #: bookwyrm/templates/settings/federation/instance_blocklist.html:64
msgid "Import" msgid "Import"
msgstr "Importuoti" msgstr "Importuoti"
#: bookwyrm/templates/import/import.html:61 #: bookwyrm/templates/import/import.html:64
msgid "Recent Imports" msgid "Recent Imports"
msgstr "Pastaruoju metu importuota" msgstr "Pastaruoju metu importuota"
#: bookwyrm/templates/import/import.html:63 #: bookwyrm/templates/import/import.html:66
msgid "No recent imports" msgid "No recent imports"
msgstr "Pastaruoju metu neimportuota" msgstr "Pastaruoju metu neimportuota"
@ -1608,27 +1608,31 @@ msgstr "Pavadinimas"
msgid "ISBN" msgid "ISBN"
msgstr "ISBN" msgstr "ISBN"
#: bookwyrm/templates/import/import_status.html:109 #: bookwyrm/templates/import/import_status.html:110
msgid "Openlibrary key"
msgstr "„Openlibrary“ raktas"
#: bookwyrm/templates/import/import_status.html:114
#: bookwyrm/templates/shelf/shelf.html:145 #: bookwyrm/templates/shelf/shelf.html:145
#: bookwyrm/templates/shelf/shelf.html:169 #: bookwyrm/templates/shelf/shelf.html:169
msgid "Author" msgid "Author"
msgstr "Autorius" msgstr "Autorius"
#: bookwyrm/templates/import/import_status.html:112 #: bookwyrm/templates/import/import_status.html:117
msgid "Shelf" msgid "Shelf"
msgstr "Lentyna" msgstr "Lentyna"
#: bookwyrm/templates/import/import_status.html:115 #: bookwyrm/templates/import/import_status.html:120
#: bookwyrm/templates/import/manual_review.html:13 #: bookwyrm/templates/import/manual_review.html:13
#: bookwyrm/templates/snippets/create_status.html:17 #: bookwyrm/templates/snippets/create_status.html:17
msgid "Review" msgid "Review"
msgstr "Apžvalga" msgstr "Apžvalga"
#: bookwyrm/templates/import/import_status.html:119 #: bookwyrm/templates/import/import_status.html:124
msgid "Book" msgid "Book"
msgstr "Knyga" msgstr "Knyga"
#: bookwyrm/templates/import/import_status.html:122 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:38 #: bookwyrm/templates/settings/announcements/announcements.html:38
#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:44
@ -1638,31 +1642,31 @@ msgstr "Knyga"
msgid "Status" msgid "Status"
msgstr "Būsena" msgstr "Būsena"
#: bookwyrm/templates/import/import_status.html:130 #: bookwyrm/templates/import/import_status.html:135
msgid "Import preview unavailable." msgid "Import preview unavailable."
msgstr "Nepavyko įkelti peržiūros." msgstr "Nepavyko įkelti peržiūros."
#: bookwyrm/templates/import/import_status.html:162 #: bookwyrm/templates/import/import_status.html:172
msgid "View imported review" msgid "View imported review"
msgstr "Peržiūrėti įkeltą atsiliepimą" msgstr "Peržiūrėti įkeltą atsiliepimą"
#: bookwyrm/templates/import/import_status.html:176 #: bookwyrm/templates/import/import_status.html:186
msgid "Imported" msgid "Imported"
msgstr "Importuota" msgstr "Importuota"
#: bookwyrm/templates/import/import_status.html:182 #: bookwyrm/templates/import/import_status.html:192
msgid "Needs manual review" msgid "Needs manual review"
msgstr "Reikalinga peržvelgti" msgstr "Reikalinga peržvelgti"
#: bookwyrm/templates/import/import_status.html:195 #: bookwyrm/templates/import/import_status.html:205
msgid "Retry" msgid "Retry"
msgstr "Bandyti dar kartą" msgstr "Bandyti dar kartą"
#: bookwyrm/templates/import/import_status.html:213 #: bookwyrm/templates/import/import_status.html:223
msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format."
msgstr "Tai seno formato importas, kuris nebepalaikomas. Jei norite matyti importo metu praleistus elementus, spustelėkite žemiau esantį mygtuką ir atnaujinkite importavimo formatą." msgstr "Tai seno formato importas, kuris nebepalaikomas. Jei norite matyti importo metu praleistus elementus, spustelėkite žemiau esantį mygtuką ir atnaujinkite importavimo formatą."
#: bookwyrm/templates/import/import_status.html:215 #: bookwyrm/templates/import/import_status.html:225
msgid "Update import" msgid "Update import"
msgstr "Atnaujinti importą" msgstr "Atnaujinti importą"
@ -4183,7 +4187,7 @@ msgstr "Failas viršijo maksimalų dydį: 10 MB"
msgid "%(title)s: %(subtitle)s" msgid "%(title)s: %(subtitle)s"
msgstr "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s"
#: bookwyrm/views/imports/import_data.py:64 #: bookwyrm/views/imports/import_data.py:67
msgid "Not a valid csv file" msgid "Not a valid csv file"
msgstr "Netinkamas csv failas" msgstr "Netinkamas csv failas"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-08 15:40+0000\n" "POT-Creation-Date: 2021-12-27 20:43+0000\n"
"PO-Revision-Date: 2021-12-18 17:19\n" "PO-Revision-Date: 2021-12-27 22:00\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Portuguese, Brazilian\n" "Language-Team: Portuguese, Brazilian\n"
"Language: pt\n" "Language: pt\n"
@ -72,16 +72,16 @@ msgstr "Crescente"
msgid "Descending" msgid "Descending"
msgstr "Decrescente" msgstr "Decrescente"
#: bookwyrm/importers/importer.py:141 bookwyrm/importers/importer.py:163 #: bookwyrm/importers/importer.py:145 bookwyrm/importers/importer.py:167
msgid "Error loading book" msgid "Error loading book"
msgstr "Erro ao carregar livro" msgstr "Erro ao carregar livro"
#: bookwyrm/importers/importer.py:150 #: bookwyrm/importers/importer.py:154
msgid "Could not find a match for book" msgid "Could not find a match for book"
msgstr "Não foi possível encontrar o livro" msgstr "Não foi possível encontrar o livro"
#: bookwyrm/models/base_model.py:17 #: bookwyrm/models/base_model.py:17
#: bookwyrm/templates/import/import_status.html:190 #: bookwyrm/templates/import/import_status.html:200
msgid "Pending" msgid "Pending"
msgstr "Pendente" msgstr "Pendente"
@ -1505,28 +1505,28 @@ msgstr "Importar livros"
msgid "Data source:" msgid "Data source:"
msgstr "Fonte dos dados:" msgstr "Fonte dos dados:"
#: bookwyrm/templates/import/import.html:37 #: bookwyrm/templates/import/import.html:40
msgid "Data file:" msgid "Data file:"
msgstr "Arquivo de dados:" msgstr "Arquivo de dados:"
#: bookwyrm/templates/import/import.html:45 #: bookwyrm/templates/import/import.html:48
msgid "Include reviews" msgid "Include reviews"
msgstr "Incluir resenhas" msgstr "Incluir resenhas"
#: bookwyrm/templates/import/import.html:50 #: bookwyrm/templates/import/import.html:53
msgid "Privacy setting for imported reviews:" msgid "Privacy setting for imported reviews:"
msgstr "Configurações de privacidade para resenhas importadas:" msgstr "Configurações de privacidade para resenhas importadas:"
#: bookwyrm/templates/import/import.html:56 #: bookwyrm/templates/import/import.html:59
#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 #: bookwyrm/templates/settings/federation/instance_blocklist.html:64
msgid "Import" msgid "Import"
msgstr "Importar" msgstr "Importar"
#: bookwyrm/templates/import/import.html:61 #: bookwyrm/templates/import/import.html:64
msgid "Recent Imports" msgid "Recent Imports"
msgstr "Importações recentes" msgstr "Importações recentes"
#: bookwyrm/templates/import/import.html:63 #: bookwyrm/templates/import/import.html:66
msgid "No recent imports" msgid "No recent imports"
msgstr "Nenhuma importação recente" msgstr "Nenhuma importação recente"
@ -1594,27 +1594,31 @@ msgstr "Título"
msgid "ISBN" msgid "ISBN"
msgstr "ISBN" msgstr "ISBN"
#: bookwyrm/templates/import/import_status.html:109 #: bookwyrm/templates/import/import_status.html:110
msgid "Openlibrary key"
msgstr "Chave Openlibrary"
#: bookwyrm/templates/import/import_status.html:114
#: bookwyrm/templates/shelf/shelf.html:145 #: bookwyrm/templates/shelf/shelf.html:145
#: bookwyrm/templates/shelf/shelf.html:169 #: bookwyrm/templates/shelf/shelf.html:169
msgid "Author" msgid "Author"
msgstr "Autor/a" msgstr "Autor/a"
#: bookwyrm/templates/import/import_status.html:112 #: bookwyrm/templates/import/import_status.html:117
msgid "Shelf" msgid "Shelf"
msgstr "Estante" msgstr "Estante"
#: bookwyrm/templates/import/import_status.html:115 #: bookwyrm/templates/import/import_status.html:120
#: bookwyrm/templates/import/manual_review.html:13 #: bookwyrm/templates/import/manual_review.html:13
#: bookwyrm/templates/snippets/create_status.html:17 #: bookwyrm/templates/snippets/create_status.html:17
msgid "Review" msgid "Review"
msgstr "Resenhar" msgstr "Resenhar"
#: bookwyrm/templates/import/import_status.html:119 #: bookwyrm/templates/import/import_status.html:124
msgid "Book" msgid "Book"
msgstr "Livro" msgstr "Livro"
#: bookwyrm/templates/import/import_status.html:122 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:38 #: bookwyrm/templates/settings/announcements/announcements.html:38
#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:44
@ -1624,31 +1628,31 @@ msgstr "Livro"
msgid "Status" msgid "Status"
msgstr "Publicação" msgstr "Publicação"
#: bookwyrm/templates/import/import_status.html:130 #: bookwyrm/templates/import/import_status.html:135
msgid "Import preview unavailable." msgid "Import preview unavailable."
msgstr "Pré-visualização de importação indisponível." msgstr "Pré-visualização de importação indisponível."
#: bookwyrm/templates/import/import_status.html:162 #: bookwyrm/templates/import/import_status.html:172
msgid "View imported review" msgid "View imported review"
msgstr "Visualizar resenha importada" msgstr "Visualizar resenha importada"
#: bookwyrm/templates/import/import_status.html:176 #: bookwyrm/templates/import/import_status.html:186
msgid "Imported" msgid "Imported"
msgstr "Importado" msgstr "Importado"
#: bookwyrm/templates/import/import_status.html:182 #: bookwyrm/templates/import/import_status.html:192
msgid "Needs manual review" msgid "Needs manual review"
msgstr "Precisa de resenha manual" msgstr "Precisa de resenha manual"
#: bookwyrm/templates/import/import_status.html:195 #: bookwyrm/templates/import/import_status.html:205
msgid "Retry" msgid "Retry"
msgstr "Tentar novamente" msgstr "Tentar novamente"
#: bookwyrm/templates/import/import_status.html:213 #: bookwyrm/templates/import/import_status.html:223
msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format."
msgstr "Esta importação está em um formato antigo que não é mais compatível. Se quiser resolver alguns itens faltantes dessa importação, clique no botão abaixo para atualizar o formato da importação." msgstr "Esta importação está em um formato antigo que não é mais compatível. Se quiser resolver alguns itens faltantes dessa importação, clique no botão abaixo para atualizar o formato da importação."
#: bookwyrm/templates/import/import_status.html:215 #: bookwyrm/templates/import/import_status.html:225
msgid "Update import" msgid "Update import"
msgstr "Atualizar importação" msgstr "Atualizar importação"
@ -4145,7 +4149,7 @@ msgstr "Arquivo excede o tamanho máximo: 10MB"
msgid "%(title)s: %(subtitle)s" msgid "%(title)s: %(subtitle)s"
msgstr "%(title)s: %(subtitle)s" msgstr "%(title)s: %(subtitle)s"
#: bookwyrm/views/imports/import_data.py:64 #: bookwyrm/views/imports/import_data.py:67
msgid "Not a valid csv file" msgid "Not a valid csv file"
msgstr "Não é um arquivo csv válido" msgstr "Não é um arquivo csv válido"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-08 15:40+0000\n" "POT-Creation-Date: 2021-12-27 20:43+0000\n"
"PO-Revision-Date: 2021-12-09 18:56\n" "PO-Revision-Date: 2021-12-27 22:00\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Chinese Simplified\n" "Language-Team: Chinese Simplified\n"
"Language: zh\n" "Language: zh\n"
@ -72,16 +72,16 @@ msgstr "升序"
msgid "Descending" msgid "Descending"
msgstr "降序" msgstr "降序"
#: bookwyrm/importers/importer.py:141 bookwyrm/importers/importer.py:163 #: bookwyrm/importers/importer.py:145 bookwyrm/importers/importer.py:167
msgid "Error loading book" msgid "Error loading book"
msgstr "加载书籍时出错" msgstr "加载书籍时出错"
#: bookwyrm/importers/importer.py:150 #: bookwyrm/importers/importer.py:154
msgid "Could not find a match for book" msgid "Could not find a match for book"
msgstr "找不到匹配的书" msgstr "找不到匹配的书"
#: bookwyrm/models/base_model.py:17 #: bookwyrm/models/base_model.py:17
#: bookwyrm/templates/import/import_status.html:190 #: bookwyrm/templates/import/import_status.html:200
msgid "Pending" msgid "Pending"
msgstr "待处理" msgstr "待处理"
@ -1500,28 +1500,28 @@ msgstr "导入书目"
msgid "Data source:" msgid "Data source:"
msgstr "数据来源:" msgstr "数据来源:"
#: bookwyrm/templates/import/import.html:37 #: bookwyrm/templates/import/import.html:40
msgid "Data file:" msgid "Data file:"
msgstr "数据文件:" msgstr "数据文件:"
#: bookwyrm/templates/import/import.html:45 #: bookwyrm/templates/import/import.html:48
msgid "Include reviews" msgid "Include reviews"
msgstr "纳入书评" msgstr "纳入书评"
#: bookwyrm/templates/import/import.html:50 #: bookwyrm/templates/import/import.html:53
msgid "Privacy setting for imported reviews:" msgid "Privacy setting for imported reviews:"
msgstr "导入书评的隐私设定" msgstr "导入书评的隐私设定"
#: bookwyrm/templates/import/import.html:56 #: bookwyrm/templates/import/import.html:59
#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 #: bookwyrm/templates/settings/federation/instance_blocklist.html:64
msgid "Import" msgid "Import"
msgstr "导入" msgstr "导入"
#: bookwyrm/templates/import/import.html:61 #: bookwyrm/templates/import/import.html:64
msgid "Recent Imports" msgid "Recent Imports"
msgstr "最近的导入" msgstr "最近的导入"
#: bookwyrm/templates/import/import.html:63 #: bookwyrm/templates/import/import.html:66
msgid "No recent imports" msgid "No recent imports"
msgstr "无最近的导入" msgstr "无最近的导入"
@ -1587,27 +1587,31 @@ msgstr "标题"
msgid "ISBN" msgid "ISBN"
msgstr "ISBN" msgstr "ISBN"
#: bookwyrm/templates/import/import_status.html:109 #: bookwyrm/templates/import/import_status.html:110
msgid "Openlibrary key"
msgstr ""
#: bookwyrm/templates/import/import_status.html:114
#: bookwyrm/templates/shelf/shelf.html:145 #: bookwyrm/templates/shelf/shelf.html:145
#: bookwyrm/templates/shelf/shelf.html:169 #: bookwyrm/templates/shelf/shelf.html:169
msgid "Author" msgid "Author"
msgstr "作者" msgstr "作者"
#: bookwyrm/templates/import/import_status.html:112 #: bookwyrm/templates/import/import_status.html:117
msgid "Shelf" msgid "Shelf"
msgstr "书架" msgstr "书架"
#: bookwyrm/templates/import/import_status.html:115 #: bookwyrm/templates/import/import_status.html:120
#: bookwyrm/templates/import/manual_review.html:13 #: bookwyrm/templates/import/manual_review.html:13
#: bookwyrm/templates/snippets/create_status.html:17 #: bookwyrm/templates/snippets/create_status.html:17
msgid "Review" msgid "Review"
msgstr "书评" msgstr "书评"
#: bookwyrm/templates/import/import_status.html:119 #: bookwyrm/templates/import/import_status.html:124
msgid "Book" msgid "Book"
msgstr "书目" msgstr "书目"
#: bookwyrm/templates/import/import_status.html:122 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:38 #: bookwyrm/templates/settings/announcements/announcements.html:38
#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:44
@ -1617,31 +1621,31 @@ msgstr "书目"
msgid "Status" msgid "Status"
msgstr "状态" msgstr "状态"
#: bookwyrm/templates/import/import_status.html:130 #: bookwyrm/templates/import/import_status.html:135
msgid "Import preview unavailable." msgid "Import preview unavailable."
msgstr "导入预览不可用。" msgstr "导入预览不可用。"
#: bookwyrm/templates/import/import_status.html:162 #: bookwyrm/templates/import/import_status.html:172
msgid "View imported review" msgid "View imported review"
msgstr "查看已导入的书评" msgstr "查看已导入的书评"
#: bookwyrm/templates/import/import_status.html:176 #: bookwyrm/templates/import/import_status.html:186
msgid "Imported" msgid "Imported"
msgstr "已导入" msgstr "已导入"
#: bookwyrm/templates/import/import_status.html:182 #: bookwyrm/templates/import/import_status.html:192
msgid "Needs manual review" msgid "Needs manual review"
msgstr "需要手动批准" msgstr "需要手动批准"
#: bookwyrm/templates/import/import_status.html:195 #: bookwyrm/templates/import/import_status.html:205
msgid "Retry" msgid "Retry"
msgstr "重试" msgstr "重试"
#: bookwyrm/templates/import/import_status.html:213 #: bookwyrm/templates/import/import_status.html:223
msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format."
msgstr "此导入所用格式已不再受支持。 如果您想要在此次导入中排查缺失的项目,请点击下面的按钮来更新导入格式。" msgstr "此导入所用格式已不再受支持。 如果您想要在此次导入中排查缺失的项目,请点击下面的按钮来更新导入格式。"
#: bookwyrm/templates/import/import_status.html:215 #: bookwyrm/templates/import/import_status.html:225
msgid "Update import" msgid "Update import"
msgstr "更新导入" msgstr "更新导入"
@ -4126,7 +4130,7 @@ msgstr "文件超过了最大大小: 10MB"
msgid "%(title)s: %(subtitle)s" msgid "%(title)s: %(subtitle)s"
msgstr "%(title)s%(subtitle)s" msgstr "%(title)s%(subtitle)s"
#: bookwyrm/views/imports/import_data.py:64 #: bookwyrm/views/imports/import_data.py:67
msgid "Not a valid csv file" msgid "Not a valid csv file"
msgstr "不是有效的 csv 文件" msgstr "不是有效的 csv 文件"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-08 15:40+0000\n" "POT-Creation-Date: 2021-12-27 20:43+0000\n"
"PO-Revision-Date: 2021-12-09 18:56\n" "PO-Revision-Date: 2021-12-27 22:00\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Chinese Traditional\n" "Language-Team: Chinese Traditional\n"
"Language: zh\n" "Language: zh\n"
@ -72,16 +72,16 @@ msgstr "升序"
msgid "Descending" msgid "Descending"
msgstr "降序" msgstr "降序"
#: bookwyrm/importers/importer.py:141 bookwyrm/importers/importer.py:163 #: bookwyrm/importers/importer.py:145 bookwyrm/importers/importer.py:167
msgid "Error loading book" msgid "Error loading book"
msgstr "" msgstr ""
#: bookwyrm/importers/importer.py:150 #: bookwyrm/importers/importer.py:154
msgid "Could not find a match for book" msgid "Could not find a match for book"
msgstr "" msgstr ""
#: bookwyrm/models/base_model.py:17 #: bookwyrm/models/base_model.py:17
#: bookwyrm/templates/import/import_status.html:190 #: bookwyrm/templates/import/import_status.html:200
msgid "Pending" msgid "Pending"
msgstr "" msgstr ""
@ -1500,28 +1500,28 @@ msgstr "匯入書目"
msgid "Data source:" msgid "Data source:"
msgstr "資料來源:" msgstr "資料來源:"
#: bookwyrm/templates/import/import.html:37 #: bookwyrm/templates/import/import.html:40
msgid "Data file:" msgid "Data file:"
msgstr "資料檔案:" msgstr "資料檔案:"
#: bookwyrm/templates/import/import.html:45 #: bookwyrm/templates/import/import.html:48
msgid "Include reviews" msgid "Include reviews"
msgstr "納入書評" msgstr "納入書評"
#: bookwyrm/templates/import/import.html:50 #: bookwyrm/templates/import/import.html:53
msgid "Privacy setting for imported reviews:" msgid "Privacy setting for imported reviews:"
msgstr "匯入書評的隱私設定" msgstr "匯入書評的隱私設定"
#: bookwyrm/templates/import/import.html:56 #: bookwyrm/templates/import/import.html:59
#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 #: bookwyrm/templates/settings/federation/instance_blocklist.html:64
msgid "Import" msgid "Import"
msgstr "匯入" msgstr "匯入"
#: bookwyrm/templates/import/import.html:61 #: bookwyrm/templates/import/import.html:64
msgid "Recent Imports" msgid "Recent Imports"
msgstr "最近的匯入" msgstr "最近的匯入"
#: bookwyrm/templates/import/import.html:63 #: bookwyrm/templates/import/import.html:66
msgid "No recent imports" msgid "No recent imports"
msgstr "無最近的匯入" msgstr "無最近的匯入"
@ -1587,27 +1587,31 @@ msgstr "標題"
msgid "ISBN" msgid "ISBN"
msgstr "" msgstr ""
#: bookwyrm/templates/import/import_status.html:109 #: bookwyrm/templates/import/import_status.html:110
msgid "Openlibrary key"
msgstr ""
#: bookwyrm/templates/import/import_status.html:114
#: bookwyrm/templates/shelf/shelf.html:145 #: bookwyrm/templates/shelf/shelf.html:145
#: bookwyrm/templates/shelf/shelf.html:169 #: bookwyrm/templates/shelf/shelf.html:169
msgid "Author" msgid "Author"
msgstr "作者" msgstr "作者"
#: bookwyrm/templates/import/import_status.html:112 #: bookwyrm/templates/import/import_status.html:117
msgid "Shelf" msgid "Shelf"
msgstr "" msgstr ""
#: bookwyrm/templates/import/import_status.html:115 #: bookwyrm/templates/import/import_status.html:120
#: bookwyrm/templates/import/manual_review.html:13 #: bookwyrm/templates/import/manual_review.html:13
#: bookwyrm/templates/snippets/create_status.html:17 #: bookwyrm/templates/snippets/create_status.html:17
msgid "Review" msgid "Review"
msgstr "書評" msgstr "書評"
#: bookwyrm/templates/import/import_status.html:119 #: bookwyrm/templates/import/import_status.html:124
msgid "Book" msgid "Book"
msgstr "書目" msgstr "書目"
#: bookwyrm/templates/import/import_status.html:122 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:38 #: bookwyrm/templates/settings/announcements/announcements.html:38
#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:44
@ -1617,31 +1621,31 @@ msgstr "書目"
msgid "Status" msgid "Status"
msgstr "狀態" msgstr "狀態"
#: bookwyrm/templates/import/import_status.html:130 #: bookwyrm/templates/import/import_status.html:135
msgid "Import preview unavailable." msgid "Import preview unavailable."
msgstr "" msgstr ""
#: bookwyrm/templates/import/import_status.html:162 #: bookwyrm/templates/import/import_status.html:172
msgid "View imported review" msgid "View imported review"
msgstr "" msgstr ""
#: bookwyrm/templates/import/import_status.html:176 #: bookwyrm/templates/import/import_status.html:186
msgid "Imported" msgid "Imported"
msgstr "已匯入" msgstr "已匯入"
#: bookwyrm/templates/import/import_status.html:182 #: bookwyrm/templates/import/import_status.html:192
msgid "Needs manual review" msgid "Needs manual review"
msgstr "" msgstr ""
#: bookwyrm/templates/import/import_status.html:195 #: bookwyrm/templates/import/import_status.html:205
msgid "Retry" msgid "Retry"
msgstr "" msgstr ""
#: bookwyrm/templates/import/import_status.html:213 #: bookwyrm/templates/import/import_status.html:223
msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format."
msgstr "" msgstr ""
#: bookwyrm/templates/import/import_status.html:215 #: bookwyrm/templates/import/import_status.html:225
msgid "Update import" msgid "Update import"
msgstr "" msgstr ""
@ -4126,7 +4130,7 @@ msgstr "檔案超過了最大大小: 10MB"
msgid "%(title)s: %(subtitle)s" msgid "%(title)s: %(subtitle)s"
msgstr "" msgstr ""
#: bookwyrm/views/imports/import_data.py:64 #: bookwyrm/views/imports/import_data.py:67
msgid "Not a valid csv file" msgid "Not a valid csv file"
msgstr "不是有效的 csv 檔案" msgstr "不是有效的 csv 檔案"