Use both noopener and noreferrer

This commit is contained in:
Mouse Reeve 2022-01-17 11:25:41 -08:00
parent 8a0ea674ea
commit 32acccc350
33 changed files with 3123 additions and 1123 deletions

View file

@ -66,7 +66,7 @@
<div class="box"> <div class="box">
{% if author.wikipedia_link %} {% if author.wikipedia_link %}
<div> <div>
<a itemprop="sameAs" href="{{ author.wikipedia_link }}" rel="noopener" target="_blank"> <a itemprop="sameAs" href="{{ author.wikipedia_link }}" rel="noopener noreferrer" target="_blank">
{% trans "Wikipedia" %} {% trans "Wikipedia" %}
</a> </a>
</div> </div>
@ -74,7 +74,7 @@
{% if author.isni %} {% if author.isni %}
<div class="mt-1"> <div class="mt-1">
<a itemprop="sameAs" href="{{ author.isni_link }}" rel="noopener" target="_blank"> <a itemprop="sameAs" href="{{ author.isni_link }}" rel="noopener noreferrer" target="_blank">
{% trans "View ISNI record" %} {% trans "View ISNI record" %}
</a> </a>
</div> </div>
@ -83,7 +83,7 @@
{% trans "Load data" as button_text %} {% trans "Load data" as button_text %}
{% if author.openlibrary_key %} {% if author.openlibrary_key %}
<div class="mt-1 is-flex"> <div class="mt-1 is-flex">
<a class="mr-3" itemprop="sameAs" href="{{ author.openlibrary_link }}" target="_blank" rel="noopener"> <a class="mr-3" itemprop="sameAs" href="{{ author.openlibrary_link }}" target="_blank" rel="noopener noreferrer">
{% trans "View on OpenLibrary" %} {% trans "View on OpenLibrary" %}
</a> </a>
{% if request.user.is_authenticated and perms.bookwyrm.edit_book %} {% if request.user.is_authenticated and perms.bookwyrm.edit_book %}
@ -98,7 +98,7 @@
{% if author.inventaire_id %} {% if author.inventaire_id %}
<div class="mt-1 is-flex"> <div class="mt-1 is-flex">
<a class="mr-3" itemprop="sameAs" href="{{ author.inventaire_link }}" target="_blank" rel="noopener"> <a class="mr-3" itemprop="sameAs" href="{{ author.inventaire_link }}" target="_blank" rel="noopener noreferrer">
{% trans "View on Inventaire" %} {% trans "View on Inventaire" %}
</a> </a>
@ -114,7 +114,7 @@
{% if author.librarything_key %} {% if author.librarything_key %}
<div class="mt-1"> <div class="mt-1">
<a itemprop="sameAs" href="https://www.librarything.com/author/{{ author.librarything_key }}" target="_blank" rel="noopener"> <a itemprop="sameAs" href="https://www.librarything.com/author/{{ author.librarything_key }}" target="_blank" rel="noopener noreferrer">
{% trans "View on LibraryThing" %} {% trans "View on LibraryThing" %}
</a> </a>
</div> </div>
@ -122,7 +122,7 @@
{% if author.goodreads_key %} {% if author.goodreads_key %}
<div> <div>
<a itemprop="sameAs" href="https://www.goodreads.com/author/show/{{ author.goodreads_key }}" target="_blank" rel="noopener"> <a itemprop="sameAs" href="https://www.goodreads.com/author/show/{{ author.goodreads_key }}" target="_blank" rel="noopener noreferrer">
{% trans "View on Goodreads" %} {% trans "View on Goodreads" %}
</a> </a>
</div> </div>

View file

@ -122,7 +122,7 @@
{% trans "Load data" as button_text %} {% trans "Load data" as button_text %}
{% if book.openlibrary_key %} {% if book.openlibrary_key %}
<p> <p>
<a href="{{ book.openlibrary_link }}" target="_blank" rel="noopener"> <a href="{{ book.openlibrary_link }}" target="_blank" rel="noopener noreferrer">
{% trans "View on OpenLibrary" %} {% trans "View on OpenLibrary" %}
</a> </a>
{% if request.user.is_authenticated and perms.bookwyrm.edit_book %} {% if request.user.is_authenticated and perms.bookwyrm.edit_book %}
@ -136,7 +136,7 @@
{% endif %} {% endif %}
{% if book.inventaire_id %} {% if book.inventaire_id %}
<p> <p>
<a href="{{ book.inventaire_link }}" target="_blank" rel="noopener"> <a href="{{ book.inventaire_link }}" target="_blank" rel="noopener noreferrer">
{% trans "View on Inventaire" %} {% trans "View on Inventaire" %}
</a> </a>

View file

@ -39,7 +39,7 @@
{% for link in links %} {% for link in links %}
<tr> <tr>
<td class="overflow-wrap-anywhere"> <td class="overflow-wrap-anywhere">
<a href="{{ link.url }}" target="_blank" rel="noopener">{{ link.url }}</a> <a href="{{ link.url }}" target="_blank" rel="noopener noreferrer">{{ link.url }}</a>
</td> </td>
<td> <td>
<a href="{% url 'user-feed' link.added_by.id %}">{{ link.added_by.display_name }}</a> <a href="{% url 'user-feed' link.added_by.id %}">{{ link.added_by.display_name }}</a>

View file

@ -28,7 +28,7 @@
{% for link in links.all %} {% for link in links.all %}
{% join "verify" link.id as verify_modal %} {% join "verify" link.id as verify_modal %}
<li> <li>
<a href="{{ link.url }}" rel="noopener" target="_blank" title="{{ link.url }}" data-modal-open="{{ verify_modal }}">{{ link.name }}</a> <a href="{{ link.url }}" rel="noopener noreferrer" target="_blank" title="{{ link.url }}" data-modal-open="{{ verify_modal }}">{{ link.name }}</a>
({{ link.filetype }}) ({{ link.filetype }})
{% if link.availability != "free" %} {% if link.availability != "free" %}

View file

@ -17,7 +17,7 @@ Is that where you'd like to go?
{% block modal-footer %} {% block modal-footer %}
<a href="{{ link.url }}" target="_blank" rel="noopener" class="button is-primary">{% trans "Continue" %}</a> <a href="{{ link.url }}" target="_blank" rel="noopener noreferrer" class="button is-primary">{% trans "Continue" %}</a>
<button type="button" class="button" data-modal-close>{% trans "Cancel" %}</button> <button type="button" class="button" data-modal-close>{% trans "Cancel" %}</button>
{% if request.user.is_authenticated %} {% if request.user.is_authenticated %}

View file

@ -3,6 +3,6 @@
{% block tooltip_content %} {% block tooltip_content %}
{% trans 'You can download your Goodreads data from the <a href="https://www.goodreads.com/review/import" target="_blank" rel="noopener">Import/Export page</a> of your Goodreads account.' %} {% trans 'You can download your Goodreads data from the <a href="https://www.goodreads.com/review/import" target="_blank" rel="noopener noreferrer">Import/Export page</a> of your Goodreads account.' %}
{% endblock %} {% endblock %}

View file

@ -63,7 +63,7 @@
<strong> <strong>
<a <a
href="{{ result.view_link|default:result.key }}" href="{{ result.view_link|default:result.key }}"
rel="noopener" rel="noopener noreferrer"
target="_blank" target="_blank"
>{{ result.title }}</a> >{{ result.title }}</a>
</strong> </strong>

View file

@ -47,7 +47,7 @@
<div class="field"> <div class="field">
<label class="label" for="id_file">JSON data:</label> <label class="label" for="id_file">JSON data:</label>
<aside class="help"> <aside class="help">
Expects a json file in the format provided by <a href="https://fediblock.org/" target="_blank" rel="noopener">FediBlock</a>, with a list of entries that have <code>instance</code> and <code>url</code> fields. For example: Expects a json file in the format provided by <a href="https://fediblock.org/" target="_blank" rel="noopener noreferrer">FediBlock</a>, with a list of entries that have <code>instance</code> and <code>url</code> fields. For example:
<pre> <pre>
[ [
{ {

View file

@ -36,7 +36,7 @@
<header class="column"> <header class="column">
<h2 class="title is-5"> <h2 class="title is-5">
{{ domain.name }} {{ domain.name }}
(<a href="http://{{ domain.domain }}" target="_blank" rel="noopener">{{ domain.domain }}</a>) (<a href="http://{{ domain.domain }}" target="_blank" rel="noopener noreferrer">{{ domain.domain }}</a>)
</h2> </h2>
</header> </header>
<div class="column is-narrow"> <div class="column is-narrow">

View file

@ -12,7 +12,7 @@
{% for link in links %} {% for link in links %}
<tr> <tr>
<td class="overflow-wrap-anywhere"> <td class="overflow-wrap-anywhere">
<a href="{{ link.url }}" target="_blank" rel="noopener">{{ link.url }}</a> <a href="{{ link.url }}" target="_blank" rel="noopener noreferrer">{{ link.url }}</a>
</td> </td>
<td> <td>
<a href="{% url 'settings-user' link.added_by.id %}">@{{ link.added_by|username }}</a> <a href="{% url 'settings-user' link.added_by.id %}">@{{ link.added_by|username }}</a>

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: 2022-01-13 16:54+0000\n" "POT-Creation-Date: 2022-01-17 16:05+0000\n"
"PO-Revision-Date: 2022-01-13 17:50\n" "PO-Revision-Date: 2022-01-17 17:10\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"
@ -17,62 +17,62 @@ msgstr ""
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" "X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
"X-Crowdin-File-ID: 1553\n" "X-Crowdin-File-ID: 1553\n"
#: bookwyrm/forms.py:351 #: bookwyrm/forms.py:365
msgid "A user with this email already exists." msgid "A user with this email already exists."
msgstr "Es existiert bereits ein Benutzer*inkonto mit dieser E-Mail-Adresse." msgstr "Es existiert bereits ein Benutzer*inkonto mit dieser E-Mail-Adresse."
#: bookwyrm/forms.py:365 #: bookwyrm/forms.py:379
msgid "One Day" msgid "One Day"
msgstr "Ein Tag" msgstr "Ein Tag"
#: bookwyrm/forms.py:366 #: bookwyrm/forms.py:380
msgid "One Week" msgid "One Week"
msgstr "Eine Woche" msgstr "Eine Woche"
#: bookwyrm/forms.py:367 #: bookwyrm/forms.py:381
msgid "One Month" msgid "One Month"
msgstr "Ein Monat" msgstr "Ein Monat"
#: bookwyrm/forms.py:368 #: bookwyrm/forms.py:382
msgid "Does Not Expire" msgid "Does Not Expire"
msgstr "Läuft nicht ab" msgstr "Läuft nicht ab"
#: bookwyrm/forms.py:372 #: bookwyrm/forms.py:386
#, python-brace-format #, python-brace-format
msgid "{i} uses" msgid "{i} uses"
msgstr "{i}-mal verwendbar" msgstr "{i}-mal verwendbar"
#: bookwyrm/forms.py:373 #: bookwyrm/forms.py:387
msgid "Unlimited" msgid "Unlimited"
msgstr "Unbegrenzt" msgstr "Unbegrenzt"
#: bookwyrm/forms.py:469 #: bookwyrm/forms.py:483
msgid "List Order" msgid "List Order"
msgstr "Reihenfolge der Liste" msgstr "Reihenfolge der Liste"
#: bookwyrm/forms.py:470 #: bookwyrm/forms.py:484
msgid "Book Title" msgid "Book Title"
msgstr "Buchtitel" msgstr "Buchtitel"
#: bookwyrm/forms.py:471 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:33 #: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating" msgid "Rating"
msgstr "Bewertung" msgstr "Bewertung"
#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:134 #: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:134
msgid "Sort By" msgid "Sort By"
msgstr "Sortieren nach" msgstr "Sortieren nach"
#: bookwyrm/forms.py:477 #: bookwyrm/forms.py:491
msgid "Ascending" msgid "Ascending"
msgstr "Aufsteigend" msgstr "Aufsteigend"
#: bookwyrm/forms.py:478 #: bookwyrm/forms.py:492
msgid "Descending" msgid "Descending"
msgstr "Absteigend" msgstr "Absteigend"
#: bookwyrm/forms.py:491 #: bookwyrm/forms.py:505
msgid "Reading finish date cannot be before start date." msgid "Reading finish date cannot be before start date."
msgstr "Du kannst das Buch nicht abgeschlossen haben bevor du es begonnen hast." msgstr "Du kannst das Buch nicht abgeschlossen haben bevor du es begonnen hast."
@ -84,8 +84,9 @@ msgstr "Fehler beim Laden des Buches"
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/models/link.py:62
#: bookwyrm/templates/import/import_status.html:200 #: bookwyrm/templates/import/import_status.html:200
#: bookwyrm/templates/settings/link_domains/link_domains.html:19
msgid "Pending" msgid "Pending"
msgstr "Ausstehend" msgstr "Ausstehend"
@ -105,23 +106,23 @@ msgstr "Moderator*in löschen"
msgid "Domain block" msgid "Domain block"
msgstr "Domainsperrung" msgstr "Domainsperrung"
#: bookwyrm/models/book.py:250 #: bookwyrm/models/book.py:253
msgid "Audiobook" msgid "Audiobook"
msgstr "Hörbuch" msgstr "Hörbuch"
#: bookwyrm/models/book.py:251 #: bookwyrm/models/book.py:254
msgid "eBook" msgid "eBook"
msgstr "E-Book" msgstr "E-Book"
#: bookwyrm/models/book.py:252 #: bookwyrm/models/book.py:255
msgid "Graphic novel" msgid "Graphic novel"
msgstr "Graphic Novel" msgstr "Graphic Novel"
#: bookwyrm/models/book.py:253 #: bookwyrm/models/book.py:256
msgid "Hardcover" msgid "Hardcover"
msgstr "Hardcover" msgstr "Hardcover"
#: bookwyrm/models/book.py:254 #: bookwyrm/models/book.py:257
msgid "Paperback" msgid "Paperback"
msgstr "Taschenbuch" msgstr "Taschenbuch"
@ -131,10 +132,11 @@ msgstr "Taschenbuch"
msgid "Federated" msgid "Federated"
msgstr "Föderiert" msgstr "Föderiert"
#: bookwyrm/models/federated_server.py:12 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:61
#: bookwyrm/templates/settings/federation/edit_instance.html:44 #: bookwyrm/templates/settings/federation/edit_instance.html:44
#: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance.html:10
#: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/federation/instance_list.html:23
#: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Blockiert" msgstr "Blockiert"
@ -189,6 +191,11 @@ msgstr "Follower*innen"
msgid "Private" msgid "Private"
msgstr "Privat" msgstr "Privat"
#: bookwyrm/models/link.py:60
#: bookwyrm/templates/settings/link_domains/link_domains.html:23
msgid "Approved"
msgstr ""
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272 #: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
msgid "Reviews" msgid "Reviews"
msgstr "Besprechungen" msgstr "Besprechungen"
@ -348,7 +355,7 @@ msgid "Admin"
msgstr "Administration" msgstr "Administration"
#: bookwyrm/templates/about/about.html:130 #: bookwyrm/templates/about/about.html:130
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 #: bookwyrm/templates/settings/users/user_moderation_actions.html:14
#: bookwyrm/templates/snippets/status/status_options.html:35 #: bookwyrm/templates/snippets/status/status_options.html:35
#: bookwyrm/templates/snippets/user_options.html:13 #: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message" msgid "Send direct message"
@ -530,61 +537,61 @@ msgstr "Alle Bücher die %(display_name)s im Jahr %(year)s gelesen hat"
msgid "Edit Author" msgid "Edit Author"
msgstr "Autor*in bearbeiten" msgstr "Autor*in bearbeiten"
#: bookwyrm/templates/author/author.html:40 #: bookwyrm/templates/author/author.html:35
msgid "Author details" msgid "Author details"
msgstr "Über den Autor" msgstr "Über den Autor"
#: bookwyrm/templates/author/author.html:44 #: bookwyrm/templates/author/author.html:39
#: bookwyrm/templates/author/edit_author.html:42 #: bookwyrm/templates/author/edit_author.html:42
msgid "Aliases:" msgid "Aliases:"
msgstr "Alternative Namen:" msgstr "Alternative Namen:"
#: bookwyrm/templates/author/author.html:53 #: bookwyrm/templates/author/author.html:48
msgid "Born:" msgid "Born:"
msgstr "Geboren:" msgstr "Geboren:"
#: bookwyrm/templates/author/author.html:60 #: bookwyrm/templates/author/author.html:55
msgid "Died:" msgid "Died:"
msgstr "Gestorben:" msgstr "Gestorben:"
#: bookwyrm/templates/author/author.html:70 #: bookwyrm/templates/author/author.html:65
msgid "External links" msgid "External links"
msgstr "Externe Links" msgstr "Externe Links"
#: bookwyrm/templates/author/author.html:75 #: bookwyrm/templates/author/author.html:70
msgid "Wikipedia" msgid "Wikipedia"
msgstr "Wikipedia" msgstr "Wikipedia"
#: bookwyrm/templates/author/author.html:83 #: bookwyrm/templates/author/author.html:78
msgid "View ISNI record" msgid "View ISNI record"
msgstr "ISNI-Datensatz anzeigen" msgstr "ISNI-Datensatz anzeigen"
#: bookwyrm/templates/author/author.html:88 #: bookwyrm/templates/author/author.html:83
#: bookwyrm/templates/author/sync_modal.html:5 #: bookwyrm/templates/author/sync_modal.html:5
#: bookwyrm/templates/book/book.html:122 #: bookwyrm/templates/book/book.html:122
#: bookwyrm/templates/book/sync_modal.html:5 #: bookwyrm/templates/book/sync_modal.html:5
msgid "Load data" msgid "Load data"
msgstr "Lade Daten" msgstr "Lade Daten"
#: bookwyrm/templates/author/author.html:92 #: bookwyrm/templates/author/author.html:87
#: bookwyrm/templates/book/book.html:126 #: bookwyrm/templates/book/book.html:126
msgid "View on OpenLibrary" msgid "View on OpenLibrary"
msgstr "Auf OpenLibrary ansehen" msgstr "Auf OpenLibrary ansehen"
#: bookwyrm/templates/author/author.html:107 #: bookwyrm/templates/author/author.html:102
#: bookwyrm/templates/book/book.html:140 #: bookwyrm/templates/book/book.html:140
msgid "View on Inventaire" msgid "View on Inventaire"
msgstr "Auf Inventaire anzeigen" msgstr "Auf Inventaire anzeigen"
#: bookwyrm/templates/author/author.html:123 #: bookwyrm/templates/author/author.html:118
msgid "View on LibraryThing" msgid "View on LibraryThing"
msgstr "Auf LibraryThing anzeigen" msgstr "Auf LibraryThing anzeigen"
#: bookwyrm/templates/author/author.html:131 #: bookwyrm/templates/author/author.html:126
msgid "View on Goodreads" msgid "View on Goodreads"
msgstr "Auf Goodreads ansehen" msgstr "Auf Goodreads ansehen"
#: bookwyrm/templates/author/author.html:145 #: bookwyrm/templates/author/author.html:141
#, python-format #, python-format
msgid "Books by %(name)s" msgid "Books by %(name)s"
msgstr "Bücher von %(name)s" msgstr "Bücher von %(name)s"
@ -614,7 +621,9 @@ msgid "Metadata"
msgstr "Metadaten" msgstr "Metadaten"
#: bookwyrm/templates/author/edit_author.html:35 #: bookwyrm/templates/author/edit_author.html:35
#: bookwyrm/templates/lists/form.html:9 bookwyrm/templates/shelf/form.html:9 #: bookwyrm/templates/lists/form.html:9
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14
#: bookwyrm/templates/shelf/form.html:9
msgid "Name:" msgid "Name:"
msgstr "Name:" msgstr "Name:"
@ -668,6 +677,7 @@ msgstr ""
#: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/author/edit_author.html:115
#: bookwyrm/templates/book/book.html:193 #: bookwyrm/templates/book/book.html:193
#: bookwyrm/templates/book/edit/edit_book.html:121 #: bookwyrm/templates/book/edit/edit_book.html:121
#: bookwyrm/templates/book/file_links/add_link_modal.html:50
#: bookwyrm/templates/groups/form.html:30 #: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/bookmark_button.html:15
#: bookwyrm/templates/lists/form.html:130 #: bookwyrm/templates/lists/form.html:130
@ -677,7 +687,7 @@ msgstr ""
#: bookwyrm/templates/settings/federation/edit_instance.html:82 #: bookwyrm/templates/settings/federation/edit_instance.html:82
#: bookwyrm/templates/settings/federation/instance.html:87 #: bookwyrm/templates/settings/federation/instance.html:87
#: bookwyrm/templates/settings/site.html:133 #: bookwyrm/templates/settings/site.html:133
#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69
#: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/shelf/form.html:25
#: bookwyrm/templates/snippets/reading_modals/layout.html:18 #: bookwyrm/templates/snippets/reading_modals/layout.html:18
msgid "Save" msgid "Save"
@ -689,13 +699,16 @@ msgstr "Speichern"
#: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/book/cover_add_modal.html:32
#: bookwyrm/templates/book/edit/edit_book.html:123 #: bookwyrm/templates/book/edit/edit_book.html:123
#: bookwyrm/templates/book/edit/edit_book.html:126 #: bookwyrm/templates/book/edit/edit_book.html:126
#: bookwyrm/templates/book/file_links/add_link_modal.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17 #: bookwyrm/templates/groups/delete_group_modal.html:17
#: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74 #: bookwyrm/templates/readthrough/readthrough_modal.html:74
#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/settings/federation/instance.html:88
#: bookwyrm/templates/snippets/report_modal.html:38 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
#: bookwyrm/templates/snippets/report_modal.html:54
msgid "Cancel" msgid "Cancel"
msgstr "Abbrechen" msgstr "Abbrechen"
@ -1040,6 +1053,101 @@ msgstr "Sprache:"
msgid "Search editions" msgid "Search editions"
msgstr "Ausgaben suchen" msgstr "Ausgaben suchen"
#: bookwyrm/templates/book/file_links/add_link_modal.html:6
msgid "Add file link"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:19
msgid "Links from unknown domains will need to be approved by a moderator before they are added."
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:24
msgid "URL:"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:29
msgid "File type:"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:5
#: bookwyrm/templates/book/file_links/edit_links.html:22
#: bookwyrm/templates/book/file_links/links.html:47
msgid "Edit links"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:11
#, python-format
msgid "\n"
" Links for \"<em>%(title)s</em>\"\n"
" "
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:32
#: bookwyrm/templates/settings/link_domains/link_table.html:6
msgid "URL"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:33
#: bookwyrm/templates/settings/link_domains/link_table.html:7
msgid "Added by"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:34
#: bookwyrm/templates/settings/link_domains/link_table.html:8
msgid "Filetype"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:35
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
#: bookwyrm/templates/settings/reports/report_links_table.html:5
msgid "Domain"
msgstr "Domain"
#: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/reports/report_links_table.html:6
msgid "Actions"
msgstr "Aktionen"
#: bookwyrm/templates/book/file_links/edit_links.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:25
msgid "Report spam"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:65
msgid "No links available for this book."
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:76
#: bookwyrm/templates/book/file_links/links.html:18
msgid "Add link to file"
msgstr ""
#: bookwyrm/templates/book/file_links/file_link_page.html:6
msgid "File Links"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:9
msgid "Get a copy"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:41
msgid "No links available"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:5
msgid "Leaving BookWyrm"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:11
#, python-format
msgid "This link is taking you to: <code>%(link_url)s</code>.<br> Is that where you'd like to go?"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:20
msgid "Continue"
msgstr ""
#: bookwyrm/templates/book/publisher_info.html:23 #: bookwyrm/templates/book/publisher_info.html:23
#, python-format #, python-format
msgid "%(format)s, %(pages)s pages" msgid "%(format)s, %(pages)s pages"
@ -1110,8 +1218,8 @@ msgstr "Bestätigungscode:"
#: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/confirm_email/confirm_email.html:25
#: bookwyrm/templates/landing/layout.html:73 #: bookwyrm/templates/landing/layout.html:73
#: bookwyrm/templates/settings/dashboard/dashboard.html:93 #: bookwyrm/templates/settings/dashboard/dashboard.html:104
#: bookwyrm/templates/snippets/report_modal.html:37 #: bookwyrm/templates/snippets/report_modal.html:52
msgid "Submit" msgid "Submit"
msgstr "Absenden" msgstr "Absenden"
@ -1858,6 +1966,7 @@ msgid "Review"
msgstr "Besprechen" msgstr "Besprechen"
#: bookwyrm/templates/import/import_status.html:124 #: bookwyrm/templates/import/import_status.html:124
#: bookwyrm/templates/settings/link_domains/link_table.html:9
msgid "Book" msgid "Book"
msgstr "Buch" msgstr "Buch"
@ -1910,6 +2019,7 @@ msgstr ""
#: bookwyrm/templates/import/manual_review.html:58 #: bookwyrm/templates/import/manual_review.html:58
#: bookwyrm/templates/lists/curate.html:59 #: bookwyrm/templates/lists/curate.html:59
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve" msgid "Approve"
msgstr "Bestätigen" msgstr "Bestätigen"
@ -2257,6 +2367,7 @@ msgid "List position"
msgstr "Listenposition" msgstr "Listenposition"
#: bookwyrm/templates/lists/list.html:101 #: bookwyrm/templates/lists/list.html:101
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set" msgid "Set"
msgstr "Übernehmen" msgstr "Übernehmen"
@ -2788,6 +2899,11 @@ msgstr "Diese Lesedaten löschen"
msgid "Add read dates for \"<em>%(title)s</em>\"" msgid "Add read dates for \"<em>%(title)s</em>\""
msgstr "" msgstr ""
#: bookwyrm/templates/report.html:5
#: bookwyrm/templates/snippets/report_button.html:13
msgid "Report"
msgstr "Melden"
#: bookwyrm/templates/search/book.html:44 #: bookwyrm/templates/search/book.html:44
msgid "Results from" msgid "Results from"
msgstr "" msgstr ""
@ -2860,13 +2976,13 @@ msgstr "Nein"
#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement.html:46
#: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/announcements/announcement_form.html:44
#: bookwyrm/templates/settings/dashboard/dashboard.html:71 #: bookwyrm/templates/settings/dashboard/dashboard.html:82
msgid "Start date:" msgid "Start date:"
msgstr "Startdatum:" msgstr "Startdatum:"
#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement.html:51
#: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/announcements/announcement_form.html:54
#: bookwyrm/templates/settings/dashboard/dashboard.html:77 #: bookwyrm/templates/settings/dashboard/dashboard.html:88
msgid "End date:" msgid "End date:"
msgstr "Enddatum:" msgstr "Enddatum:"
@ -2894,7 +3010,7 @@ msgstr "Ereignisdatum:"
#: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:3
#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/announcements.html:5
#: bookwyrm/templates/settings/layout.html:72 #: bookwyrm/templates/settings/layout.html:76
msgid "Announcements" msgid "Announcements"
msgstr "Ankündigungen" msgstr "Ankündigungen"
@ -2934,7 +3050,7 @@ msgid "Dashboard"
msgstr "Übersicht" msgstr "Übersicht"
#: bookwyrm/templates/settings/dashboard/dashboard.html:15 #: bookwyrm/templates/settings/dashboard/dashboard.html:15
#: bookwyrm/templates/settings/dashboard/dashboard.html:100 #: bookwyrm/templates/settings/dashboard/dashboard.html:111
msgid "Total users" msgid "Total users"
msgstr "Benutzer*innen insgesamt" msgstr "Benutzer*innen insgesamt"
@ -2961,36 +3077,43 @@ msgstr[1] "%(display_count)s offene Meldungen"
#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:54
#, python-format #, python-format
msgid "%(display_count)s domain needs review"
msgid_plural "%(display_count)s domains need review"
msgstr[0] ""
msgstr[1] ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:65
#, python-format
msgid "%(display_count)s invite request" msgid "%(display_count)s invite request"
msgid_plural "%(display_count)s invite requests" msgid_plural "%(display_count)s invite requests"
msgstr[0] "%(display_count)s Einladungsanfrage" msgstr[0] "%(display_count)s Einladungsanfrage"
msgstr[1] "%(display_count)s Einladungsanfragen" msgstr[1] "%(display_count)s Einladungsanfragen"
#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #: bookwyrm/templates/settings/dashboard/dashboard.html:76
msgid "Instance Activity" msgid "Instance Activity"
msgstr "Instanzaktivität" msgstr "Instanzaktivität"
#: bookwyrm/templates/settings/dashboard/dashboard.html:83 #: bookwyrm/templates/settings/dashboard/dashboard.html:94
msgid "Interval:" msgid "Interval:"
msgstr "Intervall:" msgstr "Intervall:"
#: bookwyrm/templates/settings/dashboard/dashboard.html:87 #: bookwyrm/templates/settings/dashboard/dashboard.html:98
msgid "Days" msgid "Days"
msgstr "Tage" msgstr "Tage"
#: bookwyrm/templates/settings/dashboard/dashboard.html:88 #: bookwyrm/templates/settings/dashboard/dashboard.html:99
msgid "Weeks" msgid "Weeks"
msgstr "Wochen" msgstr "Wochen"
#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/settings/dashboard/dashboard.html:117
msgid "User signup activity" msgid "User signup activity"
msgstr "Neuanmeldungen" msgstr "Neuanmeldungen"
#: bookwyrm/templates/settings/dashboard/dashboard.html:112 #: bookwyrm/templates/settings/dashboard/dashboard.html:123
msgid "Status activity" msgid "Status activity"
msgstr "Statusaktivitäten" msgstr "Statusaktivitäten"
#: bookwyrm/templates/settings/dashboard/dashboard.html:118 #: bookwyrm/templates/settings/dashboard/dashboard.html:129
msgid "Works created" msgid "Works created"
msgstr "Erstellte Werke" msgstr "Erstellte Werke"
@ -3025,10 +3148,6 @@ msgstr "E-Mail-Sperrliste"
msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked."
msgstr "Wenn sich jemand mit einer E-Mail-Adresse von dieser Domain zu registrieren versucht, wird kein Benutzer*inkonto erstellt. Es wird aber so aussehen, als ob die Registrierung funktioniert hätte." msgstr "Wenn sich jemand mit einer E-Mail-Adresse von dieser Domain zu registrieren versucht, wird kein Benutzer*inkonto erstellt. Es wird aber so aussehen, als ob die Registrierung funktioniert hätte."
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
msgid "Domain"
msgstr "Domain"
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29
#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 #: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27
msgid "Options" msgid "Options"
@ -3140,12 +3259,8 @@ msgstr "Ändern"
msgid "<em>No notes</em>" msgid "<em>No notes</em>"
msgstr "<em>Keine Anmerkungen</em>" msgstr "<em>Keine Anmerkungen</em>"
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "Actions"
msgstr "Aktionen"
#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:98
#: bookwyrm/templates/settings/link_domains/link_domains.html:87
#: bookwyrm/templates/snippets/block_button.html:5 #: bookwyrm/templates/snippets/block_button.html:5
msgid "Block" msgid "Block"
msgstr "Sperren" msgstr "Sperren"
@ -3358,62 +3473,113 @@ msgstr "Moderation"
msgid "Reports" msgid "Reports"
msgstr "Meldungen" msgstr "Meldungen"
#: bookwyrm/templates/settings/layout.html:68 #: bookwyrm/templates/settings/layout.html:67
#: bookwyrm/templates/settings/link_domains/link_domains.html:5
#: bookwyrm/templates/settings/link_domains/link_domains.html:7
msgid "Link Domains"
msgstr ""
#: bookwyrm/templates/settings/layout.html:72
msgid "Instance Settings" msgid "Instance Settings"
msgstr "Instanzeinstellungen" msgstr "Instanzeinstellungen"
#: bookwyrm/templates/settings/layout.html:76 #: bookwyrm/templates/settings/layout.html:80
#: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:4
#: bookwyrm/templates/settings/site.html:6 #: bookwyrm/templates/settings/site.html:6
msgid "Site Settings" msgid "Site Settings"
msgstr "Seiteneinstellungen" msgstr "Seiteneinstellungen"
#: bookwyrm/templates/settings/reports/report.html:5 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5
#: bookwyrm/templates/settings/reports/report.html:8
#: bookwyrm/templates/settings/reports/report_preview.html:6
#, python-format #, python-format
msgid "Report #%(report_id)s: %(username)s" msgid "Set display name for %(url)s"
msgstr "Meldung #%(report_id)s: %(username)s" msgstr ""
#: bookwyrm/templates/settings/reports/report.html:9 #: bookwyrm/templates/settings/link_domains/link_domains.html:11
msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving."
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:45
msgid "Set display name"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:53
msgid "View links"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:96
msgid "No domains currently approved"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:98
msgid "No domains currently pending"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:100
msgid "No domains currently blocked"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_table.html:39
msgid "No links available for this domain."
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:11
msgid "Back to reports" msgid "Back to reports"
msgstr "Zurück zu den Meldungen" msgstr "Zurück zu den Meldungen"
#: bookwyrm/templates/settings/reports/report.html:23 #: bookwyrm/templates/settings/reports/report.html:22
msgid "Reported statuses"
msgstr "Gemeldete Statusmeldungen"
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Status has been deleted"
msgstr "Statusmeldung gelöscht"
#: bookwyrm/templates/settings/reports/report.html:39
msgid "Reported links"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:55
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Moderator*innenkommentare" msgstr "Moderator*innenkommentare"
#: bookwyrm/templates/settings/reports/report.html:41 #: bookwyrm/templates/settings/reports/report.html:73
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Kommentieren" msgstr "Kommentieren"
#: bookwyrm/templates/settings/reports/report.html:46 #: bookwyrm/templates/settings/reports/report_header.html:6
msgid "Reported statuses" #, python-format
msgstr "Gemeldete Statusmeldungen" msgid "Report #%(report_id)s: Status posted by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:48 #: bookwyrm/templates/settings/reports/report_header.html:12
msgid "No statuses reported" #, python-format
msgstr "Keine Statusmeldungen gemeldet" msgid "Report #%(report_id)s: Link added by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:54 #: bookwyrm/templates/settings/reports/report_header.html:18
msgid "Status has been deleted" #, python-format
msgstr "Statusmeldung gelöscht" msgid "Report #%(report_id)s: User @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:13 #: bookwyrm/templates/settings/reports/report_links_table.html:17
msgid "Block domain"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:17
msgid "No notes provided" msgid "No notes provided"
msgstr "Keine Notizen angegeben." msgstr "Keine Notizen angegeben."
#: bookwyrm/templates/settings/reports/report_preview.html:20 #: bookwyrm/templates/settings/reports/report_preview.html:24
#, python-format #, python-format
msgid "Reported by <a href=\"%(path)s\">%(username)s</a>" msgid "Reported by <a href=\"%(path)s\">@%(username)s</a>"
msgstr "Gemeldet von <a href=\"%(path)s\">%(username)s</a>" msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:30 #: bookwyrm/templates/settings/reports/report_preview.html:34
msgid "Re-open" msgid "Re-open"
msgstr "Erneut öffnen" msgstr "Erneut öffnen"
#: bookwyrm/templates/settings/reports/report_preview.html:32 #: bookwyrm/templates/settings/reports/report_preview.html:36
msgid "Resolve" msgid "Resolve"
msgstr "Beheben" msgstr "Beheben"
@ -3541,7 +3707,7 @@ msgid "Invite request text:"
msgstr "Hinweis für Einladungsanfragen:" msgstr "Hinweis für Einladungsanfragen:"
#: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/delete_user_form.html:5
#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32
msgid "Permanently delete user" msgid "Permanently delete user"
msgstr "Benutzer*in dauerhaft löschen" msgstr "Benutzer*in dauerhaft löschen"
@ -3651,15 +3817,19 @@ msgstr "Instanz anzeigen"
msgid "Permanently deleted" msgid "Permanently deleted"
msgstr "Dauerhaft gelöscht" msgstr "Dauerhaft gelöscht"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 #: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "User Actions"
msgstr ""
#: bookwyrm/templates/settings/users/user_moderation_actions.html:21
msgid "Suspend user" msgid "Suspend user"
msgstr "Benutzer*in vorläufig sperren" msgstr "Benutzer*in vorläufig sperren"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 #: bookwyrm/templates/settings/users/user_moderation_actions.html:26
msgid "Un-suspend user" msgid "Un-suspend user"
msgstr "Vorläufige Sperre für Benutzer*in aufheben" msgstr "Vorläufige Sperre für Benutzer*in aufheben"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 #: bookwyrm/templates/settings/users/user_moderation_actions.html:48
msgid "Access level:" msgid "Access level:"
msgstr "Zugriffsstufe:" msgstr "Zugriffsstufe:"
@ -4063,21 +4233,31 @@ msgstr "„<em>%(book_title)s</em>“ auf Leseliste setzen"
msgid "Sign Up" msgid "Sign Up"
msgstr "Registrieren" msgstr "Registrieren"
#: bookwyrm/templates/snippets/report_button.html:13 #: bookwyrm/templates/snippets/report_modal.html:8
msgid "Report" #, python-format
msgstr "Melden" msgid "Report @%(username)s's status"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:6 #: bookwyrm/templates/snippets/report_modal.html:10
#, python-format
msgid "Report %(domain)s link"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:12
#, python-format #, python-format
msgid "Report @%(username)s" msgid "Report @%(username)s"
msgstr "@%(username)s melden" msgstr "@%(username)s melden"
#: bookwyrm/templates/snippets/report_modal.html:23 #: bookwyrm/templates/snippets/report_modal.html:34
#, python-format #, python-format
msgid "This report will be sent to %(site_name)s's moderators for review." msgid "This report will be sent to %(site_name)s's moderators for review."
msgstr "Diese Meldung wird an die Moderato*innen von %(site_name)s weitergeleitet." msgstr "Diese Meldung wird an die Moderato*innen von %(site_name)s weitergeleitet."
#: bookwyrm/templates/snippets/report_modal.html:26 #: bookwyrm/templates/snippets/report_modal.html:36
msgid "Links from this domain will be removed until your report has been reviewed."
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:41
msgid "More info about this report:" msgid "More info about this report:"
msgstr "Weitere Angaben zu dieser Meldung:" msgstr "Weitere Angaben zu dieser Meldung:"

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: 2022-01-17 16:05+0000\n" "POT-Creation-Date: 2022-01-17 19:21+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"
@ -85,7 +85,7 @@ msgstr ""
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/link.py:62 #: bookwyrm/models/base_model.py:17 bookwyrm/models/link.py:72
#: bookwyrm/templates/import/import_status.html:200 #: bookwyrm/templates/import/import_status.html:200
#: bookwyrm/templates/settings/link_domains/link_domains.html:19 #: bookwyrm/templates/settings/link_domains/link_domains.html:19
msgid "Pending" msgid "Pending"
@ -133,7 +133,7 @@ msgstr ""
msgid "Federated" msgid "Federated"
msgstr "" msgstr ""
#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:61 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71
#: bookwyrm/templates/settings/federation/edit_instance.html:44 #: bookwyrm/templates/settings/federation/edit_instance.html:44
#: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance.html:10
#: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/federation/instance_list.html:23
@ -192,7 +192,19 @@ msgstr ""
msgid "Private" msgid "Private"
msgstr "" msgstr ""
#: bookwyrm/models/link.py:60 #: bookwyrm/models/link.py:51
msgid "Free"
msgstr ""
#: bookwyrm/models/link.py:52
msgid "Purchasable"
msgstr ""
#: bookwyrm/models/link.py:53
msgid "Available for loan"
msgstr ""
#: bookwyrm/models/link.py:70
#: bookwyrm/templates/settings/link_domains/link_domains.html:23 #: bookwyrm/templates/settings/link_domains/link_domains.html:23
msgid "Approved" msgid "Approved"
msgstr "" msgstr ""
@ -677,7 +689,8 @@ msgstr ""
#: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/author/edit_author.html:115
#: bookwyrm/templates/book/book.html:193 #: bookwyrm/templates/book/book.html:193
#: bookwyrm/templates/book/edit/edit_book.html:121 #: bookwyrm/templates/book/edit/edit_book.html:121
#: bookwyrm/templates/book/file_links/add_link_modal.html:50 #: bookwyrm/templates/book/file_links/add_link_modal.html:58
#: bookwyrm/templates/book/file_links/edit_links.html:82
#: bookwyrm/templates/groups/form.html:30 #: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/bookmark_button.html:15
#: bookwyrm/templates/lists/form.html:130 #: bookwyrm/templates/lists/form.html:130
@ -699,7 +712,7 @@ msgstr ""
#: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/book/cover_add_modal.html:32
#: bookwyrm/templates/book/edit/edit_book.html:123 #: bookwyrm/templates/book/edit/edit_book.html:123
#: bookwyrm/templates/book/edit/edit_book.html:126 #: bookwyrm/templates/book/edit/edit_book.html:126
#: bookwyrm/templates/book/file_links/add_link_modal.html:52 #: bookwyrm/templates/book/file_links/add_link_modal.html:60
#: bookwyrm/templates/book/file_links/verification_modal.html:21 #: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17 #: bookwyrm/templates/groups/delete_group_modal.html:17
@ -1069,9 +1082,13 @@ msgstr ""
msgid "File type:" msgid "File type:"
msgstr "" msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:48
msgid "Availability:"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:5 #: bookwyrm/templates/book/file_links/edit_links.html:5
#: bookwyrm/templates/book/file_links/edit_links.html:22 #: bookwyrm/templates/book/file_links/edit_links.html:22
#: bookwyrm/templates/book/file_links/links.html:47 #: bookwyrm/templates/book/file_links/links.html:53
msgid "Edit links" msgid "Edit links"
msgstr "" msgstr ""
@ -1105,21 +1122,32 @@ msgid "Domain"
msgstr "" msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:38
#: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44
#: bookwyrm/templates/settings/invites/status_filter.html:5
#: bookwyrm/templates/settings/users/user_admin.html:34
#: bookwyrm/templates/settings/users/user_info.html:20
msgid "Status"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:37
#: bookwyrm/templates/settings/federation/instance.html:94 #: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/reports/report_links_table.html:6 #: bookwyrm/templates/settings/reports/report_links_table.html:6
msgid "Actions" msgid "Actions"
msgstr "" msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:52 #: bookwyrm/templates/book/file_links/edit_links.html:53
#: bookwyrm/templates/book/file_links/verification_modal.html:25 #: bookwyrm/templates/book/file_links/verification_modal.html:25
msgid "Report spam" msgid "Report spam"
msgstr "" msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:65 #: bookwyrm/templates/book/file_links/edit_links.html:97
msgid "No links available for this book." msgid "No links available for this book."
msgstr "" msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:76 #: bookwyrm/templates/book/file_links/edit_links.html:108
#: bookwyrm/templates/book/file_links/links.html:18 #: bookwyrm/templates/book/file_links/links.html:18
msgid "Add link to file" msgid "Add link to file"
msgstr "" msgstr ""
@ -1132,7 +1160,7 @@ msgstr ""
msgid "Get a copy" msgid "Get a copy"
msgstr "" msgstr ""
#: bookwyrm/templates/book/file_links/links.html:41 #: bookwyrm/templates/book/file_links/links.html:47
msgid "No links available" msgid "No links available"
msgstr "" msgstr ""
@ -1971,16 +1999,6 @@ msgstr ""
msgid "Book" msgid "Book"
msgstr "" msgstr ""
#: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:38
#: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44
#: bookwyrm/templates/settings/invites/status_filter.html:5
#: bookwyrm/templates/settings/users/user_admin.html:34
#: bookwyrm/templates/settings/users/user_info.html:20
msgid "Status"
msgstr ""
#: bookwyrm/templates/import/import_status.html:135 #: bookwyrm/templates/import/import_status.html:135
msgid "Import preview unavailable." msgid "Import preview unavailable."
msgstr "" msgstr ""
@ -4296,29 +4314,29 @@ msgstr ""
msgid "Finish reading" msgid "Finish reading"
msgstr "" msgstr ""
#: bookwyrm/templates/snippets/status/content_status.html:75 #: bookwyrm/templates/snippets/status/content_status.html:72
msgid "Content warning" msgid "Content warning"
msgstr "" msgstr ""
#: bookwyrm/templates/snippets/status/content_status.html:82 #: bookwyrm/templates/snippets/status/content_status.html:79
msgid "Show status" msgid "Show status"
msgstr "" msgstr ""
#: bookwyrm/templates/snippets/status/content_status.html:104 #: bookwyrm/templates/snippets/status/content_status.html:101
#, python-format #, python-format
msgid "(Page %(page)s)" msgid "(Page %(page)s)"
msgstr "" msgstr ""
#: bookwyrm/templates/snippets/status/content_status.html:106 #: bookwyrm/templates/snippets/status/content_status.html:103
#, python-format #, python-format
msgid "(%(percent)s%%)" msgid "(%(percent)s%%)"
msgstr "" msgstr ""
#: bookwyrm/templates/snippets/status/content_status.html:128 #: bookwyrm/templates/snippets/status/content_status.html:125
msgid "Open image in new window" msgid "Open image in new window"
msgstr "" msgstr ""
#: bookwyrm/templates/snippets/status/content_status.html:147 #: bookwyrm/templates/snippets/status/content_status.html:144
msgid "Hide status" msgid "Hide status"
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: 2022-01-13 16:54+0000\n" "POT-Creation-Date: 2022-01-17 16:05+0000\n"
"PO-Revision-Date: 2022-01-13 18:45\n" "PO-Revision-Date: 2022-01-17 17:10\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"
@ -17,62 +17,62 @@ msgstr ""
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" "X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
"X-Crowdin-File-ID: 1553\n" "X-Crowdin-File-ID: 1553\n"
#: bookwyrm/forms.py:351 #: bookwyrm/forms.py:365
msgid "A user with this email already exists." msgid "A user with this email already exists."
msgstr "Ya existe un usuario con ese correo electrónico." msgstr "Ya existe un usuario con ese correo electrónico."
#: bookwyrm/forms.py:365 #: bookwyrm/forms.py:379
msgid "One Day" msgid "One Day"
msgstr "Un día" msgstr "Un día"
#: bookwyrm/forms.py:366 #: bookwyrm/forms.py:380
msgid "One Week" msgid "One Week"
msgstr "Una semana" msgstr "Una semana"
#: bookwyrm/forms.py:367 #: bookwyrm/forms.py:381
msgid "One Month" msgid "One Month"
msgstr "Un mes" msgstr "Un mes"
#: bookwyrm/forms.py:368 #: bookwyrm/forms.py:382
msgid "Does Not Expire" msgid "Does Not Expire"
msgstr "No expira" msgstr "No expira"
#: bookwyrm/forms.py:372 #: bookwyrm/forms.py:386
#, python-brace-format #, python-brace-format
msgid "{i} uses" msgid "{i} uses"
msgstr "{i} usos" msgstr "{i} usos"
#: bookwyrm/forms.py:373 #: bookwyrm/forms.py:387
msgid "Unlimited" msgid "Unlimited"
msgstr "Sin límite" msgstr "Sin límite"
#: bookwyrm/forms.py:469 #: bookwyrm/forms.py:483
msgid "List Order" msgid "List Order"
msgstr "Orden de la lista" msgstr "Orden de la lista"
#: bookwyrm/forms.py:470 #: bookwyrm/forms.py:484
msgid "Book Title" msgid "Book Title"
msgstr "Título" msgstr "Título"
#: bookwyrm/forms.py:471 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:33 #: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating" msgid "Rating"
msgstr "Valoración" msgstr "Valoración"
#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:134 #: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:134
msgid "Sort By" msgid "Sort By"
msgstr "Ordenar por" msgstr "Ordenar por"
#: bookwyrm/forms.py:477 #: bookwyrm/forms.py:491
msgid "Ascending" msgid "Ascending"
msgstr "Ascendente" msgstr "Ascendente"
#: bookwyrm/forms.py:478 #: bookwyrm/forms.py:492
msgid "Descending" msgid "Descending"
msgstr "Descendente" msgstr "Descendente"
#: bookwyrm/forms.py:491 #: bookwyrm/forms.py:505
msgid "Reading finish date cannot be before start date." msgid "Reading finish date cannot be before start date."
msgstr "La fecha final de lectura no puede ser anterior a la fecha de inicio." msgstr "La fecha final de lectura no puede ser anterior a la fecha de inicio."
@ -84,8 +84,9 @@ msgstr "Error en cargar libro"
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/models/link.py:62
#: bookwyrm/templates/import/import_status.html:200 #: bookwyrm/templates/import/import_status.html:200
#: bookwyrm/templates/settings/link_domains/link_domains.html:19
msgid "Pending" msgid "Pending"
msgstr "Pendiente" msgstr "Pendiente"
@ -105,23 +106,23 @@ msgstr "Eliminación de moderador"
msgid "Domain block" msgid "Domain block"
msgstr "Bloqueo de dominio" msgstr "Bloqueo de dominio"
#: bookwyrm/models/book.py:250 #: bookwyrm/models/book.py:253
msgid "Audiobook" msgid "Audiobook"
msgstr "Audio libro" msgstr "Audio libro"
#: bookwyrm/models/book.py:251 #: bookwyrm/models/book.py:254
msgid "eBook" msgid "eBook"
msgstr "Libro electrónico" msgstr "Libro electrónico"
#: bookwyrm/models/book.py:252 #: bookwyrm/models/book.py:255
msgid "Graphic novel" msgid "Graphic novel"
msgstr "Novela gráfica" msgstr "Novela gráfica"
#: bookwyrm/models/book.py:253 #: bookwyrm/models/book.py:256
msgid "Hardcover" msgid "Hardcover"
msgstr "Tapa dura" msgstr "Tapa dura"
#: bookwyrm/models/book.py:254 #: bookwyrm/models/book.py:257
msgid "Paperback" msgid "Paperback"
msgstr "Tapa blanda" msgstr "Tapa blanda"
@ -131,10 +132,11 @@ msgstr "Tapa blanda"
msgid "Federated" msgid "Federated"
msgstr "Federalizado" msgstr "Federalizado"
#: bookwyrm/models/federated_server.py:12 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:61
#: bookwyrm/templates/settings/federation/edit_instance.html:44 #: bookwyrm/templates/settings/federation/edit_instance.html:44
#: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance.html:10
#: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/federation/instance_list.html:23
#: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Bloqueado" msgstr "Bloqueado"
@ -189,6 +191,11 @@ msgstr "Seguidores"
msgid "Private" msgid "Private"
msgstr "Privado" msgstr "Privado"
#: bookwyrm/models/link.py:60
#: bookwyrm/templates/settings/link_domains/link_domains.html:23
msgid "Approved"
msgstr ""
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272 #: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
msgid "Reviews" msgid "Reviews"
msgstr "Reseñas" msgstr "Reseñas"
@ -348,7 +355,7 @@ msgid "Admin"
msgstr "Administrador" msgstr "Administrador"
#: bookwyrm/templates/about/about.html:130 #: bookwyrm/templates/about/about.html:130
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 #: bookwyrm/templates/settings/users/user_moderation_actions.html:14
#: bookwyrm/templates/snippets/status/status_options.html:35 #: bookwyrm/templates/snippets/status/status_options.html:35
#: bookwyrm/templates/snippets/user_options.html:13 #: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message" msgid "Send direct message"
@ -530,61 +537,61 @@ msgstr "Todos los libros que ha leído %(display_name)s en %(year)s"
msgid "Edit Author" msgid "Edit Author"
msgstr "Editar Autor/Autora" msgstr "Editar Autor/Autora"
#: bookwyrm/templates/author/author.html:40 #: bookwyrm/templates/author/author.html:35
msgid "Author details" msgid "Author details"
msgstr "Detalles sobre el/la autor/a" msgstr "Detalles sobre el/la autor/a"
#: bookwyrm/templates/author/author.html:44 #: bookwyrm/templates/author/author.html:39
#: bookwyrm/templates/author/edit_author.html:42 #: bookwyrm/templates/author/edit_author.html:42
msgid "Aliases:" msgid "Aliases:"
msgstr "Alias:" msgstr "Alias:"
#: bookwyrm/templates/author/author.html:53 #: bookwyrm/templates/author/author.html:48
msgid "Born:" msgid "Born:"
msgstr "Nacido:" msgstr "Nacido:"
#: bookwyrm/templates/author/author.html:60 #: bookwyrm/templates/author/author.html:55
msgid "Died:" msgid "Died:"
msgstr "Muerto:" msgstr "Muerto:"
#: bookwyrm/templates/author/author.html:70 #: bookwyrm/templates/author/author.html:65
msgid "External links" msgid "External links"
msgstr "Enlaces externos" msgstr "Enlaces externos"
#: bookwyrm/templates/author/author.html:75 #: bookwyrm/templates/author/author.html:70
msgid "Wikipedia" msgid "Wikipedia"
msgstr "Wikipedia" msgstr "Wikipedia"
#: bookwyrm/templates/author/author.html:83 #: bookwyrm/templates/author/author.html:78
msgid "View ISNI record" msgid "View ISNI record"
msgstr "Ver registro ISNI" msgstr "Ver registro ISNI"
#: bookwyrm/templates/author/author.html:88 #: bookwyrm/templates/author/author.html:83
#: bookwyrm/templates/author/sync_modal.html:5 #: bookwyrm/templates/author/sync_modal.html:5
#: bookwyrm/templates/book/book.html:122 #: bookwyrm/templates/book/book.html:122
#: bookwyrm/templates/book/sync_modal.html:5 #: bookwyrm/templates/book/sync_modal.html:5
msgid "Load data" msgid "Load data"
msgstr "Cargar datos" msgstr "Cargar datos"
#: bookwyrm/templates/author/author.html:92 #: bookwyrm/templates/author/author.html:87
#: bookwyrm/templates/book/book.html:126 #: bookwyrm/templates/book/book.html:126
msgid "View on OpenLibrary" msgid "View on OpenLibrary"
msgstr "Ver en OpenLibrary" msgstr "Ver en OpenLibrary"
#: bookwyrm/templates/author/author.html:107 #: bookwyrm/templates/author/author.html:102
#: bookwyrm/templates/book/book.html:140 #: bookwyrm/templates/book/book.html:140
msgid "View on Inventaire" msgid "View on Inventaire"
msgstr "Ver en Inventaire" msgstr "Ver en Inventaire"
#: bookwyrm/templates/author/author.html:123 #: bookwyrm/templates/author/author.html:118
msgid "View on LibraryThing" msgid "View on LibraryThing"
msgstr "Ver en LibraryThing" msgstr "Ver en LibraryThing"
#: bookwyrm/templates/author/author.html:131 #: bookwyrm/templates/author/author.html:126
msgid "View on Goodreads" msgid "View on Goodreads"
msgstr "Ver en Goodreads" msgstr "Ver en Goodreads"
#: bookwyrm/templates/author/author.html:145 #: bookwyrm/templates/author/author.html:141
#, python-format #, python-format
msgid "Books by %(name)s" msgid "Books by %(name)s"
msgstr "Libros de %(name)s" msgstr "Libros de %(name)s"
@ -614,7 +621,9 @@ msgid "Metadata"
msgstr "Metadatos" msgstr "Metadatos"
#: bookwyrm/templates/author/edit_author.html:35 #: bookwyrm/templates/author/edit_author.html:35
#: bookwyrm/templates/lists/form.html:9 bookwyrm/templates/shelf/form.html:9 #: bookwyrm/templates/lists/form.html:9
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14
#: bookwyrm/templates/shelf/form.html:9
msgid "Name:" msgid "Name:"
msgstr "Nombre:" msgstr "Nombre:"
@ -668,6 +677,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/author/edit_author.html:115
#: bookwyrm/templates/book/book.html:193 #: bookwyrm/templates/book/book.html:193
#: bookwyrm/templates/book/edit/edit_book.html:121 #: bookwyrm/templates/book/edit/edit_book.html:121
#: bookwyrm/templates/book/file_links/add_link_modal.html:50
#: bookwyrm/templates/groups/form.html:30 #: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/bookmark_button.html:15
#: bookwyrm/templates/lists/form.html:130 #: bookwyrm/templates/lists/form.html:130
@ -677,7 +687,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/settings/federation/edit_instance.html:82 #: bookwyrm/templates/settings/federation/edit_instance.html:82
#: bookwyrm/templates/settings/federation/instance.html:87 #: bookwyrm/templates/settings/federation/instance.html:87
#: bookwyrm/templates/settings/site.html:133 #: bookwyrm/templates/settings/site.html:133
#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69
#: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/shelf/form.html:25
#: bookwyrm/templates/snippets/reading_modals/layout.html:18 #: bookwyrm/templates/snippets/reading_modals/layout.html:18
msgid "Save" msgid "Save"
@ -689,13 +699,16 @@ msgstr "Guardar"
#: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/book/cover_add_modal.html:32
#: bookwyrm/templates/book/edit/edit_book.html:123 #: bookwyrm/templates/book/edit/edit_book.html:123
#: bookwyrm/templates/book/edit/edit_book.html:126 #: bookwyrm/templates/book/edit/edit_book.html:126
#: bookwyrm/templates/book/file_links/add_link_modal.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17 #: bookwyrm/templates/groups/delete_group_modal.html:17
#: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74 #: bookwyrm/templates/readthrough/readthrough_modal.html:74
#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/settings/federation/instance.html:88
#: bookwyrm/templates/snippets/report_modal.html:38 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
#: bookwyrm/templates/snippets/report_modal.html:54
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
@ -1040,6 +1053,101 @@ msgstr "Idioma:"
msgid "Search editions" msgid "Search editions"
msgstr "Buscar ediciones" msgstr "Buscar ediciones"
#: bookwyrm/templates/book/file_links/add_link_modal.html:6
msgid "Add file link"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:19
msgid "Links from unknown domains will need to be approved by a moderator before they are added."
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:24
msgid "URL:"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:29
msgid "File type:"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:5
#: bookwyrm/templates/book/file_links/edit_links.html:22
#: bookwyrm/templates/book/file_links/links.html:47
msgid "Edit links"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:11
#, python-format
msgid "\n"
" Links for \"<em>%(title)s</em>\"\n"
" "
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:32
#: bookwyrm/templates/settings/link_domains/link_table.html:6
msgid "URL"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:33
#: bookwyrm/templates/settings/link_domains/link_table.html:7
msgid "Added by"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:34
#: bookwyrm/templates/settings/link_domains/link_table.html:8
msgid "Filetype"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:35
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
#: bookwyrm/templates/settings/reports/report_links_table.html:5
msgid "Domain"
msgstr "Dominio"
#: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/reports/report_links_table.html:6
msgid "Actions"
msgstr "Acciones"
#: bookwyrm/templates/book/file_links/edit_links.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:25
msgid "Report spam"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:65
msgid "No links available for this book."
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:76
#: bookwyrm/templates/book/file_links/links.html:18
msgid "Add link to file"
msgstr ""
#: bookwyrm/templates/book/file_links/file_link_page.html:6
msgid "File Links"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:9
msgid "Get a copy"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:41
msgid "No links available"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:5
msgid "Leaving BookWyrm"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:11
#, python-format
msgid "This link is taking you to: <code>%(link_url)s</code>.<br> Is that where you'd like to go?"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:20
msgid "Continue"
msgstr ""
#: bookwyrm/templates/book/publisher_info.html:23 #: bookwyrm/templates/book/publisher_info.html:23
#, python-format #, python-format
msgid "%(format)s, %(pages)s pages" msgid "%(format)s, %(pages)s pages"
@ -1110,8 +1218,8 @@ msgstr "Código de confirmación:"
#: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/confirm_email/confirm_email.html:25
#: bookwyrm/templates/landing/layout.html:73 #: bookwyrm/templates/landing/layout.html:73
#: bookwyrm/templates/settings/dashboard/dashboard.html:93 #: bookwyrm/templates/settings/dashboard/dashboard.html:104
#: bookwyrm/templates/snippets/report_modal.html:37 #: bookwyrm/templates/snippets/report_modal.html:52
msgid "Submit" msgid "Submit"
msgstr "Enviar" msgstr "Enviar"
@ -1858,6 +1966,7 @@ msgid "Review"
msgstr "Reseña" msgstr "Reseña"
#: bookwyrm/templates/import/import_status.html:124 #: bookwyrm/templates/import/import_status.html:124
#: bookwyrm/templates/settings/link_domains/link_table.html:9
msgid "Book" msgid "Book"
msgstr "Libro" msgstr "Libro"
@ -1910,6 +2019,7 @@ msgstr "La aprobación de una sugerencia añadirá permanentemente el libro suge
#: bookwyrm/templates/import/manual_review.html:58 #: bookwyrm/templates/import/manual_review.html:58
#: bookwyrm/templates/lists/curate.html:59 #: bookwyrm/templates/lists/curate.html:59
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve" msgid "Approve"
msgstr "Aprobar" msgstr "Aprobar"
@ -2257,6 +2367,7 @@ msgid "List position"
msgstr "Posición" msgstr "Posición"
#: bookwyrm/templates/lists/list.html:101 #: bookwyrm/templates/lists/list.html:101
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set" msgid "Set"
msgstr "Establecido" msgstr "Establecido"
@ -2788,6 +2899,11 @@ msgstr "Eliminar estas fechas de lectura"
msgid "Add read dates for \"<em>%(title)s</em>\"" msgid "Add read dates for \"<em>%(title)s</em>\""
msgstr "Añadir fechas de lectura de «<em>%(title)s</em>»" msgstr "Añadir fechas de lectura de «<em>%(title)s</em>»"
#: bookwyrm/templates/report.html:5
#: bookwyrm/templates/snippets/report_button.html:13
msgid "Report"
msgstr "Reportar"
#: bookwyrm/templates/search/book.html:44 #: bookwyrm/templates/search/book.html:44
msgid "Results from" msgid "Results from"
msgstr "Resultados de" msgstr "Resultados de"
@ -2860,13 +2976,13 @@ msgstr "Falso"
#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement.html:46
#: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/announcements/announcement_form.html:44
#: bookwyrm/templates/settings/dashboard/dashboard.html:71 #: bookwyrm/templates/settings/dashboard/dashboard.html:82
msgid "Start date:" msgid "Start date:"
msgstr "Fecha de inicio:" msgstr "Fecha de inicio:"
#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement.html:51
#: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/announcements/announcement_form.html:54
#: bookwyrm/templates/settings/dashboard/dashboard.html:77 #: bookwyrm/templates/settings/dashboard/dashboard.html:88
msgid "End date:" msgid "End date:"
msgstr "Fecha final:" msgstr "Fecha final:"
@ -2894,7 +3010,7 @@ msgstr "Fecha de evento:"
#: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:3
#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/announcements.html:5
#: bookwyrm/templates/settings/layout.html:72 #: bookwyrm/templates/settings/layout.html:76
msgid "Announcements" msgid "Announcements"
msgstr "Anuncios" msgstr "Anuncios"
@ -2934,7 +3050,7 @@ msgid "Dashboard"
msgstr "Tablero" msgstr "Tablero"
#: bookwyrm/templates/settings/dashboard/dashboard.html:15 #: bookwyrm/templates/settings/dashboard/dashboard.html:15
#: bookwyrm/templates/settings/dashboard/dashboard.html:100 #: bookwyrm/templates/settings/dashboard/dashboard.html:111
msgid "Total users" msgid "Total users"
msgstr "Número de usuarios" msgstr "Número de usuarios"
@ -2961,36 +3077,43 @@ msgstr[1] "%(display_count)s informes abiertos"
#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:54
#, python-format #, python-format
msgid "%(display_count)s domain needs review"
msgid_plural "%(display_count)s domains need review"
msgstr[0] ""
msgstr[1] ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:65
#, python-format
msgid "%(display_count)s invite request" msgid "%(display_count)s invite request"
msgid_plural "%(display_count)s invite requests" msgid_plural "%(display_count)s invite requests"
msgstr[0] "%(display_count)s solicitación de invitado" msgstr[0] "%(display_count)s solicitación de invitado"
msgstr[1] "%(display_count)s solicitaciones de invitado" msgstr[1] "%(display_count)s solicitaciones de invitado"
#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #: bookwyrm/templates/settings/dashboard/dashboard.html:76
msgid "Instance Activity" msgid "Instance Activity"
msgstr "Actividad de instancia" msgstr "Actividad de instancia"
#: bookwyrm/templates/settings/dashboard/dashboard.html:83 #: bookwyrm/templates/settings/dashboard/dashboard.html:94
msgid "Interval:" msgid "Interval:"
msgstr "Intervalo:" msgstr "Intervalo:"
#: bookwyrm/templates/settings/dashboard/dashboard.html:87 #: bookwyrm/templates/settings/dashboard/dashboard.html:98
msgid "Days" msgid "Days"
msgstr "Dias" msgstr "Dias"
#: bookwyrm/templates/settings/dashboard/dashboard.html:88 #: bookwyrm/templates/settings/dashboard/dashboard.html:99
msgid "Weeks" msgid "Weeks"
msgstr "Semanas" msgstr "Semanas"
#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/settings/dashboard/dashboard.html:117
msgid "User signup activity" msgid "User signup activity"
msgstr "Actividad de inscripciones de usuarios" msgstr "Actividad de inscripciones de usuarios"
#: bookwyrm/templates/settings/dashboard/dashboard.html:112 #: bookwyrm/templates/settings/dashboard/dashboard.html:123
msgid "Status activity" msgid "Status activity"
msgstr "Actividad de estado" msgstr "Actividad de estado"
#: bookwyrm/templates/settings/dashboard/dashboard.html:118 #: bookwyrm/templates/settings/dashboard/dashboard.html:129
msgid "Works created" msgid "Works created"
msgstr "Obras creadas" msgstr "Obras creadas"
@ -3025,10 +3148,6 @@ msgstr "Lista de bloqueo de correos electrónicos"
msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked."
msgstr "Cuando alguien intenta registrarse con un correo electrónico de este dominio, ningun cuenta se creerá. El proceso de registración se parecerá a funcionado." msgstr "Cuando alguien intenta registrarse con un correo electrónico de este dominio, ningun cuenta se creerá. El proceso de registración se parecerá a funcionado."
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
msgid "Domain"
msgstr "Dominio"
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29
#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 #: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27
msgid "Options" msgid "Options"
@ -3140,12 +3259,8 @@ msgstr "Editar"
msgid "<em>No notes</em>" msgid "<em>No notes</em>"
msgstr "<em>Sin notas</em>" msgstr "<em>Sin notas</em>"
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "Actions"
msgstr "Acciones"
#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:98
#: bookwyrm/templates/settings/link_domains/link_domains.html:87
#: bookwyrm/templates/snippets/block_button.html:5 #: bookwyrm/templates/snippets/block_button.html:5
msgid "Block" msgid "Block"
msgstr "Bloquear" msgstr "Bloquear"
@ -3358,62 +3473,113 @@ msgstr "Moderación"
msgid "Reports" msgid "Reports"
msgstr "Informes" msgstr "Informes"
#: bookwyrm/templates/settings/layout.html:68 #: bookwyrm/templates/settings/layout.html:67
#: bookwyrm/templates/settings/link_domains/link_domains.html:5
#: bookwyrm/templates/settings/link_domains/link_domains.html:7
msgid "Link Domains"
msgstr ""
#: bookwyrm/templates/settings/layout.html:72
msgid "Instance Settings" msgid "Instance Settings"
msgstr "Configuración de instancia" msgstr "Configuración de instancia"
#: bookwyrm/templates/settings/layout.html:76 #: bookwyrm/templates/settings/layout.html:80
#: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:4
#: bookwyrm/templates/settings/site.html:6 #: bookwyrm/templates/settings/site.html:6
msgid "Site Settings" msgid "Site Settings"
msgstr "Configuración de sitio" msgstr "Configuración de sitio"
#: bookwyrm/templates/settings/reports/report.html:5 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5
#: bookwyrm/templates/settings/reports/report.html:8
#: bookwyrm/templates/settings/reports/report_preview.html:6
#, python-format #, python-format
msgid "Report #%(report_id)s: %(username)s" msgid "Set display name for %(url)s"
msgstr "Reportar #%(report_id)s: %(username)s" msgstr ""
#: bookwyrm/templates/settings/reports/report.html:9 #: bookwyrm/templates/settings/link_domains/link_domains.html:11
msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving."
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:45
msgid "Set display name"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:53
msgid "View links"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:96
msgid "No domains currently approved"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:98
msgid "No domains currently pending"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:100
msgid "No domains currently blocked"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_table.html:39
msgid "No links available for this domain."
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:11
msgid "Back to reports" msgid "Back to reports"
msgstr "Volver a los informes" msgstr "Volver a los informes"
#: bookwyrm/templates/settings/reports/report.html:23 #: bookwyrm/templates/settings/reports/report.html:22
msgid "Reported statuses"
msgstr "Estados reportados"
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Status has been deleted"
msgstr "El estado ha sido eliminado"
#: bookwyrm/templates/settings/reports/report.html:39
msgid "Reported links"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:55
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Comentarios de moderador" msgstr "Comentarios de moderador"
#: bookwyrm/templates/settings/reports/report.html:41 #: bookwyrm/templates/settings/reports/report.html:73
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Comentario" msgstr "Comentario"
#: bookwyrm/templates/settings/reports/report.html:46 #: bookwyrm/templates/settings/reports/report_header.html:6
msgid "Reported statuses" #, python-format
msgstr "Estados reportados" msgid "Report #%(report_id)s: Status posted by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:48 #: bookwyrm/templates/settings/reports/report_header.html:12
msgid "No statuses reported" #, python-format
msgstr "No se reportaron estados" msgid "Report #%(report_id)s: Link added by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:54 #: bookwyrm/templates/settings/reports/report_header.html:18
msgid "Status has been deleted" #, python-format
msgstr "El estado ha sido eliminado" msgid "Report #%(report_id)s: User @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:13 #: bookwyrm/templates/settings/reports/report_links_table.html:17
msgid "Block domain"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:17
msgid "No notes provided" msgid "No notes provided"
msgstr "No se proporcionó notas" msgstr "No se proporcionó notas"
#: bookwyrm/templates/settings/reports/report_preview.html:20 #: bookwyrm/templates/settings/reports/report_preview.html:24
#, python-format #, python-format
msgid "Reported by <a href=\"%(path)s\">%(username)s</a>" msgid "Reported by <a href=\"%(path)s\">@%(username)s</a>"
msgstr "Reportado por <a href=\"%(path)s\">%(username)s</a>" msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:30 #: bookwyrm/templates/settings/reports/report_preview.html:34
msgid "Re-open" msgid "Re-open"
msgstr "Reabrir" msgstr "Reabrir"
#: bookwyrm/templates/settings/reports/report_preview.html:32 #: bookwyrm/templates/settings/reports/report_preview.html:36
msgid "Resolve" msgid "Resolve"
msgstr "Resolver" msgstr "Resolver"
@ -3541,7 +3707,7 @@ msgid "Invite request text:"
msgstr "Texto de solicitud de invitación:" msgstr "Texto de solicitud de invitación:"
#: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/delete_user_form.html:5
#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32
msgid "Permanently delete user" msgid "Permanently delete user"
msgstr "Eliminar usuario permanentemente" msgstr "Eliminar usuario permanentemente"
@ -3651,15 +3817,19 @@ msgstr "Ver instancia"
msgid "Permanently deleted" msgid "Permanently deleted"
msgstr "Eliminado permanentemente" msgstr "Eliminado permanentemente"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 #: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "User Actions"
msgstr ""
#: bookwyrm/templates/settings/users/user_moderation_actions.html:21
msgid "Suspend user" msgid "Suspend user"
msgstr "Suspender usuario" msgstr "Suspender usuario"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 #: bookwyrm/templates/settings/users/user_moderation_actions.html:26
msgid "Un-suspend user" msgid "Un-suspend user"
msgstr "Des-suspender usuario" msgstr "Des-suspender usuario"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 #: bookwyrm/templates/settings/users/user_moderation_actions.html:48
msgid "Access level:" msgid "Access level:"
msgstr "Nivel de acceso:" msgstr "Nivel de acceso:"
@ -4063,21 +4233,31 @@ msgstr "Quiero leer \"<em>%(book_title)s</em>\""
msgid "Sign Up" msgid "Sign Up"
msgstr "Inscribirse" msgstr "Inscribirse"
#: bookwyrm/templates/snippets/report_button.html:13 #: bookwyrm/templates/snippets/report_modal.html:8
msgid "Report" #, python-format
msgstr "Reportar" msgid "Report @%(username)s's status"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:6 #: bookwyrm/templates/snippets/report_modal.html:10
#, python-format
msgid "Report %(domain)s link"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:12
#, python-format #, python-format
msgid "Report @%(username)s" msgid "Report @%(username)s"
msgstr "Reportar @%(username)s" msgstr "Reportar @%(username)s"
#: bookwyrm/templates/snippets/report_modal.html:23 #: bookwyrm/templates/snippets/report_modal.html:34
#, python-format #, python-format
msgid "This report will be sent to %(site_name)s's moderators for review." msgid "This report will be sent to %(site_name)s's moderators for review."
msgstr "Este informe se enviará a los moderadores de %(site_name)s para la revisión." msgstr "Este informe se enviará a los moderadores de %(site_name)s para la revisión."
#: bookwyrm/templates/snippets/report_modal.html:26 #: bookwyrm/templates/snippets/report_modal.html:36
msgid "Links from this domain will be removed until your report has been reviewed."
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:41
msgid "More info about this report:" msgid "More info about this report:"
msgstr "Más información sobre este informe:" msgstr "Más información sobre este informe:"

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: 2022-01-13 16:54+0000\n" "POT-Creation-Date: 2022-01-17 16:05+0000\n"
"PO-Revision-Date: 2022-01-13 17:50\n" "PO-Revision-Date: 2022-01-17 17:10\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"
@ -17,64 +17,64 @@ msgstr ""
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" "X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
"X-Crowdin-File-ID: 1553\n" "X-Crowdin-File-ID: 1553\n"
#: bookwyrm/forms.py:351 #: bookwyrm/forms.py:365
msgid "A user with this email already exists." msgid "A user with this email already exists."
msgstr "Cet email est déjà associé à un compte." msgstr "Cet email est déjà associé à un compte."
#: bookwyrm/forms.py:365 #: bookwyrm/forms.py:379
msgid "One Day" msgid "One Day"
msgstr "Un jour" msgstr "Un jour"
#: bookwyrm/forms.py:366 #: bookwyrm/forms.py:380
msgid "One Week" msgid "One Week"
msgstr "Une semaine" msgstr "Une semaine"
#: bookwyrm/forms.py:367 #: bookwyrm/forms.py:381
msgid "One Month" msgid "One Month"
msgstr "Un mois" msgstr "Un mois"
#: bookwyrm/forms.py:368 #: bookwyrm/forms.py:382
msgid "Does Not Expire" msgid "Does Not Expire"
msgstr "Sans expiration" msgstr "Sans expiration"
#: bookwyrm/forms.py:372 #: bookwyrm/forms.py:386
#, python-brace-format #, python-brace-format
msgid "{i} uses" msgid "{i} uses"
msgstr "{i} utilisations" msgstr "{i} utilisations"
#: bookwyrm/forms.py:373 #: bookwyrm/forms.py:387
msgid "Unlimited" msgid "Unlimited"
msgstr "Sans limite" msgstr "Sans limite"
#: bookwyrm/forms.py:469 #: bookwyrm/forms.py:483
msgid "List Order" msgid "List Order"
msgstr "Ordre de la liste" msgstr "Ordre de la liste"
#: bookwyrm/forms.py:470 #: bookwyrm/forms.py:484
msgid "Book Title" msgid "Book Title"
msgstr "Titre du livre" msgstr "Titre du livre"
#: bookwyrm/forms.py:471 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:33 #: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating" msgid "Rating"
msgstr "Note" msgstr "Note"
#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:134 #: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:134
msgid "Sort By" msgid "Sort By"
msgstr "Trier par" msgstr "Trier par"
#: bookwyrm/forms.py:477 #: bookwyrm/forms.py:491
msgid "Ascending" msgid "Ascending"
msgstr "Ordre croissant" msgstr "Ordre croissant"
#: bookwyrm/forms.py:478 #: bookwyrm/forms.py:492
msgid "Descending" msgid "Descending"
msgstr "Ordre décroissant" msgstr "Ordre décroissant"
#: bookwyrm/forms.py:491 #: bookwyrm/forms.py:505
msgid "Reading finish date cannot be before start date." msgid "Reading finish date cannot be before start date."
msgstr "" msgstr "La date de fin de lecture ne peut pas être antérieure à la date de début."
#: bookwyrm/importers/importer.py:145 bookwyrm/importers/importer.py:167 #: bookwyrm/importers/importer.py:145 bookwyrm/importers/importer.py:167
msgid "Error loading book" msgid "Error loading book"
@ -84,8 +84,9 @@ msgstr "Erreur lors du chargement du livre"
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/models/link.py:62
#: bookwyrm/templates/import/import_status.html:200 #: bookwyrm/templates/import/import_status.html:200
#: bookwyrm/templates/settings/link_domains/link_domains.html:19
msgid "Pending" msgid "Pending"
msgstr "En attente" msgstr "En attente"
@ -105,23 +106,23 @@ msgstr "Suppression du modérateur"
msgid "Domain block" msgid "Domain block"
msgstr "Blocage de domaine" msgstr "Blocage de domaine"
#: bookwyrm/models/book.py:250 #: bookwyrm/models/book.py:253
msgid "Audiobook" msgid "Audiobook"
msgstr "Livre audio" msgstr "Livre audio"
#: bookwyrm/models/book.py:251 #: bookwyrm/models/book.py:254
msgid "eBook" msgid "eBook"
msgstr "eBook" msgstr "eBook"
#: bookwyrm/models/book.py:252 #: bookwyrm/models/book.py:255
msgid "Graphic novel" msgid "Graphic novel"
msgstr "Roman Graphique" msgstr "Roman Graphique"
#: bookwyrm/models/book.py:253 #: bookwyrm/models/book.py:256
msgid "Hardcover" msgid "Hardcover"
msgstr "Couverture rigide" msgstr "Couverture rigide"
#: bookwyrm/models/book.py:254 #: bookwyrm/models/book.py:257
msgid "Paperback" msgid "Paperback"
msgstr "Couverture souple" msgstr "Couverture souple"
@ -131,10 +132,11 @@ msgstr "Couverture souple"
msgid "Federated" msgid "Federated"
msgstr "Fédéré" msgstr "Fédéré"
#: bookwyrm/models/federated_server.py:12 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:61
#: bookwyrm/templates/settings/federation/edit_instance.html:44 #: bookwyrm/templates/settings/federation/edit_instance.html:44
#: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance.html:10
#: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/federation/instance_list.html:23
#: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Bloqué" msgstr "Bloqué"
@ -189,6 +191,11 @@ msgstr "Abonné(e)s"
msgid "Private" msgid "Private"
msgstr "Privé" msgstr "Privé"
#: bookwyrm/models/link.py:60
#: bookwyrm/templates/settings/link_domains/link_domains.html:23
msgid "Approved"
msgstr ""
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272 #: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
msgid "Reviews" msgid "Reviews"
msgstr "Critiques" msgstr "Critiques"
@ -348,7 +355,7 @@ msgid "Admin"
msgstr "Admin" msgstr "Admin"
#: bookwyrm/templates/about/about.html:130 #: bookwyrm/templates/about/about.html:130
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 #: bookwyrm/templates/settings/users/user_moderation_actions.html:14
#: bookwyrm/templates/snippets/status/status_options.html:35 #: bookwyrm/templates/snippets/status/status_options.html:35
#: bookwyrm/templates/snippets/user_options.html:13 #: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message" msgid "Send direct message"
@ -530,61 +537,61 @@ msgstr "Tous les livres que %(display_name)s a lus en %(year)s"
msgid "Edit Author" msgid "Edit Author"
msgstr "Modifier lauteur ou autrice" msgstr "Modifier lauteur ou autrice"
#: bookwyrm/templates/author/author.html:40 #: bookwyrm/templates/author/author.html:35
msgid "Author details" msgid "Author details"
msgstr "Informations sur lauteur ou lautrice" msgstr "Informations sur lauteur ou lautrice"
#: bookwyrm/templates/author/author.html:44 #: bookwyrm/templates/author/author.html:39
#: bookwyrm/templates/author/edit_author.html:42 #: bookwyrm/templates/author/edit_author.html:42
msgid "Aliases:" msgid "Aliases:"
msgstr "Pseudonymes:" msgstr "Pseudonymes:"
#: bookwyrm/templates/author/author.html:53 #: bookwyrm/templates/author/author.html:48
msgid "Born:" msgid "Born:"
msgstr "Naissance:" msgstr "Naissance:"
#: bookwyrm/templates/author/author.html:60 #: bookwyrm/templates/author/author.html:55
msgid "Died:" msgid "Died:"
msgstr "Décès:" msgstr "Décès:"
#: bookwyrm/templates/author/author.html:70 #: bookwyrm/templates/author/author.html:65
msgid "External links" msgid "External links"
msgstr "Liens externes" msgstr "Liens externes"
#: bookwyrm/templates/author/author.html:75 #: bookwyrm/templates/author/author.html:70
msgid "Wikipedia" msgid "Wikipedia"
msgstr "Wikipedia" msgstr "Wikipedia"
#: bookwyrm/templates/author/author.html:83 #: bookwyrm/templates/author/author.html:78
msgid "View ISNI record" msgid "View ISNI record"
msgstr "Voir lenregistrement ISNI" msgstr "Voir lenregistrement ISNI"
#: bookwyrm/templates/author/author.html:88 #: bookwyrm/templates/author/author.html:83
#: bookwyrm/templates/author/sync_modal.html:5 #: bookwyrm/templates/author/sync_modal.html:5
#: bookwyrm/templates/book/book.html:122 #: bookwyrm/templates/book/book.html:122
#: bookwyrm/templates/book/sync_modal.html:5 #: bookwyrm/templates/book/sync_modal.html:5
msgid "Load data" msgid "Load data"
msgstr "Charger les données" msgstr "Charger les données"
#: bookwyrm/templates/author/author.html:92 #: bookwyrm/templates/author/author.html:87
#: bookwyrm/templates/book/book.html:126 #: bookwyrm/templates/book/book.html:126
msgid "View on OpenLibrary" msgid "View on OpenLibrary"
msgstr "Voir sur OpenLibrary" msgstr "Voir sur OpenLibrary"
#: bookwyrm/templates/author/author.html:107 #: bookwyrm/templates/author/author.html:102
#: bookwyrm/templates/book/book.html:140 #: bookwyrm/templates/book/book.html:140
msgid "View on Inventaire" msgid "View on Inventaire"
msgstr "Voir sur Inventaire" msgstr "Voir sur Inventaire"
#: bookwyrm/templates/author/author.html:123 #: bookwyrm/templates/author/author.html:118
msgid "View on LibraryThing" msgid "View on LibraryThing"
msgstr "Voir sur LibraryThing" msgstr "Voir sur LibraryThing"
#: bookwyrm/templates/author/author.html:131 #: bookwyrm/templates/author/author.html:126
msgid "View on Goodreads" msgid "View on Goodreads"
msgstr "Voir sur Goodreads" msgstr "Voir sur Goodreads"
#: bookwyrm/templates/author/author.html:145 #: bookwyrm/templates/author/author.html:141
#, python-format #, python-format
msgid "Books by %(name)s" msgid "Books by %(name)s"
msgstr "Livres de %(name)s" msgstr "Livres de %(name)s"
@ -614,7 +621,9 @@ msgid "Metadata"
msgstr "Métadonnées" msgstr "Métadonnées"
#: bookwyrm/templates/author/edit_author.html:35 #: bookwyrm/templates/author/edit_author.html:35
#: bookwyrm/templates/lists/form.html:9 bookwyrm/templates/shelf/form.html:9 #: bookwyrm/templates/lists/form.html:9
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14
#: bookwyrm/templates/shelf/form.html:9
msgid "Name:" msgid "Name:"
msgstr "Nom:" msgstr "Nom:"
@ -668,6 +677,7 @@ msgstr "ISNI :"
#: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/author/edit_author.html:115
#: bookwyrm/templates/book/book.html:193 #: bookwyrm/templates/book/book.html:193
#: bookwyrm/templates/book/edit/edit_book.html:121 #: bookwyrm/templates/book/edit/edit_book.html:121
#: bookwyrm/templates/book/file_links/add_link_modal.html:50
#: bookwyrm/templates/groups/form.html:30 #: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/bookmark_button.html:15
#: bookwyrm/templates/lists/form.html:130 #: bookwyrm/templates/lists/form.html:130
@ -677,7 +687,7 @@ msgstr "ISNI :"
#: bookwyrm/templates/settings/federation/edit_instance.html:82 #: bookwyrm/templates/settings/federation/edit_instance.html:82
#: bookwyrm/templates/settings/federation/instance.html:87 #: bookwyrm/templates/settings/federation/instance.html:87
#: bookwyrm/templates/settings/site.html:133 #: bookwyrm/templates/settings/site.html:133
#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69
#: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/shelf/form.html:25
#: bookwyrm/templates/snippets/reading_modals/layout.html:18 #: bookwyrm/templates/snippets/reading_modals/layout.html:18
msgid "Save" msgid "Save"
@ -689,13 +699,16 @@ msgstr "Enregistrer"
#: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/book/cover_add_modal.html:32
#: bookwyrm/templates/book/edit/edit_book.html:123 #: bookwyrm/templates/book/edit/edit_book.html:123
#: bookwyrm/templates/book/edit/edit_book.html:126 #: bookwyrm/templates/book/edit/edit_book.html:126
#: bookwyrm/templates/book/file_links/add_link_modal.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17 #: bookwyrm/templates/groups/delete_group_modal.html:17
#: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74 #: bookwyrm/templates/readthrough/readthrough_modal.html:74
#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/settings/federation/instance.html:88
#: bookwyrm/templates/snippets/report_modal.html:38 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
#: bookwyrm/templates/snippets/report_modal.html:54
msgid "Cancel" msgid "Cancel"
msgstr "Annuler" msgstr "Annuler"
@ -1040,6 +1053,101 @@ msgstr "Langue:"
msgid "Search editions" msgid "Search editions"
msgstr "Rechercher des éditions" msgstr "Rechercher des éditions"
#: bookwyrm/templates/book/file_links/add_link_modal.html:6
msgid "Add file link"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:19
msgid "Links from unknown domains will need to be approved by a moderator before they are added."
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:24
msgid "URL:"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:29
msgid "File type:"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:5
#: bookwyrm/templates/book/file_links/edit_links.html:22
#: bookwyrm/templates/book/file_links/links.html:47
msgid "Edit links"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:11
#, python-format
msgid "\n"
" Links for \"<em>%(title)s</em>\"\n"
" "
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:32
#: bookwyrm/templates/settings/link_domains/link_table.html:6
msgid "URL"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:33
#: bookwyrm/templates/settings/link_domains/link_table.html:7
msgid "Added by"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:34
#: bookwyrm/templates/settings/link_domains/link_table.html:8
msgid "Filetype"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:35
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
#: bookwyrm/templates/settings/reports/report_links_table.html:5
msgid "Domain"
msgstr "Domaine"
#: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/reports/report_links_table.html:6
msgid "Actions"
msgstr "Actions"
#: bookwyrm/templates/book/file_links/edit_links.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:25
msgid "Report spam"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:65
msgid "No links available for this book."
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:76
#: bookwyrm/templates/book/file_links/links.html:18
msgid "Add link to file"
msgstr ""
#: bookwyrm/templates/book/file_links/file_link_page.html:6
msgid "File Links"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:9
msgid "Get a copy"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:41
msgid "No links available"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:5
msgid "Leaving BookWyrm"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:11
#, python-format
msgid "This link is taking you to: <code>%(link_url)s</code>.<br> Is that where you'd like to go?"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:20
msgid "Continue"
msgstr ""
#: bookwyrm/templates/book/publisher_info.html:23 #: bookwyrm/templates/book/publisher_info.html:23
#, python-format #, python-format
msgid "%(format)s, %(pages)s pages" msgid "%(format)s, %(pages)s pages"
@ -1110,8 +1218,8 @@ msgstr "Code de confirmation:"
#: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/confirm_email/confirm_email.html:25
#: bookwyrm/templates/landing/layout.html:73 #: bookwyrm/templates/landing/layout.html:73
#: bookwyrm/templates/settings/dashboard/dashboard.html:93 #: bookwyrm/templates/settings/dashboard/dashboard.html:104
#: bookwyrm/templates/snippets/report_modal.html:37 #: bookwyrm/templates/snippets/report_modal.html:52
msgid "Submit" msgid "Submit"
msgstr "Valider" msgstr "Valider"
@ -1858,6 +1966,7 @@ msgid "Review"
msgstr "Critique" msgstr "Critique"
#: bookwyrm/templates/import/import_status.html:124 #: bookwyrm/templates/import/import_status.html:124
#: bookwyrm/templates/settings/link_domains/link_table.html:9
msgid "Book" msgid "Book"
msgstr "Livre" msgstr "Livre"
@ -1910,6 +2019,7 @@ msgstr "Approuver une suggestion ajoutera définitivement le livre suggéré à
#: bookwyrm/templates/import/manual_review.html:58 #: bookwyrm/templates/import/manual_review.html:58
#: bookwyrm/templates/lists/curate.html:59 #: bookwyrm/templates/lists/curate.html:59
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve" msgid "Approve"
msgstr "Approuver" msgstr "Approuver"
@ -2257,6 +2367,7 @@ msgid "List position"
msgstr "Position" msgstr "Position"
#: bookwyrm/templates/lists/list.html:101 #: bookwyrm/templates/lists/list.html:101
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set" msgid "Set"
msgstr "Appliquer" msgstr "Appliquer"
@ -2735,7 +2846,7 @@ msgstr "Vous avez supprimé ce résumé et ses %(count)s progressions associées
#: bookwyrm/templates/readthrough/readthrough_modal.html:8 #: bookwyrm/templates/readthrough/readthrough_modal.html:8
#, python-format #, python-format
msgid "Update read dates for \"<em>%(title)s</em>\"" msgid "Update read dates for \"<em>%(title)s</em>\""
msgstr "" msgstr "Mettre à jour les dates de lecture pour « <em>%(title)s</em> »"
#: bookwyrm/templates/readthrough/readthrough_form.html:10 #: bookwyrm/templates/readthrough/readthrough_form.html:10
#: bookwyrm/templates/readthrough/readthrough_modal.html:31 #: bookwyrm/templates/readthrough/readthrough_modal.html:31
@ -2786,7 +2897,12 @@ msgstr "Supprimer ces dates de lecture"
#: bookwyrm/templates/readthrough/readthrough_modal.html:12 #: bookwyrm/templates/readthrough/readthrough_modal.html:12
#, python-format #, python-format
msgid "Add read dates for \"<em>%(title)s</em>\"" msgid "Add read dates for \"<em>%(title)s</em>\""
msgstr "" msgstr "Ajouter des dates de lecture pour « <em>%(title)s</em> »"
#: bookwyrm/templates/report.html:5
#: bookwyrm/templates/snippets/report_button.html:13
msgid "Report"
msgstr "Signaler"
#: bookwyrm/templates/search/book.html:44 #: bookwyrm/templates/search/book.html:44
msgid "Results from" msgid "Results from"
@ -2860,13 +2976,13 @@ msgstr "Faux"
#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement.html:46
#: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/announcements/announcement_form.html:44
#: bookwyrm/templates/settings/dashboard/dashboard.html:71 #: bookwyrm/templates/settings/dashboard/dashboard.html:82
msgid "Start date:" msgid "Start date:"
msgstr "Date de début:" msgstr "Date de début:"
#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement.html:51
#: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/announcements/announcement_form.html:54
#: bookwyrm/templates/settings/dashboard/dashboard.html:77 #: bookwyrm/templates/settings/dashboard/dashboard.html:88
msgid "End date:" msgid "End date:"
msgstr "Date de fin:" msgstr "Date de fin:"
@ -2894,7 +3010,7 @@ msgstr "Date de l'événement :"
#: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:3
#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/announcements.html:5
#: bookwyrm/templates/settings/layout.html:72 #: bookwyrm/templates/settings/layout.html:76
msgid "Announcements" msgid "Announcements"
msgstr "Annonces" msgstr "Annonces"
@ -2934,7 +3050,7 @@ msgid "Dashboard"
msgstr "Tableau de bord" msgstr "Tableau de bord"
#: bookwyrm/templates/settings/dashboard/dashboard.html:15 #: bookwyrm/templates/settings/dashboard/dashboard.html:15
#: bookwyrm/templates/settings/dashboard/dashboard.html:100 #: bookwyrm/templates/settings/dashboard/dashboard.html:111
msgid "Total users" msgid "Total users"
msgstr "Nombre total d'utilisateurs·rices" msgstr "Nombre total d'utilisateurs·rices"
@ -2961,36 +3077,43 @@ msgstr[1] "%(display_count)s signalements ouverts"
#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:54
#, python-format #, python-format
msgid "%(display_count)s domain needs review"
msgid_plural "%(display_count)s domains need review"
msgstr[0] ""
msgstr[1] ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:65
#, python-format
msgid "%(display_count)s invite request" msgid "%(display_count)s invite request"
msgid_plural "%(display_count)s invite requests" msgid_plural "%(display_count)s invite requests"
msgstr[0] "%(display_count)s demande d'invitation" msgstr[0] "%(display_count)s demande d'invitation"
msgstr[1] "%(display_count)s demandes d'invitation" msgstr[1] "%(display_count)s demandes d'invitation"
#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #: bookwyrm/templates/settings/dashboard/dashboard.html:76
msgid "Instance Activity" msgid "Instance Activity"
msgstr "Activité de l'instance" msgstr "Activité de l'instance"
#: bookwyrm/templates/settings/dashboard/dashboard.html:83 #: bookwyrm/templates/settings/dashboard/dashboard.html:94
msgid "Interval:" msgid "Interval:"
msgstr "Intervalle :" msgstr "Intervalle :"
#: bookwyrm/templates/settings/dashboard/dashboard.html:87 #: bookwyrm/templates/settings/dashboard/dashboard.html:98
msgid "Days" msgid "Days"
msgstr "Jours" msgstr "Jours"
#: bookwyrm/templates/settings/dashboard/dashboard.html:88 #: bookwyrm/templates/settings/dashboard/dashboard.html:99
msgid "Weeks" msgid "Weeks"
msgstr "Semaines" msgstr "Semaines"
#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/settings/dashboard/dashboard.html:117
msgid "User signup activity" msgid "User signup activity"
msgstr "Nouvelles inscriptions" msgstr "Nouvelles inscriptions"
#: bookwyrm/templates/settings/dashboard/dashboard.html:112 #: bookwyrm/templates/settings/dashboard/dashboard.html:123
msgid "Status activity" msgid "Status activity"
msgstr "Nouveaux statuts" msgstr "Nouveaux statuts"
#: bookwyrm/templates/settings/dashboard/dashboard.html:118 #: bookwyrm/templates/settings/dashboard/dashboard.html:129
msgid "Works created" msgid "Works created"
msgstr "Œuvres créées" msgstr "Œuvres créées"
@ -3025,10 +3148,6 @@ msgstr "Liste des e-mails bloqués"
msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked."
msgstr "Quand quelqu'un essaiera de s'inscrire avec un e-mail de ce domaine, aucun compte ne sera créé. Le processus d'inscription semblera avoir fonctionné." msgstr "Quand quelqu'un essaiera de s'inscrire avec un e-mail de ce domaine, aucun compte ne sera créé. Le processus d'inscription semblera avoir fonctionné."
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
msgid "Domain"
msgstr "Domaine"
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29
#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 #: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27
msgid "Options" msgid "Options"
@ -3140,12 +3259,8 @@ msgstr "Modifier"
msgid "<em>No notes</em>" msgid "<em>No notes</em>"
msgstr "<em>Aucune note</em>" msgstr "<em>Aucune note</em>"
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "Actions"
msgstr "Actions"
#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:98
#: bookwyrm/templates/settings/link_domains/link_domains.html:87
#: bookwyrm/templates/snippets/block_button.html:5 #: bookwyrm/templates/snippets/block_button.html:5
msgid "Block" msgid "Block"
msgstr "Bloquer" msgstr "Bloquer"
@ -3358,62 +3473,113 @@ msgstr "Modération"
msgid "Reports" msgid "Reports"
msgstr "Signalements" msgstr "Signalements"
#: bookwyrm/templates/settings/layout.html:68 #: bookwyrm/templates/settings/layout.html:67
#: bookwyrm/templates/settings/link_domains/link_domains.html:5
#: bookwyrm/templates/settings/link_domains/link_domains.html:7
msgid "Link Domains"
msgstr ""
#: bookwyrm/templates/settings/layout.html:72
msgid "Instance Settings" msgid "Instance Settings"
msgstr "Paramètres de linstance" msgstr "Paramètres de linstance"
#: bookwyrm/templates/settings/layout.html:76 #: bookwyrm/templates/settings/layout.html:80
#: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:4
#: bookwyrm/templates/settings/site.html:6 #: bookwyrm/templates/settings/site.html:6
msgid "Site Settings" msgid "Site Settings"
msgstr "Paramètres du site" msgstr "Paramètres du site"
#: bookwyrm/templates/settings/reports/report.html:5 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5
#: bookwyrm/templates/settings/reports/report.html:8
#: bookwyrm/templates/settings/reports/report_preview.html:6
#, python-format #, python-format
msgid "Report #%(report_id)s: %(username)s" msgid "Set display name for %(url)s"
msgstr "Signalement #%(report_id)s: %(username)s" msgstr ""
#: bookwyrm/templates/settings/reports/report.html:9 #: bookwyrm/templates/settings/link_domains/link_domains.html:11
msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving."
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:45
msgid "Set display name"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:53
msgid "View links"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:96
msgid "No domains currently approved"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:98
msgid "No domains currently pending"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:100
msgid "No domains currently blocked"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_table.html:39
msgid "No links available for this domain."
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:11
msgid "Back to reports" msgid "Back to reports"
msgstr "Retour aux signalements" msgstr "Retour aux signalements"
#: bookwyrm/templates/settings/reports/report.html:23 #: bookwyrm/templates/settings/reports/report.html:22
msgid "Reported statuses"
msgstr "Statuts signalés"
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Status has been deleted"
msgstr "Le statut a été supprimé"
#: bookwyrm/templates/settings/reports/report.html:39
msgid "Reported links"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:55
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Commentaires de léquipe de modération" msgstr "Commentaires de léquipe de modération"
#: bookwyrm/templates/settings/reports/report.html:41 #: bookwyrm/templates/settings/reports/report.html:73
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Commentaire" msgstr "Commentaire"
#: bookwyrm/templates/settings/reports/report.html:46 #: bookwyrm/templates/settings/reports/report_header.html:6
msgid "Reported statuses" #, python-format
msgstr "Statuts signalés" msgid "Report #%(report_id)s: Status posted by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:48 #: bookwyrm/templates/settings/reports/report_header.html:12
msgid "No statuses reported" #, python-format
msgstr "Aucun statut signalé" msgid "Report #%(report_id)s: Link added by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:54 #: bookwyrm/templates/settings/reports/report_header.html:18
msgid "Status has been deleted" #, python-format
msgstr "Le statut a été supprimé" msgid "Report #%(report_id)s: User @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:13 #: bookwyrm/templates/settings/reports/report_links_table.html:17
msgid "Block domain"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:17
msgid "No notes provided" msgid "No notes provided"
msgstr "Aucune note fournie" msgstr "Aucune note fournie"
#: bookwyrm/templates/settings/reports/report_preview.html:20 #: bookwyrm/templates/settings/reports/report_preview.html:24
#, python-format #, python-format
msgid "Reported by <a href=\"%(path)s\">%(username)s</a>" msgid "Reported by <a href=\"%(path)s\">@%(username)s</a>"
msgstr "Signalé par <a href=\"%(path)s\">%(username)s</a>" msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:30 #: bookwyrm/templates/settings/reports/report_preview.html:34
msgid "Re-open" msgid "Re-open"
msgstr "Réouvrir" msgstr "Réouvrir"
#: bookwyrm/templates/settings/reports/report_preview.html:32 #: bookwyrm/templates/settings/reports/report_preview.html:36
msgid "Resolve" msgid "Resolve"
msgstr "Résoudre" msgstr "Résoudre"
@ -3541,7 +3707,7 @@ msgid "Invite request text:"
msgstr "Texte de la demande d'invitation :" msgstr "Texte de la demande d'invitation :"
#: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/delete_user_form.html:5
#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32
msgid "Permanently delete user" msgid "Permanently delete user"
msgstr "Supprimer définitivement l'utilisateur" msgstr "Supprimer définitivement l'utilisateur"
@ -3651,15 +3817,19 @@ msgstr "Voir linstance"
msgid "Permanently deleted" msgid "Permanently deleted"
msgstr "Supprimé définitivement" msgstr "Supprimé définitivement"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 #: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "User Actions"
msgstr ""
#: bookwyrm/templates/settings/users/user_moderation_actions.html:21
msgid "Suspend user" msgid "Suspend user"
msgstr "Suspendre le compte" msgstr "Suspendre le compte"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 #: bookwyrm/templates/settings/users/user_moderation_actions.html:26
msgid "Un-suspend user" msgid "Un-suspend user"
msgstr "Rétablir le compte" msgstr "Rétablir le compte"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 #: bookwyrm/templates/settings/users/user_moderation_actions.html:48
msgid "Access level:" msgid "Access level:"
msgstr "Niveau daccès:" msgstr "Niveau daccès:"
@ -3951,13 +4121,13 @@ msgstr[1] "a noté <em><a href=\"%(path)s\">%(title)s</a></em> : %(display_ratin
#, python-format #, python-format
msgid "Review of \"<a href='%(book_path)s'>%(book_title)s</a>\" (%(display_rating)s star): %(review_title)s" msgid "Review of \"<a href='%(book_path)s'>%(book_title)s</a>\" (%(display_rating)s star): %(review_title)s"
msgid_plural "Review of \"<a href='%(book_path)s'>%(book_title)s</a>\" (%(display_rating)s stars): %(review_title)s" msgid_plural "Review of \"<a href='%(book_path)s'>%(book_title)s</a>\" (%(display_rating)s stars): %(review_title)s"
msgstr[0] "" msgstr[0] "Critique de « <a href='%(book_path)s'>%(book_title)s</a> » (%(display_rating)s étoile) : %(review_title)s"
msgstr[1] "" msgstr[1] "Critique de « <a href='%(book_path)s'>%(book_title)s</a> » (%(display_rating)s étoile) : %(review_title)s"
#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 #: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12
#, python-format #, python-format
msgid "Review of \"<a href='%(book_path)s'>%(book_title)s</a>\": %(review_title)s" msgid "Review of \"<a href='%(book_path)s'>%(book_title)s</a>\": %(review_title)s"
msgstr "" msgstr "Critique de « <a href='%(book_path)s'>%(book_title)s</a> » : %(review_title)s"
#: bookwyrm/templates/snippets/goal_form.html:4 #: bookwyrm/templates/snippets/goal_form.html:4
#, python-format #, python-format
@ -4063,21 +4233,31 @@ msgstr "Ajouter « <em>%(book_title)s</em> » aux envies de lecture"
msgid "Sign Up" msgid "Sign Up"
msgstr "Senregistrer" msgstr "Senregistrer"
#: bookwyrm/templates/snippets/report_button.html:13 #: bookwyrm/templates/snippets/report_modal.html:8
msgid "Report" #, python-format
msgstr "Signaler" msgid "Report @%(username)s's status"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:6 #: bookwyrm/templates/snippets/report_modal.html:10
#, python-format
msgid "Report %(domain)s link"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:12
#, python-format #, python-format
msgid "Report @%(username)s" msgid "Report @%(username)s"
msgstr "Signaler@%(username)s" msgstr "Signaler@%(username)s"
#: bookwyrm/templates/snippets/report_modal.html:23 #: bookwyrm/templates/snippets/report_modal.html:34
#, python-format #, python-format
msgid "This report will be sent to %(site_name)s's moderators for review." msgid "This report will be sent to %(site_name)s's moderators for review."
msgstr "Ce signalement sera envoyé à léquipe de modération de %(site_name)s pour traitement." msgstr "Ce signalement sera envoyé à léquipe de modération de %(site_name)s pour traitement."
#: bookwyrm/templates/snippets/report_modal.html:26 #: bookwyrm/templates/snippets/report_modal.html:36
msgid "Links from this domain will be removed until your report has been reviewed."
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:41
msgid "More info about this report:" msgid "More info about this report:"
msgstr "En savoir plus sur ce signalement:" msgstr "En savoir plus sur ce signalement:"
@ -4149,7 +4329,7 @@ msgstr "modifié le %(date)s"
#: bookwyrm/templates/snippets/status/headers/comment.html:8 #: bookwyrm/templates/snippets/status/headers/comment.html:8
#, python-format #, python-format
msgid "commented on <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>" msgid "commented on <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>"
msgstr "" msgstr "a commenté <a href=\"%(book_path)s\">%(book)s</a> par <a href=\"%(author_path)s\">%(author_name)s</a>"
#: bookwyrm/templates/snippets/status/headers/comment.html:15 #: bookwyrm/templates/snippets/status/headers/comment.html:15
#, python-format #, python-format
@ -4164,7 +4344,7 @@ msgstr "a répondu au <a href=\"%(status_path)s\">statut</a> de <a href=\"%(user
#: bookwyrm/templates/snippets/status/headers/quotation.html:8 #: bookwyrm/templates/snippets/status/headers/quotation.html:8
#, python-format #, python-format
msgid "quoted <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>" msgid "quoted <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>"
msgstr "" msgstr "a cité <a href=\"%(book_path)s\">%(book)s</a> par <a href=\"%(author_path)s\">%(author_name)s</a>"
#: bookwyrm/templates/snippets/status/headers/quotation.html:15 #: bookwyrm/templates/snippets/status/headers/quotation.html:15
#, python-format #, python-format
@ -4179,7 +4359,7 @@ msgstr "a noté <a href=\"%(book_path)s\">%(book)s</a> :"
#: bookwyrm/templates/snippets/status/headers/read.html:10 #: bookwyrm/templates/snippets/status/headers/read.html:10
#, python-format #, python-format
msgid "finished reading <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>" msgid "finished reading <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>"
msgstr "" msgstr "a terminé la lecture de <a href=\"%(book_path)s\">%(book)s</a> par <a href=\"%(author_path)s\">%(author_name)s</a>"
#: bookwyrm/templates/snippets/status/headers/read.html:17 #: bookwyrm/templates/snippets/status/headers/read.html:17
#, python-format #, python-format
@ -4189,7 +4369,7 @@ msgstr "a terminé <a href=\"%(book_path)s\">%(book)s</a>"
#: bookwyrm/templates/snippets/status/headers/reading.html:10 #: bookwyrm/templates/snippets/status/headers/reading.html:10
#, python-format #, python-format
msgid "started reading <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>" msgid "started reading <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>"
msgstr "" msgstr "a commencé la lecture de <a href=\"%(book_path)s\">%(book)s</a> par <a href=\"%(author_path)s\">%(author_name)s</a>"
#: bookwyrm/templates/snippets/status/headers/reading.html:17 #: bookwyrm/templates/snippets/status/headers/reading.html:17
#, python-format #, python-format
@ -4199,7 +4379,7 @@ msgstr "a commencé <a href=\"%(book_path)s\">%(book)s</a>"
#: bookwyrm/templates/snippets/status/headers/review.html:8 #: bookwyrm/templates/snippets/status/headers/review.html:8
#, python-format #, python-format
msgid "reviewed <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>" msgid "reviewed <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>"
msgstr "" msgstr "a publié une critique de <a href=\"%(book_path)s\">%(book)s</a> par <a href=\"%(author_path)s\">%(author_name)s</a>"
#: bookwyrm/templates/snippets/status/headers/review.html:15 #: bookwyrm/templates/snippets/status/headers/review.html:15
#, python-format #, python-format
@ -4209,12 +4389,12 @@ msgstr "a critiqué <a href=\"%(book_path)s\">%(book)s</a>"
#: bookwyrm/templates/snippets/status/headers/to_read.html:10 #: bookwyrm/templates/snippets/status/headers/to_read.html:10
#, python-format #, python-format
msgid "wants to read <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>" msgid "wants to read <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>"
msgstr "" msgstr "veut lire <a href=\"%(book_path)s\">%(book)s</a> par <a href=\"%(author_path)s\">%(author_name)s</a>"
#: bookwyrm/templates/snippets/status/headers/to_read.html:17 #: bookwyrm/templates/snippets/status/headers/to_read.html:17
#, python-format #, python-format
msgid "wants to read <a href=\"%(book_path)s\">%(book)s</a>" msgid "wants to read <a href=\"%(book_path)s\">%(book)s</a>"
msgstr "" msgstr "veut lire <a href=\"%(book_path)s\">%(book)s</a>"
#: bookwyrm/templates/snippets/status/layout.html:24 #: bookwyrm/templates/snippets/status/layout.html:24
#: bookwyrm/templates/snippets/status/status_options.html:17 #: bookwyrm/templates/snippets/status/status_options.html:17

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: 2022-01-13 16:54+0000\n" "POT-Creation-Date: 2022-01-17 16:05+0000\n"
"PO-Revision-Date: 2022-01-14 07:13\n" "PO-Revision-Date: 2022-01-17 17:10\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"
@ -17,62 +17,62 @@ msgstr ""
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" "X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
"X-Crowdin-File-ID: 1553\n" "X-Crowdin-File-ID: 1553\n"
#: bookwyrm/forms.py:351 #: bookwyrm/forms.py:365
msgid "A user with this email already exists." msgid "A user with this email already exists."
msgstr "Xa existe unha usuaria con este email." msgstr "Xa existe unha usuaria con este email."
#: bookwyrm/forms.py:365 #: bookwyrm/forms.py:379
msgid "One Day" msgid "One Day"
msgstr "Un día" msgstr "Un día"
#: bookwyrm/forms.py:366 #: bookwyrm/forms.py:380
msgid "One Week" msgid "One Week"
msgstr "Unha semana" msgstr "Unha semana"
#: bookwyrm/forms.py:367 #: bookwyrm/forms.py:381
msgid "One Month" msgid "One Month"
msgstr "Un mes" msgstr "Un mes"
#: bookwyrm/forms.py:368 #: bookwyrm/forms.py:382
msgid "Does Not Expire" msgid "Does Not Expire"
msgstr "Non caduca" msgstr "Non caduca"
#: bookwyrm/forms.py:372 #: bookwyrm/forms.py:386
#, python-brace-format #, python-brace-format
msgid "{i} uses" msgid "{i} uses"
msgstr "{i} usos" msgstr "{i} usos"
#: bookwyrm/forms.py:373 #: bookwyrm/forms.py:387
msgid "Unlimited" msgid "Unlimited"
msgstr "Sen límite" msgstr "Sen límite"
#: bookwyrm/forms.py:469 #: bookwyrm/forms.py:483
msgid "List Order" msgid "List Order"
msgstr "Orde da listaxe" msgstr "Orde da listaxe"
#: bookwyrm/forms.py:470 #: bookwyrm/forms.py:484
msgid "Book Title" msgid "Book Title"
msgstr "Título do libro" msgstr "Título do libro"
#: bookwyrm/forms.py:471 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:33 #: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating" msgid "Rating"
msgstr "Puntuación" msgstr "Puntuación"
#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:134 #: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:134
msgid "Sort By" msgid "Sort By"
msgstr "Ordenar por" msgstr "Ordenar por"
#: bookwyrm/forms.py:477 #: bookwyrm/forms.py:491
msgid "Ascending" msgid "Ascending"
msgstr "Ascendente" msgstr "Ascendente"
#: bookwyrm/forms.py:478 #: bookwyrm/forms.py:492
msgid "Descending" msgid "Descending"
msgstr "Descendente" msgstr "Descendente"
#: bookwyrm/forms.py:491 #: bookwyrm/forms.py:505
msgid "Reading finish date cannot be before start date." msgid "Reading finish date cannot be before start date."
msgstr "A data final da lectura non pode ser anterior á de inicio." msgstr "A data final da lectura non pode ser anterior á de inicio."
@ -84,8 +84,9 @@ msgstr "Erro ao cargar o libro"
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/models/link.py:62
#: bookwyrm/templates/import/import_status.html:200 #: bookwyrm/templates/import/import_status.html:200
#: bookwyrm/templates/settings/link_domains/link_domains.html:19
msgid "Pending" msgid "Pending"
msgstr "Pendente" msgstr "Pendente"
@ -105,23 +106,23 @@ msgstr "Eliminado pola moderación"
msgid "Domain block" msgid "Domain block"
msgstr "Bloqueo de dominio" msgstr "Bloqueo de dominio"
#: bookwyrm/models/book.py:250 #: bookwyrm/models/book.py:253
msgid "Audiobook" msgid "Audiobook"
msgstr "Audiolibro" msgstr "Audiolibro"
#: bookwyrm/models/book.py:251 #: bookwyrm/models/book.py:254
msgid "eBook" msgid "eBook"
msgstr "eBook" msgstr "eBook"
#: bookwyrm/models/book.py:252 #: bookwyrm/models/book.py:255
msgid "Graphic novel" msgid "Graphic novel"
msgstr "Novela gráfica" msgstr "Novela gráfica"
#: bookwyrm/models/book.py:253 #: bookwyrm/models/book.py:256
msgid "Hardcover" msgid "Hardcover"
msgstr "Portada dura" msgstr "Portada dura"
#: bookwyrm/models/book.py:254 #: bookwyrm/models/book.py:257
msgid "Paperback" msgid "Paperback"
msgstr "En rústica" msgstr "En rústica"
@ -131,10 +132,11 @@ msgstr "En rústica"
msgid "Federated" msgid "Federated"
msgstr "Federado" msgstr "Federado"
#: bookwyrm/models/federated_server.py:12 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:61
#: bookwyrm/templates/settings/federation/edit_instance.html:44 #: bookwyrm/templates/settings/federation/edit_instance.html:44
#: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance.html:10
#: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/federation/instance_list.html:23
#: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Bloqueado" msgstr "Bloqueado"
@ -189,6 +191,11 @@ msgstr "Seguidoras"
msgid "Private" msgid "Private"
msgstr "Privado" msgstr "Privado"
#: bookwyrm/models/link.py:60
#: bookwyrm/templates/settings/link_domains/link_domains.html:23
msgid "Approved"
msgstr ""
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272 #: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
msgid "Reviews" msgid "Reviews"
msgstr "Recensións" msgstr "Recensións"
@ -348,7 +355,7 @@ msgid "Admin"
msgstr "Admin" msgstr "Admin"
#: bookwyrm/templates/about/about.html:130 #: bookwyrm/templates/about/about.html:130
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 #: bookwyrm/templates/settings/users/user_moderation_actions.html:14
#: bookwyrm/templates/snippets/status/status_options.html:35 #: bookwyrm/templates/snippets/status/status_options.html:35
#: bookwyrm/templates/snippets/user_options.html:13 #: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message" msgid "Send direct message"
@ -530,61 +537,61 @@ msgstr "Tódolos libros que %(display_name)s leu en %(year)s"
msgid "Edit Author" msgid "Edit Author"
msgstr "Editar Autora" msgstr "Editar Autora"
#: bookwyrm/templates/author/author.html:40 #: bookwyrm/templates/author/author.html:35
msgid "Author details" msgid "Author details"
msgstr "Detalles da autoría" msgstr "Detalles da autoría"
#: bookwyrm/templates/author/author.html:44 #: bookwyrm/templates/author/author.html:39
#: bookwyrm/templates/author/edit_author.html:42 #: bookwyrm/templates/author/edit_author.html:42
msgid "Aliases:" msgid "Aliases:"
msgstr "Alias:" msgstr "Alias:"
#: bookwyrm/templates/author/author.html:53 #: bookwyrm/templates/author/author.html:48
msgid "Born:" msgid "Born:"
msgstr "Nacemento:" msgstr "Nacemento:"
#: bookwyrm/templates/author/author.html:60 #: bookwyrm/templates/author/author.html:55
msgid "Died:" msgid "Died:"
msgstr "Morte:" msgstr "Morte:"
#: bookwyrm/templates/author/author.html:70 #: bookwyrm/templates/author/author.html:65
msgid "External links" msgid "External links"
msgstr "Ligazóns externas" msgstr "Ligazóns externas"
#: bookwyrm/templates/author/author.html:75 #: bookwyrm/templates/author/author.html:70
msgid "Wikipedia" msgid "Wikipedia"
msgstr "Wikipedia" msgstr "Wikipedia"
#: bookwyrm/templates/author/author.html:83 #: bookwyrm/templates/author/author.html:78
msgid "View ISNI record" msgid "View ISNI record"
msgstr "Ver rexistro ISNI" msgstr "Ver rexistro ISNI"
#: bookwyrm/templates/author/author.html:88 #: bookwyrm/templates/author/author.html:83
#: bookwyrm/templates/author/sync_modal.html:5 #: bookwyrm/templates/author/sync_modal.html:5
#: bookwyrm/templates/book/book.html:122 #: bookwyrm/templates/book/book.html:122
#: bookwyrm/templates/book/sync_modal.html:5 #: bookwyrm/templates/book/sync_modal.html:5
msgid "Load data" msgid "Load data"
msgstr "Cargar datos" msgstr "Cargar datos"
#: bookwyrm/templates/author/author.html:92 #: bookwyrm/templates/author/author.html:87
#: bookwyrm/templates/book/book.html:126 #: bookwyrm/templates/book/book.html:126
msgid "View on OpenLibrary" msgid "View on OpenLibrary"
msgstr "Ver en OpenLibrary" msgstr "Ver en OpenLibrary"
#: bookwyrm/templates/author/author.html:107 #: bookwyrm/templates/author/author.html:102
#: bookwyrm/templates/book/book.html:140 #: bookwyrm/templates/book/book.html:140
msgid "View on Inventaire" msgid "View on Inventaire"
msgstr "Ver en Inventaire" msgstr "Ver en Inventaire"
#: bookwyrm/templates/author/author.html:123 #: bookwyrm/templates/author/author.html:118
msgid "View on LibraryThing" msgid "View on LibraryThing"
msgstr "Ver en LibraryThing" msgstr "Ver en LibraryThing"
#: bookwyrm/templates/author/author.html:131 #: bookwyrm/templates/author/author.html:126
msgid "View on Goodreads" msgid "View on Goodreads"
msgstr "Ver en Goodreads" msgstr "Ver en Goodreads"
#: bookwyrm/templates/author/author.html:145 #: bookwyrm/templates/author/author.html:141
#, python-format #, python-format
msgid "Books by %(name)s" msgid "Books by %(name)s"
msgstr "Libros de %(name)s" msgstr "Libros de %(name)s"
@ -614,7 +621,9 @@ msgid "Metadata"
msgstr "Metadatos" msgstr "Metadatos"
#: bookwyrm/templates/author/edit_author.html:35 #: bookwyrm/templates/author/edit_author.html:35
#: bookwyrm/templates/lists/form.html:9 bookwyrm/templates/shelf/form.html:9 #: bookwyrm/templates/lists/form.html:9
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14
#: bookwyrm/templates/shelf/form.html:9
msgid "Name:" msgid "Name:"
msgstr "Nome:" msgstr "Nome:"
@ -668,6 +677,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/author/edit_author.html:115
#: bookwyrm/templates/book/book.html:193 #: bookwyrm/templates/book/book.html:193
#: bookwyrm/templates/book/edit/edit_book.html:121 #: bookwyrm/templates/book/edit/edit_book.html:121
#: bookwyrm/templates/book/file_links/add_link_modal.html:50
#: bookwyrm/templates/groups/form.html:30 #: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/bookmark_button.html:15
#: bookwyrm/templates/lists/form.html:130 #: bookwyrm/templates/lists/form.html:130
@ -677,7 +687,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/settings/federation/edit_instance.html:82 #: bookwyrm/templates/settings/federation/edit_instance.html:82
#: bookwyrm/templates/settings/federation/instance.html:87 #: bookwyrm/templates/settings/federation/instance.html:87
#: bookwyrm/templates/settings/site.html:133 #: bookwyrm/templates/settings/site.html:133
#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69
#: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/shelf/form.html:25
#: bookwyrm/templates/snippets/reading_modals/layout.html:18 #: bookwyrm/templates/snippets/reading_modals/layout.html:18
msgid "Save" msgid "Save"
@ -689,13 +699,16 @@ msgstr "Gardar"
#: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/book/cover_add_modal.html:32
#: bookwyrm/templates/book/edit/edit_book.html:123 #: bookwyrm/templates/book/edit/edit_book.html:123
#: bookwyrm/templates/book/edit/edit_book.html:126 #: bookwyrm/templates/book/edit/edit_book.html:126
#: bookwyrm/templates/book/file_links/add_link_modal.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17 #: bookwyrm/templates/groups/delete_group_modal.html:17
#: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74 #: bookwyrm/templates/readthrough/readthrough_modal.html:74
#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/settings/federation/instance.html:88
#: bookwyrm/templates/snippets/report_modal.html:38 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
#: bookwyrm/templates/snippets/report_modal.html:54
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
@ -1040,6 +1053,101 @@ msgstr "Idioma:"
msgid "Search editions" msgid "Search editions"
msgstr "Buscar edicións" msgstr "Buscar edicións"
#: bookwyrm/templates/book/file_links/add_link_modal.html:6
msgid "Add file link"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:19
msgid "Links from unknown domains will need to be approved by a moderator before they are added."
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:24
msgid "URL:"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:29
msgid "File type:"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:5
#: bookwyrm/templates/book/file_links/edit_links.html:22
#: bookwyrm/templates/book/file_links/links.html:47
msgid "Edit links"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:11
#, python-format
msgid "\n"
" Links for \"<em>%(title)s</em>\"\n"
" "
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:32
#: bookwyrm/templates/settings/link_domains/link_table.html:6
msgid "URL"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:33
#: bookwyrm/templates/settings/link_domains/link_table.html:7
msgid "Added by"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:34
#: bookwyrm/templates/settings/link_domains/link_table.html:8
msgid "Filetype"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:35
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
#: bookwyrm/templates/settings/reports/report_links_table.html:5
msgid "Domain"
msgstr "Dominio"
#: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/reports/report_links_table.html:6
msgid "Actions"
msgstr "Accións"
#: bookwyrm/templates/book/file_links/edit_links.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:25
msgid "Report spam"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:65
msgid "No links available for this book."
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:76
#: bookwyrm/templates/book/file_links/links.html:18
msgid "Add link to file"
msgstr ""
#: bookwyrm/templates/book/file_links/file_link_page.html:6
msgid "File Links"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:9
msgid "Get a copy"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:41
msgid "No links available"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:5
msgid "Leaving BookWyrm"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:11
#, python-format
msgid "This link is taking you to: <code>%(link_url)s</code>.<br> Is that where you'd like to go?"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:20
msgid "Continue"
msgstr ""
#: bookwyrm/templates/book/publisher_info.html:23 #: bookwyrm/templates/book/publisher_info.html:23
#, python-format #, python-format
msgid "%(format)s, %(pages)s pages" msgid "%(format)s, %(pages)s pages"
@ -1110,8 +1218,8 @@ msgstr "Código de confirmación:"
#: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/confirm_email/confirm_email.html:25
#: bookwyrm/templates/landing/layout.html:73 #: bookwyrm/templates/landing/layout.html:73
#: bookwyrm/templates/settings/dashboard/dashboard.html:93 #: bookwyrm/templates/settings/dashboard/dashboard.html:104
#: bookwyrm/templates/snippets/report_modal.html:37 #: bookwyrm/templates/snippets/report_modal.html:52
msgid "Submit" msgid "Submit"
msgstr "Enviar" msgstr "Enviar"
@ -1858,6 +1966,7 @@ msgid "Review"
msgstr "Revisar" msgstr "Revisar"
#: bookwyrm/templates/import/import_status.html:124 #: bookwyrm/templates/import/import_status.html:124
#: bookwyrm/templates/settings/link_domains/link_table.html:9
msgid "Book" msgid "Book"
msgstr "Libro" msgstr "Libro"
@ -1910,6 +2019,7 @@ msgstr "Ao aceptar unha suxestión engadirá permanentemente o libro suxerido ao
#: bookwyrm/templates/import/manual_review.html:58 #: bookwyrm/templates/import/manual_review.html:58
#: bookwyrm/templates/lists/curate.html:59 #: bookwyrm/templates/lists/curate.html:59
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve" msgid "Approve"
msgstr "Admitir" msgstr "Admitir"
@ -2257,6 +2367,7 @@ msgid "List position"
msgstr "Posición da lista" msgstr "Posición da lista"
#: bookwyrm/templates/lists/list.html:101 #: bookwyrm/templates/lists/list.html:101
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set" msgid "Set"
msgstr "Establecer" msgstr "Establecer"
@ -2788,6 +2899,11 @@ msgstr "Eliminar estas datas da lectura"
msgid "Add read dates for \"<em>%(title)s</em>\"" msgid "Add read dates for \"<em>%(title)s</em>\""
msgstr "Engadir datas de lectura para \"<em>%(title)s</em>\"" msgstr "Engadir datas de lectura para \"<em>%(title)s</em>\""
#: bookwyrm/templates/report.html:5
#: bookwyrm/templates/snippets/report_button.html:13
msgid "Report"
msgstr "Denunciar"
#: bookwyrm/templates/search/book.html:44 #: bookwyrm/templates/search/book.html:44
msgid "Results from" msgid "Results from"
msgstr "Resultados de" msgstr "Resultados de"
@ -2860,13 +2976,13 @@ msgstr "Falso"
#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement.html:46
#: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/announcements/announcement_form.html:44
#: bookwyrm/templates/settings/dashboard/dashboard.html:71 #: bookwyrm/templates/settings/dashboard/dashboard.html:82
msgid "Start date:" msgid "Start date:"
msgstr "Data de inicio:" msgstr "Data de inicio:"
#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement.html:51
#: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/announcements/announcement_form.html:54
#: bookwyrm/templates/settings/dashboard/dashboard.html:77 #: bookwyrm/templates/settings/dashboard/dashboard.html:88
msgid "End date:" msgid "End date:"
msgstr "Data de fin:" msgstr "Data de fin:"
@ -2894,7 +3010,7 @@ msgstr "Data do evento:"
#: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:3
#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/announcements.html:5
#: bookwyrm/templates/settings/layout.html:72 #: bookwyrm/templates/settings/layout.html:76
msgid "Announcements" msgid "Announcements"
msgstr "Anuncios" msgstr "Anuncios"
@ -2934,7 +3050,7 @@ msgid "Dashboard"
msgstr "Taboleiro" msgstr "Taboleiro"
#: bookwyrm/templates/settings/dashboard/dashboard.html:15 #: bookwyrm/templates/settings/dashboard/dashboard.html:15
#: bookwyrm/templates/settings/dashboard/dashboard.html:100 #: bookwyrm/templates/settings/dashboard/dashboard.html:111
msgid "Total users" msgid "Total users"
msgstr "Total de usuarias" msgstr "Total de usuarias"
@ -2961,36 +3077,43 @@ msgstr[1] "%(display_count)s denuncias abertas"
#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:54
#, python-format #, python-format
msgid "%(display_count)s domain needs review"
msgid_plural "%(display_count)s domains need review"
msgstr[0] ""
msgstr[1] ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:65
#, python-format
msgid "%(display_count)s invite request" msgid "%(display_count)s invite request"
msgid_plural "%(display_count)s invite requests" msgid_plural "%(display_count)s invite requests"
msgstr[0] "%(display_count)s solicitude de convite" msgstr[0] "%(display_count)s solicitude de convite"
msgstr[1] "%(display_count)s solicitudes de convite" msgstr[1] "%(display_count)s solicitudes de convite"
#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #: bookwyrm/templates/settings/dashboard/dashboard.html:76
msgid "Instance Activity" msgid "Instance Activity"
msgstr "Actividade na instancia" msgstr "Actividade na instancia"
#: bookwyrm/templates/settings/dashboard/dashboard.html:83 #: bookwyrm/templates/settings/dashboard/dashboard.html:94
msgid "Interval:" msgid "Interval:"
msgstr "Intervalo:" msgstr "Intervalo:"
#: bookwyrm/templates/settings/dashboard/dashboard.html:87 #: bookwyrm/templates/settings/dashboard/dashboard.html:98
msgid "Days" msgid "Days"
msgstr "Días" msgstr "Días"
#: bookwyrm/templates/settings/dashboard/dashboard.html:88 #: bookwyrm/templates/settings/dashboard/dashboard.html:99
msgid "Weeks" msgid "Weeks"
msgstr "Semanas" msgstr "Semanas"
#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/settings/dashboard/dashboard.html:117
msgid "User signup activity" msgid "User signup activity"
msgstr "Rexistros de usuarias" msgstr "Rexistros de usuarias"
#: bookwyrm/templates/settings/dashboard/dashboard.html:112 #: bookwyrm/templates/settings/dashboard/dashboard.html:123
msgid "Status activity" msgid "Status activity"
msgstr "Actividade do estado" msgstr "Actividade do estado"
#: bookwyrm/templates/settings/dashboard/dashboard.html:118 #: bookwyrm/templates/settings/dashboard/dashboard.html:129
msgid "Works created" msgid "Works created"
msgstr "Traballos creados" msgstr "Traballos creados"
@ -3025,10 +3148,6 @@ msgstr "Lista de bloqueo de email"
msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked."
msgstr "Non se creará a conta cando alguén se intente rexistrar usando un email deste dominio. O proceso de rexistro aparentará terse completado." msgstr "Non se creará a conta cando alguén se intente rexistrar usando un email deste dominio. O proceso de rexistro aparentará terse completado."
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
msgid "Domain"
msgstr "Dominio"
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29
#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 #: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27
msgid "Options" msgid "Options"
@ -3140,12 +3259,8 @@ msgstr "Editar"
msgid "<em>No notes</em>" msgid "<em>No notes</em>"
msgstr "<em>Sen notas</em>" msgstr "<em>Sen notas</em>"
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "Actions"
msgstr "Accións"
#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:98
#: bookwyrm/templates/settings/link_domains/link_domains.html:87
#: bookwyrm/templates/snippets/block_button.html:5 #: bookwyrm/templates/snippets/block_button.html:5
msgid "Block" msgid "Block"
msgstr "Bloquear" msgstr "Bloquear"
@ -3358,62 +3473,113 @@ msgstr "Moderación"
msgid "Reports" msgid "Reports"
msgstr "Denuncias" msgstr "Denuncias"
#: bookwyrm/templates/settings/layout.html:68 #: bookwyrm/templates/settings/layout.html:67
#: bookwyrm/templates/settings/link_domains/link_domains.html:5
#: bookwyrm/templates/settings/link_domains/link_domains.html:7
msgid "Link Domains"
msgstr ""
#: bookwyrm/templates/settings/layout.html:72
msgid "Instance Settings" msgid "Instance Settings"
msgstr "Axustes da instancia" msgstr "Axustes da instancia"
#: bookwyrm/templates/settings/layout.html:76 #: bookwyrm/templates/settings/layout.html:80
#: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:4
#: bookwyrm/templates/settings/site.html:6 #: bookwyrm/templates/settings/site.html:6
msgid "Site Settings" msgid "Site Settings"
msgstr "Axustes da web" msgstr "Axustes da web"
#: bookwyrm/templates/settings/reports/report.html:5 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5
#: bookwyrm/templates/settings/reports/report.html:8
#: bookwyrm/templates/settings/reports/report_preview.html:6
#, python-format #, python-format
msgid "Report #%(report_id)s: %(username)s" msgid "Set display name for %(url)s"
msgstr "Denuncia #%(report_id)s: %(username)s" msgstr ""
#: bookwyrm/templates/settings/reports/report.html:9 #: bookwyrm/templates/settings/link_domains/link_domains.html:11
msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving."
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:45
msgid "Set display name"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:53
msgid "View links"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:96
msgid "No domains currently approved"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:98
msgid "No domains currently pending"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:100
msgid "No domains currently blocked"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_table.html:39
msgid "No links available for this domain."
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:11
msgid "Back to reports" msgid "Back to reports"
msgstr "Volver a denuncias" msgstr "Volver a denuncias"
#: bookwyrm/templates/settings/reports/report.html:23 #: bookwyrm/templates/settings/reports/report.html:22
msgid "Reported statuses"
msgstr "Estados dununciados"
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Status has been deleted"
msgstr "O estado foi eliminado"
#: bookwyrm/templates/settings/reports/report.html:39
msgid "Reported links"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:55
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Comentarios da moderación" msgstr "Comentarios da moderación"
#: bookwyrm/templates/settings/reports/report.html:41 #: bookwyrm/templates/settings/reports/report.html:73
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Comentario" msgstr "Comentario"
#: bookwyrm/templates/settings/reports/report.html:46 #: bookwyrm/templates/settings/reports/report_header.html:6
msgid "Reported statuses" #, python-format
msgstr "Estados dununciados" msgid "Report #%(report_id)s: Status posted by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:48 #: bookwyrm/templates/settings/reports/report_header.html:12
msgid "No statuses reported" #, python-format
msgstr "Sen denuncias sobre estados" msgid "Report #%(report_id)s: Link added by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:54 #: bookwyrm/templates/settings/reports/report_header.html:18
msgid "Status has been deleted" #, python-format
msgstr "O estado foi eliminado" msgid "Report #%(report_id)s: User @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:13 #: bookwyrm/templates/settings/reports/report_links_table.html:17
msgid "Block domain"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:17
msgid "No notes provided" msgid "No notes provided"
msgstr "Non hai notas" msgstr "Non hai notas"
#: bookwyrm/templates/settings/reports/report_preview.html:20 #: bookwyrm/templates/settings/reports/report_preview.html:24
#, python-format #, python-format
msgid "Reported by <a href=\"%(path)s\">%(username)s</a>" msgid "Reported by <a href=\"%(path)s\">@%(username)s</a>"
msgstr "Denunciado por <a href=\"%(path)s\">%(username)s</a>" msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:30 #: bookwyrm/templates/settings/reports/report_preview.html:34
msgid "Re-open" msgid "Re-open"
msgstr "Volver a abrir" msgstr "Volver a abrir"
#: bookwyrm/templates/settings/reports/report_preview.html:32 #: bookwyrm/templates/settings/reports/report_preview.html:36
msgid "Resolve" msgid "Resolve"
msgstr "Resolver" msgstr "Resolver"
@ -3541,7 +3707,7 @@ msgid "Invite request text:"
msgstr "Texto para a solicitude do convite:" msgstr "Texto para a solicitude do convite:"
#: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/delete_user_form.html:5
#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32
msgid "Permanently delete user" msgid "Permanently delete user"
msgstr "Eliminar definitivamente a usuaria" msgstr "Eliminar definitivamente a usuaria"
@ -3651,15 +3817,19 @@ msgstr "Ver instancia"
msgid "Permanently deleted" msgid "Permanently deleted"
msgstr "Eliminada definitivamente" msgstr "Eliminada definitivamente"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 #: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "User Actions"
msgstr ""
#: bookwyrm/templates/settings/users/user_moderation_actions.html:21
msgid "Suspend user" msgid "Suspend user"
msgstr "Usuaria suspendida" msgstr "Usuaria suspendida"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 #: bookwyrm/templates/settings/users/user_moderation_actions.html:26
msgid "Un-suspend user" msgid "Un-suspend user"
msgstr "Usuaria reactivada" msgstr "Usuaria reactivada"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 #: bookwyrm/templates/settings/users/user_moderation_actions.html:48
msgid "Access level:" msgid "Access level:"
msgstr "Nivel de acceso:" msgstr "Nivel de acceso:"
@ -4063,21 +4233,31 @@ msgstr "Quero ler \"<em>%(book_title)s</em>\""
msgid "Sign Up" msgid "Sign Up"
msgstr "Inscribirse" msgstr "Inscribirse"
#: bookwyrm/templates/snippets/report_button.html:13 #: bookwyrm/templates/snippets/report_modal.html:8
msgid "Report" #, python-format
msgstr "Denunciar" msgid "Report @%(username)s's status"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:6 #: bookwyrm/templates/snippets/report_modal.html:10
#, python-format
msgid "Report %(domain)s link"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:12
#, python-format #, python-format
msgid "Report @%(username)s" msgid "Report @%(username)s"
msgstr "Denunciar a @%(username)s" msgstr "Denunciar a @%(username)s"
#: bookwyrm/templates/snippets/report_modal.html:23 #: bookwyrm/templates/snippets/report_modal.html:34
#, python-format #, python-format
msgid "This report will be sent to %(site_name)s's moderators for review." msgid "This report will be sent to %(site_name)s's moderators for review."
msgstr "Esta denuncia vaise enviar á moderación en %(site_name)s para o seu análise." msgstr "Esta denuncia vaise enviar á moderación en %(site_name)s para o seu análise."
#: bookwyrm/templates/snippets/report_modal.html:26 #: bookwyrm/templates/snippets/report_modal.html:36
msgid "Links from this domain will be removed until your report has been reviewed."
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:41
msgid "More info about this report:" msgid "More info about this report:"
msgstr "Máis info acerca desta denuncia:" msgstr "Máis info acerca desta denuncia:"

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: 2022-01-13 16:54+0000\n" "POT-Creation-Date: 2022-01-17 16:05+0000\n"
"PO-Revision-Date: 2022-01-16 19:12\n" "PO-Revision-Date: 2022-01-17 17:10\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Italian\n" "Language-Team: Italian\n"
"Language: it\n" "Language: it\n"
@ -17,62 +17,62 @@ msgstr ""
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" "X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
"X-Crowdin-File-ID: 1553\n" "X-Crowdin-File-ID: 1553\n"
#: bookwyrm/forms.py:351 #: bookwyrm/forms.py:365
msgid "A user with this email already exists." msgid "A user with this email already exists."
msgstr "Esiste già un'utenza con questo indirizzo email." msgstr "Esiste già un'utenza con questo indirizzo email."
#: bookwyrm/forms.py:365 #: bookwyrm/forms.py:379
msgid "One Day" msgid "One Day"
msgstr "Un giorno" msgstr "Un giorno"
#: bookwyrm/forms.py:366 #: bookwyrm/forms.py:380
msgid "One Week" msgid "One Week"
msgstr "Una settimana" msgstr "Una settimana"
#: bookwyrm/forms.py:367 #: bookwyrm/forms.py:381
msgid "One Month" msgid "One Month"
msgstr "Un mese" msgstr "Un mese"
#: bookwyrm/forms.py:368 #: bookwyrm/forms.py:382
msgid "Does Not Expire" msgid "Does Not Expire"
msgstr "Non scade" msgstr "Non scade"
#: bookwyrm/forms.py:372 #: bookwyrm/forms.py:386
#, python-brace-format #, python-brace-format
msgid "{i} uses" msgid "{i} uses"
msgstr "{i} usi" msgstr "{i} usi"
#: bookwyrm/forms.py:373 #: bookwyrm/forms.py:387
msgid "Unlimited" msgid "Unlimited"
msgstr "Illimitato" msgstr "Illimitato"
#: bookwyrm/forms.py:469 #: bookwyrm/forms.py:483
msgid "List Order" msgid "List Order"
msgstr "Ordina Lista" msgstr "Ordina Lista"
#: bookwyrm/forms.py:470 #: bookwyrm/forms.py:484
msgid "Book Title" msgid "Book Title"
msgstr "Titolo del libro" msgstr "Titolo del libro"
#: bookwyrm/forms.py:471 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:33 #: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating" msgid "Rating"
msgstr "Valutazione" msgstr "Valutazione"
#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:134 #: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:134
msgid "Sort By" msgid "Sort By"
msgstr "Ordina per" msgstr "Ordina per"
#: bookwyrm/forms.py:477 #: bookwyrm/forms.py:491
msgid "Ascending" msgid "Ascending"
msgstr "Crescente" msgstr "Crescente"
#: bookwyrm/forms.py:478 #: bookwyrm/forms.py:492
msgid "Descending" msgid "Descending"
msgstr "Decrescente" msgstr "Decrescente"
#: bookwyrm/forms.py:491 #: bookwyrm/forms.py:505
msgid "Reading finish date cannot be before start date." msgid "Reading finish date cannot be before start date."
msgstr "La data di fine lettura non può essere precedente alla data di inizio." msgstr "La data di fine lettura non può essere precedente alla data di inizio."
@ -84,8 +84,9 @@ msgstr "Errore nel caricamento del libro"
msgid "Could not find a match for book" msgid "Could not find a match for book"
msgstr "Impossibile trovare una corrispondenza per il libro" msgstr "Impossibile trovare una corrispondenza per il libro"
#: bookwyrm/models/base_model.py:17 #: bookwyrm/models/base_model.py:17 bookwyrm/models/link.py:62
#: bookwyrm/templates/import/import_status.html:200 #: bookwyrm/templates/import/import_status.html:200
#: bookwyrm/templates/settings/link_domains/link_domains.html:19
msgid "Pending" msgid "Pending"
msgstr "In attesa" msgstr "In attesa"
@ -105,23 +106,23 @@ msgstr "Cancellazione del moderatore"
msgid "Domain block" msgid "Domain block"
msgstr "Blocco del dominio" msgstr "Blocco del dominio"
#: bookwyrm/models/book.py:250 #: bookwyrm/models/book.py:253
msgid "Audiobook" msgid "Audiobook"
msgstr "Audiolibro" msgstr "Audiolibro"
#: bookwyrm/models/book.py:251 #: bookwyrm/models/book.py:254
msgid "eBook" msgid "eBook"
msgstr "eBook" msgstr "eBook"
#: bookwyrm/models/book.py:252 #: bookwyrm/models/book.py:255
msgid "Graphic novel" msgid "Graphic novel"
msgstr "Graphic novel" msgstr "Graphic novel"
#: bookwyrm/models/book.py:253 #: bookwyrm/models/book.py:256
msgid "Hardcover" msgid "Hardcover"
msgstr "Copertina rigida" msgstr "Copertina rigida"
#: bookwyrm/models/book.py:254 #: bookwyrm/models/book.py:257
msgid "Paperback" msgid "Paperback"
msgstr "Brossura" msgstr "Brossura"
@ -131,10 +132,11 @@ msgstr "Brossura"
msgid "Federated" msgid "Federated"
msgstr "Federato" msgstr "Federato"
#: bookwyrm/models/federated_server.py:12 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:61
#: bookwyrm/templates/settings/federation/edit_instance.html:44 #: bookwyrm/templates/settings/federation/edit_instance.html:44
#: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance.html:10
#: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/federation/instance_list.html:23
#: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Bloccato" msgstr "Bloccato"
@ -189,6 +191,11 @@ msgstr "Followers"
msgid "Private" msgid "Private"
msgstr "Privata" msgstr "Privata"
#: bookwyrm/models/link.py:60
#: bookwyrm/templates/settings/link_domains/link_domains.html:23
msgid "Approved"
msgstr ""
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272 #: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
msgid "Reviews" msgid "Reviews"
msgstr "Recensioni" msgstr "Recensioni"
@ -348,7 +355,7 @@ msgid "Admin"
msgstr "Admin" msgstr "Admin"
#: bookwyrm/templates/about/about.html:130 #: bookwyrm/templates/about/about.html:130
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 #: bookwyrm/templates/settings/users/user_moderation_actions.html:14
#: bookwyrm/templates/snippets/status/status_options.html:35 #: bookwyrm/templates/snippets/status/status_options.html:35
#: bookwyrm/templates/snippets/user_options.html:13 #: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message" msgid "Send direct message"
@ -530,61 +537,61 @@ msgstr "Tutti i libri %(display_name)s letti nel %(year)s"
msgid "Edit Author" msgid "Edit Author"
msgstr "Modifica autore" msgstr "Modifica autore"
#: bookwyrm/templates/author/author.html:40 #: bookwyrm/templates/author/author.html:35
msgid "Author details" msgid "Author details"
msgstr "Dettagli autore" msgstr "Dettagli autore"
#: bookwyrm/templates/author/author.html:44 #: bookwyrm/templates/author/author.html:39
#: bookwyrm/templates/author/edit_author.html:42 #: bookwyrm/templates/author/edit_author.html:42
msgid "Aliases:" msgid "Aliases:"
msgstr "Alias:" msgstr "Alias:"
#: bookwyrm/templates/author/author.html:53 #: bookwyrm/templates/author/author.html:48
msgid "Born:" msgid "Born:"
msgstr "Nascita:" msgstr "Nascita:"
#: bookwyrm/templates/author/author.html:60 #: bookwyrm/templates/author/author.html:55
msgid "Died:" msgid "Died:"
msgstr "Morte:" msgstr "Morte:"
#: bookwyrm/templates/author/author.html:70 #: bookwyrm/templates/author/author.html:65
msgid "External links" msgid "External links"
msgstr "Collegamenti esterni" msgstr "Collegamenti esterni"
#: bookwyrm/templates/author/author.html:75 #: bookwyrm/templates/author/author.html:70
msgid "Wikipedia" msgid "Wikipedia"
msgstr "Wikipedia" msgstr "Wikipedia"
#: bookwyrm/templates/author/author.html:83 #: bookwyrm/templates/author/author.html:78
msgid "View ISNI record" msgid "View ISNI record"
msgstr "Visualizza record ISNI" msgstr "Visualizza record ISNI"
#: bookwyrm/templates/author/author.html:88 #: bookwyrm/templates/author/author.html:83
#: bookwyrm/templates/author/sync_modal.html:5 #: bookwyrm/templates/author/sync_modal.html:5
#: bookwyrm/templates/book/book.html:122 #: bookwyrm/templates/book/book.html:122
#: bookwyrm/templates/book/sync_modal.html:5 #: bookwyrm/templates/book/sync_modal.html:5
msgid "Load data" msgid "Load data"
msgstr "Carica dati" msgstr "Carica dati"
#: bookwyrm/templates/author/author.html:92 #: bookwyrm/templates/author/author.html:87
#: bookwyrm/templates/book/book.html:126 #: bookwyrm/templates/book/book.html:126
msgid "View on OpenLibrary" msgid "View on OpenLibrary"
msgstr "Visualizza su OpenLibrary" msgstr "Visualizza su OpenLibrary"
#: bookwyrm/templates/author/author.html:107 #: bookwyrm/templates/author/author.html:102
#: bookwyrm/templates/book/book.html:140 #: bookwyrm/templates/book/book.html:140
msgid "View on Inventaire" msgid "View on Inventaire"
msgstr "Visualizza su Inventaire" msgstr "Visualizza su Inventaire"
#: bookwyrm/templates/author/author.html:123 #: bookwyrm/templates/author/author.html:118
msgid "View on LibraryThing" msgid "View on LibraryThing"
msgstr "Visualizza su LibraryThing" msgstr "Visualizza su LibraryThing"
#: bookwyrm/templates/author/author.html:131 #: bookwyrm/templates/author/author.html:126
msgid "View on Goodreads" msgid "View on Goodreads"
msgstr "Visualizza su Goodreads" msgstr "Visualizza su Goodreads"
#: bookwyrm/templates/author/author.html:145 #: bookwyrm/templates/author/author.html:141
#, python-format #, python-format
msgid "Books by %(name)s" msgid "Books by %(name)s"
msgstr "Libri di %(name)s" msgstr "Libri di %(name)s"
@ -614,7 +621,9 @@ msgid "Metadata"
msgstr "Metadati" msgstr "Metadati"
#: bookwyrm/templates/author/edit_author.html:35 #: bookwyrm/templates/author/edit_author.html:35
#: bookwyrm/templates/lists/form.html:9 bookwyrm/templates/shelf/form.html:9 #: bookwyrm/templates/lists/form.html:9
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14
#: bookwyrm/templates/shelf/form.html:9
msgid "Name:" msgid "Name:"
msgstr "Nome:" msgstr "Nome:"
@ -668,6 +677,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/author/edit_author.html:115
#: bookwyrm/templates/book/book.html:193 #: bookwyrm/templates/book/book.html:193
#: bookwyrm/templates/book/edit/edit_book.html:121 #: bookwyrm/templates/book/edit/edit_book.html:121
#: bookwyrm/templates/book/file_links/add_link_modal.html:50
#: bookwyrm/templates/groups/form.html:30 #: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/bookmark_button.html:15
#: bookwyrm/templates/lists/form.html:130 #: bookwyrm/templates/lists/form.html:130
@ -677,7 +687,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/settings/federation/edit_instance.html:82 #: bookwyrm/templates/settings/federation/edit_instance.html:82
#: bookwyrm/templates/settings/federation/instance.html:87 #: bookwyrm/templates/settings/federation/instance.html:87
#: bookwyrm/templates/settings/site.html:133 #: bookwyrm/templates/settings/site.html:133
#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69
#: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/shelf/form.html:25
#: bookwyrm/templates/snippets/reading_modals/layout.html:18 #: bookwyrm/templates/snippets/reading_modals/layout.html:18
msgid "Save" msgid "Save"
@ -689,13 +699,16 @@ msgstr "Salva"
#: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/book/cover_add_modal.html:32
#: bookwyrm/templates/book/edit/edit_book.html:123 #: bookwyrm/templates/book/edit/edit_book.html:123
#: bookwyrm/templates/book/edit/edit_book.html:126 #: bookwyrm/templates/book/edit/edit_book.html:126
#: bookwyrm/templates/book/file_links/add_link_modal.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17 #: bookwyrm/templates/groups/delete_group_modal.html:17
#: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74 #: bookwyrm/templates/readthrough/readthrough_modal.html:74
#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/settings/federation/instance.html:88
#: bookwyrm/templates/snippets/report_modal.html:38 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
#: bookwyrm/templates/snippets/report_modal.html:54
msgid "Cancel" msgid "Cancel"
msgstr "Cancella" msgstr "Cancella"
@ -1040,6 +1053,101 @@ msgstr "Lingua:"
msgid "Search editions" msgid "Search editions"
msgstr "Ricerca edizioni" msgstr "Ricerca edizioni"
#: bookwyrm/templates/book/file_links/add_link_modal.html:6
msgid "Add file link"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:19
msgid "Links from unknown domains will need to be approved by a moderator before they are added."
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:24
msgid "URL:"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:29
msgid "File type:"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:5
#: bookwyrm/templates/book/file_links/edit_links.html:22
#: bookwyrm/templates/book/file_links/links.html:47
msgid "Edit links"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:11
#, python-format
msgid "\n"
" Links for \"<em>%(title)s</em>\"\n"
" "
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:32
#: bookwyrm/templates/settings/link_domains/link_table.html:6
msgid "URL"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:33
#: bookwyrm/templates/settings/link_domains/link_table.html:7
msgid "Added by"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:34
#: bookwyrm/templates/settings/link_domains/link_table.html:8
msgid "Filetype"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:35
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
#: bookwyrm/templates/settings/reports/report_links_table.html:5
msgid "Domain"
msgstr "Dominio"
#: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/reports/report_links_table.html:6
msgid "Actions"
msgstr "Azioni"
#: bookwyrm/templates/book/file_links/edit_links.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:25
msgid "Report spam"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:65
msgid "No links available for this book."
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:76
#: bookwyrm/templates/book/file_links/links.html:18
msgid "Add link to file"
msgstr ""
#: bookwyrm/templates/book/file_links/file_link_page.html:6
msgid "File Links"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:9
msgid "Get a copy"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:41
msgid "No links available"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:5
msgid "Leaving BookWyrm"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:11
#, python-format
msgid "This link is taking you to: <code>%(link_url)s</code>.<br> Is that where you'd like to go?"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:20
msgid "Continue"
msgstr ""
#: bookwyrm/templates/book/publisher_info.html:23 #: bookwyrm/templates/book/publisher_info.html:23
#, python-format #, python-format
msgid "%(format)s, %(pages)s pages" msgid "%(format)s, %(pages)s pages"
@ -1110,8 +1218,8 @@ msgstr "Codice di conferma:"
#: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/confirm_email/confirm_email.html:25
#: bookwyrm/templates/landing/layout.html:73 #: bookwyrm/templates/landing/layout.html:73
#: bookwyrm/templates/settings/dashboard/dashboard.html:93 #: bookwyrm/templates/settings/dashboard/dashboard.html:104
#: bookwyrm/templates/snippets/report_modal.html:37 #: bookwyrm/templates/snippets/report_modal.html:52
msgid "Submit" msgid "Submit"
msgstr "Invia" msgstr "Invia"
@ -1858,6 +1966,7 @@ msgid "Review"
msgstr "Recensione" msgstr "Recensione"
#: bookwyrm/templates/import/import_status.html:124 #: bookwyrm/templates/import/import_status.html:124
#: bookwyrm/templates/settings/link_domains/link_table.html:9
msgid "Book" msgid "Book"
msgstr "Libro" msgstr "Libro"
@ -1910,6 +2019,7 @@ msgstr "Approvare un suggerimento aggiungerà in modo permanente il libro sugger
#: bookwyrm/templates/import/manual_review.html:58 #: bookwyrm/templates/import/manual_review.html:58
#: bookwyrm/templates/lists/curate.html:59 #: bookwyrm/templates/lists/curate.html:59
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve" msgid "Approve"
msgstr "Approvato" msgstr "Approvato"
@ -2257,6 +2367,7 @@ msgid "List position"
msgstr "Posizione elenco" msgstr "Posizione elenco"
#: bookwyrm/templates/lists/list.html:101 #: bookwyrm/templates/lists/list.html:101
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set" msgid "Set"
msgstr "Imposta" msgstr "Imposta"
@ -2788,6 +2899,11 @@ msgstr "Elimina queste date di lettura"
msgid "Add read dates for \"<em>%(title)s</em>\"" msgid "Add read dates for \"<em>%(title)s</em>\""
msgstr "Aggiungi date di lettura per \"<em>%(title)s</em>\"" msgstr "Aggiungi date di lettura per \"<em>%(title)s</em>\""
#: bookwyrm/templates/report.html:5
#: bookwyrm/templates/snippets/report_button.html:13
msgid "Report"
msgstr "Report"
#: bookwyrm/templates/search/book.html:44 #: bookwyrm/templates/search/book.html:44
msgid "Results from" msgid "Results from"
msgstr "Risultati da" msgstr "Risultati da"
@ -2860,13 +2976,13 @@ msgstr "Falso"
#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement.html:46
#: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/announcements/announcement_form.html:44
#: bookwyrm/templates/settings/dashboard/dashboard.html:71 #: bookwyrm/templates/settings/dashboard/dashboard.html:82
msgid "Start date:" msgid "Start date:"
msgstr "Data d'inizio:" msgstr "Data d'inizio:"
#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement.html:51
#: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/announcements/announcement_form.html:54
#: bookwyrm/templates/settings/dashboard/dashboard.html:77 #: bookwyrm/templates/settings/dashboard/dashboard.html:88
msgid "End date:" msgid "End date:"
msgstr "Data di fine:" msgstr "Data di fine:"
@ -2894,7 +3010,7 @@ msgstr "Data evento:"
#: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:3
#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/announcements.html:5
#: bookwyrm/templates/settings/layout.html:72 #: bookwyrm/templates/settings/layout.html:76
msgid "Announcements" msgid "Announcements"
msgstr "Annunci" msgstr "Annunci"
@ -2934,7 +3050,7 @@ msgid "Dashboard"
msgstr "Dashboard" msgstr "Dashboard"
#: bookwyrm/templates/settings/dashboard/dashboard.html:15 #: bookwyrm/templates/settings/dashboard/dashboard.html:15
#: bookwyrm/templates/settings/dashboard/dashboard.html:100 #: bookwyrm/templates/settings/dashboard/dashboard.html:111
msgid "Total users" msgid "Total users"
msgstr "Totale utenti" msgstr "Totale utenti"
@ -2961,36 +3077,43 @@ msgstr[1] "%(display_count)s reports aperti"
#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:54
#, python-format #, python-format
msgid "%(display_count)s domain needs review"
msgid_plural "%(display_count)s domains need review"
msgstr[0] ""
msgstr[1] ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:65
#, python-format
msgid "%(display_count)s invite request" msgid "%(display_count)s invite request"
msgid_plural "%(display_count)s invite requests" msgid_plural "%(display_count)s invite requests"
msgstr[0] "%(display_count)s richiesta d'invito" msgstr[0] "%(display_count)s richiesta d'invito"
msgstr[1] "%(display_count)s richieste d'invito" msgstr[1] "%(display_count)s richieste d'invito"
#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #: bookwyrm/templates/settings/dashboard/dashboard.html:76
msgid "Instance Activity" msgid "Instance Activity"
msgstr "Attività di Istanza" msgstr "Attività di Istanza"
#: bookwyrm/templates/settings/dashboard/dashboard.html:83 #: bookwyrm/templates/settings/dashboard/dashboard.html:94
msgid "Interval:" msgid "Interval:"
msgstr "Intervallo:" msgstr "Intervallo:"
#: bookwyrm/templates/settings/dashboard/dashboard.html:87 #: bookwyrm/templates/settings/dashboard/dashboard.html:98
msgid "Days" msgid "Days"
msgstr "Giorni" msgstr "Giorni"
#: bookwyrm/templates/settings/dashboard/dashboard.html:88 #: bookwyrm/templates/settings/dashboard/dashboard.html:99
msgid "Weeks" msgid "Weeks"
msgstr "Settimane" msgstr "Settimane"
#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/settings/dashboard/dashboard.html:117
msgid "User signup activity" msgid "User signup activity"
msgstr "Attività di registrazione dell'utente" msgstr "Attività di registrazione dell'utente"
#: bookwyrm/templates/settings/dashboard/dashboard.html:112 #: bookwyrm/templates/settings/dashboard/dashboard.html:123
msgid "Status activity" msgid "Status activity"
msgstr "Attività di stato" msgstr "Attività di stato"
#: bookwyrm/templates/settings/dashboard/dashboard.html:118 #: bookwyrm/templates/settings/dashboard/dashboard.html:129
msgid "Works created" msgid "Works created"
msgstr "Opere create" msgstr "Opere create"
@ -3025,10 +3148,6 @@ msgstr "Lista email bloccate"
msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked."
msgstr "Quando qualcuno tenta di registrarsi con un'email da questo dominio, non verrà creato alcun account. Il processo di registrazione apparirà aver funzionato." msgstr "Quando qualcuno tenta di registrarsi con un'email da questo dominio, non verrà creato alcun account. Il processo di registrazione apparirà aver funzionato."
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
msgid "Domain"
msgstr "Dominio"
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29
#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 #: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27
msgid "Options" msgid "Options"
@ -3140,12 +3259,8 @@ msgstr "Modifica"
msgid "<em>No notes</em>" msgid "<em>No notes</em>"
msgstr "<em>Nessuna nota</em>" msgstr "<em>Nessuna nota</em>"
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "Actions"
msgstr "Azioni"
#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:98
#: bookwyrm/templates/settings/link_domains/link_domains.html:87
#: bookwyrm/templates/snippets/block_button.html:5 #: bookwyrm/templates/snippets/block_button.html:5
msgid "Block" msgid "Block"
msgstr "Blocca" msgstr "Blocca"
@ -3358,62 +3473,113 @@ msgstr "Moderazione"
msgid "Reports" msgid "Reports"
msgstr "Reports" msgstr "Reports"
#: bookwyrm/templates/settings/layout.html:68 #: bookwyrm/templates/settings/layout.html:67
#: bookwyrm/templates/settings/link_domains/link_domains.html:5
#: bookwyrm/templates/settings/link_domains/link_domains.html:7
msgid "Link Domains"
msgstr ""
#: bookwyrm/templates/settings/layout.html:72
msgid "Instance Settings" msgid "Instance Settings"
msgstr "Impostazioni dell'istanza" msgstr "Impostazioni dell'istanza"
#: bookwyrm/templates/settings/layout.html:76 #: bookwyrm/templates/settings/layout.html:80
#: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:4
#: bookwyrm/templates/settings/site.html:6 #: bookwyrm/templates/settings/site.html:6
msgid "Site Settings" msgid "Site Settings"
msgstr "Impostazioni Sito" msgstr "Impostazioni Sito"
#: bookwyrm/templates/settings/reports/report.html:5 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5
#: bookwyrm/templates/settings/reports/report.html:8
#: bookwyrm/templates/settings/reports/report_preview.html:6
#, python-format #, python-format
msgid "Report #%(report_id)s: %(username)s" msgid "Set display name for %(url)s"
msgstr "Report #%(report_id)s: %(username)s" msgstr ""
#: bookwyrm/templates/settings/reports/report.html:9 #: bookwyrm/templates/settings/link_domains/link_domains.html:11
msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving."
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:45
msgid "Set display name"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:53
msgid "View links"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:96
msgid "No domains currently approved"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:98
msgid "No domains currently pending"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:100
msgid "No domains currently blocked"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_table.html:39
msgid "No links available for this domain."
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:11
msgid "Back to reports" msgid "Back to reports"
msgstr "Tornare all'elenco dei report" msgstr "Tornare all'elenco dei report"
#: bookwyrm/templates/settings/reports/report.html:23 #: bookwyrm/templates/settings/reports/report.html:22
msgid "Reported statuses"
msgstr "Stati segnalati"
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Status has been deleted"
msgstr "Lo stato è stato eliminato"
#: bookwyrm/templates/settings/reports/report.html:39
msgid "Reported links"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:55
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Commenti del moderatore" msgstr "Commenti del moderatore"
#: bookwyrm/templates/settings/reports/report.html:41 #: bookwyrm/templates/settings/reports/report.html:73
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Commenta" msgstr "Commenta"
#: bookwyrm/templates/settings/reports/report.html:46 #: bookwyrm/templates/settings/reports/report_header.html:6
msgid "Reported statuses" #, python-format
msgstr "Stati segnalati" msgid "Report #%(report_id)s: Status posted by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:48 #: bookwyrm/templates/settings/reports/report_header.html:12
msgid "No statuses reported" #, python-format
msgstr "Nessuno stato segnalato" msgid "Report #%(report_id)s: Link added by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:54 #: bookwyrm/templates/settings/reports/report_header.html:18
msgid "Status has been deleted" #, python-format
msgstr "Lo stato è stato eliminato" msgid "Report #%(report_id)s: User @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:13 #: bookwyrm/templates/settings/reports/report_links_table.html:17
msgid "Block domain"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:17
msgid "No notes provided" msgid "No notes provided"
msgstr "Nessuna nota disponibile" msgstr "Nessuna nota disponibile"
#: bookwyrm/templates/settings/reports/report_preview.html:20 #: bookwyrm/templates/settings/reports/report_preview.html:24
#, python-format #, python-format
msgid "Reported by <a href=\"%(path)s\">%(username)s</a>" msgid "Reported by <a href=\"%(path)s\">@%(username)s</a>"
msgstr "Segnalato da <a href=\"%(path)s\">%(username)s</a>" msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:30 #: bookwyrm/templates/settings/reports/report_preview.html:34
msgid "Re-open" msgid "Re-open"
msgstr "Riapri" msgstr "Riapri"
#: bookwyrm/templates/settings/reports/report_preview.html:32 #: bookwyrm/templates/settings/reports/report_preview.html:36
msgid "Resolve" msgid "Resolve"
msgstr "Risolvi" msgstr "Risolvi"
@ -3541,7 +3707,7 @@ msgid "Invite request text:"
msgstr "Testo della richiesta di invito:" msgstr "Testo della richiesta di invito:"
#: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/delete_user_form.html:5
#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32
msgid "Permanently delete user" msgid "Permanently delete user"
msgstr "Elimina definitivamente utente" msgstr "Elimina definitivamente utente"
@ -3651,15 +3817,19 @@ msgstr "Visualizza istanza"
msgid "Permanently deleted" msgid "Permanently deleted"
msgstr "Elimina definitivamente" msgstr "Elimina definitivamente"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 #: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "User Actions"
msgstr ""
#: bookwyrm/templates/settings/users/user_moderation_actions.html:21
msgid "Suspend user" msgid "Suspend user"
msgstr "Sospendere utente" msgstr "Sospendere utente"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 #: bookwyrm/templates/settings/users/user_moderation_actions.html:26
msgid "Un-suspend user" msgid "Un-suspend user"
msgstr "Annulla sospensione utente" msgstr "Annulla sospensione utente"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 #: bookwyrm/templates/settings/users/user_moderation_actions.html:48
msgid "Access level:" msgid "Access level:"
msgstr "Livello di accesso:" msgstr "Livello di accesso:"
@ -4063,21 +4233,31 @@ msgstr "Vuoi leggere \"<em>%(book_title)s</em> \""
msgid "Sign Up" msgid "Sign Up"
msgstr "Iscriviti" msgstr "Iscriviti"
#: bookwyrm/templates/snippets/report_button.html:13 #: bookwyrm/templates/snippets/report_modal.html:8
msgid "Report" #, python-format
msgstr "Report" msgid "Report @%(username)s's status"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:6 #: bookwyrm/templates/snippets/report_modal.html:10
#, python-format
msgid "Report %(domain)s link"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:12
#, python-format #, python-format
msgid "Report @%(username)s" msgid "Report @%(username)s"
msgstr "Report%(username)s" msgstr "Report%(username)s"
#: bookwyrm/templates/snippets/report_modal.html:23 #: bookwyrm/templates/snippets/report_modal.html:34
#, python-format #, python-format
msgid "This report will be sent to %(site_name)s's moderators for review." msgid "This report will be sent to %(site_name)s's moderators for review."
msgstr "Questo report verrà inviato ai moderatori di %(site_name)s per la revisione." msgstr "Questo report verrà inviato ai moderatori di %(site_name)s per la revisione."
#: bookwyrm/templates/snippets/report_modal.html:26 #: bookwyrm/templates/snippets/report_modal.html:36
msgid "Links from this domain will be removed until your report has been reviewed."
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:41
msgid "More info about this report:" msgid "More info about this report:"
msgstr "Maggiori informazioni su questo report:" msgstr "Maggiori informazioni su questo report:"

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: 2022-01-13 16:54+0000\n" "POT-Creation-Date: 2022-01-17 16:05+0000\n"
"PO-Revision-Date: 2022-01-14 00:49\n" "PO-Revision-Date: 2022-01-17 17:10\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"
@ -17,62 +17,62 @@ msgstr ""
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" "X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
"X-Crowdin-File-ID: 1553\n" "X-Crowdin-File-ID: 1553\n"
#: bookwyrm/forms.py:351 #: bookwyrm/forms.py:365
msgid "A user with this email already exists." msgid "A user with this email already exists."
msgstr "Vartotojas su šiuo el. pašto adresu jau yra." msgstr "Vartotojas su šiuo el. pašto adresu jau yra."
#: bookwyrm/forms.py:365 #: bookwyrm/forms.py:379
msgid "One Day" msgid "One Day"
msgstr "Diena" msgstr "Diena"
#: bookwyrm/forms.py:366 #: bookwyrm/forms.py:380
msgid "One Week" msgid "One Week"
msgstr "Savaitė" msgstr "Savaitė"
#: bookwyrm/forms.py:367 #: bookwyrm/forms.py:381
msgid "One Month" msgid "One Month"
msgstr "Mėnuo" msgstr "Mėnuo"
#: bookwyrm/forms.py:368 #: bookwyrm/forms.py:382
msgid "Does Not Expire" msgid "Does Not Expire"
msgstr "Galiojimas nesibaigia" msgstr "Galiojimas nesibaigia"
#: bookwyrm/forms.py:372 #: bookwyrm/forms.py:386
#, python-brace-format #, python-brace-format
msgid "{i} uses" msgid "{i} uses"
msgstr "{i} naudoja" msgstr "{i} naudoja"
#: bookwyrm/forms.py:373 #: bookwyrm/forms.py:387
msgid "Unlimited" msgid "Unlimited"
msgstr "Neribota" msgstr "Neribota"
#: bookwyrm/forms.py:469 #: bookwyrm/forms.py:483
msgid "List Order" msgid "List Order"
msgstr "Kaip pridėta į sąrašą" msgstr "Kaip pridėta į sąrašą"
#: bookwyrm/forms.py:470 #: bookwyrm/forms.py:484
msgid "Book Title" msgid "Book Title"
msgstr "Knygos antraštė" msgstr "Knygos antraštė"
#: bookwyrm/forms.py:471 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:33 #: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating" msgid "Rating"
msgstr "Įvertinimas" msgstr "Įvertinimas"
#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:134 #: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:134
msgid "Sort By" msgid "Sort By"
msgstr "Rūšiuoti pagal" msgstr "Rūšiuoti pagal"
#: bookwyrm/forms.py:477 #: bookwyrm/forms.py:491
msgid "Ascending" msgid "Ascending"
msgstr "Didėjančia tvarka" msgstr "Didėjančia tvarka"
#: bookwyrm/forms.py:478 #: bookwyrm/forms.py:492
msgid "Descending" msgid "Descending"
msgstr "Mažėjančia tvarka" msgstr "Mažėjančia tvarka"
#: bookwyrm/forms.py:491 #: bookwyrm/forms.py:505
msgid "Reading finish date cannot be before start date." msgid "Reading finish date cannot be before start date."
msgstr "" msgstr ""
@ -84,8 +84,9 @@ msgstr "Klaida įkeliant knygą"
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/models/link.py:62
#: bookwyrm/templates/import/import_status.html:200 #: bookwyrm/templates/import/import_status.html:200
#: bookwyrm/templates/settings/link_domains/link_domains.html:19
msgid "Pending" msgid "Pending"
msgstr "Laukiama" msgstr "Laukiama"
@ -105,23 +106,23 @@ msgstr "Moderatorius ištrynė"
msgid "Domain block" msgid "Domain block"
msgstr "Blokuoti pagal domeną" msgstr "Blokuoti pagal domeną"
#: bookwyrm/models/book.py:250 #: bookwyrm/models/book.py:253
msgid "Audiobook" msgid "Audiobook"
msgstr "Audioknyga" msgstr "Audioknyga"
#: bookwyrm/models/book.py:251 #: bookwyrm/models/book.py:254
msgid "eBook" msgid "eBook"
msgstr "Elektroninė knyga" msgstr "Elektroninė knyga"
#: bookwyrm/models/book.py:252 #: bookwyrm/models/book.py:255
msgid "Graphic novel" msgid "Graphic novel"
msgstr "Grafinė novelė" msgstr "Grafinė novelė"
#: bookwyrm/models/book.py:253 #: bookwyrm/models/book.py:256
msgid "Hardcover" msgid "Hardcover"
msgstr "Knyga kietais viršeliais" msgstr "Knyga kietais viršeliais"
#: bookwyrm/models/book.py:254 #: bookwyrm/models/book.py:257
msgid "Paperback" msgid "Paperback"
msgstr "Knyga minkštais viršeliais" msgstr "Knyga minkštais viršeliais"
@ -131,10 +132,11 @@ msgstr "Knyga minkštais viršeliais"
msgid "Federated" msgid "Federated"
msgstr "Susijungę" msgstr "Susijungę"
#: bookwyrm/models/federated_server.py:12 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:61
#: bookwyrm/templates/settings/federation/edit_instance.html:44 #: bookwyrm/templates/settings/federation/edit_instance.html:44
#: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance.html:10
#: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/federation/instance_list.html:23
#: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Užblokuota" msgstr "Užblokuota"
@ -189,6 +191,11 @@ msgstr "Sekėjai"
msgid "Private" msgid "Private"
msgstr "Privatu" msgstr "Privatu"
#: bookwyrm/models/link.py:60
#: bookwyrm/templates/settings/link_domains/link_domains.html:23
msgid "Approved"
msgstr ""
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272 #: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
msgid "Reviews" msgid "Reviews"
msgstr "Apžvalgos" msgstr "Apžvalgos"
@ -346,7 +353,7 @@ msgid "Admin"
msgstr "Administravimas" msgstr "Administravimas"
#: bookwyrm/templates/about/about.html:130 #: bookwyrm/templates/about/about.html:130
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 #: bookwyrm/templates/settings/users/user_moderation_actions.html:14
#: bookwyrm/templates/snippets/status/status_options.html:35 #: bookwyrm/templates/snippets/status/status_options.html:35
#: bookwyrm/templates/snippets/user_options.html:13 #: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message" msgid "Send direct message"
@ -536,61 +543,61 @@ msgstr "Visos %(display_name)s %(year)s metais perskaitytos knygos"
msgid "Edit Author" msgid "Edit Author"
msgstr "Keisti autorių" msgstr "Keisti autorių"
#: bookwyrm/templates/author/author.html:40 #: bookwyrm/templates/author/author.html:35
msgid "Author details" msgid "Author details"
msgstr "Informacija apie autorių" msgstr "Informacija apie autorių"
#: bookwyrm/templates/author/author.html:44 #: bookwyrm/templates/author/author.html:39
#: bookwyrm/templates/author/edit_author.html:42 #: bookwyrm/templates/author/edit_author.html:42
msgid "Aliases:" msgid "Aliases:"
msgstr "Pseudonimai:" msgstr "Pseudonimai:"
#: bookwyrm/templates/author/author.html:53 #: bookwyrm/templates/author/author.html:48
msgid "Born:" msgid "Born:"
msgstr "Gimęs:" msgstr "Gimęs:"
#: bookwyrm/templates/author/author.html:60 #: bookwyrm/templates/author/author.html:55
msgid "Died:" msgid "Died:"
msgstr "Mirė:" msgstr "Mirė:"
#: bookwyrm/templates/author/author.html:70 #: bookwyrm/templates/author/author.html:65
msgid "External links" msgid "External links"
msgstr "Išorinės nuorodos" msgstr "Išorinės nuorodos"
#: bookwyrm/templates/author/author.html:75 #: bookwyrm/templates/author/author.html:70
msgid "Wikipedia" msgid "Wikipedia"
msgstr "Wikipedia" msgstr "Wikipedia"
#: bookwyrm/templates/author/author.html:83 #: bookwyrm/templates/author/author.html:78
msgid "View ISNI record" msgid "View ISNI record"
msgstr "Peržiūrėti ISNI įrašą" msgstr "Peržiūrėti ISNI įrašą"
#: bookwyrm/templates/author/author.html:88 #: bookwyrm/templates/author/author.html:83
#: bookwyrm/templates/author/sync_modal.html:5 #: bookwyrm/templates/author/sync_modal.html:5
#: bookwyrm/templates/book/book.html:122 #: bookwyrm/templates/book/book.html:122
#: bookwyrm/templates/book/sync_modal.html:5 #: bookwyrm/templates/book/sync_modal.html:5
msgid "Load data" msgid "Load data"
msgstr "Įkelti duomenis" msgstr "Įkelti duomenis"
#: bookwyrm/templates/author/author.html:92 #: bookwyrm/templates/author/author.html:87
#: bookwyrm/templates/book/book.html:126 #: bookwyrm/templates/book/book.html:126
msgid "View on OpenLibrary" msgid "View on OpenLibrary"
msgstr "Žiūrėti „OpenLibrary“" msgstr "Žiūrėti „OpenLibrary“"
#: bookwyrm/templates/author/author.html:107 #: bookwyrm/templates/author/author.html:102
#: bookwyrm/templates/book/book.html:140 #: bookwyrm/templates/book/book.html:140
msgid "View on Inventaire" msgid "View on Inventaire"
msgstr "Žiūrėti „Inventaire“" msgstr "Žiūrėti „Inventaire“"
#: bookwyrm/templates/author/author.html:123 #: bookwyrm/templates/author/author.html:118
msgid "View on LibraryThing" msgid "View on LibraryThing"
msgstr "Žiūrėti „LibraryThing“" msgstr "Žiūrėti „LibraryThing“"
#: bookwyrm/templates/author/author.html:131 #: bookwyrm/templates/author/author.html:126
msgid "View on Goodreads" msgid "View on Goodreads"
msgstr "Žiūrėti „Goodreads“" msgstr "Žiūrėti „Goodreads“"
#: bookwyrm/templates/author/author.html:145 #: bookwyrm/templates/author/author.html:141
#, python-format #, python-format
msgid "Books by %(name)s" msgid "Books by %(name)s"
msgstr "%(name)s knygos" msgstr "%(name)s knygos"
@ -620,7 +627,9 @@ msgid "Metadata"
msgstr "Meta duomenys" msgstr "Meta duomenys"
#: bookwyrm/templates/author/edit_author.html:35 #: bookwyrm/templates/author/edit_author.html:35
#: bookwyrm/templates/lists/form.html:9 bookwyrm/templates/shelf/form.html:9 #: bookwyrm/templates/lists/form.html:9
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14
#: bookwyrm/templates/shelf/form.html:9
msgid "Name:" msgid "Name:"
msgstr "Vardas:" msgstr "Vardas:"
@ -674,6 +683,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/author/edit_author.html:115
#: bookwyrm/templates/book/book.html:193 #: bookwyrm/templates/book/book.html:193
#: bookwyrm/templates/book/edit/edit_book.html:121 #: bookwyrm/templates/book/edit/edit_book.html:121
#: bookwyrm/templates/book/file_links/add_link_modal.html:50
#: bookwyrm/templates/groups/form.html:30 #: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/bookmark_button.html:15
#: bookwyrm/templates/lists/form.html:130 #: bookwyrm/templates/lists/form.html:130
@ -683,7 +693,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/settings/federation/edit_instance.html:82 #: bookwyrm/templates/settings/federation/edit_instance.html:82
#: bookwyrm/templates/settings/federation/instance.html:87 #: bookwyrm/templates/settings/federation/instance.html:87
#: bookwyrm/templates/settings/site.html:133 #: bookwyrm/templates/settings/site.html:133
#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69
#: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/shelf/form.html:25
#: bookwyrm/templates/snippets/reading_modals/layout.html:18 #: bookwyrm/templates/snippets/reading_modals/layout.html:18
msgid "Save" msgid "Save"
@ -695,13 +705,16 @@ msgstr "Išsaugoti"
#: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/book/cover_add_modal.html:32
#: bookwyrm/templates/book/edit/edit_book.html:123 #: bookwyrm/templates/book/edit/edit_book.html:123
#: bookwyrm/templates/book/edit/edit_book.html:126 #: bookwyrm/templates/book/edit/edit_book.html:126
#: bookwyrm/templates/book/file_links/add_link_modal.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17 #: bookwyrm/templates/groups/delete_group_modal.html:17
#: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74 #: bookwyrm/templates/readthrough/readthrough_modal.html:74
#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/settings/federation/instance.html:88
#: bookwyrm/templates/snippets/report_modal.html:38 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
#: bookwyrm/templates/snippets/report_modal.html:54
msgid "Cancel" msgid "Cancel"
msgstr "Atšaukti" msgstr "Atšaukti"
@ -1048,6 +1061,101 @@ msgstr "Kalba:"
msgid "Search editions" msgid "Search editions"
msgstr "Paieškos leidimai" msgstr "Paieškos leidimai"
#: bookwyrm/templates/book/file_links/add_link_modal.html:6
msgid "Add file link"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:19
msgid "Links from unknown domains will need to be approved by a moderator before they are added."
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:24
msgid "URL:"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:29
msgid "File type:"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:5
#: bookwyrm/templates/book/file_links/edit_links.html:22
#: bookwyrm/templates/book/file_links/links.html:47
msgid "Edit links"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:11
#, python-format
msgid "\n"
" Links for \"<em>%(title)s</em>\"\n"
" "
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:32
#: bookwyrm/templates/settings/link_domains/link_table.html:6
msgid "URL"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:33
#: bookwyrm/templates/settings/link_domains/link_table.html:7
msgid "Added by"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:34
#: bookwyrm/templates/settings/link_domains/link_table.html:8
msgid "Filetype"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:35
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
#: bookwyrm/templates/settings/reports/report_links_table.html:5
msgid "Domain"
msgstr "Domenas"
#: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/reports/report_links_table.html:6
msgid "Actions"
msgstr "Veiksmai"
#: bookwyrm/templates/book/file_links/edit_links.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:25
msgid "Report spam"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:65
msgid "No links available for this book."
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:76
#: bookwyrm/templates/book/file_links/links.html:18
msgid "Add link to file"
msgstr ""
#: bookwyrm/templates/book/file_links/file_link_page.html:6
msgid "File Links"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:9
msgid "Get a copy"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:41
msgid "No links available"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:5
msgid "Leaving BookWyrm"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:11
#, python-format
msgid "This link is taking you to: <code>%(link_url)s</code>.<br> Is that where you'd like to go?"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:20
msgid "Continue"
msgstr ""
#: bookwyrm/templates/book/publisher_info.html:23 #: bookwyrm/templates/book/publisher_info.html:23
#, python-format #, python-format
msgid "%(format)s, %(pages)s pages" msgid "%(format)s, %(pages)s pages"
@ -1118,8 +1226,8 @@ msgstr "Patvirtinimo kodas:"
#: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/confirm_email/confirm_email.html:25
#: bookwyrm/templates/landing/layout.html:73 #: bookwyrm/templates/landing/layout.html:73
#: bookwyrm/templates/settings/dashboard/dashboard.html:93 #: bookwyrm/templates/settings/dashboard/dashboard.html:104
#: bookwyrm/templates/snippets/report_modal.html:37 #: bookwyrm/templates/snippets/report_modal.html:52
msgid "Submit" msgid "Submit"
msgstr "Siųsti" msgstr "Siųsti"
@ -1878,6 +1986,7 @@ msgid "Review"
msgstr "Apžvalga" msgstr "Apžvalga"
#: bookwyrm/templates/import/import_status.html:124 #: bookwyrm/templates/import/import_status.html:124
#: bookwyrm/templates/settings/link_domains/link_table.html:9
msgid "Book" msgid "Book"
msgstr "Knyga" msgstr "Knyga"
@ -1930,6 +2039,7 @@ msgstr "Jei patvirtinsite siūlymą, siūloma knyga visam laikui bus įkelta į
#: bookwyrm/templates/import/manual_review.html:58 #: bookwyrm/templates/import/manual_review.html:58
#: bookwyrm/templates/lists/curate.html:59 #: bookwyrm/templates/lists/curate.html:59
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve" msgid "Approve"
msgstr "Patvirtinti" msgstr "Patvirtinti"
@ -2277,6 +2387,7 @@ msgid "List position"
msgstr "Sąrašo pozicija" msgstr "Sąrašo pozicija"
#: bookwyrm/templates/lists/list.html:101 #: bookwyrm/templates/lists/list.html:101
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set" msgid "Set"
msgstr "Nustatyti" msgstr "Nustatyti"
@ -2808,6 +2919,11 @@ msgstr "Ištrinti šias skaitymo datas"
msgid "Add read dates for \"<em>%(title)s</em>\"" msgid "Add read dates for \"<em>%(title)s</em>\""
msgstr "" msgstr ""
#: bookwyrm/templates/report.html:5
#: bookwyrm/templates/snippets/report_button.html:13
msgid "Report"
msgstr "Pranešti"
#: bookwyrm/templates/search/book.html:44 #: bookwyrm/templates/search/book.html:44
msgid "Results from" msgid "Results from"
msgstr "Rezultatai iš" msgstr "Rezultatai iš"
@ -2880,13 +2996,13 @@ msgstr "Netiesa"
#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement.html:46
#: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/announcements/announcement_form.html:44
#: bookwyrm/templates/settings/dashboard/dashboard.html:71 #: bookwyrm/templates/settings/dashboard/dashboard.html:82
msgid "Start date:" msgid "Start date:"
msgstr "Pradžios data:" msgstr "Pradžios data:"
#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement.html:51
#: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/announcements/announcement_form.html:54
#: bookwyrm/templates/settings/dashboard/dashboard.html:77 #: bookwyrm/templates/settings/dashboard/dashboard.html:88
msgid "End date:" msgid "End date:"
msgstr "Pabaigos data:" msgstr "Pabaigos data:"
@ -2914,7 +3030,7 @@ msgstr "Įvykio data:"
#: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:3
#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/announcements.html:5
#: bookwyrm/templates/settings/layout.html:72 #: bookwyrm/templates/settings/layout.html:76
msgid "Announcements" msgid "Announcements"
msgstr "Pranešimai" msgstr "Pranešimai"
@ -2954,7 +3070,7 @@ msgid "Dashboard"
msgstr "Suvestinė" msgstr "Suvestinė"
#: bookwyrm/templates/settings/dashboard/dashboard.html:15 #: bookwyrm/templates/settings/dashboard/dashboard.html:15
#: bookwyrm/templates/settings/dashboard/dashboard.html:100 #: bookwyrm/templates/settings/dashboard/dashboard.html:111
msgid "Total users" msgid "Total users"
msgstr "Iš viso naudotojų" msgstr "Iš viso naudotojų"
@ -2983,6 +3099,15 @@ msgstr[3] "%(display_count)s atvirų ataskaitų"
#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:54
#, python-format #, python-format
msgid "%(display_count)s domain needs review"
msgid_plural "%(display_count)s domains need review"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:65
#, python-format
msgid "%(display_count)s invite request" msgid "%(display_count)s invite request"
msgid_plural "%(display_count)s invite requests" msgid_plural "%(display_count)s invite requests"
msgstr[0] "%(display_count)s prašymas pakviesti" msgstr[0] "%(display_count)s prašymas pakviesti"
@ -2990,31 +3115,31 @@ msgstr[1] "%(display_count)s prašymai pakviesti"
msgstr[2] "%(display_count)s prašymų pakviesti" msgstr[2] "%(display_count)s prašymų pakviesti"
msgstr[3] "%(display_count)s prašymai pakviesti" msgstr[3] "%(display_count)s prašymai pakviesti"
#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #: bookwyrm/templates/settings/dashboard/dashboard.html:76
msgid "Instance Activity" msgid "Instance Activity"
msgstr "Serverio statistika" msgstr "Serverio statistika"
#: bookwyrm/templates/settings/dashboard/dashboard.html:83 #: bookwyrm/templates/settings/dashboard/dashboard.html:94
msgid "Interval:" msgid "Interval:"
msgstr "Intervalas:" msgstr "Intervalas:"
#: bookwyrm/templates/settings/dashboard/dashboard.html:87 #: bookwyrm/templates/settings/dashboard/dashboard.html:98
msgid "Days" msgid "Days"
msgstr "Dienos" msgstr "Dienos"
#: bookwyrm/templates/settings/dashboard/dashboard.html:88 #: bookwyrm/templates/settings/dashboard/dashboard.html:99
msgid "Weeks" msgid "Weeks"
msgstr "Savaitės" msgstr "Savaitės"
#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/settings/dashboard/dashboard.html:117
msgid "User signup activity" msgid "User signup activity"
msgstr "Naudotojo prisijungimo veikla" msgstr "Naudotojo prisijungimo veikla"
#: bookwyrm/templates/settings/dashboard/dashboard.html:112 #: bookwyrm/templates/settings/dashboard/dashboard.html:123
msgid "Status activity" msgid "Status activity"
msgstr "Būsenos" msgstr "Būsenos"
#: bookwyrm/templates/settings/dashboard/dashboard.html:118 #: bookwyrm/templates/settings/dashboard/dashboard.html:129
msgid "Works created" msgid "Works created"
msgstr "Darbai sukurti" msgstr "Darbai sukurti"
@ -3049,10 +3174,6 @@ msgstr "El. pašto blokavimo sąrašas"
msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked."
msgstr "Jei kažkas bandys registruotis prie šio domeno šiuo el. pašto adresu, paskyra nebus sukurta. Registracijos pricesas bus suveikęs." msgstr "Jei kažkas bandys registruotis prie šio domeno šiuo el. pašto adresu, paskyra nebus sukurta. Registracijos pricesas bus suveikęs."
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
msgid "Domain"
msgstr "Domenas"
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29
#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 #: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27
msgid "Options" msgid "Options"
@ -3166,12 +3287,8 @@ msgstr "Redaguoti"
msgid "<em>No notes</em>" msgid "<em>No notes</em>"
msgstr "<em>Užrašų nėra</em>" msgstr "<em>Užrašų nėra</em>"
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "Actions"
msgstr "Veiksmai"
#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:98
#: bookwyrm/templates/settings/link_domains/link_domains.html:87
#: bookwyrm/templates/snippets/block_button.html:5 #: bookwyrm/templates/snippets/block_button.html:5
msgid "Block" msgid "Block"
msgstr "Blokuoti" msgstr "Blokuoti"
@ -3384,62 +3501,113 @@ msgstr "Moderavimas"
msgid "Reports" msgid "Reports"
msgstr "Pranešimai" msgstr "Pranešimai"
#: bookwyrm/templates/settings/layout.html:68 #: bookwyrm/templates/settings/layout.html:67
#: bookwyrm/templates/settings/link_domains/link_domains.html:5
#: bookwyrm/templates/settings/link_domains/link_domains.html:7
msgid "Link Domains"
msgstr ""
#: bookwyrm/templates/settings/layout.html:72
msgid "Instance Settings" msgid "Instance Settings"
msgstr "Serverio nustatymai" msgstr "Serverio nustatymai"
#: bookwyrm/templates/settings/layout.html:76 #: bookwyrm/templates/settings/layout.html:80
#: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:4
#: bookwyrm/templates/settings/site.html:6 #: bookwyrm/templates/settings/site.html:6
msgid "Site Settings" msgid "Site Settings"
msgstr "Puslapio nustatymai" msgstr "Puslapio nustatymai"
#: bookwyrm/templates/settings/reports/report.html:5 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5
#: bookwyrm/templates/settings/reports/report.html:8
#: bookwyrm/templates/settings/reports/report_preview.html:6
#, python-format #, python-format
msgid "Report #%(report_id)s: %(username)s" msgid "Set display name for %(url)s"
msgstr "Pranešti apie #%(report_id)s: %(username)s" msgstr ""
#: bookwyrm/templates/settings/reports/report.html:9 #: bookwyrm/templates/settings/link_domains/link_domains.html:11
msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving."
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:45
msgid "Set display name"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:53
msgid "View links"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:96
msgid "No domains currently approved"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:98
msgid "No domains currently pending"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:100
msgid "No domains currently blocked"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_table.html:39
msgid "No links available for this domain."
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:11
msgid "Back to reports" msgid "Back to reports"
msgstr "Atgal į pranešimus" msgstr "Atgal į pranešimus"
#: bookwyrm/templates/settings/reports/report.html:23 #: bookwyrm/templates/settings/reports/report.html:22
msgid "Reported statuses"
msgstr "Praneštos būsenos"
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Status has been deleted"
msgstr "Būsena ištrinta"
#: bookwyrm/templates/settings/reports/report.html:39
msgid "Reported links"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:55
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Moderatoriaus komentarai" msgstr "Moderatoriaus komentarai"
#: bookwyrm/templates/settings/reports/report.html:41 #: bookwyrm/templates/settings/reports/report.html:73
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Komentuoti" msgstr "Komentuoti"
#: bookwyrm/templates/settings/reports/report.html:46 #: bookwyrm/templates/settings/reports/report_header.html:6
msgid "Reported statuses" #, python-format
msgstr "Praneštos būsenos" msgid "Report #%(report_id)s: Status posted by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:48 #: bookwyrm/templates/settings/reports/report_header.html:12
msgid "No statuses reported" #, python-format
msgstr "Nepranešta apie būsenas" msgid "Report #%(report_id)s: Link added by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:54 #: bookwyrm/templates/settings/reports/report_header.html:18
msgid "Status has been deleted" #, python-format
msgstr "Būsena ištrinta" msgid "Report #%(report_id)s: User @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:13 #: bookwyrm/templates/settings/reports/report_links_table.html:17
msgid "Block domain"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:17
msgid "No notes provided" msgid "No notes provided"
msgstr "Užrašų nepateikta" msgstr "Užrašų nepateikta"
#: bookwyrm/templates/settings/reports/report_preview.html:20 #: bookwyrm/templates/settings/reports/report_preview.html:24
#, python-format #, python-format
msgid "Reported by <a href=\"%(path)s\">%(username)s</a>" msgid "Reported by <a href=\"%(path)s\">@%(username)s</a>"
msgstr "Pranešė <a href=\"%(path)s\">%(username)s</a>" msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:30 #: bookwyrm/templates/settings/reports/report_preview.html:34
msgid "Re-open" msgid "Re-open"
msgstr "Atidaryti pakartotinai" msgstr "Atidaryti pakartotinai"
#: bookwyrm/templates/settings/reports/report_preview.html:32 #: bookwyrm/templates/settings/reports/report_preview.html:36
msgid "Resolve" msgid "Resolve"
msgstr "Išspręsti" msgstr "Išspręsti"
@ -3567,7 +3735,7 @@ msgid "Invite request text:"
msgstr "Kvietimo prašymo tekstas:" msgstr "Kvietimo prašymo tekstas:"
#: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/delete_user_form.html:5
#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32
msgid "Permanently delete user" msgid "Permanently delete user"
msgstr "Visam laikui ištrinti vartotoją" msgstr "Visam laikui ištrinti vartotoją"
@ -3677,15 +3845,19 @@ msgstr "Peržiūrėti serverį"
msgid "Permanently deleted" msgid "Permanently deleted"
msgstr "Visam laikui ištrintas" msgstr "Visam laikui ištrintas"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 #: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "User Actions"
msgstr ""
#: bookwyrm/templates/settings/users/user_moderation_actions.html:21
msgid "Suspend user" msgid "Suspend user"
msgstr "Laikinai išjungti vartotoją" msgstr "Laikinai išjungti vartotoją"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 #: bookwyrm/templates/settings/users/user_moderation_actions.html:26
msgid "Un-suspend user" msgid "Un-suspend user"
msgstr "Atblokuoti narį" msgstr "Atblokuoti narį"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 #: bookwyrm/templates/settings/users/user_moderation_actions.html:48
msgid "Access level:" msgid "Access level:"
msgstr "Priėjimo lygis:" msgstr "Priėjimo lygis:"
@ -4103,21 +4275,31 @@ msgstr "Noriu perskaityti „<em>%(book_title)s</em>“"
msgid "Sign Up" msgid "Sign Up"
msgstr "Registruotis" msgstr "Registruotis"
#: bookwyrm/templates/snippets/report_button.html:13 #: bookwyrm/templates/snippets/report_modal.html:8
msgid "Report" #, python-format
msgstr "Pranešti" msgid "Report @%(username)s's status"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:6 #: bookwyrm/templates/snippets/report_modal.html:10
#, python-format
msgid "Report %(domain)s link"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:12
#, python-format #, python-format
msgid "Report @%(username)s" msgid "Report @%(username)s"
msgstr "Pranešti apie @%(username)s" msgstr "Pranešti apie @%(username)s"
#: bookwyrm/templates/snippets/report_modal.html:23 #: bookwyrm/templates/snippets/report_modal.html:34
#, python-format #, python-format
msgid "This report will be sent to %(site_name)s's moderators for review." msgid "This report will be sent to %(site_name)s's moderators for review."
msgstr "Šis pranešimas bus nusiųstas peržiūrėti %(site_name)s puslapio moderatoriams." msgstr "Šis pranešimas bus nusiųstas peržiūrėti %(site_name)s puslapio moderatoriams."
#: bookwyrm/templates/snippets/report_modal.html:26 #: bookwyrm/templates/snippets/report_modal.html:36
msgid "Links from this domain will be removed until your report has been reviewed."
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:41
msgid "More info about this report:" msgid "More info about this report:"
msgstr "Daugiau informacijos apie šį pranešimą:" msgstr "Daugiau informacijos apie šį pranešimą:"

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: 2022-01-13 16:54+0000\n" "POT-Creation-Date: 2022-01-17 16:05+0000\n"
"PO-Revision-Date: 2022-01-13 17:50\n" "PO-Revision-Date: 2022-01-17 17:10\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Norwegian\n" "Language-Team: Norwegian\n"
"Language: no\n" "Language: no\n"
@ -17,62 +17,62 @@ msgstr ""
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" "X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
"X-Crowdin-File-ID: 1553\n" "X-Crowdin-File-ID: 1553\n"
#: bookwyrm/forms.py:351 #: bookwyrm/forms.py:365
msgid "A user with this email already exists." msgid "A user with this email already exists."
msgstr "Den e-postadressen er allerede registrert." msgstr "Den e-postadressen er allerede registrert."
#: bookwyrm/forms.py:365 #: bookwyrm/forms.py:379
msgid "One Day" msgid "One Day"
msgstr "Én dag" msgstr "Én dag"
#: bookwyrm/forms.py:366 #: bookwyrm/forms.py:380
msgid "One Week" msgid "One Week"
msgstr "Én uke" msgstr "Én uke"
#: bookwyrm/forms.py:367 #: bookwyrm/forms.py:381
msgid "One Month" msgid "One Month"
msgstr "Én måned" msgstr "Én måned"
#: bookwyrm/forms.py:368 #: bookwyrm/forms.py:382
msgid "Does Not Expire" msgid "Does Not Expire"
msgstr "Uendelig" msgstr "Uendelig"
#: bookwyrm/forms.py:372 #: bookwyrm/forms.py:386
#, python-brace-format #, python-brace-format
msgid "{i} uses" msgid "{i} uses"
msgstr "{i} ganger" msgstr "{i} ganger"
#: bookwyrm/forms.py:373 #: bookwyrm/forms.py:387
msgid "Unlimited" msgid "Unlimited"
msgstr "Ubegrenset" msgstr "Ubegrenset"
#: bookwyrm/forms.py:469 #: bookwyrm/forms.py:483
msgid "List Order" msgid "List Order"
msgstr "Liste rekkefølge" msgstr "Liste rekkefølge"
#: bookwyrm/forms.py:470 #: bookwyrm/forms.py:484
msgid "Book Title" msgid "Book Title"
msgstr "Boktittel" msgstr "Boktittel"
#: bookwyrm/forms.py:471 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:33 #: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating" msgid "Rating"
msgstr "Vurdering" msgstr "Vurdering"
#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:134 #: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:134
msgid "Sort By" msgid "Sort By"
msgstr "Sorter etter" msgstr "Sorter etter"
#: bookwyrm/forms.py:477 #: bookwyrm/forms.py:491
msgid "Ascending" msgid "Ascending"
msgstr "Stigende" msgstr "Stigende"
#: bookwyrm/forms.py:478 #: bookwyrm/forms.py:492
msgid "Descending" msgid "Descending"
msgstr "Synkende" msgstr "Synkende"
#: bookwyrm/forms.py:491 #: bookwyrm/forms.py:505
msgid "Reading finish date cannot be before start date." msgid "Reading finish date cannot be before start date."
msgstr "Sluttdato kan ikke være før startdato." msgstr "Sluttdato kan ikke være før startdato."
@ -84,8 +84,9 @@ msgstr "Feilet ved lasting av bok"
msgid "Could not find a match for book" msgid "Could not find a match for book"
msgstr "Fant ikke den boka" msgstr "Fant ikke den boka"
#: bookwyrm/models/base_model.py:17 #: bookwyrm/models/base_model.py:17 bookwyrm/models/link.py:62
#: bookwyrm/templates/import/import_status.html:200 #: bookwyrm/templates/import/import_status.html:200
#: bookwyrm/templates/settings/link_domains/link_domains.html:19
msgid "Pending" msgid "Pending"
msgstr "Avventer" msgstr "Avventer"
@ -105,23 +106,23 @@ msgstr "Moderatør sletting"
msgid "Domain block" msgid "Domain block"
msgstr "Domeneblokkering" msgstr "Domeneblokkering"
#: bookwyrm/models/book.py:250 #: bookwyrm/models/book.py:253
msgid "Audiobook" msgid "Audiobook"
msgstr "Lydbok" msgstr "Lydbok"
#: bookwyrm/models/book.py:251 #: bookwyrm/models/book.py:254
msgid "eBook" msgid "eBook"
msgstr "e-bok" msgstr "e-bok"
#: bookwyrm/models/book.py:252 #: bookwyrm/models/book.py:255
msgid "Graphic novel" msgid "Graphic novel"
msgstr "Tegneserie" msgstr "Tegneserie"
#: bookwyrm/models/book.py:253 #: bookwyrm/models/book.py:256
msgid "Hardcover" msgid "Hardcover"
msgstr "Innbundet" msgstr "Innbundet"
#: bookwyrm/models/book.py:254 #: bookwyrm/models/book.py:257
msgid "Paperback" msgid "Paperback"
msgstr "Paperback" msgstr "Paperback"
@ -131,10 +132,11 @@ msgstr "Paperback"
msgid "Federated" msgid "Federated"
msgstr "Føderert" msgstr "Føderert"
#: bookwyrm/models/federated_server.py:12 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:61
#: bookwyrm/templates/settings/federation/edit_instance.html:44 #: bookwyrm/templates/settings/federation/edit_instance.html:44
#: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance.html:10
#: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/federation/instance_list.html:23
#: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Blokkert" msgstr "Blokkert"
@ -189,6 +191,11 @@ msgstr "Følgere"
msgid "Private" msgid "Private"
msgstr "Privat" msgstr "Privat"
#: bookwyrm/models/link.py:60
#: bookwyrm/templates/settings/link_domains/link_domains.html:23
msgid "Approved"
msgstr ""
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272 #: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
msgid "Reviews" msgid "Reviews"
msgstr "Anmeldelser" msgstr "Anmeldelser"
@ -348,7 +355,7 @@ msgid "Admin"
msgstr "Admin" msgstr "Admin"
#: bookwyrm/templates/about/about.html:130 #: bookwyrm/templates/about/about.html:130
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 #: bookwyrm/templates/settings/users/user_moderation_actions.html:14
#: bookwyrm/templates/snippets/status/status_options.html:35 #: bookwyrm/templates/snippets/status/status_options.html:35
#: bookwyrm/templates/snippets/user_options.html:13 #: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message" msgid "Send direct message"
@ -530,61 +537,61 @@ msgstr "Alle bøkene %(display_name)s leste i %(year)s"
msgid "Edit Author" msgid "Edit Author"
msgstr "Rediger forfatter" msgstr "Rediger forfatter"
#: bookwyrm/templates/author/author.html:40 #: bookwyrm/templates/author/author.html:35
msgid "Author details" msgid "Author details"
msgstr "Detaljer om forfatter" msgstr "Detaljer om forfatter"
#: bookwyrm/templates/author/author.html:44 #: bookwyrm/templates/author/author.html:39
#: bookwyrm/templates/author/edit_author.html:42 #: bookwyrm/templates/author/edit_author.html:42
msgid "Aliases:" msgid "Aliases:"
msgstr "Kallenavn:" msgstr "Kallenavn:"
#: bookwyrm/templates/author/author.html:53 #: bookwyrm/templates/author/author.html:48
msgid "Born:" msgid "Born:"
msgstr "Født:" msgstr "Født:"
#: bookwyrm/templates/author/author.html:60 #: bookwyrm/templates/author/author.html:55
msgid "Died:" msgid "Died:"
msgstr "Død:" msgstr "Død:"
#: bookwyrm/templates/author/author.html:70 #: bookwyrm/templates/author/author.html:65
msgid "External links" msgid "External links"
msgstr "Eksterne lenker" msgstr "Eksterne lenker"
#: bookwyrm/templates/author/author.html:75 #: bookwyrm/templates/author/author.html:70
msgid "Wikipedia" msgid "Wikipedia"
msgstr "Wikipedia" msgstr "Wikipedia"
#: bookwyrm/templates/author/author.html:83 #: bookwyrm/templates/author/author.html:78
msgid "View ISNI record" msgid "View ISNI record"
msgstr "Vis ISNI -oppføring" msgstr "Vis ISNI -oppføring"
#: bookwyrm/templates/author/author.html:88 #: bookwyrm/templates/author/author.html:83
#: bookwyrm/templates/author/sync_modal.html:5 #: bookwyrm/templates/author/sync_modal.html:5
#: bookwyrm/templates/book/book.html:122 #: bookwyrm/templates/book/book.html:122
#: bookwyrm/templates/book/sync_modal.html:5 #: bookwyrm/templates/book/sync_modal.html:5
msgid "Load data" msgid "Load data"
msgstr "Last inn data" msgstr "Last inn data"
#: bookwyrm/templates/author/author.html:92 #: bookwyrm/templates/author/author.html:87
#: bookwyrm/templates/book/book.html:126 #: bookwyrm/templates/book/book.html:126
msgid "View on OpenLibrary" msgid "View on OpenLibrary"
msgstr "Vis på OpenLibrary" msgstr "Vis på OpenLibrary"
#: bookwyrm/templates/author/author.html:107 #: bookwyrm/templates/author/author.html:102
#: bookwyrm/templates/book/book.html:140 #: bookwyrm/templates/book/book.html:140
msgid "View on Inventaire" msgid "View on Inventaire"
msgstr "Vis på Inventaire" msgstr "Vis på Inventaire"
#: bookwyrm/templates/author/author.html:123 #: bookwyrm/templates/author/author.html:118
msgid "View on LibraryThing" msgid "View on LibraryThing"
msgstr "Vis på LibraryThing" msgstr "Vis på LibraryThing"
#: bookwyrm/templates/author/author.html:131 #: bookwyrm/templates/author/author.html:126
msgid "View on Goodreads" msgid "View on Goodreads"
msgstr "Vis på Goodreads" msgstr "Vis på Goodreads"
#: bookwyrm/templates/author/author.html:145 #: bookwyrm/templates/author/author.html:141
#, python-format #, python-format
msgid "Books by %(name)s" msgid "Books by %(name)s"
msgstr "Bøker av %(name)s" msgstr "Bøker av %(name)s"
@ -614,7 +621,9 @@ msgid "Metadata"
msgstr "Metadata" msgstr "Metadata"
#: bookwyrm/templates/author/edit_author.html:35 #: bookwyrm/templates/author/edit_author.html:35
#: bookwyrm/templates/lists/form.html:9 bookwyrm/templates/shelf/form.html:9 #: bookwyrm/templates/lists/form.html:9
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14
#: bookwyrm/templates/shelf/form.html:9
msgid "Name:" msgid "Name:"
msgstr "Navn:" msgstr "Navn:"
@ -668,6 +677,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/author/edit_author.html:115
#: bookwyrm/templates/book/book.html:193 #: bookwyrm/templates/book/book.html:193
#: bookwyrm/templates/book/edit/edit_book.html:121 #: bookwyrm/templates/book/edit/edit_book.html:121
#: bookwyrm/templates/book/file_links/add_link_modal.html:50
#: bookwyrm/templates/groups/form.html:30 #: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/bookmark_button.html:15
#: bookwyrm/templates/lists/form.html:130 #: bookwyrm/templates/lists/form.html:130
@ -677,7 +687,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/settings/federation/edit_instance.html:82 #: bookwyrm/templates/settings/federation/edit_instance.html:82
#: bookwyrm/templates/settings/federation/instance.html:87 #: bookwyrm/templates/settings/federation/instance.html:87
#: bookwyrm/templates/settings/site.html:133 #: bookwyrm/templates/settings/site.html:133
#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69
#: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/shelf/form.html:25
#: bookwyrm/templates/snippets/reading_modals/layout.html:18 #: bookwyrm/templates/snippets/reading_modals/layout.html:18
msgid "Save" msgid "Save"
@ -689,13 +699,16 @@ msgstr "Lagre"
#: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/book/cover_add_modal.html:32
#: bookwyrm/templates/book/edit/edit_book.html:123 #: bookwyrm/templates/book/edit/edit_book.html:123
#: bookwyrm/templates/book/edit/edit_book.html:126 #: bookwyrm/templates/book/edit/edit_book.html:126
#: bookwyrm/templates/book/file_links/add_link_modal.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17 #: bookwyrm/templates/groups/delete_group_modal.html:17
#: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74 #: bookwyrm/templates/readthrough/readthrough_modal.html:74
#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/settings/federation/instance.html:88
#: bookwyrm/templates/snippets/report_modal.html:38 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
#: bookwyrm/templates/snippets/report_modal.html:54
msgid "Cancel" msgid "Cancel"
msgstr "Avbryt" msgstr "Avbryt"
@ -1040,6 +1053,101 @@ msgstr "Språk:"
msgid "Search editions" msgid "Search editions"
msgstr "Søk etter utgaver" msgstr "Søk etter utgaver"
#: bookwyrm/templates/book/file_links/add_link_modal.html:6
msgid "Add file link"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:19
msgid "Links from unknown domains will need to be approved by a moderator before they are added."
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:24
msgid "URL:"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:29
msgid "File type:"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:5
#: bookwyrm/templates/book/file_links/edit_links.html:22
#: bookwyrm/templates/book/file_links/links.html:47
msgid "Edit links"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:11
#, python-format
msgid "\n"
" Links for \"<em>%(title)s</em>\"\n"
" "
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:32
#: bookwyrm/templates/settings/link_domains/link_table.html:6
msgid "URL"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:33
#: bookwyrm/templates/settings/link_domains/link_table.html:7
msgid "Added by"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:34
#: bookwyrm/templates/settings/link_domains/link_table.html:8
msgid "Filetype"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:35
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
#: bookwyrm/templates/settings/reports/report_links_table.html:5
msgid "Domain"
msgstr "Domene"
#: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/reports/report_links_table.html:6
msgid "Actions"
msgstr "Handlinger"
#: bookwyrm/templates/book/file_links/edit_links.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:25
msgid "Report spam"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:65
msgid "No links available for this book."
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:76
#: bookwyrm/templates/book/file_links/links.html:18
msgid "Add link to file"
msgstr ""
#: bookwyrm/templates/book/file_links/file_link_page.html:6
msgid "File Links"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:9
msgid "Get a copy"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:41
msgid "No links available"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:5
msgid "Leaving BookWyrm"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:11
#, python-format
msgid "This link is taking you to: <code>%(link_url)s</code>.<br> Is that where you'd like to go?"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:20
msgid "Continue"
msgstr ""
#: bookwyrm/templates/book/publisher_info.html:23 #: bookwyrm/templates/book/publisher_info.html:23
#, python-format #, python-format
msgid "%(format)s, %(pages)s pages" msgid "%(format)s, %(pages)s pages"
@ -1110,8 +1218,8 @@ msgstr "Bekreftelseskode:"
#: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/confirm_email/confirm_email.html:25
#: bookwyrm/templates/landing/layout.html:73 #: bookwyrm/templates/landing/layout.html:73
#: bookwyrm/templates/settings/dashboard/dashboard.html:93 #: bookwyrm/templates/settings/dashboard/dashboard.html:104
#: bookwyrm/templates/snippets/report_modal.html:37 #: bookwyrm/templates/snippets/report_modal.html:52
msgid "Submit" msgid "Submit"
msgstr "Send inn" msgstr "Send inn"
@ -1858,6 +1966,7 @@ msgid "Review"
msgstr "Anmeldelse" msgstr "Anmeldelse"
#: bookwyrm/templates/import/import_status.html:124 #: bookwyrm/templates/import/import_status.html:124
#: bookwyrm/templates/settings/link_domains/link_table.html:9
msgid "Book" msgid "Book"
msgstr "Bok" msgstr "Bok"
@ -1910,6 +2019,7 @@ msgstr "Aksept av et forslag legger boka til i hyllene dine permanent, og kobler
#: bookwyrm/templates/import/manual_review.html:58 #: bookwyrm/templates/import/manual_review.html:58
#: bookwyrm/templates/lists/curate.html:59 #: bookwyrm/templates/lists/curate.html:59
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve" msgid "Approve"
msgstr "Godkjenn" msgstr "Godkjenn"
@ -2257,6 +2367,7 @@ msgid "List position"
msgstr "Listeposisjon" msgstr "Listeposisjon"
#: bookwyrm/templates/lists/list.html:101 #: bookwyrm/templates/lists/list.html:101
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set" msgid "Set"
msgstr "Bruk" msgstr "Bruk"
@ -2788,6 +2899,11 @@ msgstr "Slett disse lesedatoene"
msgid "Add read dates for \"<em>%(title)s</em>\"" msgid "Add read dates for \"<em>%(title)s</em>\""
msgstr "Legg til lesedatoer for \"<em>%(title)s</em>\"" msgstr "Legg til lesedatoer for \"<em>%(title)s</em>\""
#: bookwyrm/templates/report.html:5
#: bookwyrm/templates/snippets/report_button.html:13
msgid "Report"
msgstr "Rapport"
#: bookwyrm/templates/search/book.html:44 #: bookwyrm/templates/search/book.html:44
msgid "Results from" msgid "Results from"
msgstr "Resultat fra" msgstr "Resultat fra"
@ -2860,13 +2976,13 @@ msgstr "Usant"
#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement.html:46
#: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/announcements/announcement_form.html:44
#: bookwyrm/templates/settings/dashboard/dashboard.html:71 #: bookwyrm/templates/settings/dashboard/dashboard.html:82
msgid "Start date:" msgid "Start date:"
msgstr "Startdato:" msgstr "Startdato:"
#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement.html:51
#: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/announcements/announcement_form.html:54
#: bookwyrm/templates/settings/dashboard/dashboard.html:77 #: bookwyrm/templates/settings/dashboard/dashboard.html:88
msgid "End date:" msgid "End date:"
msgstr "Sluttdato:" msgstr "Sluttdato:"
@ -2894,7 +3010,7 @@ msgstr "Dato for hendelsen:"
#: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:3
#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/announcements.html:5
#: bookwyrm/templates/settings/layout.html:72 #: bookwyrm/templates/settings/layout.html:76
msgid "Announcements" msgid "Announcements"
msgstr "Kunngjøringer" msgstr "Kunngjøringer"
@ -2934,7 +3050,7 @@ msgid "Dashboard"
msgstr "Kontrollpanel" msgstr "Kontrollpanel"
#: bookwyrm/templates/settings/dashboard/dashboard.html:15 #: bookwyrm/templates/settings/dashboard/dashboard.html:15
#: bookwyrm/templates/settings/dashboard/dashboard.html:100 #: bookwyrm/templates/settings/dashboard/dashboard.html:111
msgid "Total users" msgid "Total users"
msgstr "Totalt antall brukere" msgstr "Totalt antall brukere"
@ -2961,36 +3077,43 @@ msgstr[1] "%(display_count)s åpne rapporter"
#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:54
#, python-format #, python-format
msgid "%(display_count)s domain needs review"
msgid_plural "%(display_count)s domains need review"
msgstr[0] ""
msgstr[1] ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:65
#, python-format
msgid "%(display_count)s invite request" msgid "%(display_count)s invite request"
msgid_plural "%(display_count)s invite requests" msgid_plural "%(display_count)s invite requests"
msgstr[0] "%(display_count)s invitasjonsforespørsel" msgstr[0] "%(display_count)s invitasjonsforespørsel"
msgstr[1] "%(display_count)s invitasjonsforespørsler" msgstr[1] "%(display_count)s invitasjonsforespørsler"
#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #: bookwyrm/templates/settings/dashboard/dashboard.html:76
msgid "Instance Activity" msgid "Instance Activity"
msgstr "Instansaktivitet" msgstr "Instansaktivitet"
#: bookwyrm/templates/settings/dashboard/dashboard.html:83 #: bookwyrm/templates/settings/dashboard/dashboard.html:94
msgid "Interval:" msgid "Interval:"
msgstr "Intervall:" msgstr "Intervall:"
#: bookwyrm/templates/settings/dashboard/dashboard.html:87 #: bookwyrm/templates/settings/dashboard/dashboard.html:98
msgid "Days" msgid "Days"
msgstr "Dager" msgstr "Dager"
#: bookwyrm/templates/settings/dashboard/dashboard.html:88 #: bookwyrm/templates/settings/dashboard/dashboard.html:99
msgid "Weeks" msgid "Weeks"
msgstr "Uker" msgstr "Uker"
#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/settings/dashboard/dashboard.html:117
msgid "User signup activity" msgid "User signup activity"
msgstr "Brukerregistreringsaktivitet" msgstr "Brukerregistreringsaktivitet"
#: bookwyrm/templates/settings/dashboard/dashboard.html:112 #: bookwyrm/templates/settings/dashboard/dashboard.html:123
msgid "Status activity" msgid "Status activity"
msgstr "Statusaktivitet" msgstr "Statusaktivitet"
#: bookwyrm/templates/settings/dashboard/dashboard.html:118 #: bookwyrm/templates/settings/dashboard/dashboard.html:129
msgid "Works created" msgid "Works created"
msgstr "Verker laget" msgstr "Verker laget"
@ -3025,10 +3148,6 @@ msgstr "E-post blokkeringsliste"
msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked."
msgstr "Når noen prøver å registrere seg med en e-post fra dette domenet, vil ingen konto bli opprettet, men registreringsprosessen vil se ut til å ha virket." msgstr "Når noen prøver å registrere seg med en e-post fra dette domenet, vil ingen konto bli opprettet, men registreringsprosessen vil se ut til å ha virket."
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
msgid "Domain"
msgstr "Domene"
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29
#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 #: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27
msgid "Options" msgid "Options"
@ -3140,12 +3259,8 @@ msgstr "Rediger"
msgid "<em>No notes</em>" msgid "<em>No notes</em>"
msgstr "<em>Ingen notater</em>" msgstr "<em>Ingen notater</em>"
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "Actions"
msgstr "Handlinger"
#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:98
#: bookwyrm/templates/settings/link_domains/link_domains.html:87
#: bookwyrm/templates/snippets/block_button.html:5 #: bookwyrm/templates/snippets/block_button.html:5
msgid "Block" msgid "Block"
msgstr "Blokkér" msgstr "Blokkér"
@ -3358,62 +3473,113 @@ msgstr "Moderering"
msgid "Reports" msgid "Reports"
msgstr "Rapporter" msgstr "Rapporter"
#: bookwyrm/templates/settings/layout.html:68 #: bookwyrm/templates/settings/layout.html:67
#: bookwyrm/templates/settings/link_domains/link_domains.html:5
#: bookwyrm/templates/settings/link_domains/link_domains.html:7
msgid "Link Domains"
msgstr ""
#: bookwyrm/templates/settings/layout.html:72
msgid "Instance Settings" msgid "Instance Settings"
msgstr "Instansdetaljer" msgstr "Instansdetaljer"
#: bookwyrm/templates/settings/layout.html:76 #: bookwyrm/templates/settings/layout.html:80
#: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:4
#: bookwyrm/templates/settings/site.html:6 #: bookwyrm/templates/settings/site.html:6
msgid "Site Settings" msgid "Site Settings"
msgstr "Sideinnstillinger" msgstr "Sideinnstillinger"
#: bookwyrm/templates/settings/reports/report.html:5 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5
#: bookwyrm/templates/settings/reports/report.html:8
#: bookwyrm/templates/settings/reports/report_preview.html:6
#, python-format #, python-format
msgid "Report #%(report_id)s: %(username)s" msgid "Set display name for %(url)s"
msgstr "Rapport #%(report_id)s: %(username)s" msgstr ""
#: bookwyrm/templates/settings/reports/report.html:9 #: bookwyrm/templates/settings/link_domains/link_domains.html:11
msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving."
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:45
msgid "Set display name"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:53
msgid "View links"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:96
msgid "No domains currently approved"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:98
msgid "No domains currently pending"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:100
msgid "No domains currently blocked"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_table.html:39
msgid "No links available for this domain."
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:11
msgid "Back to reports" msgid "Back to reports"
msgstr "Tilbake til rapporter" msgstr "Tilbake til rapporter"
#: bookwyrm/templates/settings/reports/report.html:23 #: bookwyrm/templates/settings/reports/report.html:22
msgid "Reported statuses"
msgstr "Rapporterte statuser"
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Status has been deleted"
msgstr "Status er slettet"
#: bookwyrm/templates/settings/reports/report.html:39
msgid "Reported links"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:55
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Moderatorkommentarer" msgstr "Moderatorkommentarer"
#: bookwyrm/templates/settings/reports/report.html:41 #: bookwyrm/templates/settings/reports/report.html:73
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Kommentar" msgstr "Kommentar"
#: bookwyrm/templates/settings/reports/report.html:46 #: bookwyrm/templates/settings/reports/report_header.html:6
msgid "Reported statuses" #, python-format
msgstr "Rapporterte statuser" msgid "Report #%(report_id)s: Status posted by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:48 #: bookwyrm/templates/settings/reports/report_header.html:12
msgid "No statuses reported" #, python-format
msgstr "Ingen statuser rapportert" msgid "Report #%(report_id)s: Link added by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:54 #: bookwyrm/templates/settings/reports/report_header.html:18
msgid "Status has been deleted" #, python-format
msgstr "Status er slettet" msgid "Report #%(report_id)s: User @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:13 #: bookwyrm/templates/settings/reports/report_links_table.html:17
msgid "Block domain"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:17
msgid "No notes provided" msgid "No notes provided"
msgstr "Ingen merknader finnes" msgstr "Ingen merknader finnes"
#: bookwyrm/templates/settings/reports/report_preview.html:20 #: bookwyrm/templates/settings/reports/report_preview.html:24
#, python-format #, python-format
msgid "Reported by <a href=\"%(path)s\">%(username)s</a>" msgid "Reported by <a href=\"%(path)s\">@%(username)s</a>"
msgstr "Rapportert av <a href=\"%(path)s\">%(username)s</a>" msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:30 #: bookwyrm/templates/settings/reports/report_preview.html:34
msgid "Re-open" msgid "Re-open"
msgstr "Gjenåpne" msgstr "Gjenåpne"
#: bookwyrm/templates/settings/reports/report_preview.html:32 #: bookwyrm/templates/settings/reports/report_preview.html:36
msgid "Resolve" msgid "Resolve"
msgstr "Løs" msgstr "Løs"
@ -3541,7 +3707,7 @@ msgid "Invite request text:"
msgstr "Invitasjonsforespørsel tekst:" msgstr "Invitasjonsforespørsel tekst:"
#: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/delete_user_form.html:5
#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32
msgid "Permanently delete user" msgid "Permanently delete user"
msgstr "Slett medlem for godt" msgstr "Slett medlem for godt"
@ -3651,15 +3817,19 @@ msgstr "Vis instans"
msgid "Permanently deleted" msgid "Permanently deleted"
msgstr "Slettet for godt" msgstr "Slettet for godt"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 #: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "User Actions"
msgstr ""
#: bookwyrm/templates/settings/users/user_moderation_actions.html:21
msgid "Suspend user" msgid "Suspend user"
msgstr "Deaktiver bruker" msgstr "Deaktiver bruker"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 #: bookwyrm/templates/settings/users/user_moderation_actions.html:26
msgid "Un-suspend user" msgid "Un-suspend user"
msgstr "Reaktivér bruker" msgstr "Reaktivér bruker"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 #: bookwyrm/templates/settings/users/user_moderation_actions.html:48
msgid "Access level:" msgid "Access level:"
msgstr "Tilgangsnivå:" msgstr "Tilgangsnivå:"
@ -4063,21 +4233,31 @@ msgstr "Har lyst til å lese \"<em>%(book_title)s</em>\""
msgid "Sign Up" msgid "Sign Up"
msgstr "Registrer deg" msgstr "Registrer deg"
#: bookwyrm/templates/snippets/report_button.html:13 #: bookwyrm/templates/snippets/report_modal.html:8
msgid "Report" #, python-format
msgstr "Rapport" msgid "Report @%(username)s's status"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:6 #: bookwyrm/templates/snippets/report_modal.html:10
#, python-format
msgid "Report %(domain)s link"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:12
#, python-format #, python-format
msgid "Report @%(username)s" msgid "Report @%(username)s"
msgstr "Rapporter @%(username)s" msgstr "Rapporter @%(username)s"
#: bookwyrm/templates/snippets/report_modal.html:23 #: bookwyrm/templates/snippets/report_modal.html:34
#, python-format #, python-format
msgid "This report will be sent to %(site_name)s's moderators for review." msgid "This report will be sent to %(site_name)s's moderators for review."
msgstr "Denne rapporten vil bli sendt til %(site_name)s sine moderatorer for gjennomsyn." msgstr "Denne rapporten vil bli sendt til %(site_name)s sine moderatorer for gjennomsyn."
#: bookwyrm/templates/snippets/report_modal.html:26 #: bookwyrm/templates/snippets/report_modal.html:36
msgid "Links from this domain will be removed until your report has been reviewed."
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:41
msgid "More info about this report:" msgid "More info about this report:"
msgstr "Mer informasjon om denne rapporten:" msgstr "Mer informasjon om denne rapporten:"

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: 2022-01-13 16:54+0000\n" "POT-Creation-Date: 2022-01-17 16:05+0000\n"
"PO-Revision-Date: 2022-01-13 21:04\n" "PO-Revision-Date: 2022-01-17 17:10\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"
@ -17,62 +17,62 @@ msgstr ""
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" "X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
"X-Crowdin-File-ID: 1553\n" "X-Crowdin-File-ID: 1553\n"
#: bookwyrm/forms.py:351 #: bookwyrm/forms.py:365
msgid "A user with this email already exists." msgid "A user with this email already exists."
msgstr "Já existe um usuário com este endereço de e-mail." msgstr "Já existe um usuário com este endereço de e-mail."
#: bookwyrm/forms.py:365 #: bookwyrm/forms.py:379
msgid "One Day" msgid "One Day"
msgstr "Um dia" msgstr "Um dia"
#: bookwyrm/forms.py:366 #: bookwyrm/forms.py:380
msgid "One Week" msgid "One Week"
msgstr "Uma semana" msgstr "Uma semana"
#: bookwyrm/forms.py:367 #: bookwyrm/forms.py:381
msgid "One Month" msgid "One Month"
msgstr "Um mês" msgstr "Um mês"
#: bookwyrm/forms.py:368 #: bookwyrm/forms.py:382
msgid "Does Not Expire" msgid "Does Not Expire"
msgstr "Não expira" msgstr "Não expira"
#: bookwyrm/forms.py:372 #: bookwyrm/forms.py:386
#, python-brace-format #, python-brace-format
msgid "{i} uses" msgid "{i} uses"
msgstr "{i} usos" msgstr "{i} usos"
#: bookwyrm/forms.py:373 #: bookwyrm/forms.py:387
msgid "Unlimited" msgid "Unlimited"
msgstr "Ilimitado" msgstr "Ilimitado"
#: bookwyrm/forms.py:469 #: bookwyrm/forms.py:483
msgid "List Order" msgid "List Order"
msgstr "Ordem de inserção" msgstr "Ordem de inserção"
#: bookwyrm/forms.py:470 #: bookwyrm/forms.py:484
msgid "Book Title" msgid "Book Title"
msgstr "Título do livro" msgstr "Título do livro"
#: bookwyrm/forms.py:471 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:33 #: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating" msgid "Rating"
msgstr "Avaliação" msgstr "Avaliação"
#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:134 #: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:134
msgid "Sort By" msgid "Sort By"
msgstr "Organizar por" msgstr "Organizar por"
#: bookwyrm/forms.py:477 #: bookwyrm/forms.py:491
msgid "Ascending" msgid "Ascending"
msgstr "Crescente" msgstr "Crescente"
#: bookwyrm/forms.py:478 #: bookwyrm/forms.py:492
msgid "Descending" msgid "Descending"
msgstr "Decrescente" msgstr "Decrescente"
#: bookwyrm/forms.py:491 #: bookwyrm/forms.py:505
msgid "Reading finish date cannot be before start date." msgid "Reading finish date cannot be before start date."
msgstr "A data de término da leitura não pode ser anterior a de início." msgstr "A data de término da leitura não pode ser anterior a de início."
@ -84,8 +84,9 @@ msgstr "Erro ao carregar livro"
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/models/link.py:62
#: bookwyrm/templates/import/import_status.html:200 #: bookwyrm/templates/import/import_status.html:200
#: bookwyrm/templates/settings/link_domains/link_domains.html:19
msgid "Pending" msgid "Pending"
msgstr "Pendente" msgstr "Pendente"
@ -105,23 +106,23 @@ msgstr "Exclusão de moderador"
msgid "Domain block" msgid "Domain block"
msgstr "Bloqueio de domínio" msgstr "Bloqueio de domínio"
#: bookwyrm/models/book.py:250 #: bookwyrm/models/book.py:253
msgid "Audiobook" msgid "Audiobook"
msgstr "Audiolivro" msgstr "Audiolivro"
#: bookwyrm/models/book.py:251 #: bookwyrm/models/book.py:254
msgid "eBook" msgid "eBook"
msgstr "e-book" msgstr "e-book"
#: bookwyrm/models/book.py:252 #: bookwyrm/models/book.py:255
msgid "Graphic novel" msgid "Graphic novel"
msgstr "Graphic novel" msgstr "Graphic novel"
#: bookwyrm/models/book.py:253 #: bookwyrm/models/book.py:256
msgid "Hardcover" msgid "Hardcover"
msgstr "Capa dura" msgstr "Capa dura"
#: bookwyrm/models/book.py:254 #: bookwyrm/models/book.py:257
msgid "Paperback" msgid "Paperback"
msgstr "Capa mole" msgstr "Capa mole"
@ -131,10 +132,11 @@ msgstr "Capa mole"
msgid "Federated" msgid "Federated"
msgstr "Federado" msgstr "Federado"
#: bookwyrm/models/federated_server.py:12 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:61
#: bookwyrm/templates/settings/federation/edit_instance.html:44 #: bookwyrm/templates/settings/federation/edit_instance.html:44
#: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance.html:10
#: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/federation/instance_list.html:23
#: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Bloqueado" msgstr "Bloqueado"
@ -189,6 +191,11 @@ msgstr "Seguidores"
msgid "Private" msgid "Private"
msgstr "Particular" msgstr "Particular"
#: bookwyrm/models/link.py:60
#: bookwyrm/templates/settings/link_domains/link_domains.html:23
msgid "Approved"
msgstr "Aprovado"
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272 #: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
msgid "Reviews" msgid "Reviews"
msgstr "Resenhas" msgstr "Resenhas"
@ -347,7 +354,7 @@ msgid "Admin"
msgstr "Admin" msgstr "Admin"
#: bookwyrm/templates/about/about.html:130 #: bookwyrm/templates/about/about.html:130
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 #: bookwyrm/templates/settings/users/user_moderation_actions.html:14
#: bookwyrm/templates/snippets/status/status_options.html:35 #: bookwyrm/templates/snippets/status/status_options.html:35
#: bookwyrm/templates/snippets/user_options.html:13 #: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message" msgid "Send direct message"
@ -529,61 +536,61 @@ msgstr "Todos os livros lidos por %(display_name)s em %(year)s"
msgid "Edit Author" msgid "Edit Author"
msgstr "Editar autor/a" msgstr "Editar autor/a"
#: bookwyrm/templates/author/author.html:40 #: bookwyrm/templates/author/author.html:35
msgid "Author details" msgid "Author details"
msgstr "Detalhes do/a autor/a" msgstr "Detalhes do/a autor/a"
#: bookwyrm/templates/author/author.html:44 #: bookwyrm/templates/author/author.html:39
#: bookwyrm/templates/author/edit_author.html:42 #: bookwyrm/templates/author/edit_author.html:42
msgid "Aliases:" msgid "Aliases:"
msgstr "Pseudônimos:" msgstr "Pseudônimos:"
#: bookwyrm/templates/author/author.html:53 #: bookwyrm/templates/author/author.html:48
msgid "Born:" msgid "Born:"
msgstr "Nascimento:" msgstr "Nascimento:"
#: bookwyrm/templates/author/author.html:60 #: bookwyrm/templates/author/author.html:55
msgid "Died:" msgid "Died:"
msgstr "Morte:" msgstr "Morte:"
#: bookwyrm/templates/author/author.html:70 #: bookwyrm/templates/author/author.html:65
msgid "External links" msgid "External links"
msgstr "Links externos" msgstr "Links externos"
#: bookwyrm/templates/author/author.html:75 #: bookwyrm/templates/author/author.html:70
msgid "Wikipedia" msgid "Wikipedia"
msgstr "Wikipédia" msgstr "Wikipédia"
#: bookwyrm/templates/author/author.html:83 #: bookwyrm/templates/author/author.html:78
msgid "View ISNI record" msgid "View ISNI record"
msgstr "Ver registro ISNI" msgstr "Ver registro ISNI"
#: bookwyrm/templates/author/author.html:88 #: bookwyrm/templates/author/author.html:83
#: bookwyrm/templates/author/sync_modal.html:5 #: bookwyrm/templates/author/sync_modal.html:5
#: bookwyrm/templates/book/book.html:122 #: bookwyrm/templates/book/book.html:122
#: bookwyrm/templates/book/sync_modal.html:5 #: bookwyrm/templates/book/sync_modal.html:5
msgid "Load data" msgid "Load data"
msgstr "Carregar informações" msgstr "Carregar informações"
#: bookwyrm/templates/author/author.html:92 #: bookwyrm/templates/author/author.html:87
#: bookwyrm/templates/book/book.html:126 #: bookwyrm/templates/book/book.html:126
msgid "View on OpenLibrary" msgid "View on OpenLibrary"
msgstr "Ver na OpenLibrary" msgstr "Ver na OpenLibrary"
#: bookwyrm/templates/author/author.html:107 #: bookwyrm/templates/author/author.html:102
#: bookwyrm/templates/book/book.html:140 #: bookwyrm/templates/book/book.html:140
msgid "View on Inventaire" msgid "View on Inventaire"
msgstr "Ver no Inventaire" msgstr "Ver no Inventaire"
#: bookwyrm/templates/author/author.html:123 #: bookwyrm/templates/author/author.html:118
msgid "View on LibraryThing" msgid "View on LibraryThing"
msgstr "Ver no LibraryThing" msgstr "Ver no LibraryThing"
#: bookwyrm/templates/author/author.html:131 #: bookwyrm/templates/author/author.html:126
msgid "View on Goodreads" msgid "View on Goodreads"
msgstr "Ver no Goodreads" msgstr "Ver no Goodreads"
#: bookwyrm/templates/author/author.html:145 #: bookwyrm/templates/author/author.html:141
#, python-format #, python-format
msgid "Books by %(name)s" msgid "Books by %(name)s"
msgstr "Livros de %(name)s" msgstr "Livros de %(name)s"
@ -613,7 +620,9 @@ msgid "Metadata"
msgstr "Metadados" msgstr "Metadados"
#: bookwyrm/templates/author/edit_author.html:35 #: bookwyrm/templates/author/edit_author.html:35
#: bookwyrm/templates/lists/form.html:9 bookwyrm/templates/shelf/form.html:9 #: bookwyrm/templates/lists/form.html:9
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14
#: bookwyrm/templates/shelf/form.html:9
msgid "Name:" msgid "Name:"
msgstr "Nome:" msgstr "Nome:"
@ -667,6 +676,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/author/edit_author.html:115
#: bookwyrm/templates/book/book.html:193 #: bookwyrm/templates/book/book.html:193
#: bookwyrm/templates/book/edit/edit_book.html:121 #: bookwyrm/templates/book/edit/edit_book.html:121
#: bookwyrm/templates/book/file_links/add_link_modal.html:50
#: bookwyrm/templates/groups/form.html:30 #: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/bookmark_button.html:15
#: bookwyrm/templates/lists/form.html:130 #: bookwyrm/templates/lists/form.html:130
@ -676,7 +686,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/settings/federation/edit_instance.html:82 #: bookwyrm/templates/settings/federation/edit_instance.html:82
#: bookwyrm/templates/settings/federation/instance.html:87 #: bookwyrm/templates/settings/federation/instance.html:87
#: bookwyrm/templates/settings/site.html:133 #: bookwyrm/templates/settings/site.html:133
#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69
#: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/shelf/form.html:25
#: bookwyrm/templates/snippets/reading_modals/layout.html:18 #: bookwyrm/templates/snippets/reading_modals/layout.html:18
msgid "Save" msgid "Save"
@ -688,13 +698,16 @@ msgstr "Salvar"
#: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/book/cover_add_modal.html:32
#: bookwyrm/templates/book/edit/edit_book.html:123 #: bookwyrm/templates/book/edit/edit_book.html:123
#: bookwyrm/templates/book/edit/edit_book.html:126 #: bookwyrm/templates/book/edit/edit_book.html:126
#: bookwyrm/templates/book/file_links/add_link_modal.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17 #: bookwyrm/templates/groups/delete_group_modal.html:17
#: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74 #: bookwyrm/templates/readthrough/readthrough_modal.html:74
#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/settings/federation/instance.html:88
#: bookwyrm/templates/snippets/report_modal.html:38 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
#: bookwyrm/templates/snippets/report_modal.html:54
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
@ -1039,6 +1052,103 @@ msgstr "Idioma:"
msgid "Search editions" msgid "Search editions"
msgstr "Procurar edições" msgstr "Procurar edições"
#: bookwyrm/templates/book/file_links/add_link_modal.html:6
msgid "Add file link"
msgstr "Adicionar link do arquivo"
#: bookwyrm/templates/book/file_links/add_link_modal.html:19
msgid "Links from unknown domains will need to be approved by a moderator before they are added."
msgstr "Links de domínios desconhecidos precisarão ser aprovados por um/a moderador/a antes de serem adicionados."
#: bookwyrm/templates/book/file_links/add_link_modal.html:24
msgid "URL:"
msgstr "URL:"
#: bookwyrm/templates/book/file_links/add_link_modal.html:29
msgid "File type:"
msgstr "Tipo do arquivo:"
#: bookwyrm/templates/book/file_links/edit_links.html:5
#: bookwyrm/templates/book/file_links/edit_links.html:22
#: bookwyrm/templates/book/file_links/links.html:47
msgid "Edit links"
msgstr "Editar links"
#: bookwyrm/templates/book/file_links/edit_links.html:11
#, python-format
msgid "\n"
" Links for \"<em>%(title)s</em>\"\n"
" "
msgstr "\n"
" Links de \"<em>%(title)s</em>\"\n"
" "
#: bookwyrm/templates/book/file_links/edit_links.html:32
#: bookwyrm/templates/settings/link_domains/link_table.html:6
msgid "URL"
msgstr "URL"
#: bookwyrm/templates/book/file_links/edit_links.html:33
#: bookwyrm/templates/settings/link_domains/link_table.html:7
msgid "Added by"
msgstr "Adicionado por"
#: bookwyrm/templates/book/file_links/edit_links.html:34
#: bookwyrm/templates/settings/link_domains/link_table.html:8
msgid "Filetype"
msgstr "Tipo do arquivo"
#: bookwyrm/templates/book/file_links/edit_links.html:35
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
#: bookwyrm/templates/settings/reports/report_links_table.html:5
msgid "Domain"
msgstr "Domínio"
#: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/reports/report_links_table.html:6
msgid "Actions"
msgstr "Ações"
#: bookwyrm/templates/book/file_links/edit_links.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:25
msgid "Report spam"
msgstr "Denunciar spam"
#: bookwyrm/templates/book/file_links/edit_links.html:65
msgid "No links available for this book."
msgstr "Nenhum link disponível para este livro."
#: bookwyrm/templates/book/file_links/edit_links.html:76
#: bookwyrm/templates/book/file_links/links.html:18
msgid "Add link to file"
msgstr "Adicionar link ao arquivo"
#: bookwyrm/templates/book/file_links/file_link_page.html:6
msgid "File Links"
msgstr "Links de arquivo"
#: bookwyrm/templates/book/file_links/links.html:9
msgid "Get a copy"
msgstr "Obter uma cópia"
#: bookwyrm/templates/book/file_links/links.html:41
msgid "No links available"
msgstr "Nenhum link disponível"
#: bookwyrm/templates/book/file_links/verification_modal.html:5
msgid "Leaving BookWyrm"
msgstr "Saindo da BookWyrm"
#: bookwyrm/templates/book/file_links/verification_modal.html:11
#, python-format
msgid "This link is taking you to: <code>%(link_url)s</code>.<br> Is that where you'd like to go?"
msgstr "Este link te levará a: <code>%(link_url)s</code>.<br> Você quer mesmo ir?"
#: bookwyrm/templates/book/file_links/verification_modal.html:20
msgid "Continue"
msgstr "Continuar"
#: bookwyrm/templates/book/publisher_info.html:23 #: bookwyrm/templates/book/publisher_info.html:23
#, python-format #, python-format
msgid "%(format)s, %(pages)s pages" msgid "%(format)s, %(pages)s pages"
@ -1109,8 +1219,8 @@ msgstr "Código de confirmação:"
#: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/confirm_email/confirm_email.html:25
#: bookwyrm/templates/landing/layout.html:73 #: bookwyrm/templates/landing/layout.html:73
#: bookwyrm/templates/settings/dashboard/dashboard.html:93 #: bookwyrm/templates/settings/dashboard/dashboard.html:104
#: bookwyrm/templates/snippets/report_modal.html:37 #: bookwyrm/templates/snippets/report_modal.html:52
msgid "Submit" msgid "Submit"
msgstr "Enviar" msgstr "Enviar"
@ -1857,6 +1967,7 @@ msgid "Review"
msgstr "Resenhar" msgstr "Resenhar"
#: bookwyrm/templates/import/import_status.html:124 #: bookwyrm/templates/import/import_status.html:124
#: bookwyrm/templates/settings/link_domains/link_table.html:9
msgid "Book" msgid "Book"
msgstr "Livro" msgstr "Livro"
@ -1909,6 +2020,7 @@ msgstr "Aprovar uma sugestão adicionará permanentemente o livro sugerido às s
#: bookwyrm/templates/import/manual_review.html:58 #: bookwyrm/templates/import/manual_review.html:58
#: bookwyrm/templates/lists/curate.html:59 #: bookwyrm/templates/lists/curate.html:59
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve" msgid "Approve"
msgstr "Aprovar" msgstr "Aprovar"
@ -2256,6 +2368,7 @@ msgid "List position"
msgstr "Posição na lista" msgstr "Posição na lista"
#: bookwyrm/templates/lists/list.html:101 #: bookwyrm/templates/lists/list.html:101
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set" msgid "Set"
msgstr "Definir" msgstr "Definir"
@ -2787,6 +2900,11 @@ msgstr "Excluir estas datas de leitura"
msgid "Add read dates for \"<em>%(title)s</em>\"" msgid "Add read dates for \"<em>%(title)s</em>\""
msgstr "Adicionar datas de leitura de \"<em>%(title)s</em>\"" msgstr "Adicionar datas de leitura de \"<em>%(title)s</em>\""
#: bookwyrm/templates/report.html:5
#: bookwyrm/templates/snippets/report_button.html:13
msgid "Report"
msgstr "Denunciar"
#: bookwyrm/templates/search/book.html:44 #: bookwyrm/templates/search/book.html:44
msgid "Results from" msgid "Results from"
msgstr "Resultados de" msgstr "Resultados de"
@ -2859,13 +2977,13 @@ msgstr "Falso"
#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement.html:46
#: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/announcements/announcement_form.html:44
#: bookwyrm/templates/settings/dashboard/dashboard.html:71 #: bookwyrm/templates/settings/dashboard/dashboard.html:82
msgid "Start date:" msgid "Start date:"
msgstr "Data de início:" msgstr "Data de início:"
#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement.html:51
#: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/announcements/announcement_form.html:54
#: bookwyrm/templates/settings/dashboard/dashboard.html:77 #: bookwyrm/templates/settings/dashboard/dashboard.html:88
msgid "End date:" msgid "End date:"
msgstr "Data final:" msgstr "Data final:"
@ -2893,7 +3011,7 @@ msgstr "Data do evento:"
#: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:3
#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/announcements.html:5
#: bookwyrm/templates/settings/layout.html:72 #: bookwyrm/templates/settings/layout.html:76
msgid "Announcements" msgid "Announcements"
msgstr "Avisos" msgstr "Avisos"
@ -2933,7 +3051,7 @@ msgid "Dashboard"
msgstr "Painel" msgstr "Painel"
#: bookwyrm/templates/settings/dashboard/dashboard.html:15 #: bookwyrm/templates/settings/dashboard/dashboard.html:15
#: bookwyrm/templates/settings/dashboard/dashboard.html:100 #: bookwyrm/templates/settings/dashboard/dashboard.html:111
msgid "Total users" msgid "Total users"
msgstr "Total de usuários" msgstr "Total de usuários"
@ -2960,36 +3078,43 @@ msgstr[1] "%(display_count)s denúncias abertas"
#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:54
#, python-format #, python-format
msgid "%(display_count)s domain needs review"
msgid_plural "%(display_count)s domains need review"
msgstr[0] "%(display_count)s domínio precisa ser analisado"
msgstr[1] "%(display_count)s domínios precisam ser analisados"
#: bookwyrm/templates/settings/dashboard/dashboard.html:65
#, python-format
msgid "%(display_count)s invite request" msgid "%(display_count)s invite request"
msgid_plural "%(display_count)s invite requests" msgid_plural "%(display_count)s invite requests"
msgstr[0] "%(display_count)s pedido de convite" msgstr[0] "%(display_count)s pedido de convite"
msgstr[1] "%(display_count)s pedidos de convite" msgstr[1] "%(display_count)s pedidos de convite"
#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #: bookwyrm/templates/settings/dashboard/dashboard.html:76
msgid "Instance Activity" msgid "Instance Activity"
msgstr "Atividade da instância" msgstr "Atividade da instância"
#: bookwyrm/templates/settings/dashboard/dashboard.html:83 #: bookwyrm/templates/settings/dashboard/dashboard.html:94
msgid "Interval:" msgid "Interval:"
msgstr "Intervalo:" msgstr "Intervalo:"
#: bookwyrm/templates/settings/dashboard/dashboard.html:87 #: bookwyrm/templates/settings/dashboard/dashboard.html:98
msgid "Days" msgid "Days"
msgstr "Dias" msgstr "Dias"
#: bookwyrm/templates/settings/dashboard/dashboard.html:88 #: bookwyrm/templates/settings/dashboard/dashboard.html:99
msgid "Weeks" msgid "Weeks"
msgstr "Semanas" msgstr "Semanas"
#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/settings/dashboard/dashboard.html:117
msgid "User signup activity" msgid "User signup activity"
msgstr "Novos usuários" msgstr "Novos usuários"
#: bookwyrm/templates/settings/dashboard/dashboard.html:112 #: bookwyrm/templates/settings/dashboard/dashboard.html:123
msgid "Status activity" msgid "Status activity"
msgstr "Publicações" msgstr "Publicações"
#: bookwyrm/templates/settings/dashboard/dashboard.html:118 #: bookwyrm/templates/settings/dashboard/dashboard.html:129
msgid "Works created" msgid "Works created"
msgstr "Obras criadas" msgstr "Obras criadas"
@ -3024,10 +3149,6 @@ msgstr "Lista de bloqueio de e-mails"
msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked."
msgstr "Quando alguém tentar se registrar com um e-mail desta domínio a conta não será criada. O processo de registro apenas parecerá ter funcionado." msgstr "Quando alguém tentar se registrar com um e-mail desta domínio a conta não será criada. O processo de registro apenas parecerá ter funcionado."
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
msgid "Domain"
msgstr "Domínio"
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29
#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 #: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27
msgid "Options" msgid "Options"
@ -3139,12 +3260,8 @@ msgstr "Editar"
msgid "<em>No notes</em>" msgid "<em>No notes</em>"
msgstr "<em>Sem notas</em>" msgstr "<em>Sem notas</em>"
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "Actions"
msgstr "Ações"
#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:98
#: bookwyrm/templates/settings/link_domains/link_domains.html:87
#: bookwyrm/templates/snippets/block_button.html:5 #: bookwyrm/templates/snippets/block_button.html:5
msgid "Block" msgid "Block"
msgstr "Bloquear" msgstr "Bloquear"
@ -3357,62 +3474,113 @@ msgstr "Moderação"
msgid "Reports" msgid "Reports"
msgstr "Denúncias" msgstr "Denúncias"
#: bookwyrm/templates/settings/layout.html:68 #: bookwyrm/templates/settings/layout.html:67
#: bookwyrm/templates/settings/link_domains/link_domains.html:5
#: bookwyrm/templates/settings/link_domains/link_domains.html:7
msgid "Link Domains"
msgstr "Domínios de links"
#: bookwyrm/templates/settings/layout.html:72
msgid "Instance Settings" msgid "Instance Settings"
msgstr "Configurações da instância" msgstr "Configurações da instância"
#: bookwyrm/templates/settings/layout.html:76 #: bookwyrm/templates/settings/layout.html:80
#: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:4
#: bookwyrm/templates/settings/site.html:6 #: bookwyrm/templates/settings/site.html:6
msgid "Site Settings" msgid "Site Settings"
msgstr "Configurações do site" msgstr "Configurações do site"
#: bookwyrm/templates/settings/reports/report.html:5 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5
#: bookwyrm/templates/settings/reports/report.html:8
#: bookwyrm/templates/settings/reports/report_preview.html:6
#, python-format #, python-format
msgid "Report #%(report_id)s: %(username)s" msgid "Set display name for %(url)s"
msgstr "Denúncia #%(report_id)s: %(username)s" msgstr "Definir nome de exibição para %(url)s"
#: bookwyrm/templates/settings/reports/report.html:9 #: bookwyrm/templates/settings/link_domains/link_domains.html:11
msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving."
msgstr "Os domínios devem ser aprovados antes de poderem ser exibidos nas páginas dos livros. Certifique-se de que os domínios não estejam hospedando spam, códigos maliciosos ou links enganosos antes de aprová-los."
#: bookwyrm/templates/settings/link_domains/link_domains.html:45
msgid "Set display name"
msgstr "Definir nome de exibição"
#: bookwyrm/templates/settings/link_domains/link_domains.html:53
msgid "View links"
msgstr "Ver links"
#: bookwyrm/templates/settings/link_domains/link_domains.html:96
msgid "No domains currently approved"
msgstr "Nenhum domínio aprovado atualmente"
#: bookwyrm/templates/settings/link_domains/link_domains.html:98
msgid "No domains currently pending"
msgstr "Nenhum domínio pendente de aprovação"
#: bookwyrm/templates/settings/link_domains/link_domains.html:100
msgid "No domains currently blocked"
msgstr "Nenhum domínio bloqueado"
#: bookwyrm/templates/settings/link_domains/link_table.html:39
msgid "No links available for this domain."
msgstr "Nenhum link disponível para este domínio."
#: bookwyrm/templates/settings/reports/report.html:11
msgid "Back to reports" msgid "Back to reports"
msgstr "Voltar às denúncias" msgstr "Voltar às denúncias"
#: bookwyrm/templates/settings/reports/report.html:23 #: bookwyrm/templates/settings/reports/report.html:22
msgid "Reported statuses"
msgstr "Publicações denunciadas"
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Status has been deleted"
msgstr "A publicação foi excluída"
#: bookwyrm/templates/settings/reports/report.html:39
msgid "Reported links"
msgstr "Links denunciados"
#: bookwyrm/templates/settings/reports/report.html:55
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Comentários da moderação" msgstr "Comentários da moderação"
#: bookwyrm/templates/settings/reports/report.html:41 #: bookwyrm/templates/settings/reports/report.html:73
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Comentar" msgstr "Comentar"
#: bookwyrm/templates/settings/reports/report.html:46 #: bookwyrm/templates/settings/reports/report_header.html:6
msgid "Reported statuses" #, python-format
msgstr "Publicações denunciadas" msgid "Report #%(report_id)s: Status posted by @%(username)s"
msgstr "Denúncia #%(report_id)s: Publicação de @%(username)s"
#: bookwyrm/templates/settings/reports/report.html:48 #: bookwyrm/templates/settings/reports/report_header.html:12
msgid "No statuses reported" #, python-format
msgstr "Nenhuma publicação denunciada" msgid "Report #%(report_id)s: Link added by @%(username)s"
msgstr "Denúncia #%(report_id)s: Link adicionado por @%(username)s"
#: bookwyrm/templates/settings/reports/report.html:54 #: bookwyrm/templates/settings/reports/report_header.html:18
msgid "Status has been deleted" #, python-format
msgstr "A publicação foi excluída" msgid "Report #%(report_id)s: User @%(username)s"
msgstr "Denúncia #%(report_id)s: Usuário @%(username)s"
#: bookwyrm/templates/settings/reports/report_preview.html:13 #: bookwyrm/templates/settings/reports/report_links_table.html:17
msgid "Block domain"
msgstr "Bloquear domínio"
#: bookwyrm/templates/settings/reports/report_preview.html:17
msgid "No notes provided" msgid "No notes provided"
msgstr "Nenhum comentário foi feito" msgstr "Nenhum comentário foi feito"
#: bookwyrm/templates/settings/reports/report_preview.html:20 #: bookwyrm/templates/settings/reports/report_preview.html:24
#, python-format #, python-format
msgid "Reported by <a href=\"%(path)s\">%(username)s</a>" msgid "Reported by <a href=\"%(path)s\">@%(username)s</a>"
msgstr "Denunciado por <a href=\"%(path)s\">%(username)s</a>" msgstr "Denunciado por <a href=\"%(path)s\">@%(username)s</a>"
#: bookwyrm/templates/settings/reports/report_preview.html:30 #: bookwyrm/templates/settings/reports/report_preview.html:34
msgid "Re-open" msgid "Re-open"
msgstr "Reabrir" msgstr "Reabrir"
#: bookwyrm/templates/settings/reports/report_preview.html:32 #: bookwyrm/templates/settings/reports/report_preview.html:36
msgid "Resolve" msgid "Resolve"
msgstr "Concluir" msgstr "Concluir"
@ -3540,7 +3708,7 @@ msgid "Invite request text:"
msgstr "Texto solicitação de convite:" msgstr "Texto solicitação de convite:"
#: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/delete_user_form.html:5
#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32
msgid "Permanently delete user" msgid "Permanently delete user"
msgstr "Excluir usuário permanentemente" msgstr "Excluir usuário permanentemente"
@ -3650,15 +3818,19 @@ msgstr "Ver instância"
msgid "Permanently deleted" msgid "Permanently deleted"
msgstr "Excluído permanentemente" msgstr "Excluído permanentemente"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 #: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "User Actions"
msgstr "Ações do usuário"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:21
msgid "Suspend user" msgid "Suspend user"
msgstr "Suspender usuário" msgstr "Suspender usuário"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 #: bookwyrm/templates/settings/users/user_moderation_actions.html:26
msgid "Un-suspend user" msgid "Un-suspend user"
msgstr "Reativar usuário" msgstr "Reativar usuário"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 #: bookwyrm/templates/settings/users/user_moderation_actions.html:48
msgid "Access level:" msgid "Access level:"
msgstr "Nível de acesso:" msgstr "Nível de acesso:"
@ -4062,21 +4234,31 @@ msgstr "Quero ler \"<em>%(book_title)s</em>\""
msgid "Sign Up" msgid "Sign Up"
msgstr "Cadastrar" msgstr "Cadastrar"
#: bookwyrm/templates/snippets/report_button.html:13 #: bookwyrm/templates/snippets/report_modal.html:8
msgid "Report" #, python-format
msgstr "Denunciar" msgid "Report @%(username)s's status"
msgstr "Denunciar publicação de @%(username)s"
#: bookwyrm/templates/snippets/report_modal.html:6 #: bookwyrm/templates/snippets/report_modal.html:10
#, python-format
msgid "Report %(domain)s link"
msgstr "Denunciar link %(domain)s"
#: bookwyrm/templates/snippets/report_modal.html:12
#, python-format #, python-format
msgid "Report @%(username)s" msgid "Report @%(username)s"
msgstr "Denunciar @%(username)s" msgstr "Denunciar @%(username)s"
#: bookwyrm/templates/snippets/report_modal.html:23 #: bookwyrm/templates/snippets/report_modal.html:34
#, python-format #, python-format
msgid "This report will be sent to %(site_name)s's moderators for review." msgid "This report will be sent to %(site_name)s's moderators for review."
msgstr "Esta denúncia será encaminhada à equipe de moderadores de %(site_name)s para análise." msgstr "Esta denúncia será encaminhada à equipe de moderadores de %(site_name)s para análise."
#: bookwyrm/templates/snippets/report_modal.html:26 #: bookwyrm/templates/snippets/report_modal.html:36
msgid "Links from this domain will be removed until your report has been reviewed."
msgstr "Links deste domínio serão excluídos até sua denúncia ser analisada."
#: bookwyrm/templates/snippets/report_modal.html:41
msgid "More info about this report:" msgid "More info about this report:"
msgstr "Mais informações sobre esta denúncia:" msgstr "Mais informações sobre esta denúncia:"

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: 2022-01-13 16:54+0000\n" "POT-Creation-Date: 2022-01-17 16:05+0000\n"
"PO-Revision-Date: 2022-01-13 17:50\n" "PO-Revision-Date: 2022-01-17 17:10\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Portuguese\n" "Language-Team: Portuguese\n"
"Language: pt\n" "Language: pt\n"
@ -17,62 +17,62 @@ msgstr ""
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" "X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
"X-Crowdin-File-ID: 1553\n" "X-Crowdin-File-ID: 1553\n"
#: bookwyrm/forms.py:351 #: bookwyrm/forms.py:365
msgid "A user with this email already exists." msgid "A user with this email already exists."
msgstr "Já existe um utilizador com este E-Mail." msgstr "Já existe um utilizador com este E-Mail."
#: bookwyrm/forms.py:365 #: bookwyrm/forms.py:379
msgid "One Day" msgid "One Day"
msgstr "Um Dia" msgstr "Um Dia"
#: bookwyrm/forms.py:366 #: bookwyrm/forms.py:380
msgid "One Week" msgid "One Week"
msgstr "Uma Semana" msgstr "Uma Semana"
#: bookwyrm/forms.py:367 #: bookwyrm/forms.py:381
msgid "One Month" msgid "One Month"
msgstr "Um Mês" msgstr "Um Mês"
#: bookwyrm/forms.py:368 #: bookwyrm/forms.py:382
msgid "Does Not Expire" msgid "Does Not Expire"
msgstr "Não Expira" msgstr "Não Expira"
#: bookwyrm/forms.py:372 #: bookwyrm/forms.py:386
#, python-brace-format #, python-brace-format
msgid "{i} uses" msgid "{i} uses"
msgstr "{i} utilizações" msgstr "{i} utilizações"
#: bookwyrm/forms.py:373 #: bookwyrm/forms.py:387
msgid "Unlimited" msgid "Unlimited"
msgstr "Ilimitado" msgstr "Ilimitado"
#: bookwyrm/forms.py:469 #: bookwyrm/forms.py:483
msgid "List Order" msgid "List Order"
msgstr "Ordem da Lista" msgstr "Ordem da Lista"
#: bookwyrm/forms.py:470 #: bookwyrm/forms.py:484
msgid "Book Title" msgid "Book Title"
msgstr "Título do livro" msgstr "Título do livro"
#: bookwyrm/forms.py:471 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:33 #: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating" msgid "Rating"
msgstr "Classificação" msgstr "Classificação"
#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:134 #: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:134
msgid "Sort By" msgid "Sort By"
msgstr "Ordenar Por" msgstr "Ordenar Por"
#: bookwyrm/forms.py:477 #: bookwyrm/forms.py:491
msgid "Ascending" msgid "Ascending"
msgstr "Ascendente" msgstr "Ascendente"
#: bookwyrm/forms.py:478 #: bookwyrm/forms.py:492
msgid "Descending" msgid "Descending"
msgstr "Descendente" msgstr "Descendente"
#: bookwyrm/forms.py:491 #: bookwyrm/forms.py:505
msgid "Reading finish date cannot be before start date." msgid "Reading finish date cannot be before start date."
msgstr "" msgstr ""
@ -84,8 +84,9 @@ msgstr "Erro ao carregar o livro"
msgid "Could not find a match for book" msgid "Could not find a match for book"
msgstr "Não foi possível encontrar um resultado para o livro pedido" msgstr "Não foi possível encontrar um resultado para o livro pedido"
#: bookwyrm/models/base_model.py:17 #: bookwyrm/models/base_model.py:17 bookwyrm/models/link.py:62
#: bookwyrm/templates/import/import_status.html:200 #: bookwyrm/templates/import/import_status.html:200
#: bookwyrm/templates/settings/link_domains/link_domains.html:19
msgid "Pending" msgid "Pending"
msgstr "Pendente" msgstr "Pendente"
@ -105,23 +106,23 @@ msgstr "Exclusão do moderador"
msgid "Domain block" msgid "Domain block"
msgstr "Bloqueio de domínio" msgstr "Bloqueio de domínio"
#: bookwyrm/models/book.py:250 #: bookwyrm/models/book.py:253
msgid "Audiobook" msgid "Audiobook"
msgstr "Livro-áudio" msgstr "Livro-áudio"
#: bookwyrm/models/book.py:251 #: bookwyrm/models/book.py:254
msgid "eBook" msgid "eBook"
msgstr "eBook" msgstr "eBook"
#: bookwyrm/models/book.py:252 #: bookwyrm/models/book.py:255
msgid "Graphic novel" msgid "Graphic novel"
msgstr "Novela gráfica" msgstr "Novela gráfica"
#: bookwyrm/models/book.py:253 #: bookwyrm/models/book.py:256
msgid "Hardcover" msgid "Hardcover"
msgstr "Capa dura" msgstr "Capa dura"
#: bookwyrm/models/book.py:254 #: bookwyrm/models/book.py:257
msgid "Paperback" msgid "Paperback"
msgstr "Capa mole" msgstr "Capa mole"
@ -131,10 +132,11 @@ msgstr "Capa mole"
msgid "Federated" msgid "Federated"
msgstr "Federado" msgstr "Federado"
#: bookwyrm/models/federated_server.py:12 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:61
#: bookwyrm/templates/settings/federation/edit_instance.html:44 #: bookwyrm/templates/settings/federation/edit_instance.html:44
#: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance.html:10
#: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/federation/instance_list.html:23
#: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Bloqueado" msgstr "Bloqueado"
@ -189,6 +191,11 @@ msgstr "Seguidores"
msgid "Private" msgid "Private"
msgstr "Privado" msgstr "Privado"
#: bookwyrm/models/link.py:60
#: bookwyrm/templates/settings/link_domains/link_domains.html:23
msgid "Approved"
msgstr ""
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272 #: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
msgid "Reviews" msgid "Reviews"
msgstr "Criticas" msgstr "Criticas"
@ -346,7 +353,7 @@ msgid "Admin"
msgstr "Admin" msgstr "Admin"
#: bookwyrm/templates/about/about.html:130 #: bookwyrm/templates/about/about.html:130
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 #: bookwyrm/templates/settings/users/user_moderation_actions.html:14
#: bookwyrm/templates/snippets/status/status_options.html:35 #: bookwyrm/templates/snippets/status/status_options.html:35
#: bookwyrm/templates/snippets/user_options.html:13 #: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message" msgid "Send direct message"
@ -528,61 +535,61 @@ msgstr "Todos os livros que %(display_name)s leu em %(year)s"
msgid "Edit Author" msgid "Edit Author"
msgstr "Editar Autor(a)" msgstr "Editar Autor(a)"
#: bookwyrm/templates/author/author.html:40 #: bookwyrm/templates/author/author.html:35
msgid "Author details" msgid "Author details"
msgstr "Detalhes do autor" msgstr "Detalhes do autor"
#: bookwyrm/templates/author/author.html:44 #: bookwyrm/templates/author/author.html:39
#: bookwyrm/templates/author/edit_author.html:42 #: bookwyrm/templates/author/edit_author.html:42
msgid "Aliases:" msgid "Aliases:"
msgstr "Pseudónimos:" msgstr "Pseudónimos:"
#: bookwyrm/templates/author/author.html:53 #: bookwyrm/templates/author/author.html:48
msgid "Born:" msgid "Born:"
msgstr "Nascido a:" msgstr "Nascido a:"
#: bookwyrm/templates/author/author.html:60 #: bookwyrm/templates/author/author.html:55
msgid "Died:" msgid "Died:"
msgstr "Morreu em:" msgstr "Morreu em:"
#: bookwyrm/templates/author/author.html:70 #: bookwyrm/templates/author/author.html:65
msgid "External links" msgid "External links"
msgstr "Links externos" msgstr "Links externos"
#: bookwyrm/templates/author/author.html:75 #: bookwyrm/templates/author/author.html:70
msgid "Wikipedia" msgid "Wikipedia"
msgstr "Wikipédia" msgstr "Wikipédia"
#: bookwyrm/templates/author/author.html:83 #: bookwyrm/templates/author/author.html:78
msgid "View ISNI record" msgid "View ISNI record"
msgstr "Ver registro do ISNI" msgstr "Ver registro do ISNI"
#: bookwyrm/templates/author/author.html:88 #: bookwyrm/templates/author/author.html:83
#: bookwyrm/templates/author/sync_modal.html:5 #: bookwyrm/templates/author/sync_modal.html:5
#: bookwyrm/templates/book/book.html:122 #: bookwyrm/templates/book/book.html:122
#: bookwyrm/templates/book/sync_modal.html:5 #: bookwyrm/templates/book/sync_modal.html:5
msgid "Load data" msgid "Load data"
msgstr "Carregar dados" msgstr "Carregar dados"
#: bookwyrm/templates/author/author.html:92 #: bookwyrm/templates/author/author.html:87
#: bookwyrm/templates/book/book.html:126 #: bookwyrm/templates/book/book.html:126
msgid "View on OpenLibrary" msgid "View on OpenLibrary"
msgstr "Ver na OpenLibrary" msgstr "Ver na OpenLibrary"
#: bookwyrm/templates/author/author.html:107 #: bookwyrm/templates/author/author.html:102
#: bookwyrm/templates/book/book.html:140 #: bookwyrm/templates/book/book.html:140
msgid "View on Inventaire" msgid "View on Inventaire"
msgstr "Ver no Inventaire" msgstr "Ver no Inventaire"
#: bookwyrm/templates/author/author.html:123 #: bookwyrm/templates/author/author.html:118
msgid "View on LibraryThing" msgid "View on LibraryThing"
msgstr "Ver na LibraryThing" msgstr "Ver na LibraryThing"
#: bookwyrm/templates/author/author.html:131 #: bookwyrm/templates/author/author.html:126
msgid "View on Goodreads" msgid "View on Goodreads"
msgstr "Ver na Goodreads" msgstr "Ver na Goodreads"
#: bookwyrm/templates/author/author.html:145 #: bookwyrm/templates/author/author.html:141
#, python-format #, python-format
msgid "Books by %(name)s" msgid "Books by %(name)s"
msgstr "Livros por %(name)s" msgstr "Livros por %(name)s"
@ -612,7 +619,9 @@ msgid "Metadata"
msgstr "Metadados" msgstr "Metadados"
#: bookwyrm/templates/author/edit_author.html:35 #: bookwyrm/templates/author/edit_author.html:35
#: bookwyrm/templates/lists/form.html:9 bookwyrm/templates/shelf/form.html:9 #: bookwyrm/templates/lists/form.html:9
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14
#: bookwyrm/templates/shelf/form.html:9
msgid "Name:" msgid "Name:"
msgstr "Nome:" msgstr "Nome:"
@ -666,6 +675,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/author/edit_author.html:115
#: bookwyrm/templates/book/book.html:193 #: bookwyrm/templates/book/book.html:193
#: bookwyrm/templates/book/edit/edit_book.html:121 #: bookwyrm/templates/book/edit/edit_book.html:121
#: bookwyrm/templates/book/file_links/add_link_modal.html:50
#: bookwyrm/templates/groups/form.html:30 #: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/bookmark_button.html:15
#: bookwyrm/templates/lists/form.html:130 #: bookwyrm/templates/lists/form.html:130
@ -675,7 +685,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/settings/federation/edit_instance.html:82 #: bookwyrm/templates/settings/federation/edit_instance.html:82
#: bookwyrm/templates/settings/federation/instance.html:87 #: bookwyrm/templates/settings/federation/instance.html:87
#: bookwyrm/templates/settings/site.html:133 #: bookwyrm/templates/settings/site.html:133
#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69
#: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/shelf/form.html:25
#: bookwyrm/templates/snippets/reading_modals/layout.html:18 #: bookwyrm/templates/snippets/reading_modals/layout.html:18
msgid "Save" msgid "Save"
@ -687,13 +697,16 @@ msgstr "Salvar"
#: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/book/cover_add_modal.html:32
#: bookwyrm/templates/book/edit/edit_book.html:123 #: bookwyrm/templates/book/edit/edit_book.html:123
#: bookwyrm/templates/book/edit/edit_book.html:126 #: bookwyrm/templates/book/edit/edit_book.html:126
#: bookwyrm/templates/book/file_links/add_link_modal.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17 #: bookwyrm/templates/groups/delete_group_modal.html:17
#: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74 #: bookwyrm/templates/readthrough/readthrough_modal.html:74
#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/settings/federation/instance.html:88
#: bookwyrm/templates/snippets/report_modal.html:38 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
#: bookwyrm/templates/snippets/report_modal.html:54
msgid "Cancel" msgid "Cancel"
msgstr "Cancelar" msgstr "Cancelar"
@ -1038,6 +1051,101 @@ msgstr "Idioma:"
msgid "Search editions" msgid "Search editions"
msgstr "Pesquisar edições" msgstr "Pesquisar edições"
#: bookwyrm/templates/book/file_links/add_link_modal.html:6
msgid "Add file link"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:19
msgid "Links from unknown domains will need to be approved by a moderator before they are added."
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:24
msgid "URL:"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:29
msgid "File type:"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:5
#: bookwyrm/templates/book/file_links/edit_links.html:22
#: bookwyrm/templates/book/file_links/links.html:47
msgid "Edit links"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:11
#, python-format
msgid "\n"
" Links for \"<em>%(title)s</em>\"\n"
" "
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:32
#: bookwyrm/templates/settings/link_domains/link_table.html:6
msgid "URL"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:33
#: bookwyrm/templates/settings/link_domains/link_table.html:7
msgid "Added by"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:34
#: bookwyrm/templates/settings/link_domains/link_table.html:8
msgid "Filetype"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:35
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
#: bookwyrm/templates/settings/reports/report_links_table.html:5
msgid "Domain"
msgstr "Domínio"
#: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/reports/report_links_table.html:6
msgid "Actions"
msgstr "Acções"
#: bookwyrm/templates/book/file_links/edit_links.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:25
msgid "Report spam"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:65
msgid "No links available for this book."
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:76
#: bookwyrm/templates/book/file_links/links.html:18
msgid "Add link to file"
msgstr ""
#: bookwyrm/templates/book/file_links/file_link_page.html:6
msgid "File Links"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:9
msgid "Get a copy"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:41
msgid "No links available"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:5
msgid "Leaving BookWyrm"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:11
#, python-format
msgid "This link is taking you to: <code>%(link_url)s</code>.<br> Is that where you'd like to go?"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:20
msgid "Continue"
msgstr ""
#: bookwyrm/templates/book/publisher_info.html:23 #: bookwyrm/templates/book/publisher_info.html:23
#, python-format #, python-format
msgid "%(format)s, %(pages)s pages" msgid "%(format)s, %(pages)s pages"
@ -1108,8 +1216,8 @@ msgstr "Código de confirmação:"
#: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/confirm_email/confirm_email.html:25
#: bookwyrm/templates/landing/layout.html:73 #: bookwyrm/templates/landing/layout.html:73
#: bookwyrm/templates/settings/dashboard/dashboard.html:93 #: bookwyrm/templates/settings/dashboard/dashboard.html:104
#: bookwyrm/templates/snippets/report_modal.html:37 #: bookwyrm/templates/snippets/report_modal.html:52
msgid "Submit" msgid "Submit"
msgstr "Submeter" msgstr "Submeter"
@ -1856,6 +1964,7 @@ msgid "Review"
msgstr "Critica" msgstr "Critica"
#: bookwyrm/templates/import/import_status.html:124 #: bookwyrm/templates/import/import_status.html:124
#: bookwyrm/templates/settings/link_domains/link_table.html:9
msgid "Book" msgid "Book"
msgstr "Livro" msgstr "Livro"
@ -1908,6 +2017,7 @@ msgstr "Aprovar uma sugestão adicionará permanentemente o livro sugerido às t
#: bookwyrm/templates/import/manual_review.html:58 #: bookwyrm/templates/import/manual_review.html:58
#: bookwyrm/templates/lists/curate.html:59 #: bookwyrm/templates/lists/curate.html:59
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve" msgid "Approve"
msgstr "Aprovar" msgstr "Aprovar"
@ -2255,6 +2365,7 @@ msgid "List position"
msgstr "Posição da lista" msgstr "Posição da lista"
#: bookwyrm/templates/lists/list.html:101 #: bookwyrm/templates/lists/list.html:101
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set" msgid "Set"
msgstr "Definir" msgstr "Definir"
@ -2786,6 +2897,11 @@ msgstr "Excluir estas datas de leitura"
msgid "Add read dates for \"<em>%(title)s</em>\"" msgid "Add read dates for \"<em>%(title)s</em>\""
msgstr "" msgstr ""
#: bookwyrm/templates/report.html:5
#: bookwyrm/templates/snippets/report_button.html:13
msgid "Report"
msgstr "Denunciar"
#: bookwyrm/templates/search/book.html:44 #: bookwyrm/templates/search/book.html:44
msgid "Results from" msgid "Results from"
msgstr "Resultados de" msgstr "Resultados de"
@ -2858,13 +2974,13 @@ msgstr "Falso"
#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement.html:46
#: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/announcements/announcement_form.html:44
#: bookwyrm/templates/settings/dashboard/dashboard.html:71 #: bookwyrm/templates/settings/dashboard/dashboard.html:82
msgid "Start date:" msgid "Start date:"
msgstr "Data de início:" msgstr "Data de início:"
#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement.html:51
#: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/announcements/announcement_form.html:54
#: bookwyrm/templates/settings/dashboard/dashboard.html:77 #: bookwyrm/templates/settings/dashboard/dashboard.html:88
msgid "End date:" msgid "End date:"
msgstr "Data de conclusão:" msgstr "Data de conclusão:"
@ -2892,7 +3008,7 @@ msgstr "Data do evento:"
#: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:3
#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/announcements.html:5
#: bookwyrm/templates/settings/layout.html:72 #: bookwyrm/templates/settings/layout.html:76
msgid "Announcements" msgid "Announcements"
msgstr "Comunicados" msgstr "Comunicados"
@ -2932,7 +3048,7 @@ msgid "Dashboard"
msgstr "Painel de controlo" msgstr "Painel de controlo"
#: bookwyrm/templates/settings/dashboard/dashboard.html:15 #: bookwyrm/templates/settings/dashboard/dashboard.html:15
#: bookwyrm/templates/settings/dashboard/dashboard.html:100 #: bookwyrm/templates/settings/dashboard/dashboard.html:111
msgid "Total users" msgid "Total users"
msgstr "Total de utilizadores" msgstr "Total de utilizadores"
@ -2959,36 +3075,43 @@ msgstr[1] "%(display_count)s denúncias abertas"
#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:54
#, python-format #, python-format
msgid "%(display_count)s domain needs review"
msgid_plural "%(display_count)s domains need review"
msgstr[0] ""
msgstr[1] ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:65
#, python-format
msgid "%(display_count)s invite request" msgid "%(display_count)s invite request"
msgid_plural "%(display_count)s invite requests" msgid_plural "%(display_count)s invite requests"
msgstr[0] "%(display_count)s pedido de convite" msgstr[0] "%(display_count)s pedido de convite"
msgstr[1] "%(display_count)s pedidos de convite" msgstr[1] "%(display_count)s pedidos de convite"
#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #: bookwyrm/templates/settings/dashboard/dashboard.html:76
msgid "Instance Activity" msgid "Instance Activity"
msgstr "Atividade do domínio" msgstr "Atividade do domínio"
#: bookwyrm/templates/settings/dashboard/dashboard.html:83 #: bookwyrm/templates/settings/dashboard/dashboard.html:94
msgid "Interval:" msgid "Interval:"
msgstr "Intervalo:" msgstr "Intervalo:"
#: bookwyrm/templates/settings/dashboard/dashboard.html:87 #: bookwyrm/templates/settings/dashboard/dashboard.html:98
msgid "Days" msgid "Days"
msgstr "Dias" msgstr "Dias"
#: bookwyrm/templates/settings/dashboard/dashboard.html:88 #: bookwyrm/templates/settings/dashboard/dashboard.html:99
msgid "Weeks" msgid "Weeks"
msgstr "Semanas" msgstr "Semanas"
#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/settings/dashboard/dashboard.html:117
msgid "User signup activity" msgid "User signup activity"
msgstr "Atividade de inscrição do utilizador" msgstr "Atividade de inscrição do utilizador"
#: bookwyrm/templates/settings/dashboard/dashboard.html:112 #: bookwyrm/templates/settings/dashboard/dashboard.html:123
msgid "Status activity" msgid "Status activity"
msgstr "Atividade de estado" msgstr "Atividade de estado"
#: bookwyrm/templates/settings/dashboard/dashboard.html:118 #: bookwyrm/templates/settings/dashboard/dashboard.html:129
msgid "Works created" msgid "Works created"
msgstr "Obras criadas" msgstr "Obras criadas"
@ -3023,10 +3146,6 @@ msgstr "Lista de E-Mails bloqueados"
msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked."
msgstr "Quando alguém se tenta registrar com um E-Mail deste domínio, nenhuma conta será criada. O processo de registro parecerá ter funcionado." msgstr "Quando alguém se tenta registrar com um E-Mail deste domínio, nenhuma conta será criada. O processo de registro parecerá ter funcionado."
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
msgid "Domain"
msgstr "Domínio"
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29
#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 #: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27
msgid "Options" msgid "Options"
@ -3138,12 +3257,8 @@ msgstr "Editar"
msgid "<em>No notes</em>" msgid "<em>No notes</em>"
msgstr "<em>Sem notas</em>" msgstr "<em>Sem notas</em>"
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "Actions"
msgstr "Acções"
#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:98
#: bookwyrm/templates/settings/link_domains/link_domains.html:87
#: bookwyrm/templates/snippets/block_button.html:5 #: bookwyrm/templates/snippets/block_button.html:5
msgid "Block" msgid "Block"
msgstr "Bloquear" msgstr "Bloquear"
@ -3356,62 +3471,113 @@ msgstr "Moderação"
msgid "Reports" msgid "Reports"
msgstr "Denúncias" msgstr "Denúncias"
#: bookwyrm/templates/settings/layout.html:68 #: bookwyrm/templates/settings/layout.html:67
#: bookwyrm/templates/settings/link_domains/link_domains.html:5
#: bookwyrm/templates/settings/link_domains/link_domains.html:7
msgid "Link Domains"
msgstr ""
#: bookwyrm/templates/settings/layout.html:72
msgid "Instance Settings" msgid "Instance Settings"
msgstr "Configurações do domínio" msgstr "Configurações do domínio"
#: bookwyrm/templates/settings/layout.html:76 #: bookwyrm/templates/settings/layout.html:80
#: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:4
#: bookwyrm/templates/settings/site.html:6 #: bookwyrm/templates/settings/site.html:6
msgid "Site Settings" msgid "Site Settings"
msgstr "Configurações do site" msgstr "Configurações do site"
#: bookwyrm/templates/settings/reports/report.html:5 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5
#: bookwyrm/templates/settings/reports/report.html:8
#: bookwyrm/templates/settings/reports/report_preview.html:6
#, python-format #, python-format
msgid "Report #%(report_id)s: %(username)s" msgid "Set display name for %(url)s"
msgstr "Denunciar #%(report_id)s: %(username)s" msgstr ""
#: bookwyrm/templates/settings/reports/report.html:9 #: bookwyrm/templates/settings/link_domains/link_domains.html:11
msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving."
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:45
msgid "Set display name"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:53
msgid "View links"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:96
msgid "No domains currently approved"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:98
msgid "No domains currently pending"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:100
msgid "No domains currently blocked"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_table.html:39
msgid "No links available for this domain."
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:11
msgid "Back to reports" msgid "Back to reports"
msgstr "Voltar para denúncias" msgstr "Voltar para denúncias"
#: bookwyrm/templates/settings/reports/report.html:23 #: bookwyrm/templates/settings/reports/report.html:22
msgid "Reported statuses"
msgstr "Estados denunciados"
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Status has been deleted"
msgstr "O estado foi eliminado"
#: bookwyrm/templates/settings/reports/report.html:39
msgid "Reported links"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:55
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Comentários do Moderador" msgstr "Comentários do Moderador"
#: bookwyrm/templates/settings/reports/report.html:41 #: bookwyrm/templates/settings/reports/report.html:73
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Comentar" msgstr "Comentar"
#: bookwyrm/templates/settings/reports/report.html:46 #: bookwyrm/templates/settings/reports/report_header.html:6
msgid "Reported statuses" #, python-format
msgstr "Estados denunciados" msgid "Report #%(report_id)s: Status posted by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:48 #: bookwyrm/templates/settings/reports/report_header.html:12
msgid "No statuses reported" #, python-format
msgstr "Nenhum estado denunciado" msgid "Report #%(report_id)s: Link added by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:54 #: bookwyrm/templates/settings/reports/report_header.html:18
msgid "Status has been deleted" #, python-format
msgstr "O estado foi eliminado" msgid "Report #%(report_id)s: User @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:13 #: bookwyrm/templates/settings/reports/report_links_table.html:17
msgid "Block domain"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:17
msgid "No notes provided" msgid "No notes provided"
msgstr "Nenhuma nota fornecida" msgstr "Nenhuma nota fornecida"
#: bookwyrm/templates/settings/reports/report_preview.html:20 #: bookwyrm/templates/settings/reports/report_preview.html:24
#, python-format #, python-format
msgid "Reported by <a href=\"%(path)s\">%(username)s</a>" msgid "Reported by <a href=\"%(path)s\">@%(username)s</a>"
msgstr "Denúnciado por <a href=\"%(path)s\">%(username)s</a>" msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:30 #: bookwyrm/templates/settings/reports/report_preview.html:34
msgid "Re-open" msgid "Re-open"
msgstr "Reabrir" msgstr "Reabrir"
#: bookwyrm/templates/settings/reports/report_preview.html:32 #: bookwyrm/templates/settings/reports/report_preview.html:36
msgid "Resolve" msgid "Resolve"
msgstr "Resolver" msgstr "Resolver"
@ -3539,7 +3705,7 @@ msgid "Invite request text:"
msgstr "Texto da solicitação de convite:" msgstr "Texto da solicitação de convite:"
#: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/delete_user_form.html:5
#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32
msgid "Permanently delete user" msgid "Permanently delete user"
msgstr "Apagar permanentemente o utilizador" msgstr "Apagar permanentemente o utilizador"
@ -3649,15 +3815,19 @@ msgstr "Ver domínio"
msgid "Permanently deleted" msgid "Permanently deleted"
msgstr "Apagar permanentemente" msgstr "Apagar permanentemente"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 #: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "User Actions"
msgstr ""
#: bookwyrm/templates/settings/users/user_moderation_actions.html:21
msgid "Suspend user" msgid "Suspend user"
msgstr "Suspender utilizador" msgstr "Suspender utilizador"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 #: bookwyrm/templates/settings/users/user_moderation_actions.html:26
msgid "Un-suspend user" msgid "Un-suspend user"
msgstr "Retirar a suspensão do utilizador" msgstr "Retirar a suspensão do utilizador"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 #: bookwyrm/templates/settings/users/user_moderation_actions.html:48
msgid "Access level:" msgid "Access level:"
msgstr "Nível de acesso:" msgstr "Nível de acesso:"
@ -4061,21 +4231,31 @@ msgstr "Queres ler \"<em>%(book_title)s\"</em>\""
msgid "Sign Up" msgid "Sign Up"
msgstr "Criar conta" msgstr "Criar conta"
#: bookwyrm/templates/snippets/report_button.html:13 #: bookwyrm/templates/snippets/report_modal.html:8
msgid "Report" #, python-format
msgstr "Denunciar" msgid "Report @%(username)s's status"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:6 #: bookwyrm/templates/snippets/report_modal.html:10
#, python-format
msgid "Report %(domain)s link"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:12
#, python-format #, python-format
msgid "Report @%(username)s" msgid "Report @%(username)s"
msgstr "Denunciar @%(username)s" msgstr "Denunciar @%(username)s"
#: bookwyrm/templates/snippets/report_modal.html:23 #: bookwyrm/templates/snippets/report_modal.html:34
#, python-format #, python-format
msgid "This report will be sent to %(site_name)s's moderators for review." msgid "This report will be sent to %(site_name)s's moderators for review."
msgstr "Esta denúncia será enviada aos moderadores de %(site_name)s para revisão." msgstr "Esta denúncia será enviada aos moderadores de %(site_name)s para revisão."
#: bookwyrm/templates/snippets/report_modal.html:26 #: bookwyrm/templates/snippets/report_modal.html:36
msgid "Links from this domain will be removed until your report has been reviewed."
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:41
msgid "More info about this report:" msgid "More info about this report:"
msgstr "Mais informações sobre esta denúncia:" msgstr "Mais informações sobre esta denúncia:"

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: 2022-01-13 16:54+0000\n" "POT-Creation-Date: 2022-01-17 16:05+0000\n"
"PO-Revision-Date: 2022-01-13 17:50\n" "PO-Revision-Date: 2022-01-17 17:10\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"
@ -17,62 +17,62 @@ msgstr ""
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" "X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
"X-Crowdin-File-ID: 1553\n" "X-Crowdin-File-ID: 1553\n"
#: bookwyrm/forms.py:351 #: bookwyrm/forms.py:365
msgid "A user with this email already exists." msgid "A user with this email already exists."
msgstr "已经存在使用该邮箱的用户。" msgstr "已经存在使用该邮箱的用户。"
#: bookwyrm/forms.py:365 #: bookwyrm/forms.py:379
msgid "One Day" msgid "One Day"
msgstr "一天" msgstr "一天"
#: bookwyrm/forms.py:366 #: bookwyrm/forms.py:380
msgid "One Week" msgid "One Week"
msgstr "一周" msgstr "一周"
#: bookwyrm/forms.py:367 #: bookwyrm/forms.py:381
msgid "One Month" msgid "One Month"
msgstr "一个月" msgstr "一个月"
#: bookwyrm/forms.py:368 #: bookwyrm/forms.py:382
msgid "Does Not Expire" msgid "Does Not Expire"
msgstr "永不失效" msgstr "永不失效"
#: bookwyrm/forms.py:372 #: bookwyrm/forms.py:386
#, python-brace-format #, python-brace-format
msgid "{i} uses" msgid "{i} uses"
msgstr "{i} 次使用" msgstr "{i} 次使用"
#: bookwyrm/forms.py:373 #: bookwyrm/forms.py:387
msgid "Unlimited" msgid "Unlimited"
msgstr "不受限" msgstr "不受限"
#: bookwyrm/forms.py:469 #: bookwyrm/forms.py:483
msgid "List Order" msgid "List Order"
msgstr "列表顺序" msgstr "列表顺序"
#: bookwyrm/forms.py:470 #: bookwyrm/forms.py:484
msgid "Book Title" msgid "Book Title"
msgstr "书名" msgstr "书名"
#: bookwyrm/forms.py:471 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:33 #: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating" msgid "Rating"
msgstr "评价" msgstr "评价"
#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:134 #: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:134
msgid "Sort By" msgid "Sort By"
msgstr "排序方式" msgstr "排序方式"
#: bookwyrm/forms.py:477 #: bookwyrm/forms.py:491
msgid "Ascending" msgid "Ascending"
msgstr "升序" msgstr "升序"
#: bookwyrm/forms.py:478 #: bookwyrm/forms.py:492
msgid "Descending" msgid "Descending"
msgstr "降序" msgstr "降序"
#: bookwyrm/forms.py:491 #: bookwyrm/forms.py:505
msgid "Reading finish date cannot be before start date." msgid "Reading finish date cannot be before start date."
msgstr "" msgstr ""
@ -84,8 +84,9 @@ msgstr "加载书籍时出错"
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/models/link.py:62
#: bookwyrm/templates/import/import_status.html:200 #: bookwyrm/templates/import/import_status.html:200
#: bookwyrm/templates/settings/link_domains/link_domains.html:19
msgid "Pending" msgid "Pending"
msgstr "待处理" msgstr "待处理"
@ -105,23 +106,23 @@ msgstr "仲裁员删除"
msgid "Domain block" msgid "Domain block"
msgstr "域名屏蔽" msgstr "域名屏蔽"
#: bookwyrm/models/book.py:250 #: bookwyrm/models/book.py:253
msgid "Audiobook" msgid "Audiobook"
msgstr "有声书籍" msgstr "有声书籍"
#: bookwyrm/models/book.py:251 #: bookwyrm/models/book.py:254
msgid "eBook" msgid "eBook"
msgstr "电子书" msgstr "电子书"
#: bookwyrm/models/book.py:252 #: bookwyrm/models/book.py:255
msgid "Graphic novel" msgid "Graphic novel"
msgstr "图像小说" msgstr "图像小说"
#: bookwyrm/models/book.py:253 #: bookwyrm/models/book.py:256
msgid "Hardcover" msgid "Hardcover"
msgstr "精装" msgstr "精装"
#: bookwyrm/models/book.py:254 #: bookwyrm/models/book.py:257
msgid "Paperback" msgid "Paperback"
msgstr "平装" msgstr "平装"
@ -131,10 +132,11 @@ msgstr "平装"
msgid "Federated" msgid "Federated"
msgstr "跨站" msgstr "跨站"
#: bookwyrm/models/federated_server.py:12 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:61
#: bookwyrm/templates/settings/federation/edit_instance.html:44 #: bookwyrm/templates/settings/federation/edit_instance.html:44
#: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance.html:10
#: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/federation/instance_list.html:23
#: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "已屏蔽" msgstr "已屏蔽"
@ -189,6 +191,11 @@ msgstr "关注者"
msgid "Private" msgid "Private"
msgstr "私密" msgstr "私密"
#: bookwyrm/models/link.py:60
#: bookwyrm/templates/settings/link_domains/link_domains.html:23
msgid "Approved"
msgstr ""
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272 #: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
msgid "Reviews" msgid "Reviews"
msgstr "书评" msgstr "书评"
@ -346,7 +353,7 @@ msgid "Admin"
msgstr "管理员" msgstr "管理员"
#: bookwyrm/templates/about/about.html:130 #: bookwyrm/templates/about/about.html:130
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 #: bookwyrm/templates/settings/users/user_moderation_actions.html:14
#: bookwyrm/templates/snippets/status/status_options.html:35 #: bookwyrm/templates/snippets/status/status_options.html:35
#: bookwyrm/templates/snippets/user_options.html:13 #: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message" msgid "Send direct message"
@ -524,61 +531,61 @@ msgstr "在 %(year)s 里 %(display_name)s 阅读的所有书"
msgid "Edit Author" msgid "Edit Author"
msgstr "编辑作者" msgstr "编辑作者"
#: bookwyrm/templates/author/author.html:40 #: bookwyrm/templates/author/author.html:35
msgid "Author details" msgid "Author details"
msgstr "作者详情" msgstr "作者详情"
#: bookwyrm/templates/author/author.html:44 #: bookwyrm/templates/author/author.html:39
#: bookwyrm/templates/author/edit_author.html:42 #: bookwyrm/templates/author/edit_author.html:42
msgid "Aliases:" msgid "Aliases:"
msgstr "别名:" msgstr "别名:"
#: bookwyrm/templates/author/author.html:53 #: bookwyrm/templates/author/author.html:48
msgid "Born:" msgid "Born:"
msgstr "出生:" msgstr "出生:"
#: bookwyrm/templates/author/author.html:60 #: bookwyrm/templates/author/author.html:55
msgid "Died:" msgid "Died:"
msgstr "逝世:" msgstr "逝世:"
#: bookwyrm/templates/author/author.html:70 #: bookwyrm/templates/author/author.html:65
msgid "External links" msgid "External links"
msgstr "外部链接" msgstr "外部链接"
#: bookwyrm/templates/author/author.html:75 #: bookwyrm/templates/author/author.html:70
msgid "Wikipedia" msgid "Wikipedia"
msgstr "维基百科" msgstr "维基百科"
#: bookwyrm/templates/author/author.html:83 #: bookwyrm/templates/author/author.html:78
msgid "View ISNI record" msgid "View ISNI record"
msgstr "查看 ISNI 记录" msgstr "查看 ISNI 记录"
#: bookwyrm/templates/author/author.html:88 #: bookwyrm/templates/author/author.html:83
#: bookwyrm/templates/author/sync_modal.html:5 #: bookwyrm/templates/author/sync_modal.html:5
#: bookwyrm/templates/book/book.html:122 #: bookwyrm/templates/book/book.html:122
#: bookwyrm/templates/book/sync_modal.html:5 #: bookwyrm/templates/book/sync_modal.html:5
msgid "Load data" msgid "Load data"
msgstr "加载数据" msgstr "加载数据"
#: bookwyrm/templates/author/author.html:92 #: bookwyrm/templates/author/author.html:87
#: bookwyrm/templates/book/book.html:126 #: bookwyrm/templates/book/book.html:126
msgid "View on OpenLibrary" msgid "View on OpenLibrary"
msgstr "在 OpenLibrary 查看" msgstr "在 OpenLibrary 查看"
#: bookwyrm/templates/author/author.html:107 #: bookwyrm/templates/author/author.html:102
#: bookwyrm/templates/book/book.html:140 #: bookwyrm/templates/book/book.html:140
msgid "View on Inventaire" msgid "View on Inventaire"
msgstr "在 Inventaire 查看" msgstr "在 Inventaire 查看"
#: bookwyrm/templates/author/author.html:123 #: bookwyrm/templates/author/author.html:118
msgid "View on LibraryThing" msgid "View on LibraryThing"
msgstr "在 LibraryThing 查看" msgstr "在 LibraryThing 查看"
#: bookwyrm/templates/author/author.html:131 #: bookwyrm/templates/author/author.html:126
msgid "View on Goodreads" msgid "View on Goodreads"
msgstr "在 Goodreads 查看" msgstr "在 Goodreads 查看"
#: bookwyrm/templates/author/author.html:145 #: bookwyrm/templates/author/author.html:141
#, python-format #, python-format
msgid "Books by %(name)s" msgid "Books by %(name)s"
msgstr "%(name)s 所著的书" msgstr "%(name)s 所著的书"
@ -608,7 +615,9 @@ msgid "Metadata"
msgstr "元数据" msgstr "元数据"
#: bookwyrm/templates/author/edit_author.html:35 #: bookwyrm/templates/author/edit_author.html:35
#: bookwyrm/templates/lists/form.html:9 bookwyrm/templates/shelf/form.html:9 #: bookwyrm/templates/lists/form.html:9
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14
#: bookwyrm/templates/shelf/form.html:9
msgid "Name:" msgid "Name:"
msgstr "名称:" msgstr "名称:"
@ -662,6 +671,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/author/edit_author.html:115
#: bookwyrm/templates/book/book.html:193 #: bookwyrm/templates/book/book.html:193
#: bookwyrm/templates/book/edit/edit_book.html:121 #: bookwyrm/templates/book/edit/edit_book.html:121
#: bookwyrm/templates/book/file_links/add_link_modal.html:50
#: bookwyrm/templates/groups/form.html:30 #: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/bookmark_button.html:15
#: bookwyrm/templates/lists/form.html:130 #: bookwyrm/templates/lists/form.html:130
@ -671,7 +681,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/settings/federation/edit_instance.html:82 #: bookwyrm/templates/settings/federation/edit_instance.html:82
#: bookwyrm/templates/settings/federation/instance.html:87 #: bookwyrm/templates/settings/federation/instance.html:87
#: bookwyrm/templates/settings/site.html:133 #: bookwyrm/templates/settings/site.html:133
#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69
#: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/shelf/form.html:25
#: bookwyrm/templates/snippets/reading_modals/layout.html:18 #: bookwyrm/templates/snippets/reading_modals/layout.html:18
msgid "Save" msgid "Save"
@ -683,13 +693,16 @@ msgstr "保存"
#: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/book/cover_add_modal.html:32
#: bookwyrm/templates/book/edit/edit_book.html:123 #: bookwyrm/templates/book/edit/edit_book.html:123
#: bookwyrm/templates/book/edit/edit_book.html:126 #: bookwyrm/templates/book/edit/edit_book.html:126
#: bookwyrm/templates/book/file_links/add_link_modal.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17 #: bookwyrm/templates/groups/delete_group_modal.html:17
#: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74 #: bookwyrm/templates/readthrough/readthrough_modal.html:74
#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/settings/federation/instance.html:88
#: bookwyrm/templates/snippets/report_modal.html:38 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
#: bookwyrm/templates/snippets/report_modal.html:54
msgid "Cancel" msgid "Cancel"
msgstr "取消" msgstr "取消"
@ -1033,6 +1046,101 @@ msgstr "语言:"
msgid "Search editions" msgid "Search editions"
msgstr "搜索版本" msgstr "搜索版本"
#: bookwyrm/templates/book/file_links/add_link_modal.html:6
msgid "Add file link"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:19
msgid "Links from unknown domains will need to be approved by a moderator before they are added."
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:24
msgid "URL:"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:29
msgid "File type:"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:5
#: bookwyrm/templates/book/file_links/edit_links.html:22
#: bookwyrm/templates/book/file_links/links.html:47
msgid "Edit links"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:11
#, python-format
msgid "\n"
" Links for \"<em>%(title)s</em>\"\n"
" "
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:32
#: bookwyrm/templates/settings/link_domains/link_table.html:6
msgid "URL"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:33
#: bookwyrm/templates/settings/link_domains/link_table.html:7
msgid "Added by"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:34
#: bookwyrm/templates/settings/link_domains/link_table.html:8
msgid "Filetype"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:35
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
#: bookwyrm/templates/settings/reports/report_links_table.html:5
msgid "Domain"
msgstr "域名"
#: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/reports/report_links_table.html:6
msgid "Actions"
msgstr "动作"
#: bookwyrm/templates/book/file_links/edit_links.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:25
msgid "Report spam"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:65
msgid "No links available for this book."
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:76
#: bookwyrm/templates/book/file_links/links.html:18
msgid "Add link to file"
msgstr ""
#: bookwyrm/templates/book/file_links/file_link_page.html:6
msgid "File Links"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:9
msgid "Get a copy"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:41
msgid "No links available"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:5
msgid "Leaving BookWyrm"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:11
#, python-format
msgid "This link is taking you to: <code>%(link_url)s</code>.<br> Is that where you'd like to go?"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:20
msgid "Continue"
msgstr ""
#: bookwyrm/templates/book/publisher_info.html:23 #: bookwyrm/templates/book/publisher_info.html:23
#, python-format #, python-format
msgid "%(format)s, %(pages)s pages" msgid "%(format)s, %(pages)s pages"
@ -1103,8 +1211,8 @@ msgstr "确认代码:"
#: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/confirm_email/confirm_email.html:25
#: bookwyrm/templates/landing/layout.html:73 #: bookwyrm/templates/landing/layout.html:73
#: bookwyrm/templates/settings/dashboard/dashboard.html:93 #: bookwyrm/templates/settings/dashboard/dashboard.html:104
#: bookwyrm/templates/snippets/report_modal.html:37 #: bookwyrm/templates/snippets/report_modal.html:52
msgid "Submit" msgid "Submit"
msgstr "提交" msgstr "提交"
@ -1845,6 +1953,7 @@ msgid "Review"
msgstr "书评" msgstr "书评"
#: bookwyrm/templates/import/import_status.html:124 #: bookwyrm/templates/import/import_status.html:124
#: bookwyrm/templates/settings/link_domains/link_table.html:9
msgid "Book" msgid "Book"
msgstr "书目" msgstr "书目"
@ -1897,6 +2006,7 @@ msgstr "批准建议后,被提议的书将会永久添加到您的书架上并
#: bookwyrm/templates/import/manual_review.html:58 #: bookwyrm/templates/import/manual_review.html:58
#: bookwyrm/templates/lists/curate.html:59 #: bookwyrm/templates/lists/curate.html:59
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve" msgid "Approve"
msgstr "批准" msgstr "批准"
@ -2244,6 +2354,7 @@ msgid "List position"
msgstr "列表位置:" msgstr "列表位置:"
#: bookwyrm/templates/lists/list.html:101 #: bookwyrm/templates/lists/list.html:101
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set" msgid "Set"
msgstr "设定" msgstr "设定"
@ -2775,6 +2886,11 @@ msgstr "删除这些阅读日期"
msgid "Add read dates for \"<em>%(title)s</em>\"" msgid "Add read dates for \"<em>%(title)s</em>\""
msgstr "" msgstr ""
#: bookwyrm/templates/report.html:5
#: bookwyrm/templates/snippets/report_button.html:13
msgid "Report"
msgstr "报告"
#: bookwyrm/templates/search/book.html:44 #: bookwyrm/templates/search/book.html:44
msgid "Results from" msgid "Results from"
msgstr "结果来自" msgstr "结果来自"
@ -2847,13 +2963,13 @@ msgstr "否"
#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement.html:46
#: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/announcements/announcement_form.html:44
#: bookwyrm/templates/settings/dashboard/dashboard.html:71 #: bookwyrm/templates/settings/dashboard/dashboard.html:82
msgid "Start date:" msgid "Start date:"
msgstr "开始日期:" msgstr "开始日期:"
#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement.html:51
#: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/announcements/announcement_form.html:54
#: bookwyrm/templates/settings/dashboard/dashboard.html:77 #: bookwyrm/templates/settings/dashboard/dashboard.html:88
msgid "End date:" msgid "End date:"
msgstr "结束日期:" msgstr "结束日期:"
@ -2881,7 +2997,7 @@ msgstr "事件日期:"
#: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:3
#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/announcements.html:5
#: bookwyrm/templates/settings/layout.html:72 #: bookwyrm/templates/settings/layout.html:76
msgid "Announcements" msgid "Announcements"
msgstr "公告" msgstr "公告"
@ -2921,7 +3037,7 @@ msgid "Dashboard"
msgstr "仪表盘" msgstr "仪表盘"
#: bookwyrm/templates/settings/dashboard/dashboard.html:15 #: bookwyrm/templates/settings/dashboard/dashboard.html:15
#: bookwyrm/templates/settings/dashboard/dashboard.html:100 #: bookwyrm/templates/settings/dashboard/dashboard.html:111
msgid "Total users" msgid "Total users"
msgstr "用户总数" msgstr "用户总数"
@ -2947,35 +3063,41 @@ msgstr[0] "%(display_count)s 条待处理报告"
#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:54
#, python-format #, python-format
msgid "%(display_count)s domain needs review"
msgid_plural "%(display_count)s domains need review"
msgstr[0] ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:65
#, python-format
msgid "%(display_count)s invite request" msgid "%(display_count)s invite request"
msgid_plural "%(display_count)s invite requests" msgid_plural "%(display_count)s invite requests"
msgstr[0] "%(display_count)s 条邀请请求" msgstr[0] "%(display_count)s 条邀请请求"
#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #: bookwyrm/templates/settings/dashboard/dashboard.html:76
msgid "Instance Activity" msgid "Instance Activity"
msgstr "实例活动" msgstr "实例活动"
#: bookwyrm/templates/settings/dashboard/dashboard.html:83 #: bookwyrm/templates/settings/dashboard/dashboard.html:94
msgid "Interval:" msgid "Interval:"
msgstr "区段:" msgstr "区段:"
#: bookwyrm/templates/settings/dashboard/dashboard.html:87 #: bookwyrm/templates/settings/dashboard/dashboard.html:98
msgid "Days" msgid "Days"
msgstr "天" msgstr "天"
#: bookwyrm/templates/settings/dashboard/dashboard.html:88 #: bookwyrm/templates/settings/dashboard/dashboard.html:99
msgid "Weeks" msgid "Weeks"
msgstr "周" msgstr "周"
#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/settings/dashboard/dashboard.html:117
msgid "User signup activity" msgid "User signup activity"
msgstr "用户注册活动" msgstr "用户注册活动"
#: bookwyrm/templates/settings/dashboard/dashboard.html:112 #: bookwyrm/templates/settings/dashboard/dashboard.html:123
msgid "Status activity" msgid "Status activity"
msgstr "状态动态" msgstr "状态动态"
#: bookwyrm/templates/settings/dashboard/dashboard.html:118 #: bookwyrm/templates/settings/dashboard/dashboard.html:129
msgid "Works created" msgid "Works created"
msgstr "创建的作品" msgstr "创建的作品"
@ -3010,10 +3132,6 @@ msgstr "邮件屏蔽列表"
msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked."
msgstr "当有人试图使用此域名的电子邮件注册时,帐户将不会被创建,但注册过程看起来会像是成功了的样子。" msgstr "当有人试图使用此域名的电子邮件注册时,帐户将不会被创建,但注册过程看起来会像是成功了的样子。"
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
msgid "Domain"
msgstr "域名"
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29
#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 #: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27
msgid "Options" msgid "Options"
@ -3124,12 +3242,8 @@ msgstr "编辑"
msgid "<em>No notes</em>" msgid "<em>No notes</em>"
msgstr "<em>没有备注</em>" msgstr "<em>没有备注</em>"
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "Actions"
msgstr "动作"
#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:98
#: bookwyrm/templates/settings/link_domains/link_domains.html:87
#: bookwyrm/templates/snippets/block_button.html:5 #: bookwyrm/templates/snippets/block_button.html:5
msgid "Block" msgid "Block"
msgstr "屏蔽" msgstr "屏蔽"
@ -3342,62 +3456,113 @@ msgstr "仲裁"
msgid "Reports" msgid "Reports"
msgstr "报告" msgstr "报告"
#: bookwyrm/templates/settings/layout.html:68 #: bookwyrm/templates/settings/layout.html:67
#: bookwyrm/templates/settings/link_domains/link_domains.html:5
#: bookwyrm/templates/settings/link_domains/link_domains.html:7
msgid "Link Domains"
msgstr ""
#: bookwyrm/templates/settings/layout.html:72
msgid "Instance Settings" msgid "Instance Settings"
msgstr "实例设置" msgstr "实例设置"
#: bookwyrm/templates/settings/layout.html:76 #: bookwyrm/templates/settings/layout.html:80
#: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:4
#: bookwyrm/templates/settings/site.html:6 #: bookwyrm/templates/settings/site.html:6
msgid "Site Settings" msgid "Site Settings"
msgstr "站点设置" msgstr "站点设置"
#: bookwyrm/templates/settings/reports/report.html:5 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5
#: bookwyrm/templates/settings/reports/report.html:8
#: bookwyrm/templates/settings/reports/report_preview.html:6
#, python-format #, python-format
msgid "Report #%(report_id)s: %(username)s" msgid "Set display name for %(url)s"
msgstr "报告 #%(report_id)s: %(username)s" msgstr ""
#: bookwyrm/templates/settings/reports/report.html:9 #: bookwyrm/templates/settings/link_domains/link_domains.html:11
msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving."
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:45
msgid "Set display name"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:53
msgid "View links"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:96
msgid "No domains currently approved"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:98
msgid "No domains currently pending"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:100
msgid "No domains currently blocked"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_table.html:39
msgid "No links available for this domain."
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:11
msgid "Back to reports" msgid "Back to reports"
msgstr "回到报告" msgstr "回到报告"
#: bookwyrm/templates/settings/reports/report.html:23 #: bookwyrm/templates/settings/reports/report.html:22
msgid "Reported statuses"
msgstr "被报告的状态"
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Status has been deleted"
msgstr "状态已被删除"
#: bookwyrm/templates/settings/reports/report.html:39
msgid "Reported links"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:55
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "监察员评论" msgstr "监察员评论"
#: bookwyrm/templates/settings/reports/report.html:41 #: bookwyrm/templates/settings/reports/report.html:73
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "评论" msgstr "评论"
#: bookwyrm/templates/settings/reports/report.html:46 #: bookwyrm/templates/settings/reports/report_header.html:6
msgid "Reported statuses" #, python-format
msgstr "被报告的状态" msgid "Report #%(report_id)s: Status posted by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:48 #: bookwyrm/templates/settings/reports/report_header.html:12
msgid "No statuses reported" #, python-format
msgstr "没有被报告的状态" msgid "Report #%(report_id)s: Link added by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:54 #: bookwyrm/templates/settings/reports/report_header.html:18
msgid "Status has been deleted" #, python-format
msgstr "状态已被删除" msgid "Report #%(report_id)s: User @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:13 #: bookwyrm/templates/settings/reports/report_links_table.html:17
msgid "Block domain"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:17
msgid "No notes provided" msgid "No notes provided"
msgstr "没有提供摘记" msgstr "没有提供摘记"
#: bookwyrm/templates/settings/reports/report_preview.html:20 #: bookwyrm/templates/settings/reports/report_preview.html:24
#, python-format #, python-format
msgid "Reported by <a href=\"%(path)s\">%(username)s</a>" msgid "Reported by <a href=\"%(path)s\">@%(username)s</a>"
msgstr "由 <a href=\"%(path)s\">%(username)s</a> 报告" msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:30 #: bookwyrm/templates/settings/reports/report_preview.html:34
msgid "Re-open" msgid "Re-open"
msgstr "重新开启" msgstr "重新开启"
#: bookwyrm/templates/settings/reports/report_preview.html:32 #: bookwyrm/templates/settings/reports/report_preview.html:36
msgid "Resolve" msgid "Resolve"
msgstr "已解决" msgstr "已解决"
@ -3525,7 +3690,7 @@ msgid "Invite request text:"
msgstr "邀请请求文本:" msgstr "邀请请求文本:"
#: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/delete_user_form.html:5
#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32
msgid "Permanently delete user" msgid "Permanently delete user"
msgstr "永久删除用户" msgstr "永久删除用户"
@ -3635,15 +3800,19 @@ msgstr "查看实例"
msgid "Permanently deleted" msgid "Permanently deleted"
msgstr "已永久删除" msgstr "已永久删除"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 #: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "User Actions"
msgstr ""
#: bookwyrm/templates/settings/users/user_moderation_actions.html:21
msgid "Suspend user" msgid "Suspend user"
msgstr "停用用户" msgstr "停用用户"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 #: bookwyrm/templates/settings/users/user_moderation_actions.html:26
msgid "Un-suspend user" msgid "Un-suspend user"
msgstr "取消停用用户" msgstr "取消停用用户"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 #: bookwyrm/templates/settings/users/user_moderation_actions.html:48
msgid "Access level:" msgid "Access level:"
msgstr "访问级别:" msgstr "访问级别:"
@ -4040,21 +4209,31 @@ msgstr "想要阅读《<em>%(book_title)s</em>》"
msgid "Sign Up" msgid "Sign Up"
msgstr "注册" msgstr "注册"
#: bookwyrm/templates/snippets/report_button.html:13 #: bookwyrm/templates/snippets/report_modal.html:8
msgid "Report" #, python-format
msgstr "报告" msgid "Report @%(username)s's status"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:6 #: bookwyrm/templates/snippets/report_modal.html:10
#, python-format
msgid "Report %(domain)s link"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:12
#, python-format #, python-format
msgid "Report @%(username)s" msgid "Report @%(username)s"
msgstr "报告 %(username)s" msgstr "报告 %(username)s"
#: bookwyrm/templates/snippets/report_modal.html:23 #: bookwyrm/templates/snippets/report_modal.html:34
#, python-format #, python-format
msgid "This report will be sent to %(site_name)s's moderators for review." msgid "This report will be sent to %(site_name)s's moderators for review."
msgstr "本报告会被发送至 %(site_name)s 的监察员以复查。" msgstr "本报告会被发送至 %(site_name)s 的监察员以复查。"
#: bookwyrm/templates/snippets/report_modal.html:26 #: bookwyrm/templates/snippets/report_modal.html:36
msgid "Links from this domain will be removed until your report has been reviewed."
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:41
msgid "More info about this report:" msgid "More info about this report:"
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: 2022-01-13 16:54+0000\n" "POT-Creation-Date: 2022-01-17 16:05+0000\n"
"PO-Revision-Date: 2022-01-13 17:50\n" "PO-Revision-Date: 2022-01-17 17:10\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"
@ -17,62 +17,62 @@ msgstr ""
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" "X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
"X-Crowdin-File-ID: 1553\n" "X-Crowdin-File-ID: 1553\n"
#: bookwyrm/forms.py:351 #: bookwyrm/forms.py:365
msgid "A user with this email already exists." msgid "A user with this email already exists."
msgstr "已經存在使用該郵箱的使用者。" msgstr "已經存在使用該郵箱的使用者。"
#: bookwyrm/forms.py:365 #: bookwyrm/forms.py:379
msgid "One Day" msgid "One Day"
msgstr "一天" msgstr "一天"
#: bookwyrm/forms.py:366 #: bookwyrm/forms.py:380
msgid "One Week" msgid "One Week"
msgstr "一週" msgstr "一週"
#: bookwyrm/forms.py:367 #: bookwyrm/forms.py:381
msgid "One Month" msgid "One Month"
msgstr "一個月" msgstr "一個月"
#: bookwyrm/forms.py:368 #: bookwyrm/forms.py:382
msgid "Does Not Expire" msgid "Does Not Expire"
msgstr "永不失效" msgstr "永不失效"
#: bookwyrm/forms.py:372 #: bookwyrm/forms.py:386
#, python-brace-format #, python-brace-format
msgid "{i} uses" msgid "{i} uses"
msgstr "" msgstr ""
#: bookwyrm/forms.py:373 #: bookwyrm/forms.py:387
msgid "Unlimited" msgid "Unlimited"
msgstr "不受限" msgstr "不受限"
#: bookwyrm/forms.py:469 #: bookwyrm/forms.py:483
msgid "List Order" msgid "List Order"
msgstr "列表順序" msgstr "列表順序"
#: bookwyrm/forms.py:470 #: bookwyrm/forms.py:484
msgid "Book Title" msgid "Book Title"
msgstr "書名" msgstr "書名"
#: bookwyrm/forms.py:471 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:33 #: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating" msgid "Rating"
msgstr "評價" msgstr "評價"
#: bookwyrm/forms.py:473 bookwyrm/templates/lists/list.html:134 #: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:134
msgid "Sort By" msgid "Sort By"
msgstr "排序方式" msgstr "排序方式"
#: bookwyrm/forms.py:477 #: bookwyrm/forms.py:491
msgid "Ascending" msgid "Ascending"
msgstr "升序" msgstr "升序"
#: bookwyrm/forms.py:478 #: bookwyrm/forms.py:492
msgid "Descending" msgid "Descending"
msgstr "降序" msgstr "降序"
#: bookwyrm/forms.py:491 #: bookwyrm/forms.py:505
msgid "Reading finish date cannot be before start date." msgid "Reading finish date cannot be before start date."
msgstr "" msgstr ""
@ -84,8 +84,9 @@ msgstr ""
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/models/link.py:62
#: bookwyrm/templates/import/import_status.html:200 #: bookwyrm/templates/import/import_status.html:200
#: bookwyrm/templates/settings/link_domains/link_domains.html:19
msgid "Pending" msgid "Pending"
msgstr "" msgstr ""
@ -105,23 +106,23 @@ msgstr ""
msgid "Domain block" msgid "Domain block"
msgstr "" msgstr ""
#: bookwyrm/models/book.py:250 #: bookwyrm/models/book.py:253
msgid "Audiobook" msgid "Audiobook"
msgstr "" msgstr ""
#: bookwyrm/models/book.py:251 #: bookwyrm/models/book.py:254
msgid "eBook" msgid "eBook"
msgstr "" msgstr ""
#: bookwyrm/models/book.py:252 #: bookwyrm/models/book.py:255
msgid "Graphic novel" msgid "Graphic novel"
msgstr "" msgstr ""
#: bookwyrm/models/book.py:253 #: bookwyrm/models/book.py:256
msgid "Hardcover" msgid "Hardcover"
msgstr "" msgstr ""
#: bookwyrm/models/book.py:254 #: bookwyrm/models/book.py:257
msgid "Paperback" msgid "Paperback"
msgstr "" msgstr ""
@ -131,10 +132,11 @@ msgstr ""
msgid "Federated" msgid "Federated"
msgstr "跨站" msgstr "跨站"
#: bookwyrm/models/federated_server.py:12 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:61
#: bookwyrm/templates/settings/federation/edit_instance.html:44 #: bookwyrm/templates/settings/federation/edit_instance.html:44
#: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance.html:10
#: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/federation/instance_list.html:23
#: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "已封鎖" msgstr "已封鎖"
@ -189,6 +191,11 @@ msgstr "關注者"
msgid "Private" msgid "Private"
msgstr "私密" msgstr "私密"
#: bookwyrm/models/link.py:60
#: bookwyrm/templates/settings/link_domains/link_domains.html:23
msgid "Approved"
msgstr ""
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272 #: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
msgid "Reviews" msgid "Reviews"
msgstr "書評" msgstr "書評"
@ -346,7 +353,7 @@ msgid "Admin"
msgstr "管理員" msgstr "管理員"
#: bookwyrm/templates/about/about.html:130 #: bookwyrm/templates/about/about.html:130
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 #: bookwyrm/templates/settings/users/user_moderation_actions.html:14
#: bookwyrm/templates/snippets/status/status_options.html:35 #: bookwyrm/templates/snippets/status/status_options.html:35
#: bookwyrm/templates/snippets/user_options.html:13 #: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message" msgid "Send direct message"
@ -524,61 +531,61 @@ msgstr ""
msgid "Edit Author" msgid "Edit Author"
msgstr "編輯作者" msgstr "編輯作者"
#: bookwyrm/templates/author/author.html:40 #: bookwyrm/templates/author/author.html:35
msgid "Author details" msgid "Author details"
msgstr "" msgstr ""
#: bookwyrm/templates/author/author.html:44 #: bookwyrm/templates/author/author.html:39
#: bookwyrm/templates/author/edit_author.html:42 #: bookwyrm/templates/author/edit_author.html:42
msgid "Aliases:" msgid "Aliases:"
msgstr "別名:" msgstr "別名:"
#: bookwyrm/templates/author/author.html:53 #: bookwyrm/templates/author/author.html:48
msgid "Born:" msgid "Born:"
msgstr "出生:" msgstr "出生:"
#: bookwyrm/templates/author/author.html:60 #: bookwyrm/templates/author/author.html:55
msgid "Died:" msgid "Died:"
msgstr "逝世:" msgstr "逝世:"
#: bookwyrm/templates/author/author.html:70 #: bookwyrm/templates/author/author.html:65
msgid "External links" msgid "External links"
msgstr "" msgstr ""
#: bookwyrm/templates/author/author.html:75 #: bookwyrm/templates/author/author.html:70
msgid "Wikipedia" msgid "Wikipedia"
msgstr "維基百科" msgstr "維基百科"
#: bookwyrm/templates/author/author.html:83 #: bookwyrm/templates/author/author.html:78
msgid "View ISNI record" msgid "View ISNI record"
msgstr "" msgstr ""
#: bookwyrm/templates/author/author.html:88 #: bookwyrm/templates/author/author.html:83
#: bookwyrm/templates/author/sync_modal.html:5 #: bookwyrm/templates/author/sync_modal.html:5
#: bookwyrm/templates/book/book.html:122 #: bookwyrm/templates/book/book.html:122
#: bookwyrm/templates/book/sync_modal.html:5 #: bookwyrm/templates/book/sync_modal.html:5
msgid "Load data" msgid "Load data"
msgstr "" msgstr ""
#: bookwyrm/templates/author/author.html:92 #: bookwyrm/templates/author/author.html:87
#: bookwyrm/templates/book/book.html:126 #: bookwyrm/templates/book/book.html:126
msgid "View on OpenLibrary" msgid "View on OpenLibrary"
msgstr "在 OpenLibrary 檢視" msgstr "在 OpenLibrary 檢視"
#: bookwyrm/templates/author/author.html:107 #: bookwyrm/templates/author/author.html:102
#: bookwyrm/templates/book/book.html:140 #: bookwyrm/templates/book/book.html:140
msgid "View on Inventaire" msgid "View on Inventaire"
msgstr "在 Inventaire 檢視" msgstr "在 Inventaire 檢視"
#: bookwyrm/templates/author/author.html:123 #: bookwyrm/templates/author/author.html:118
msgid "View on LibraryThing" msgid "View on LibraryThing"
msgstr "" msgstr ""
#: bookwyrm/templates/author/author.html:131 #: bookwyrm/templates/author/author.html:126
msgid "View on Goodreads" msgid "View on Goodreads"
msgstr "" msgstr ""
#: bookwyrm/templates/author/author.html:145 #: bookwyrm/templates/author/author.html:141
#, python-format #, python-format
msgid "Books by %(name)s" msgid "Books by %(name)s"
msgstr "%(name)s 所著的書" msgstr "%(name)s 所著的書"
@ -608,7 +615,9 @@ msgid "Metadata"
msgstr "元資料" msgstr "元資料"
#: bookwyrm/templates/author/edit_author.html:35 #: bookwyrm/templates/author/edit_author.html:35
#: bookwyrm/templates/lists/form.html:9 bookwyrm/templates/shelf/form.html:9 #: bookwyrm/templates/lists/form.html:9
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14
#: bookwyrm/templates/shelf/form.html:9
msgid "Name:" msgid "Name:"
msgstr "名稱:" msgstr "名稱:"
@ -662,6 +671,7 @@ msgstr ""
#: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/author/edit_author.html:115
#: bookwyrm/templates/book/book.html:193 #: bookwyrm/templates/book/book.html:193
#: bookwyrm/templates/book/edit/edit_book.html:121 #: bookwyrm/templates/book/edit/edit_book.html:121
#: bookwyrm/templates/book/file_links/add_link_modal.html:50
#: bookwyrm/templates/groups/form.html:30 #: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/bookmark_button.html:15
#: bookwyrm/templates/lists/form.html:130 #: bookwyrm/templates/lists/form.html:130
@ -671,7 +681,7 @@ msgstr ""
#: bookwyrm/templates/settings/federation/edit_instance.html:82 #: bookwyrm/templates/settings/federation/edit_instance.html:82
#: bookwyrm/templates/settings/federation/instance.html:87 #: bookwyrm/templates/settings/federation/instance.html:87
#: bookwyrm/templates/settings/site.html:133 #: bookwyrm/templates/settings/site.html:133
#: bookwyrm/templates/settings/users/user_moderation_actions.html:68 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69
#: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/shelf/form.html:25
#: bookwyrm/templates/snippets/reading_modals/layout.html:18 #: bookwyrm/templates/snippets/reading_modals/layout.html:18
msgid "Save" msgid "Save"
@ -683,13 +693,16 @@ msgstr "儲存"
#: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/book/cover_add_modal.html:32
#: bookwyrm/templates/book/edit/edit_book.html:123 #: bookwyrm/templates/book/edit/edit_book.html:123
#: bookwyrm/templates/book/edit/edit_book.html:126 #: bookwyrm/templates/book/edit/edit_book.html:126
#: bookwyrm/templates/book/file_links/add_link_modal.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23 #: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17 #: bookwyrm/templates/groups/delete_group_modal.html:17
#: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74 #: bookwyrm/templates/readthrough/readthrough_modal.html:74
#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/settings/federation/instance.html:88
#: bookwyrm/templates/snippets/report_modal.html:38 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
#: bookwyrm/templates/snippets/report_modal.html:54
msgid "Cancel" msgid "Cancel"
msgstr "取消" msgstr "取消"
@ -1033,6 +1046,101 @@ msgstr "語言:"
msgid "Search editions" msgid "Search editions"
msgstr "" msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:6
msgid "Add file link"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:19
msgid "Links from unknown domains will need to be approved by a moderator before they are added."
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:24
msgid "URL:"
msgstr ""
#: bookwyrm/templates/book/file_links/add_link_modal.html:29
msgid "File type:"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:5
#: bookwyrm/templates/book/file_links/edit_links.html:22
#: bookwyrm/templates/book/file_links/links.html:47
msgid "Edit links"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:11
#, python-format
msgid "\n"
" Links for \"<em>%(title)s</em>\"\n"
" "
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:32
#: bookwyrm/templates/settings/link_domains/link_table.html:6
msgid "URL"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:33
#: bookwyrm/templates/settings/link_domains/link_table.html:7
msgid "Added by"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:34
#: bookwyrm/templates/settings/link_domains/link_table.html:8
msgid "Filetype"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:35
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
#: bookwyrm/templates/settings/reports/report_links_table.html:5
msgid "Domain"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/reports/report_links_table.html:6
msgid "Actions"
msgstr "動作"
#: bookwyrm/templates/book/file_links/edit_links.html:52
#: bookwyrm/templates/book/file_links/verification_modal.html:25
msgid "Report spam"
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:65
msgid "No links available for this book."
msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:76
#: bookwyrm/templates/book/file_links/links.html:18
msgid "Add link to file"
msgstr ""
#: bookwyrm/templates/book/file_links/file_link_page.html:6
msgid "File Links"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:9
msgid "Get a copy"
msgstr ""
#: bookwyrm/templates/book/file_links/links.html:41
msgid "No links available"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:5
msgid "Leaving BookWyrm"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:11
#, python-format
msgid "This link is taking you to: <code>%(link_url)s</code>.<br> Is that where you'd like to go?"
msgstr ""
#: bookwyrm/templates/book/file_links/verification_modal.html:20
msgid "Continue"
msgstr ""
#: bookwyrm/templates/book/publisher_info.html:23 #: bookwyrm/templates/book/publisher_info.html:23
#, python-format #, python-format
msgid "%(format)s, %(pages)s pages" msgid "%(format)s, %(pages)s pages"
@ -1103,8 +1211,8 @@ msgstr ""
#: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/confirm_email/confirm_email.html:25
#: bookwyrm/templates/landing/layout.html:73 #: bookwyrm/templates/landing/layout.html:73
#: bookwyrm/templates/settings/dashboard/dashboard.html:93 #: bookwyrm/templates/settings/dashboard/dashboard.html:104
#: bookwyrm/templates/snippets/report_modal.html:37 #: bookwyrm/templates/snippets/report_modal.html:52
msgid "Submit" msgid "Submit"
msgstr "提交" msgstr "提交"
@ -1845,6 +1953,7 @@ msgid "Review"
msgstr "書評" msgstr "書評"
#: bookwyrm/templates/import/import_status.html:124 #: bookwyrm/templates/import/import_status.html:124
#: bookwyrm/templates/settings/link_domains/link_table.html:9
msgid "Book" msgid "Book"
msgstr "書目" msgstr "書目"
@ -1897,6 +2006,7 @@ msgstr ""
#: bookwyrm/templates/import/manual_review.html:58 #: bookwyrm/templates/import/manual_review.html:58
#: bookwyrm/templates/lists/curate.html:59 #: bookwyrm/templates/lists/curate.html:59
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve" msgid "Approve"
msgstr "批准" msgstr "批准"
@ -2244,6 +2354,7 @@ msgid "List position"
msgstr "列表位置:" msgstr "列表位置:"
#: bookwyrm/templates/lists/list.html:101 #: bookwyrm/templates/lists/list.html:101
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set" msgid "Set"
msgstr "設定" msgstr "設定"
@ -2775,6 +2886,11 @@ msgstr "刪除這些閱讀日期"
msgid "Add read dates for \"<em>%(title)s</em>\"" msgid "Add read dates for \"<em>%(title)s</em>\""
msgstr "" msgstr ""
#: bookwyrm/templates/report.html:5
#: bookwyrm/templates/snippets/report_button.html:13
msgid "Report"
msgstr "舉報"
#: bookwyrm/templates/search/book.html:44 #: bookwyrm/templates/search/book.html:44
msgid "Results from" msgid "Results from"
msgstr "" msgstr ""
@ -2847,13 +2963,13 @@ msgstr "否"
#: bookwyrm/templates/settings/announcements/announcement.html:46 #: bookwyrm/templates/settings/announcements/announcement.html:46
#: bookwyrm/templates/settings/announcements/announcement_form.html:44 #: bookwyrm/templates/settings/announcements/announcement_form.html:44
#: bookwyrm/templates/settings/dashboard/dashboard.html:71 #: bookwyrm/templates/settings/dashboard/dashboard.html:82
msgid "Start date:" msgid "Start date:"
msgstr "開始日期:" msgstr "開始日期:"
#: bookwyrm/templates/settings/announcements/announcement.html:51 #: bookwyrm/templates/settings/announcements/announcement.html:51
#: bookwyrm/templates/settings/announcements/announcement_form.html:54 #: bookwyrm/templates/settings/announcements/announcement_form.html:54
#: bookwyrm/templates/settings/dashboard/dashboard.html:77 #: bookwyrm/templates/settings/dashboard/dashboard.html:88
msgid "End date:" msgid "End date:"
msgstr "結束日期:" msgstr "結束日期:"
@ -2881,7 +2997,7 @@ msgstr ""
#: bookwyrm/templates/settings/announcements/announcements.html:3 #: bookwyrm/templates/settings/announcements/announcements.html:3
#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/announcements/announcements.html:5
#: bookwyrm/templates/settings/layout.html:72 #: bookwyrm/templates/settings/layout.html:76
msgid "Announcements" msgid "Announcements"
msgstr "公告" msgstr "公告"
@ -2921,7 +3037,7 @@ msgid "Dashboard"
msgstr "" msgstr ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:15 #: bookwyrm/templates/settings/dashboard/dashboard.html:15
#: bookwyrm/templates/settings/dashboard/dashboard.html:100 #: bookwyrm/templates/settings/dashboard/dashboard.html:111
msgid "Total users" msgid "Total users"
msgstr "" msgstr ""
@ -2947,35 +3063,41 @@ msgstr[0] ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #: bookwyrm/templates/settings/dashboard/dashboard.html:54
#, python-format #, python-format
msgid "%(display_count)s domain needs review"
msgid_plural "%(display_count)s domains need review"
msgstr[0] ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:65
#, python-format
msgid "%(display_count)s invite request" msgid "%(display_count)s invite request"
msgid_plural "%(display_count)s invite requests" msgid_plural "%(display_count)s invite requests"
msgstr[0] "" msgstr[0] ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #: bookwyrm/templates/settings/dashboard/dashboard.html:76
msgid "Instance Activity" msgid "Instance Activity"
msgstr "" msgstr ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:83 #: bookwyrm/templates/settings/dashboard/dashboard.html:94
msgid "Interval:" msgid "Interval:"
msgstr "" msgstr ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:87 #: bookwyrm/templates/settings/dashboard/dashboard.html:98
msgid "Days" msgid "Days"
msgstr "" msgstr ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:88 #: bookwyrm/templates/settings/dashboard/dashboard.html:99
msgid "Weeks" msgid "Weeks"
msgstr "" msgstr ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #: bookwyrm/templates/settings/dashboard/dashboard.html:117
msgid "User signup activity" msgid "User signup activity"
msgstr "" msgstr ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:112 #: bookwyrm/templates/settings/dashboard/dashboard.html:123
msgid "Status activity" msgid "Status activity"
msgstr "" msgstr ""
#: bookwyrm/templates/settings/dashboard/dashboard.html:118 #: bookwyrm/templates/settings/dashboard/dashboard.html:129
msgid "Works created" msgid "Works created"
msgstr "" msgstr ""
@ -3010,10 +3132,6 @@ msgstr ""
msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked."
msgstr "" msgstr ""
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
msgid "Domain"
msgstr ""
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29
#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 #: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27
msgid "Options" msgid "Options"
@ -3124,12 +3242,8 @@ msgstr "編輯"
msgid "<em>No notes</em>" msgid "<em>No notes</em>"
msgstr "" msgstr ""
#: bookwyrm/templates/settings/federation/instance.html:94
#: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "Actions"
msgstr "動作"
#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:98
#: bookwyrm/templates/settings/link_domains/link_domains.html:87
#: bookwyrm/templates/snippets/block_button.html:5 #: bookwyrm/templates/snippets/block_button.html:5
msgid "Block" msgid "Block"
msgstr "封鎖" msgstr "封鎖"
@ -3342,62 +3456,113 @@ msgstr ""
msgid "Reports" msgid "Reports"
msgstr "舉報" msgstr "舉報"
#: bookwyrm/templates/settings/layout.html:68 #: bookwyrm/templates/settings/layout.html:67
#: bookwyrm/templates/settings/link_domains/link_domains.html:5
#: bookwyrm/templates/settings/link_domains/link_domains.html:7
msgid "Link Domains"
msgstr ""
#: bookwyrm/templates/settings/layout.html:72
msgid "Instance Settings" msgid "Instance Settings"
msgstr "實例設定" msgstr "實例設定"
#: bookwyrm/templates/settings/layout.html:76 #: bookwyrm/templates/settings/layout.html:80
#: bookwyrm/templates/settings/site.html:4 #: bookwyrm/templates/settings/site.html:4
#: bookwyrm/templates/settings/site.html:6 #: bookwyrm/templates/settings/site.html:6
msgid "Site Settings" msgid "Site Settings"
msgstr "網站設定" msgstr "網站設定"
#: bookwyrm/templates/settings/reports/report.html:5 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5
#: bookwyrm/templates/settings/reports/report.html:8
#: bookwyrm/templates/settings/reports/report_preview.html:6
#, python-format #, python-format
msgid "Report #%(report_id)s: %(username)s" msgid "Set display name for %(url)s"
msgstr "舉報 #%(report_id)s: %(username)s" msgstr ""
#: bookwyrm/templates/settings/reports/report.html:9 #: bookwyrm/templates/settings/link_domains/link_domains.html:11
msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving."
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:45
msgid "Set display name"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:53
msgid "View links"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:96
msgid "No domains currently approved"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:98
msgid "No domains currently pending"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_domains.html:100
msgid "No domains currently blocked"
msgstr ""
#: bookwyrm/templates/settings/link_domains/link_table.html:39
msgid "No links available for this domain."
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:11
msgid "Back to reports" msgid "Back to reports"
msgstr "回到舉報" msgstr "回到舉報"
#: bookwyrm/templates/settings/reports/report.html:23 #: bookwyrm/templates/settings/reports/report.html:22
msgid "Reported statuses"
msgstr "被舉報的狀態"
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Status has been deleted"
msgstr "狀態已被刪除"
#: bookwyrm/templates/settings/reports/report.html:39
msgid "Reported links"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:55
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "監察員評論" msgstr "監察員評論"
#: bookwyrm/templates/settings/reports/report.html:41 #: bookwyrm/templates/settings/reports/report.html:73
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "評論" msgstr "評論"
#: bookwyrm/templates/settings/reports/report.html:46 #: bookwyrm/templates/settings/reports/report_header.html:6
msgid "Reported statuses" #, python-format
msgstr "被舉報的狀態" msgid "Report #%(report_id)s: Status posted by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:48 #: bookwyrm/templates/settings/reports/report_header.html:12
msgid "No statuses reported" #, python-format
msgstr "沒有被舉報的狀態" msgid "Report #%(report_id)s: Link added by @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:54 #: bookwyrm/templates/settings/reports/report_header.html:18
msgid "Status has been deleted" #, python-format
msgstr "狀態已被刪除" msgid "Report #%(report_id)s: User @%(username)s"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:13 #: bookwyrm/templates/settings/reports/report_links_table.html:17
msgid "Block domain"
msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:17
msgid "No notes provided" msgid "No notes provided"
msgstr "沒有提供摘記" msgstr "沒有提供摘記"
#: bookwyrm/templates/settings/reports/report_preview.html:20 #: bookwyrm/templates/settings/reports/report_preview.html:24
#, python-format #, python-format
msgid "Reported by <a href=\"%(path)s\">%(username)s</a>" msgid "Reported by <a href=\"%(path)s\">@%(username)s</a>"
msgstr "由 <a href=\"%(path)s\">%(username)s</a> 舉報" msgstr ""
#: bookwyrm/templates/settings/reports/report_preview.html:30 #: bookwyrm/templates/settings/reports/report_preview.html:34
msgid "Re-open" msgid "Re-open"
msgstr "重新開啟" msgstr "重新開啟"
#: bookwyrm/templates/settings/reports/report_preview.html:32 #: bookwyrm/templates/settings/reports/report_preview.html:36
msgid "Resolve" msgid "Resolve"
msgstr "已解決" msgstr "已解決"
@ -3525,7 +3690,7 @@ msgid "Invite request text:"
msgstr "" msgstr ""
#: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/delete_user_form.html:5
#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32
msgid "Permanently delete user" msgid "Permanently delete user"
msgstr "" msgstr ""
@ -3635,15 +3800,19 @@ msgstr "檢視實例"
msgid "Permanently deleted" msgid "Permanently deleted"
msgstr "" msgstr ""
#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 #: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "User Actions"
msgstr ""
#: bookwyrm/templates/settings/users/user_moderation_actions.html:21
msgid "Suspend user" msgid "Suspend user"
msgstr "停用使用者" msgstr "停用使用者"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 #: bookwyrm/templates/settings/users/user_moderation_actions.html:26
msgid "Un-suspend user" msgid "Un-suspend user"
msgstr "取消停用使用者" msgstr "取消停用使用者"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 #: bookwyrm/templates/settings/users/user_moderation_actions.html:48
msgid "Access level:" msgid "Access level:"
msgstr "訪問權限:" msgstr "訪問權限:"
@ -4040,21 +4209,31 @@ msgstr "想要閱讀 \"<em>%(book_title)s</em>\""
msgid "Sign Up" msgid "Sign Up"
msgstr "註冊" msgstr "註冊"
#: bookwyrm/templates/snippets/report_button.html:13 #: bookwyrm/templates/snippets/report_modal.html:8
msgid "Report" #, python-format
msgstr "舉報" msgid "Report @%(username)s's status"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:6 #: bookwyrm/templates/snippets/report_modal.html:10
#, python-format
msgid "Report %(domain)s link"
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:12
#, python-format #, python-format
msgid "Report @%(username)s" msgid "Report @%(username)s"
msgstr "舉報 %(username)s" msgstr "舉報 %(username)s"
#: bookwyrm/templates/snippets/report_modal.html:23 #: bookwyrm/templates/snippets/report_modal.html:34
#, python-format #, python-format
msgid "This report will be sent to %(site_name)s's moderators for review." msgid "This report will be sent to %(site_name)s's moderators for review."
msgstr "本舉報會被發送至 %(site_name)s 的監察員以複查。" msgstr "本舉報會被發送至 %(site_name)s 的監察員以複查。"
#: bookwyrm/templates/snippets/report_modal.html:26 #: bookwyrm/templates/snippets/report_modal.html:36
msgid "Links from this domain will be removed until your report has been reviewed."
msgstr ""
#: bookwyrm/templates/snippets/report_modal.html:41
msgid "More info about this report:" msgid "More info about this report:"
msgstr "關於本舉報的更多資訊" msgstr "關於本舉報的更多資訊"