diff --git a/bookwyrm/activitypub/book.py b/bookwyrm/activitypub/book.py index bd27c4e60..d8599c4b3 100644 --- a/bookwyrm/activitypub/book.py +++ b/bookwyrm/activitypub/book.py @@ -54,6 +54,7 @@ class Edition(Book): asin: str = "" pages: int = None physicalFormat: str = "" + physicalFormatDetail: str = "" publishers: List[str] = field(default_factory=lambda: []) editionRank: int = 0 diff --git a/bookwyrm/connectors/abstract_connector.py b/bookwyrm/connectors/abstract_connector.py index 455241cca..2d10331b4 100644 --- a/bookwyrm/connectors/abstract_connector.py +++ b/bookwyrm/connectors/abstract_connector.py @@ -9,6 +9,7 @@ from requests.exceptions import RequestException from bookwyrm import activitypub, models, settings from .connector_manager import load_more_data, ConnectorException +from .format_mappings import format_mappings logger = logging.getLogger(__name__) @@ -312,3 +313,25 @@ class Mapping: return self.formatter(value) except: # pylint: disable=bare-except return None + + +def infer_physical_format(format_text): + """try to figure out what the standardized format is from the free value""" + format_text = format_text.lower() + if format_text in format_mappings: + # try a direct match + return format_mappings[format_text] + # failing that, try substring + matches = [v for k, v in format_mappings.items() if k in format_text] + if not matches: + return None + return matches[0] + + +def unique_physical_format(format_text): + """only store the format if it isn't diretly in the format mappings""" + format_text = format_text.lower() + if format_text in format_mappings: + # try a direct match, so saving this would be redundant + return None + return format_text diff --git a/bookwyrm/connectors/format_mappings.py b/bookwyrm/connectors/format_mappings.py new file mode 100644 index 000000000..61f61efaa --- /dev/null +++ b/bookwyrm/connectors/format_mappings.py @@ -0,0 +1,43 @@ +""" comparing a free text format to the standardized one """ +format_mappings = { + "paperback": "Paperback", + "soft": "Paperback", + "pamphlet": "Paperback", + "peperback": "Paperback", + "tapa blanda": "Paperback", + "turtleback": "Paperback", + "pocket": "Paperback", + "spiral": "Paperback", + "ring": "Paperback", + "平装": "Paperback", + "简装": "Paperback", + "hardcover": "Hardcover", + "hardcocer": "Hardcover", + "hardover": "Hardcover", + "hardback": "Hardcover", + "library": "Hardcover", + "tapa dura": "Hardcover", + "leather": "Hardcover", + "clothbound": "Hardcover", + "精装": "Hardcover", + "ebook": "EBook", + "e-book": "EBook", + "digital": "EBook", + "computer file": "EBook", + "epub": "EBook", + "online": "EBook", + "pdf": "EBook", + "elektronische": "EBook", + "electronic": "EBook", + "audiobook": "AudiobookFormat", + "audio": "AudiobookFormat", + "cd": "AudiobookFormat", + "dvd": "AudiobookFormat", + "mp3": "AudiobookFormat", + "cassette": "AudiobookFormat", + "kindle": "AudiobookFormat", + "talking": "AudiobookFormat", + "sound": "AudiobookFormat", + "comic": "GraphicNovel", + "graphic": "GraphicNovel", +} diff --git a/bookwyrm/connectors/inventaire.py b/bookwyrm/connectors/inventaire.py index 704554880..1bfd2b500 100644 --- a/bookwyrm/connectors/inventaire.py +++ b/bookwyrm/connectors/inventaire.py @@ -8,7 +8,7 @@ from .connector_manager import ConnectorException class Connector(AbstractConnector): - """instantiate a connector for OL""" + """instantiate a connector for inventaire""" def __init__(self, identifier): super().__init__(identifier) diff --git a/bookwyrm/connectors/openlibrary.py b/bookwyrm/connectors/openlibrary.py index fca5d0f71..ef8a7b3db 100644 --- a/bookwyrm/connectors/openlibrary.py +++ b/bookwyrm/connectors/openlibrary.py @@ -3,7 +3,7 @@ import re from bookwyrm import models from .abstract_connector import AbstractConnector, SearchResult, Mapping -from .abstract_connector import get_data +from .abstract_connector import get_data, infer_physical_format, unique_physical_format from .connector_manager import ConnectorException from .openlibrary_languages import languages @@ -43,7 +43,16 @@ class Connector(AbstractConnector): ), Mapping("publishedDate", remote_field="publish_date"), Mapping("pages", remote_field="number_of_pages"), - Mapping("physicalFormat", remote_field="physical_format"), + Mapping( + "physicalFormat", + remote_field="physical_format", + formatter=infer_physical_format, + ), + Mapping( + "physicalFormatDetail", + remote_field="physical_format", + formatter=unique_physical_format, + ), Mapping("publishers"), ] diff --git a/bookwyrm/migrations/0101_auto_20210929_1847.py b/bookwyrm/migrations/0101_auto_20210929_1847.py new file mode 100644 index 000000000..3fca28eac --- /dev/null +++ b/bookwyrm/migrations/0101_auto_20210929_1847.py @@ -0,0 +1,56 @@ +# Generated by Django 3.2 on 2021-05-21 00:17 + +from django.db import migrations +import bookwyrm +from bookwyrm.connectors.abstract_connector import infer_physical_format + + +def infer_format(app_registry, schema_editor): + """set the new phsyical format field based on existing format data""" + db_alias = schema_editor.connection.alias + + editions = ( + app_registry.get_model("bookwyrm", "Edition") + .objects.using(db_alias) + .filter(physical_format_detail__isnull=False) + ) + for edition in editions: + free_format = edition.physical_format_detail.lower() + edition.physical_format = infer_physical_format(free_format) + edition.save() + + +def reverse(app_registry, schema_editor): + """doesn't need to do anything""" + + +class Migration(migrations.Migration): + + dependencies = [ + ("bookwyrm", "0100_shelf_description"), + ] + + operations = [ + migrations.RenameField( + model_name="edition", + old_name="physical_format", + new_name="physical_format_detail", + ), + migrations.AddField( + model_name="edition", + name="physical_format", + field=bookwyrm.models.fields.CharField( + blank=True, + choices=[ + ("AudiobookFormat", "Audiobook"), + ("EBook", "eBook"), + ("GraphicNovel", "Graphic novel"), + ("Hardcover", "Hardcover"), + ("Paperback", "Paperback"), + ], + max_length=255, + null=True, + ), + ), + migrations.RunPython(infer_format, reverse), + ] diff --git a/bookwyrm/models/book.py b/bookwyrm/models/book.py index 6f26ef7d1..8ae75baf9 100644 --- a/bookwyrm/models/book.py +++ b/bookwyrm/models/book.py @@ -6,6 +6,7 @@ from django.contrib.postgres.indexes import GinIndex from django.db import models, transaction from django.db.models import Prefetch from django.dispatch import receiver +from django.utils.translation import gettext_lazy as _ from model_utils import FieldTracker from model_utils.managers import InheritanceManager from imagekit.models import ImageSpecField @@ -226,6 +227,16 @@ class Work(OrderedCollectionPageMixin, Book): deserialize_reverse_fields = [("editions", "editions")] +# https://schema.org/BookFormatType +FormatChoices = [ + ("AudiobookFormat", _("Audiobook")), + ("EBook", _("eBook")), + ("GraphicNovel", _("Graphic novel")), + ("Hardcover", _("Hardcover")), + ("Paperback", _("Paperback")), +] + + class Edition(Book): """an edition of a book""" @@ -243,7 +254,10 @@ class Edition(Book): max_length=255, blank=True, null=True, deduplication_field=True ) pages = fields.IntegerField(blank=True, null=True) - physical_format = fields.CharField(max_length=255, blank=True, null=True) + physical_format = fields.CharField( + max_length=255, choices=FormatChoices, null=True, blank=True + ) + physical_format_detail = fields.CharField(max_length=255, blank=True, null=True) publishers = fields.ArrayField( models.CharField(max_length=255), blank=True, default=list ) diff --git a/bookwyrm/templates/book/edit_book.html b/bookwyrm/templates/book/edit_book.html index 18cf66710..5a859e3db 100644 --- a/bookwyrm/templates/book/edit_book.html +++ b/bookwyrm/templates/book/edit_book.html @@ -251,12 +251,27 @@

{% trans "Physical Properties" %}

-
- - {{ form.physical_format }} - {% for error in form.physical_format.errors %} -

{{ error | escape }}

- {% endfor %} +
+
+
+ +
+ {{ form.physical_format }} +
+ {% for error in form.physical_format.errors %} +

{{ error | escape }}

+ {% endfor %} +
+
+
+
+ + {{ form.physical_format_detail }} + {% for error in form.physical_format_detail.errors %} +

{{ error | escape }}

+ {% endfor %} +
+
diff --git a/bookwyrm/templates/book/publisher_info.html b/bookwyrm/templates/book/publisher_info.html index b7975a623..42cb40986 100644 --- a/bookwyrm/templates/book/publisher_info.html +++ b/bookwyrm/templates/book/publisher_info.html @@ -4,13 +4,15 @@ {% load humanize %}

- {% with format=book.physical_format pages=book.pages %} + {% firstof book.physical_format_detail book.physical_format as format %} + {% firstof book.physical_format book.physical_format_detail as format_property %} + {% with pages=book.pages %} {% if format %} {% comment %} @todo The bookFormat property is limited to a list of values whereas the book edition is free text. @see https://schema.org/bookFormat {% endcomment %} - + {% endif %} {% if pages %} diff --git a/locale/de_DE/LC_MESSAGES/django.po b/locale/de_DE/LC_MESSAGES/django.po index d0345fb6a..569330faa 100644 --- a/locale/de_DE/LC_MESSAGES/django.po +++ b/locale/de_DE/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-28 18:31+0000\n" +"POT-Creation-Date: 2021-09-29 18:32+0000\n" "PO-Revision-Date: 2021-03-02 17:19-0800\n" "Last-Translator: Mouse Reeve \n" "Language-Team: English \n" @@ -62,10 +62,9 @@ msgstr "Reihenfolge der Liste" msgid "Book Title" msgstr "Titel" -#: bookwyrm/forms.py:327 +#: bookwyrm/forms.py:327 bookwyrm/templates/shelf/shelf.html:134 +#: bookwyrm/templates/shelf/shelf.html:165 #: bookwyrm/templates/snippets/create_status/review.html:33 -#: bookwyrm/templates/user/shelf/shelf.html:117 -#: bookwyrm/templates/user/shelf/shelf.html:148 msgid "Rating" msgstr "" @@ -119,16 +118,42 @@ msgstr "Listenkuratierung:" msgid "Domain block" msgstr "" +#: bookwyrm/models/book.py:232 +#, fuzzy +#| msgid "Add Books" +msgid "Audiobook" +msgstr "Bücher hinzufügen" + +#: bookwyrm/models/book.py:233 +#, fuzzy +#| msgid "Book" +msgid "eBook" +msgstr "Buch" + +#: bookwyrm/models/book.py:234 +msgid "Graphic novel" +msgstr "" + +#: bookwyrm/models/book.py:235 +#, fuzzy +#| msgid "Add cover" +msgid "Hardcover" +msgstr "Cover hinzufügen" + +#: bookwyrm/models/book.py:236 +msgid "Paperback" +msgstr "" + #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/edit_server.html:40 -#: bookwyrm/templates/settings/federation.html:19 +#: bookwyrm/templates/settings/federation/edit_instance.html:42 +#: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "Föderiert" #: bookwyrm/models/federated_server.py:12 -#: bookwyrm/templates/settings/edit_server.html:41 -#: bookwyrm/templates/settings/federated_server.html:10 -#: bookwyrm/templates/settings/federation.html:23 +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:23 #, fuzzy #| msgid "Blocked Users" msgid "Blocked" @@ -294,9 +319,7 @@ msgid "Metadata" msgstr "Metadaten" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/lists/form.html:8 -#: bookwyrm/templates/user/shelf/create_shelf_form.html:13 -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:14 +#: bookwyrm/templates/lists/form.html:8 bookwyrm/templates/shelf/form.html:9 msgid "Name:" msgstr "" @@ -334,7 +357,7 @@ msgid "Openlibrary key:" msgstr "" #: bookwyrm/templates/author/edit_author.html:89 -#: bookwyrm/templates/book/edit_book.html:300 +#: bookwyrm/templates/book/edit_book.html:313 #, fuzzy #| msgid "View on OpenLibrary" msgid "Inventaire ID:" @@ -350,32 +373,30 @@ msgstr "" #: bookwyrm/templates/author/edit_author.html:116 #: bookwyrm/templates/book/book.html:140 -#: bookwyrm/templates/book/edit_book.html:328 +#: bookwyrm/templates/book/edit_book.html:341 #: bookwyrm/templates/book/readthrough.html:76 #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/form.html:44 #: bookwyrm/templates/preferences/edit_user.html:118 -#: bookwyrm/templates/settings/announcement_form.html:69 -#: bookwyrm/templates/settings/edit_server.html:68 -#: bookwyrm/templates/settings/federated_server.html:98 -#: bookwyrm/templates/settings/site.html:120 -#: bookwyrm/templates/snippets/reading_modals/layout.html:16 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:43 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:64 +#: bookwyrm/templates/settings/announcements/announcement_form.html:69 +#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/instance.html:87 +#: bookwyrm/templates/settings/site.html:134 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:64 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 msgid "Save" msgstr "Speichern" #: bookwyrm/templates/author/edit_author.html:117 #: bookwyrm/templates/book/book.html:141 bookwyrm/templates/book/book.html:190 #: bookwyrm/templates/book/cover_modal.html:32 -#: bookwyrm/templates/book/edit_book.html:329 +#: bookwyrm/templates/book/edit_book.html:342 #: bookwyrm/templates/book/readthrough.html:77 #: bookwyrm/templates/lists/delete_list_modal.html:17 -#: bookwyrm/templates/moderation/report_modal.html:34 -#: bookwyrm/templates/settings/federated_server.html:99 +#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/snippets/delete_readthrough_modal.html:17 -#: bookwyrm/templates/snippets/goal_form.html:32 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:44 +#: bookwyrm/templates/snippets/report_modal.html:34 msgid "Cancel" msgstr "Abbrechen" @@ -414,7 +435,7 @@ msgstr "Beschreibung hinzufügen" #: bookwyrm/templates/book/book.html:136 #: bookwyrm/templates/book/edit_book.html:143 -#: bookwyrm/templates/lists/form.html:12 +#: bookwyrm/templates/lists/form.html:12 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Beschreibung:" @@ -501,8 +522,8 @@ msgstr "Zur Liste" #: bookwyrm/templates/book/book.html:313 #: bookwyrm/templates/book/cover_modal.html:31 #: bookwyrm/templates/lists/list.html:181 -#: bookwyrm/templates/settings/domain_form.html:26 -#: bookwyrm/templates/settings/ip_address_form.html:32 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:26 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 msgid "Add" msgstr "Hinzufügen" @@ -511,12 +532,12 @@ msgid "ISBN:" msgstr "" #: bookwyrm/templates/book/book_identifiers.html:14 -#: bookwyrm/templates/book/edit_book.html:308 +#: bookwyrm/templates/book/edit_book.html:321 msgid "OCLC Number:" msgstr "OCLC Nummer:" #: bookwyrm/templates/book/book_identifiers.html:21 -#: bookwyrm/templates/book/edit_book.html:316 +#: bookwyrm/templates/book/edit_book.html:329 msgid "ASIN:" msgstr "" @@ -528,7 +549,7 @@ msgid "Upload cover:" msgstr "Cover hinzufügen" #: bookwyrm/templates/book/cover_modal.html:23 -#: bookwyrm/templates/book/edit_book.html:242 +#: bookwyrm/templates/book/edit_book.html:241 msgid "Load cover from url:" msgstr "Cover von URL laden:" @@ -654,11 +675,11 @@ msgid "John Doe, Jane Smith" msgstr "Max Mustermann, Maria Musterfrau" #: bookwyrm/templates/book/edit_book.html:227 -#: bookwyrm/templates/user/shelf/shelf.html:110 +#: bookwyrm/templates/shelf/shelf.html:127 msgid "Cover" msgstr "" -#: bookwyrm/templates/book/edit_book.html:255 +#: bookwyrm/templates/book/edit_book.html:253 msgid "Physical Properties" msgstr "Physikalische Eigenschaften" @@ -667,23 +688,27 @@ msgstr "Physikalische Eigenschaften" msgid "Format:" msgstr "" -#: bookwyrm/templates/book/edit_book.html:265 +#: bookwyrm/templates/book/edit_book.html:268 +msgid "Format details:" +msgstr "" + +#: bookwyrm/templates/book/edit_book.html:278 msgid "Pages:" msgstr "Seiten:" -#: bookwyrm/templates/book/edit_book.html:274 +#: bookwyrm/templates/book/edit_book.html:287 msgid "Book Identifiers" msgstr "Buchidentifikatoren" -#: bookwyrm/templates/book/edit_book.html:276 +#: bookwyrm/templates/book/edit_book.html:289 msgid "ISBN 13:" msgstr "" -#: bookwyrm/templates/book/edit_book.html:284 +#: bookwyrm/templates/book/edit_book.html:297 msgid "ISBN 10:" msgstr "" -#: bookwyrm/templates/book/edit_book.html:292 +#: bookwyrm/templates/book/edit_book.html:305 msgid "Openlibrary ID:" msgstr "" @@ -824,7 +849,7 @@ msgid "Sorry! We couldn't find that code." msgstr "Sorry! Dieser Code ist uns nicht bekannt." #: bookwyrm/templates/confirm_email/confirm_email.html:19 -#: bookwyrm/templates/user_admin/user_info.html:100 +#: bookwyrm/templates/settings/users/user_info.html:85 #, fuzzy #| msgid "Confirm password:" msgid "Confirmation code:" @@ -832,8 +857,8 @@ msgstr "Passwort bestätigen:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:73 -#: bookwyrm/templates/moderation/report_modal.html:33 -#: bookwyrm/templates/settings/dashboard.html:93 +#: bookwyrm/templates/settings/dashboard/dashboard.html:93 +#: bookwyrm/templates/snippets/report_modal.html:33 msgid "Submit" msgstr "Absenden" @@ -892,8 +917,8 @@ msgid "You can opt-out at any time in your profile settings msgstr "Du kannst dein Leseziel jederzeit auf deiner Profilseite setzen oder ändern." #: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/feed/goal_card.html:17 #: bookwyrm/templates/snippets/announcement.html:34 -#: bookwyrm/templates/snippets/goal_card.html:22 msgid "Dismiss message" msgstr "Nachricht verwerfen" @@ -902,15 +927,15 @@ msgid "Order by" msgstr "Sortieren nach" #: bookwyrm/templates/directory/sort_filter.html:8 +msgid "Recently active" +msgstr "Zuletzt aktiv" + +#: bookwyrm/templates/directory/sort_filter.html:9 #, fuzzy #| msgid "Suggest" msgid "Suggested" msgstr "Vorschlagen" -#: bookwyrm/templates/directory/sort_filter.html:9 -msgid "Recently active" -msgstr "Zuletzt aktiv" - #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 #: bookwyrm/templates/user/user_preview.html:16 @@ -1117,12 +1142,24 @@ msgstr "lese 0 ungelesene Status" msgid "There aren't any activities right now! Try following a user to get started" msgstr "Hier sind noch keine Aktivitäten! Folge anderen, um loszulegen" +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:90 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "%(year)s Leseziel" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "Du kannst dein Leseziel jederzeit auf deiner Profilseite setzen oder ändern." + #: bookwyrm/templates/feed/layout.html:5 msgid "Updates" msgstr "" #: bookwyrm/templates/feed/layout.html:12 -#: bookwyrm/templates/user/shelf/books_header.html:3 +#: bookwyrm/templates/user/books_header.html:3 msgid "Your books" msgstr "Deine Bücher" @@ -1131,32 +1168,26 @@ msgid "There are no books here right now! Try searching for a book to get starte msgstr "Hier sind noch keine Bücher! Versuche nach Büchern zu suchen um loszulegen" #: bookwyrm/templates/feed/layout.html:25 -#: bookwyrm/templates/user/shelf/shelf.html:38 +#: bookwyrm/templates/shelf/shelf.html:38 #, fuzzy #| msgid "Read" msgid "To Read" msgstr "Auf der Leseliste" #: bookwyrm/templates/feed/layout.html:26 -#: bookwyrm/templates/user/shelf/shelf.html:40 +#: bookwyrm/templates/shelf/shelf.html:40 #, fuzzy #| msgid "Start reading" msgid "Currently Reading" msgstr "Gerade lesend" #: bookwyrm/templates/feed/layout.html:27 +#: bookwyrm/templates/shelf/shelf.html:42 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:23 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/user/shelf/shelf.html:42 msgid "Read" msgstr "Gelesen" -#: bookwyrm/templates/feed/layout.html:90 bookwyrm/templates/goal.html:26 -#: bookwyrm/templates/snippets/goal_card.html:6 -#, python-format -msgid "%(year)s Reading Goal" -msgstr "%(year)s Leseziel" - #: bookwyrm/templates/feed/suggested_users.html:5 #: bookwyrm/templates/get_started/users.html:6 msgid "Who to follow" @@ -1318,39 +1349,9 @@ msgstr "Suche nach Buch oder Benutzer*in" msgid "No users found for \"%(query)s\"" msgstr "Keine Nutzer*innen für \"%(query)s\" gefunden" -#: bookwyrm/templates/goal.html:7 -#, python-format -msgid "%(year)s Reading Progress" -msgstr "%(year)s Lesefortschritt" - -#: bookwyrm/templates/goal.html:11 -msgid "Edit Goal" -msgstr "Ziel bearbeiten" - -#: bookwyrm/templates/goal.html:30 -#: bookwyrm/templates/snippets/goal_card.html:13 -#, python-format -msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." -msgstr "Setze dir ein Ziel, wie viele Bücher du %(year)s lesen wirst und behalte deinen Fortschritt über's Jahr im Auge." - -#: bookwyrm/templates/goal.html:39 -#, python-format -msgid "%(name)s hasn't set a reading goal for %(year)s." -msgstr "%(name)s hat sich für %(year)s kein Leseziel gesetzt." - -#: bookwyrm/templates/goal.html:51 -#, python-format -msgid "Your %(year)s Books" -msgstr "Deine Bücher %(year)s" - -#: bookwyrm/templates/goal.html:53 -#, python-format -msgid "%(username)s's %(year)s Books" -msgstr "%(username)ss %(year)s Bücher" - #: bookwyrm/templates/import/import.html:5 #: bookwyrm/templates/import/import.html:9 -#: bookwyrm/templates/user/shelf/shelf.html:57 +#: bookwyrm/templates/shelf/shelf.html:57 msgid "Import Books" msgstr "Bücher importieren" @@ -1373,7 +1374,7 @@ msgid "Privacy setting for imported reviews:" msgstr "Datenschutzeinstellung für importierte Bewertungen" #: bookwyrm/templates/import/import.html:56 -#: bookwyrm/templates/settings/server_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 msgid "Import" msgstr "Importieren" @@ -1453,14 +1454,14 @@ msgid "Book" msgstr "Buch" #: bookwyrm/templates/import/import_status.html:122 -#: bookwyrm/templates/user/shelf/shelf.html:111 -#: bookwyrm/templates/user/shelf/shelf.html:131 +#: bookwyrm/templates/shelf/shelf.html:128 +#: bookwyrm/templates/shelf/shelf.html:148 msgid "Title" msgstr "Titel" #: bookwyrm/templates/import/import_status.html:125 -#: bookwyrm/templates/user/shelf/shelf.html:112 -#: bookwyrm/templates/user/shelf/shelf.html:134 +#: bookwyrm/templates/shelf/shelf.html:129 +#: bookwyrm/templates/shelf/shelf.html:151 msgid "Author" msgstr "Autor*in" @@ -1570,10 +1571,10 @@ msgid "Settings" msgstr "Einstellungen" #: bookwyrm/templates/layout.html:125 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 #: bookwyrm/templates/settings/layout.html:40 -#: bookwyrm/templates/settings/manage_invite_requests.html:15 -#: bookwyrm/templates/settings/manage_invites.html:3 -#: bookwyrm/templates/settings/manage_invites.html:15 msgid "Invites" msgstr "Einladungen" @@ -1709,9 +1710,9 @@ msgid "This action cannot be un-done" msgstr "Dieses Regal ist leer." #: bookwyrm/templates/lists/delete_list_modal.html:15 -#: bookwyrm/templates/settings/announcement.html:20 -#: bookwyrm/templates/settings/email_blocklist.html:49 -#: bookwyrm/templates/settings/ip_blocklist.html:36 +#: bookwyrm/templates/settings/announcements/announcement.html:20 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 #: bookwyrm/templates/snippets/delete_readthrough_modal.html:15 #: bookwyrm/templates/snippets/follow_request_buttons.html:12 msgid "Delete" @@ -1742,9 +1743,8 @@ msgstr "Kuratiert" msgid "Anyone can suggest books, subject to your approval" msgstr "Alle können Bücher vorschlagen, du kannst diese bestätigen" -#: bookwyrm/templates/lists/form.html:31 -#: bookwyrm/templates/moderation/reports.html:25 -#: bookwyrm/templates/search/book.html:30 +#: bookwyrm/templates/lists/form.html:31 bookwyrm/templates/search/book.html:30 +#: bookwyrm/templates/settings/reports/reports.html:25 #: bookwyrm/templates/snippets/announcement.html:16 msgid "Open" msgstr "Offen" @@ -1873,109 +1873,6 @@ msgstr "Passwort:" msgid "More about this site" msgstr "Mehr über diese Seite" -#: bookwyrm/templates/moderation/report.html:5 -#: bookwyrm/templates/moderation/report.html:6 -#: bookwyrm/templates/moderation/report_preview.html:6 -#, python-format -msgid "Report #%(report_id)s: %(username)s" -msgstr "Meldung #%(report_id)s: %(username)s" - -#: bookwyrm/templates/moderation/report.html:10 -msgid "Back to reports" -msgstr "Zurück zu den Meldungen" - -#: bookwyrm/templates/moderation/report.html:22 -msgid "Moderator Comments" -msgstr "Moderator:innenkommentare" - -#: bookwyrm/templates/moderation/report.html:40 -#: bookwyrm/templates/snippets/create_status.html:28 -msgid "Comment" -msgstr "Kommentieren" - -#: bookwyrm/templates/moderation/report.html:45 -#, fuzzy -#| msgid "Delete status" -msgid "Reported statuses" -msgstr "Post löschen" - -#: bookwyrm/templates/moderation/report.html:47 -msgid "No statuses reported" -msgstr "Keine Beiträge gemeldet" - -#: bookwyrm/templates/moderation/report.html:53 -#, fuzzy -#| msgid "Statuses has been deleted" -msgid "Status has been deleted" -msgstr "Beiträge wurden gelöscht" - -#: bookwyrm/templates/moderation/report_modal.html:6 -#, fuzzy, python-format -#| msgid "Lists: %(username)s" -msgid "Report @%(username)s" -msgstr "Listen: %(username)s" - -#: bookwyrm/templates/moderation/report_modal.html:23 -#, python-format -msgid "This report will be sent to %(site_name)s's moderators for review." -msgstr "Diese Meldung wird an die Moderator:innen von %(site_name)s weitergeletiet." - -#: bookwyrm/templates/moderation/report_modal.html:24 -#, fuzzy -#| msgid "More about this site" -msgid "More info about this report:" -msgstr "Mehr über diese Seite" - -#: bookwyrm/templates/moderation/report_preview.html:13 -msgid "No notes provided" -msgstr "Keine Notizen angegeben." - -#: bookwyrm/templates/moderation/report_preview.html:20 -#, fuzzy, python-format -#| msgid "Direct Messages with %(username)s" -msgid "Reported by %(username)s" -msgstr "Direktnachrichten mit %(username)s" - -#: bookwyrm/templates/moderation/report_preview.html:30 -msgid "Re-open" -msgstr "Wiedereröffnen" - -#: bookwyrm/templates/moderation/report_preview.html:32 -msgid "Resolve" -msgstr "Lösen" - -#: bookwyrm/templates/moderation/reports.html:6 -#, fuzzy, python-format -#| msgid "Lists: %(username)s" -msgid "Reports: %(instance_name)s" -msgstr "Listen: %(username)s" - -#: bookwyrm/templates/moderation/reports.html:8 -#: bookwyrm/templates/moderation/reports.html:17 -#: bookwyrm/templates/settings/layout.html:55 -#, fuzzy -#| msgid "Recent Imports" -msgid "Reports" -msgstr "Aktuelle Importe" - -#: bookwyrm/templates/moderation/reports.html:14 -#, fuzzy, python-format -#| msgid "Lists: %(username)s" -msgid "Reports: %(instance_name)s" -msgstr "Listen: %(username)s" - -#: bookwyrm/templates/moderation/reports.html:28 -#, fuzzy -#| msgid "Shelved" -msgid "Resolved" -msgstr "Ins Regal gestellt" - -#: bookwyrm/templates/moderation/reports.html:37 -#, fuzzy -#| msgid "No books found" -msgid "No reports found." -msgstr "Keine Bücher gefunden" - #: bookwyrm/templates/notifications.html:16 msgid "Delete notifications" msgstr "Benachrichtigungen löschen" @@ -2142,7 +2039,7 @@ msgstr "Neues Passwort:" #: bookwyrm/templates/preferences/delete_user.html:7 #: bookwyrm/templates/preferences/delete_user.html:26 #: bookwyrm/templates/preferences/layout.html:24 -#: bookwyrm/templates/user_admin/delete_user_form.html:23 +#: bookwyrm/templates/settings/users/delete_user_form.html:23 #, fuzzy #| msgid "Create an Account" msgid "Delete Account" @@ -2164,7 +2061,7 @@ msgstr "Profil bearbeiten:" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 -#: bookwyrm/templates/user_admin/user_info.html:7 +#: bookwyrm/templates/settings/users/user_info.html:7 msgid "Profile" msgstr "Profil" @@ -2263,11 +2160,11 @@ msgstr "Suche" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 -#: bookwyrm/templates/settings/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation.html:44 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:44 #: bookwyrm/templates/settings/layout.html:34 -#: bookwyrm/templates/user_admin/user_admin.html:3 -#: bookwyrm/templates/user_admin/user_admin.html:10 +#: bookwyrm/templates/settings/users/user_admin.html:3 +#: bookwyrm/templates/settings/users/user_admin.html:10 msgid "Users" msgstr "" @@ -2277,173 +2174,173 @@ msgstr "" msgid "No results found for \"%(query)s\"" msgstr "Keine Liste für \"%(query)s\" gefunden" -#: bookwyrm/templates/settings/announcement.html:3 -#: bookwyrm/templates/settings/announcement.html:6 +#: bookwyrm/templates/settings/announcements/announcement.html:3 +#: bookwyrm/templates/settings/announcements/announcement.html:6 #, fuzzy #| msgid "Announcements" msgid "Announcement" msgstr "Ankündigungen" -#: bookwyrm/templates/settings/announcement.html:7 -#: bookwyrm/templates/settings/federated_server.html:13 +#: bookwyrm/templates/settings/announcements/announcement.html:7 +#: bookwyrm/templates/settings/federation/instance.html:13 #, fuzzy #| msgid "Back to reports" msgid "Back to list" msgstr "Zurück zu den Meldungen" -#: bookwyrm/templates/settings/announcement.html:11 -#: bookwyrm/templates/settings/announcement_form.html:6 +#: bookwyrm/templates/settings/announcements/announcement.html:11 +#: bookwyrm/templates/settings/announcements/announcement_form.html:6 #, fuzzy #| msgid "Announcements" msgid "Edit Announcement" msgstr "Ankündigungen" -#: bookwyrm/templates/settings/announcement.html:35 +#: bookwyrm/templates/settings/announcements/announcement.html:35 msgid "Visible:" msgstr "Sichtbar" -#: bookwyrm/templates/settings/announcement.html:38 +#: bookwyrm/templates/settings/announcements/announcement.html:38 msgid "True" msgstr "Ja" -#: bookwyrm/templates/settings/announcement.html:40 +#: bookwyrm/templates/settings/announcements/announcement.html:40 msgid "False" msgstr "Nein" -#: bookwyrm/templates/settings/announcement.html:47 -#: bookwyrm/templates/settings/announcement_form.html:40 -#: bookwyrm/templates/settings/dashboard.html:71 +#: bookwyrm/templates/settings/announcements/announcement.html:47 +#: bookwyrm/templates/settings/announcements/announcement_form.html:40 +#: bookwyrm/templates/settings/dashboard/dashboard.html:71 #, fuzzy #| msgid "Birth date:" msgid "Start date:" msgstr "Geburtsdatum:" -#: bookwyrm/templates/settings/announcement.html:54 -#: bookwyrm/templates/settings/announcement_form.html:49 -#: bookwyrm/templates/settings/dashboard.html:77 +#: bookwyrm/templates/settings/announcements/announcement.html:54 +#: bookwyrm/templates/settings/announcements/announcement_form.html:49 +#: bookwyrm/templates/settings/dashboard/dashboard.html:77 #, fuzzy #| msgid "Birth date:" msgid "End date:" msgstr "Geburtsdatum:" -#: bookwyrm/templates/settings/announcement.html:60 -#: bookwyrm/templates/settings/announcement_form.html:58 +#: bookwyrm/templates/settings/announcements/announcement.html:60 +#: bookwyrm/templates/settings/announcements/announcement_form.html:58 #, fuzzy #| msgid "Activity" msgid "Active:" msgstr "Aktivität" -#: bookwyrm/templates/settings/announcement_form.html:8 -#: bookwyrm/templates/settings/announcements.html:8 +#: bookwyrm/templates/settings/announcements/announcement_form.html:8 +#: bookwyrm/templates/settings/announcements/announcements.html:8 #, fuzzy #| msgid "Announcements" msgid "Create Announcement" msgstr "Ankündigungen" -#: bookwyrm/templates/settings/announcement_form.html:16 +#: bookwyrm/templates/settings/announcements/announcement_form.html:16 #, fuzzy #| msgid "reviewed" msgid "Preview:" msgstr "bewertete" -#: bookwyrm/templates/settings/announcement_form.html:23 +#: bookwyrm/templates/settings/announcements/announcement_form.html:23 #, fuzzy #| msgid "Footer Content" msgid "Content:" msgstr "Inhalt des Footers" -#: bookwyrm/templates/settings/announcement_form.html:30 +#: bookwyrm/templates/settings/announcements/announcement_form.html:30 #, fuzzy #| msgid "Birth date:" msgid "Event date:" msgstr "Geburtsdatum:" -#: bookwyrm/templates/settings/announcements.html:3 -#: bookwyrm/templates/settings/announcements.html:5 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/layout.html:72 msgid "Announcements" msgstr "Ankündigungen" -#: bookwyrm/templates/settings/announcements.html:22 -#: bookwyrm/templates/settings/federation.html:36 +#: bookwyrm/templates/settings/announcements/announcements.html:22 +#: bookwyrm/templates/settings/federation/instance_list.html:36 #, fuzzy #| msgid "Added:" msgid "Date added" msgstr "Hinzugefügt:" -#: bookwyrm/templates/settings/announcements.html:26 +#: bookwyrm/templates/settings/announcements/announcements.html:26 #, fuzzy #| msgid "reviewed" msgid "Preview" msgstr "bewertete" -#: bookwyrm/templates/settings/announcements.html:30 +#: bookwyrm/templates/settings/announcements/announcements.html:30 #, fuzzy #| msgid "Started" msgid "Start date" msgstr "Gestartet" -#: bookwyrm/templates/settings/announcements.html:34 +#: bookwyrm/templates/settings/announcements/announcements.html:34 #, fuzzy #| msgid "Edit read dates" msgid "End date" msgstr "Lesedaten bearbeiten" -#: bookwyrm/templates/settings/announcements.html:38 -#: bookwyrm/templates/settings/federation.html:46 -#: bookwyrm/templates/settings/manage_invite_requests.html:44 -#: bookwyrm/templates/settings/status_filter.html:5 -#: bookwyrm/templates/user_admin/user_admin.html:34 -#: bookwyrm/templates/user_admin/user_info.html:20 +#: 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/settings/announcements.html:48 +#: bookwyrm/templates/settings/announcements/announcements.html:48 #, fuzzy #| msgid "Activity" msgid "active" msgstr "Aktivität" -#: bookwyrm/templates/settings/announcements.html:48 +#: bookwyrm/templates/settings/announcements/announcements.html:48 #, fuzzy #| msgid "Activity" msgid "inactive" msgstr "Aktivität" -#: bookwyrm/templates/settings/announcements.html:54 +#: bookwyrm/templates/settings/announcements/announcements.html:52 #, fuzzy #| msgid "Announcements" -msgid "No announcements found." +msgid "No announcements found" msgstr "Ankündigungen" -#: bookwyrm/templates/settings/dashboard.html:6 -#: bookwyrm/templates/settings/dashboard.html:8 +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:26 msgid "Dashboard" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 #, fuzzy #| msgid "Max uses" msgid "Total users" msgstr "Maximale Benutzungen" -#: bookwyrm/templates/settings/dashboard.html:21 -#: bookwyrm/templates/settings/dashboard_user_chart.html:12 +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/dashboard_user_chart.html:12 msgid "Active this month" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 #, fuzzy #| msgid "Import Status" msgid "Statuses" msgstr "Importstatus" -#: bookwyrm/templates/settings/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 msgid "Works" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:43 +#: bookwyrm/templates/settings/dashboard/dashboard.html:43 #, fuzzy, python-format #| msgid "%(count)d uses" msgid "%(display_count)s open report" @@ -2451,7 +2348,7 @@ msgid_plural "%(display_count)s open reports" msgstr[0] "%(count)d Benutzungen" msgstr[1] "%(count)d Benutzungen" -#: bookwyrm/templates/settings/dashboard.html:54 +#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #, fuzzy, python-format #| msgid "%(count)d uses" msgid "%(display_count)s invite request" @@ -2459,139 +2356,81 @@ msgid_plural "%(display_count)s invite requests" msgstr[0] "%(count)d Benutzungen" msgstr[1] "%(count)d Benutzungen" -#: bookwyrm/templates/settings/dashboard.html:65 +#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #, fuzzy #| msgid "User Activity" msgid "Instance Activity" msgstr "Nutzer*innenaktivität" -#: bookwyrm/templates/settings/dashboard.html:83 +#: bookwyrm/templates/settings/dashboard/dashboard.html:83 msgid "Interval:" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:87 msgid "Days" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:87 +#: bookwyrm/templates/settings/dashboard/dashboard.html:88 #, fuzzy #| msgid "One Week" msgid "Weeks" msgstr "Eine Woche" -#: bookwyrm/templates/settings/dashboard.html:100 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 #, fuzzy #| msgid "User Activity" msgid "User signup activity" msgstr "Nutzer*innenaktivität" -#: bookwyrm/templates/settings/dashboard.html:106 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #, fuzzy #| msgid "User Activity" msgid "Status activity" msgstr "Nutzer*innenaktivität" -#: bookwyrm/templates/settings/dashboard_status_chart.html:7 +#: bookwyrm/templates/settings/dashboard/dashboard_status_chart.html:7 #, fuzzy #| msgid "No statuses reported" msgid "Statuses posted" msgstr "Keine Beiträge gemeldet" -#: bookwyrm/templates/settings/dashboard_user_chart.html:7 +#: bookwyrm/templates/settings/dashboard/dashboard_user_chart.html:7 msgid "Total" msgstr "" -#: bookwyrm/templates/settings/domain_form.html:5 -#: bookwyrm/templates/settings/email_blocklist.html:10 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 msgid "Add domain" msgstr "Domain hinzufügen" -#: bookwyrm/templates/settings/domain_form.html:11 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 msgid "Domain:" msgstr "" -#: bookwyrm/templates/settings/edit_server.html:3 -#: bookwyrm/templates/settings/edit_server.html:6 -#: bookwyrm/templates/settings/edit_server.html:20 -#: bookwyrm/templates/settings/federation.html:9 -#: bookwyrm/templates/settings/federation.html:10 -#: bookwyrm/templates/settings/server_blocklist.html:3 -#: bookwyrm/templates/settings/server_blocklist.html:20 -#, fuzzy -#| msgid "Instance Name:" -msgid "Add instance" -msgstr "Instanzname" - -#: bookwyrm/templates/settings/edit_server.html:7 -#: bookwyrm/templates/settings/server_blocklist.html:7 -#, fuzzy -#| msgid "Back to reports" -msgid "Back to instance list" -msgstr "Zurück zu den Meldungen" - -#: bookwyrm/templates/settings/edit_server.html:16 -#: bookwyrm/templates/settings/server_blocklist.html:16 -#, fuzzy -#| msgid "Import book" -msgid "Import block list" -msgstr "Buch importieren" - -#: bookwyrm/templates/settings/edit_server.html:30 -#, fuzzy -#| msgid "Instance Name:" -msgid "Instance:" -msgstr "Instanzname" - -#: bookwyrm/templates/settings/edit_server.html:37 -#: bookwyrm/templates/settings/federated_server.html:31 -#: bookwyrm/templates/user_admin/user_info.html:125 -#, fuzzy -#| msgid "Import Status" -msgid "Status:" -msgstr "Importstatus" - -#: bookwyrm/templates/settings/edit_server.html:48 -#: bookwyrm/templates/settings/federated_server.html:23 -#: bookwyrm/templates/user_admin/user_info.html:117 -msgid "Software:" -msgstr "" - -#: bookwyrm/templates/settings/edit_server.html:55 -#: bookwyrm/templates/settings/federated_server.html:27 -#: bookwyrm/templates/user_admin/user_info.html:121 -#, fuzzy -#| msgid "Description:" -msgid "Version:" -msgstr "Beschreibung:" - -#: bookwyrm/templates/settings/edit_server.html:64 -msgid "Notes:" -msgstr "" - -#: bookwyrm/templates/settings/email_blocklist.html:5 -#: bookwyrm/templates/settings/email_blocklist.html:7 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 #: bookwyrm/templates/settings/layout.html:59 #, fuzzy #| msgid "Import Books" msgid "Email Blocklist" msgstr "Bücher importieren" -#: bookwyrm/templates/settings/email_blocklist.html:18 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 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 Account erstellt. Die Registrierung wird so aussehen als hätte sie funktioniert." -#: bookwyrm/templates/settings/email_blocklist.html:25 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 msgid "Domain" msgstr "" -#: bookwyrm/templates/settings/email_blocklist.html:29 -#: bookwyrm/templates/settings/ip_blocklist.html:27 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 #, fuzzy #| msgid "Notifications" msgid "Options" msgstr "Benachrichtigungen" -#: bookwyrm/templates/settings/email_blocklist.html:38 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 #, fuzzy, python-format #| msgid "%(count)d uses" msgid "%(display_count)s user" @@ -2599,140 +2438,361 @@ msgid_plural "%(display_count)s users" msgstr[0] "%(count)d Benutzungen" msgstr[1] "%(count)d Benutzungen" -#: bookwyrm/templates/settings/federated_server.html:19 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +#, fuzzy +#| msgid "No users currently blocked." +msgid "No email domains currently blocked" +msgstr "Momentan keine Nutzer*innen blockiert." + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +#, fuzzy +#| msgid "Instance Name:" +msgid "Add instance" +msgstr "Instanzname" + +#: bookwyrm/templates/settings/federation/edit_instance.html:7 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:7 +#, fuzzy +#| msgid "Back to reports" +msgid "Back to instance list" +msgstr "Zurück zu den Meldungen" + +#: bookwyrm/templates/settings/federation/edit_instance.html:16 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:16 +#, fuzzy +#| msgid "Import book" +msgid "Import block list" +msgstr "Buch importieren" + +#: bookwyrm/templates/settings/federation/edit_instance.html:30 +#, fuzzy +#| msgid "Instance Name:" +msgid "Instance:" +msgstr "Instanzname" + +#: bookwyrm/templates/settings/federation/edit_instance.html:39 +#: bookwyrm/templates/settings/federation/instance.html:28 +#: bookwyrm/templates/settings/users/user_info.html:106 +#, fuzzy +#| msgid "Import Status" +msgid "Status:" +msgstr "Importstatus" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:22 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:61 +#: bookwyrm/templates/settings/federation/instance.html:25 +#: bookwyrm/templates/settings/users/user_info.html:103 +#, fuzzy +#| msgid "Description:" +msgid "Version:" +msgstr "Beschreibung:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:70 +msgid "Notes:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:19 msgid "Details" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:39 +#: bookwyrm/templates/settings/federation/instance.html:35 #: bookwyrm/templates/user/layout.html:63 msgid "Activity" msgstr "Aktivität" -#: bookwyrm/templates/settings/federated_server.html:43 +#: bookwyrm/templates/settings/federation/instance.html:38 msgid "Users:" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:46 -#: bookwyrm/templates/settings/federated_server.html:53 +#: bookwyrm/templates/settings/federation/instance.html:41 +#: bookwyrm/templates/settings/federation/instance.html:47 msgid "View all" msgstr "Alle anzeigen" -#: bookwyrm/templates/settings/federated_server.html:50 -#: bookwyrm/templates/user_admin/user_info.html:59 +#: bookwyrm/templates/settings/federation/instance.html:44 +#: bookwyrm/templates/settings/users/user_info.html:56 #, fuzzy #| msgid "Recent Imports" msgid "Reports:" msgstr "Aktuelle Importe" -#: bookwyrm/templates/settings/federated_server.html:57 +#: bookwyrm/templates/settings/federation/instance.html:50 #, fuzzy #| msgid "followed you" msgid "Followed by us:" msgstr "folgt dir" -#: bookwyrm/templates/settings/federated_server.html:63 +#: bookwyrm/templates/settings/federation/instance.html:55 #, fuzzy #| msgid "followed you" msgid "Followed by them:" msgstr "folgt dir" -#: bookwyrm/templates/settings/federated_server.html:69 +#: bookwyrm/templates/settings/federation/instance.html:60 #, fuzzy #| msgid "Blocked Users" msgid "Blocked by us:" msgstr "Blockierte Nutzer*innen" -#: bookwyrm/templates/settings/federated_server.html:82 -#: bookwyrm/templates/user_admin/user_info.html:130 +#: bookwyrm/templates/settings/federation/instance.html:72 +#: bookwyrm/templates/settings/users/user_info.html:110 msgid "Notes" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:85 +#: bookwyrm/templates/settings/federation/instance.html:75 #, fuzzy #| msgid "Edit Book" msgid "Edit" msgstr "Buch editieren" -#: bookwyrm/templates/settings/federated_server.html:105 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:8 +#: bookwyrm/templates/settings/federation/instance.html:79 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:8 #, fuzzy #| msgid "Notifications" msgid "Actions" msgstr "Benachrichtigungen" -#: bookwyrm/templates/settings/federated_server.html:109 +#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/snippets/block_button.html:5 msgid "Block" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:110 +#: bookwyrm/templates/settings/federation/instance.html:99 msgid "All users from this instance will be deactivated." msgstr "" -#: bookwyrm/templates/settings/federated_server.html:115 +#: bookwyrm/templates/settings/federation/instance.html:104 #: bookwyrm/templates/snippets/block_button.html:10 msgid "Un-block" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:116 +#: bookwyrm/templates/settings/federation/instance.html:105 msgid "All users from this instance will be re-activated." msgstr "" -#: bookwyrm/templates/settings/federation.html:3 -#: bookwyrm/templates/settings/federation.html:5 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#, fuzzy +#| msgid "Import Books" +msgid "Import Blocklist" +msgstr "Bücher importieren" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:26 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "Erfolg!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:30 +#, fuzzy +#| msgid "Successfully imported" +msgid "Successfully blocked:" +msgstr "Erfolgreich importiert" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +msgid "Failed:" +msgstr "Fehlgeschlagen" + +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:45 #, fuzzy #| msgid "Federated Servers" msgid "Federated Instances" msgstr "Föderierende Server" -#: bookwyrm/templates/settings/federation.html:32 -#: bookwyrm/templates/user_admin/server_filter.html:5 +#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/users/server_filter.html:5 #, fuzzy #| msgid "Instance Name:" msgid "Instance name" msgstr "Instanzname" -#: bookwyrm/templates/settings/federation.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:40 msgid "Software" msgstr "" -#: bookwyrm/templates/settings/ip_address_form.html:5 -#: bookwyrm/templates/settings/ip_blocklist.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:63 +#, fuzzy +#| msgid "Announcements" +msgid "No instances found" +msgstr "Ankündigungen" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +#, fuzzy +#| msgid "Invites" +msgid "Invite Requests" +msgstr "Einladungen" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "Ignorierte Einladungsanfragen" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:35 +#, fuzzy +#| msgid "Federated" +msgid "Date requested" +msgstr "Föderiert" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:39 +#, fuzzy +#| msgid "Accept" +msgid "Date accepted" +msgstr "Annehmen" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:42 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +#, fuzzy +#| msgid "Notifications" +msgid "Action" +msgstr "Benachrichtigungen" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +#, fuzzy +#| msgid "Follow Requests" +msgid "No requests" +msgstr "Folgeanfragen" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +#, fuzzy +#| msgid "Accept" +msgid "Accepted" +msgstr "Annehmen" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "Gesendet" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "Angefragt" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +msgid "Send invite" +msgstr "Einladung senden" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +msgid "Re-send invite" +msgstr "Einladung erneut senden" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +msgid "Ignore" +msgstr "Ignorieren" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +msgid "Un-ignore" +msgstr "Un-ignorieren" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +#, fuzzy +#| msgid "Back to reports" +msgid "Back to pending requests" +msgstr "Zurück zu den Meldungen" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +msgid "View ignored requests" +msgstr "Zeige ignorierte Anfragen" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "Neue Einladung erzeugen" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "Ablaufen:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "Begrenzte Benutzung" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "Einladung erstellen" + +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "Läuft aus" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "Maximale Benutzungen" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "Mal benutzt" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "Keine aktiven Einladungen" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 #, fuzzy #| msgid "Email address:" msgid "Add IP address" msgstr "E-Mail Adresse" -#: bookwyrm/templates/settings/ip_address_form.html:11 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." msgstr "" -#: bookwyrm/templates/settings/ip_address_form.html:18 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 #, fuzzy #| msgid "Email address:" msgid "IP Address:" msgstr "E-Mail Adresse" -#: bookwyrm/templates/settings/ip_blocklist.html:5 -#: bookwyrm/templates/settings/ip_blocklist.html:7 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 #: bookwyrm/templates/settings/layout.html:63 #, fuzzy #| msgid "Import Books" msgid "IP Address Blocklist" msgstr "Bücher importieren" -#: bookwyrm/templates/settings/ip_blocklist.html:18 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." msgstr "" -#: bookwyrm/templates/settings/ip_blocklist.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 #, fuzzy #| msgid "Email address:" msgid "Address" msgstr "E-Mail Adresse" -#: bookwyrm/templates/settings/ip_tooltip.html:6 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +#, fuzzy +#| msgid "No users currently blocked." +msgid "No IP addresses currently blocked" +msgstr "Momentan keine Nutzer*innen blockiert." + +#: bookwyrm/templates/settings/ip_blocklist/ip_tooltip.html:6 msgid "You can block IP ranges using CIDR syntax." msgstr "" @@ -2750,6 +2810,14 @@ msgstr "Nutzer*innen verwalten" msgid "Moderation" msgstr "Listenkuratierung:" +#: bookwyrm/templates/settings/layout.html:55 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +#, fuzzy +#| msgid "Recent Imports" +msgid "Reports" +msgstr "Aktuelle Importe" + #: bookwyrm/templates/settings/layout.html:68 msgid "Instance Settings" msgstr "Instanzeinstellungen" @@ -2760,255 +2828,409 @@ msgstr "Instanzeinstellungen" msgid "Site Settings" msgstr "Seiteneinstellungen" -#: bookwyrm/templates/settings/layout.html:79 -#: bookwyrm/templates/settings/site.html:13 +#: bookwyrm/templates/settings/reports/report.html:5 +#: bookwyrm/templates/settings/reports/report.html:8 +#: bookwyrm/templates/settings/reports/report_preview.html:6 +#, python-format +msgid "Report #%(report_id)s: %(username)s" +msgstr "Meldung #%(report_id)s: %(username)s" + +#: bookwyrm/templates/settings/reports/report.html:9 +msgid "Back to reports" +msgstr "Zurück zu den Meldungen" + +#: bookwyrm/templates/settings/reports/report.html:23 +msgid "Moderator Comments" +msgstr "Moderator:innenkommentare" + +#: bookwyrm/templates/settings/reports/report.html:41 +#: bookwyrm/templates/snippets/create_status.html:28 +msgid "Comment" +msgstr "Kommentieren" + +#: bookwyrm/templates/settings/reports/report.html:46 +#, fuzzy +#| msgid "Delete status" +msgid "Reported statuses" +msgstr "Post löschen" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "No statuses reported" +msgstr "Keine Beiträge gemeldet" + +#: bookwyrm/templates/settings/reports/report.html:54 +#, fuzzy +#| msgid "Statuses has been deleted" +msgid "Status has been deleted" +msgstr "Beiträge wurden gelöscht" + +#: bookwyrm/templates/settings/reports/report_preview.html:13 +msgid "No notes provided" +msgstr "Keine Notizen angegeben." + +#: bookwyrm/templates/settings/reports/report_preview.html:20 +#, fuzzy, python-format +#| msgid "Direct Messages with %(username)s" +msgid "Reported by %(username)s" +msgstr "Direktnachrichten mit %(username)s" + +#: bookwyrm/templates/settings/reports/report_preview.html:30 +msgid "Re-open" +msgstr "Wiedereröffnen" + +#: bookwyrm/templates/settings/reports/report_preview.html:32 +msgid "Resolve" +msgstr "Lösen" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, fuzzy, python-format +#| msgid "Lists: %(username)s" +msgid "Reports: %(instance_name)s" +msgstr "Listen: %(username)s" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, fuzzy, python-format +#| msgid "Lists: %(username)s" +msgid "Reports: %(instance_name)s" +msgstr "Listen: %(username)s" + +#: bookwyrm/templates/settings/reports/reports.html:28 +#, fuzzy +#| msgid "Shelved" +msgid "Resolved" +msgstr "Ins Regal gestellt" + +#: bookwyrm/templates/settings/reports/reports.html:37 +#, fuzzy +#| msgid "No books found" +msgid "No reports found." +msgstr "Keine Bücher gefunden" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:21 msgid "Instance Info" msgstr "Instanzinformationen" -#: bookwyrm/templates/settings/layout.html:80 -#: bookwyrm/templates/settings/site.html:44 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:54 msgid "Images" msgstr "Bilder" -#: bookwyrm/templates/settings/layout.html:81 -#: bookwyrm/templates/settings/site.html:64 +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:74 msgid "Footer Content" msgstr "Inhalt des Footers" -#: bookwyrm/templates/settings/layout.html:82 -#: bookwyrm/templates/settings/site.html:86 +#: bookwyrm/templates/settings/site.html:13 +#: bookwyrm/templates/settings/site.html:98 msgid "Registration" msgstr "Registrierung" -#: bookwyrm/templates/settings/manage_invite_requests.html:4 -#: bookwyrm/templates/settings/manage_invite_requests.html:11 -#: bookwyrm/templates/settings/manage_invite_requests.html:25 -#: bookwyrm/templates/settings/manage_invites.html:11 -#, fuzzy -#| msgid "Invites" -msgid "Invite Requests" -msgstr "Einladungen" - -#: bookwyrm/templates/settings/manage_invite_requests.html:23 -msgid "Ignored Invite Requests" -msgstr "Ignorierte Einladungsanfragen" - -#: bookwyrm/templates/settings/manage_invite_requests.html:35 -#, fuzzy -#| msgid "Federated" -msgid "Date requested" -msgstr "Föderiert" - -#: bookwyrm/templates/settings/manage_invite_requests.html:39 -#, fuzzy -#| msgid "Accept" -msgid "Date accepted" -msgstr "Annehmen" - -#: bookwyrm/templates/settings/manage_invite_requests.html:42 -msgid "Email" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:47 -#, fuzzy -#| msgid "Notifications" -msgid "Action" -msgstr "Benachrichtigungen" - -#: bookwyrm/templates/settings/manage_invite_requests.html:50 -#, fuzzy -#| msgid "Follow Requests" -msgid "No requests" -msgstr "Folgeanfragen" - -#: bookwyrm/templates/settings/manage_invite_requests.html:59 -#: bookwyrm/templates/settings/status_filter.html:16 -#, fuzzy -#| msgid "Accept" -msgid "Accepted" -msgstr "Annehmen" - -#: bookwyrm/templates/settings/manage_invite_requests.html:61 -#: bookwyrm/templates/settings/status_filter.html:12 -msgid "Sent" -msgstr "Gesendet" - -#: bookwyrm/templates/settings/manage_invite_requests.html:63 -#: bookwyrm/templates/settings/status_filter.html:8 -msgid "Requested" -msgstr "Angefragt" - -#: bookwyrm/templates/settings/manage_invite_requests.html:73 -msgid "Send invite" -msgstr "Einladung senden" - -#: bookwyrm/templates/settings/manage_invite_requests.html:75 -msgid "Re-send invite" -msgstr "Einladung erneut senden" - -#: bookwyrm/templates/settings/manage_invite_requests.html:95 -msgid "Ignore" -msgstr "Ignorieren" - -#: bookwyrm/templates/settings/manage_invite_requests.html:97 -msgid "Un-ignore" -msgstr "Un-ignorieren" - -#: bookwyrm/templates/settings/manage_invite_requests.html:108 -#, fuzzy -#| msgid "Back to reports" -msgid "Back to pending requests" -msgstr "Zurück zu den Meldungen" - -#: bookwyrm/templates/settings/manage_invite_requests.html:110 -msgid "View ignored requests" -msgstr "Zeige ignorierte Anfragen" - -#: bookwyrm/templates/settings/manage_invites.html:21 -msgid "Generate New Invite" -msgstr "Neue Einladung erzeugen" - -#: bookwyrm/templates/settings/manage_invites.html:27 -msgid "Expiry:" -msgstr "Ablaufen:" - -#: bookwyrm/templates/settings/manage_invites.html:33 -msgid "Use limit:" -msgstr "Begrenzte Benutzung" - -#: bookwyrm/templates/settings/manage_invites.html:40 -msgid "Create Invite" -msgstr "Einladung erstellen" - -#: bookwyrm/templates/settings/manage_invites.html:47 -msgid "Link" -msgstr "" - -#: bookwyrm/templates/settings/manage_invites.html:48 -msgid "Expires" -msgstr "Läuft aus" - -#: bookwyrm/templates/settings/manage_invites.html:49 -msgid "Max uses" -msgstr "Maximale Benutzungen" - -#: bookwyrm/templates/settings/manage_invites.html:50 -msgid "Times used" -msgstr "Mal benutzt" - -#: bookwyrm/templates/settings/manage_invites.html:53 -msgid "No active invites" -msgstr "Keine aktiven Einladungen" - -#: bookwyrm/templates/settings/server_blocklist.html:6 -#, fuzzy -#| msgid "Import Books" -msgid "Import Blocklist" -msgstr "Bücher importieren" - -#: bookwyrm/templates/settings/server_blocklist.html:26 -#: bookwyrm/templates/snippets/goal_progress.html:7 -msgid "Success!" -msgstr "Erfolg!" - -#: bookwyrm/templates/settings/server_blocklist.html:30 -#, fuzzy -#| msgid "Successfully imported" -msgid "Successfully blocked:" -msgstr "Erfolgreich importiert" - -#: bookwyrm/templates/settings/server_blocklist.html:32 -msgid "Failed:" -msgstr "Fehlgeschlagen" - -#: bookwyrm/templates/settings/site.html:15 +#: bookwyrm/templates/settings/site.html:24 msgid "Instance Name:" msgstr "Instanzname" -#: bookwyrm/templates/settings/site.html:19 +#: bookwyrm/templates/settings/site.html:28 msgid "Tagline:" msgstr "" -#: bookwyrm/templates/settings/site.html:23 +#: bookwyrm/templates/settings/site.html:32 msgid "Instance description:" msgstr "Instanzbeschreibung" -#: bookwyrm/templates/settings/site.html:27 +#: bookwyrm/templates/settings/site.html:36 #, fuzzy #| msgid "Description:" msgid "Short description:" msgstr "Beschreibung:" -#: bookwyrm/templates/settings/site.html:28 +#: bookwyrm/templates/settings/site.html:37 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown." msgstr "" -#: bookwyrm/templates/settings/site.html:32 +#: bookwyrm/templates/settings/site.html:41 msgid "Code of conduct:" msgstr "" -#: bookwyrm/templates/settings/site.html:36 +#: bookwyrm/templates/settings/site.html:45 msgid "Privacy Policy:" msgstr "Datenschutzerklärung" -#: bookwyrm/templates/settings/site.html:47 +#: bookwyrm/templates/settings/site.html:57 msgid "Logo:" msgstr "" -#: bookwyrm/templates/settings/site.html:51 +#: bookwyrm/templates/settings/site.html:61 msgid "Logo small:" msgstr "Logo klein" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:65 msgid "Favicon:" msgstr "" -#: bookwyrm/templates/settings/site.html:66 +#: bookwyrm/templates/settings/site.html:77 msgid "Support link:" msgstr "Unterstützungslink" -#: bookwyrm/templates/settings/site.html:70 +#: bookwyrm/templates/settings/site.html:81 msgid "Support title:" msgstr "Unterstützungstitel" -#: bookwyrm/templates/settings/site.html:74 +#: bookwyrm/templates/settings/site.html:85 msgid "Admin email:" msgstr "" -#: bookwyrm/templates/settings/site.html:78 +#: bookwyrm/templates/settings/site.html:89 msgid "Additional info:" msgstr "Zusätzliche Info:" -#: bookwyrm/templates/settings/site.html:90 +#: bookwyrm/templates/settings/site.html:103 #, fuzzy #| msgid "Allow registration:" msgid "Allow registration" msgstr "Registrierungen erlauben" -#: bookwyrm/templates/settings/site.html:96 +#: bookwyrm/templates/settings/site.html:109 #, fuzzy #| msgid "Follow Requests" msgid "Allow invite requests" msgstr "Folgeanfragen" -#: bookwyrm/templates/settings/site.html:102 +#: bookwyrm/templates/settings/site.html:115 msgid "Require users to confirm email address" msgstr "User müssen ihre E-Mail-Adresse bestätigen" -#: bookwyrm/templates/settings/site.html:104 +#: bookwyrm/templates/settings/site.html:117 msgid "(Recommended if registration is open)" msgstr "(Vorschlagen falls die Registrierung offen ist)" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:120 msgid "Registration closed text:" msgstr "Registrierungen geschlossen text" -#: bookwyrm/templates/settings/site.html:111 +#: bookwyrm/templates/settings/site.html:124 #, fuzzy #| msgid "Invites" msgid "Invite request text:" msgstr "Einladungen" +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 +msgid "Permanently delete user" +msgstr "User permanent löschen" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "Bist du sicher, dass du %(username)ss Account löschen möchtest? Diese Aktion kann nicht rückgängig gemacht werden. Zur Bestätigung gib bitte dein Passwort ein." + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +#, fuzzy +#| msgid "Confirm password:" +msgid "Your password:" +msgstr "Passwort bestätigen:" + +#: bookwyrm/templates/settings/users/user.html:7 +#, fuzzy +#| msgid "Back to reports" +msgid "Back to users" +msgstr "Zurück zu den Meldungen" + +#: bookwyrm/templates/settings/users/user_admin.html:7 +#, fuzzy, python-format +#| msgid "Lists: %(username)s" +msgid "Users: %(instance_name)s" +msgstr "Listen: %(username)s" + +#: bookwyrm/templates/settings/users/user_admin.html:22 +#: bookwyrm/templates/settings/users/username_filter.html:5 +#, fuzzy +#| msgid "username" +msgid "Username" +msgstr "Username" + +#: bookwyrm/templates/settings/users/user_admin.html:26 +#, fuzzy +#| msgid "Added:" +msgid "Date Added" +msgstr "Hinzugefügt:" + +#: bookwyrm/templates/settings/users/user_admin.html:30 +msgid "Last Active" +msgstr "Zuletzt aktiv" + +#: bookwyrm/templates/settings/users/user_admin.html:38 +#, fuzzy +#| msgid "Instance Name:" +msgid "Remote instance" +msgstr "Instanzname" + +#: bookwyrm/templates/settings/users/user_admin.html:47 +#: bookwyrm/templates/settings/users/user_info.html:24 +#, fuzzy +#| msgid "Activity" +msgid "Active" +msgstr "Aktivität" + +#: bookwyrm/templates/settings/users/user_admin.html:47 +#: bookwyrm/templates/settings/users/user_info.html:28 +msgid "Inactive" +msgstr "Inaktiv" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +#: bookwyrm/templates/settings/users/user_info.html:120 +msgid "Not set" +msgstr "Nicht gesetzt" + +#: bookwyrm/templates/settings/users/user_info.html:16 +#, fuzzy +#| msgid "User Profile" +msgid "View user profile" +msgstr "Benutzerprofil" + +#: bookwyrm/templates/settings/users/user_info.html:36 +msgid "Local" +msgstr "Lokal" + +#: bookwyrm/templates/settings/users/user_info.html:38 +#, fuzzy +#| msgid "Remove" +msgid "Remote" +msgstr "Entfernen" + +#: bookwyrm/templates/settings/users/user_info.html:47 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +#, fuzzy +#| msgid "Email address:" +msgid "Email:" +msgstr "E-Mail Adresse" + +#: bookwyrm/templates/settings/users/user_info.html:61 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:67 +#, fuzzy +#| msgid "Blocked Users" +msgid "Blocked by count:" +msgstr "Blockierte Nutzer*innen" + +#: bookwyrm/templates/settings/users/user_info.html:70 +#, fuzzy +#| msgid "Birth date:" +msgid "Last active date:" +msgstr "Geburtsdatum:" + +#: bookwyrm/templates/settings/users/user_info.html:73 +#, fuzzy +#| msgid "Manually approve followers:" +msgid "Manually approved followers:" +msgstr "Folgende manuell bestätigen" + +#: bookwyrm/templates/settings/users/user_info.html:76 +#, fuzzy +#| msgid "Discard" +msgid "Discoverable:" +msgstr "Ablehnen" + +#: bookwyrm/templates/settings/users/user_info.html:80 +#, fuzzy +#| msgid "Deactivate user" +msgid "Deactivation reason:" +msgstr "Nutzer:in deaktivieren" + +#: bookwyrm/templates/settings/users/user_info.html:95 +#, fuzzy +#| msgid "Instance Settings" +msgid "Instance details" +msgstr "Instanzeinstellungen" + +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:5 +msgid "Permanently deleted" +msgstr "Permanent gelöscht" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:13 +msgid "Send direct message" +msgstr "Direktnachricht senden" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +msgid "Create Shelf" +msgstr "Regal erstellen" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "Regal bearbeiten" + +#: bookwyrm/templates/shelf/shelf.html:28 bookwyrm/views/shelf.py:56 +#, fuzzy +#| msgid "books" +msgid "All books" +msgstr "Bücher" + +#: bookwyrm/templates/shelf/shelf.html:55 +msgid "Create shelf" +msgstr "Regal erstellen" + +#: bookwyrm/templates/shelf/shelf.html:77 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:84 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "(zeige %(start)s-%(end)s)" + +#: bookwyrm/templates/shelf/shelf.html:96 +msgid "Edit shelf" +msgstr "Regal bearbeiten" + +#: bookwyrm/templates/shelf/shelf.html:104 +msgid "Delete shelf" +msgstr "Regal löschen" + +#: bookwyrm/templates/shelf/shelf.html:130 +#: bookwyrm/templates/shelf/shelf.html:154 +msgid "Shelved" +msgstr "Ins Regal gestellt" + +#: bookwyrm/templates/shelf/shelf.html:131 +#: bookwyrm/templates/shelf/shelf.html:158 +msgid "Started" +msgstr "Gestartet" + +#: bookwyrm/templates/shelf/shelf.html:132 +#: bookwyrm/templates/shelf/shelf.html:161 +msgid "Finished" +msgstr "Abgeschlossen" + +#: bookwyrm/templates/shelf/shelf.html:187 +msgid "This shelf is empty." +msgstr "Dieses Regal ist leer." + #: bookwyrm/templates/snippets/announcement.html:31 #, fuzzy, python-format #| msgid "Direct Messages with %(username)s" @@ -3061,24 +3283,21 @@ msgid "Some thoughts on the book" msgstr "Ein paar Gedanken zum Buch" #: bookwyrm/templates/snippets/create_status/comment.html:26 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:16 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:15 msgid "Progress:" msgstr "Fortschritt:" #: bookwyrm/templates/snippets/create_status/comment.html:52 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:31 -#: bookwyrm/templates/snippets/readthrough_form.html:22 +#: bookwyrm/templates/snippets/progress_field.html:18 msgid "pages" msgstr "Seiten" #: bookwyrm/templates/snippets/create_status/comment.html:58 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:32 -#: bookwyrm/templates/snippets/readthrough_form.html:23 +#: bookwyrm/templates/snippets/progress_field.html:23 msgid "percent" msgstr "Prozent" #: bookwyrm/templates/snippets/create_status/comment.html:65 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:37 #, python-format msgid "of %(pages)s pages" msgstr "von %(pages)s Seiten" @@ -3288,29 +3507,29 @@ msgstr[1] "" msgid "Review of \"%(book_title)s\": %(review_title)s" msgstr "Review von \"%(book_title)s\": %(review_title)s" -#: bookwyrm/templates/snippets/goal_card.html:23 +#: bookwyrm/templates/snippets/goal_form.html:3 #, python-format -msgid "You can set or change your reading goal any time from your profile page" -msgstr "Du kannst dein Leseziel jederzeit auf deiner Profilseite setzen oder ändern." +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "Setze dir ein Ziel, wie viele Bücher du %(year)s lesen wirst und behalte deinen Fortschritt über's Jahr im Auge." -#: bookwyrm/templates/snippets/goal_form.html:9 +#: bookwyrm/templates/snippets/goal_form.html:12 msgid "Reading goal:" msgstr "Leseziel:" -#: bookwyrm/templates/snippets/goal_form.html:14 +#: bookwyrm/templates/snippets/goal_form.html:17 msgid "books" msgstr "Bücher" -#: bookwyrm/templates/snippets/goal_form.html:19 +#: bookwyrm/templates/snippets/goal_form.html:22 msgid "Goal privacy:" msgstr "Sichtbarkeit des Ziels" -#: bookwyrm/templates/snippets/goal_form.html:26 +#: bookwyrm/templates/snippets/goal_form.html:29 #: bookwyrm/templates/snippets/reading_modals/layout.html:13 msgid "Post to feed" msgstr "Posten" -#: bookwyrm/templates/snippets/goal_form.html:30 +#: bookwyrm/templates/snippets/goal_form.html:33 msgid "Set goal" msgstr "Ziel setzen" @@ -3388,18 +3607,18 @@ msgstr "" msgid "Finish \"%(book_title)s\"" msgstr "\"%(book_title)s\" abschließen" -#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:22 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:23 #: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:20 #: bookwyrm/templates/snippets/readthrough_form.html:7 msgid "Started reading" msgstr "Zu lesen angefangen" -#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:30 -#: bookwyrm/templates/snippets/readthrough_form.html:30 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:31 +#: bookwyrm/templates/snippets/readthrough_form.html:20 msgid "Finished reading" msgstr "Zu Ende gelesen" -#: bookwyrm/templates/snippets/reading_modals/form.html:8 +#: bookwyrm/templates/snippets/reading_modals/form.html:9 msgid "(Optional)" msgstr "" @@ -3434,6 +3653,23 @@ msgstr "Registrieren" msgid "Report" msgstr "Importieren" +#: bookwyrm/templates/snippets/report_modal.html:6 +#, fuzzy, python-format +#| msgid "Lists: %(username)s" +msgid "Report @%(username)s" +msgstr "Listen: %(username)s" + +#: bookwyrm/templates/snippets/report_modal.html:23 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "Diese Meldung wird an die Moderator:innen von %(site_name)s weitergeletiet." + +#: bookwyrm/templates/snippets/report_modal.html:24 +#, fuzzy +#| msgid "More about this site" +msgid "More info about this report:" +msgstr "Mehr über diese Seite" + #: bookwyrm/templates/snippets/search_result_text.html:36 msgid "Import book" msgstr "Buch importieren" @@ -3580,12 +3816,6 @@ msgstr "Mehr Optionen" msgid "Delete & re-draft" msgstr "Diese Lesedaten löschen" -#: bookwyrm/templates/snippets/status/status_options.html:35 -#: bookwyrm/templates/snippets/user_options.html:13 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:13 -msgid "Send direct message" -msgstr "Direktnachricht senden" - #: bookwyrm/templates/snippets/suggested_users.html:16 #, python-format msgid "%(mutuals)s follower you follow" @@ -3631,6 +3861,36 @@ msgstr "Mehr anzeigen" msgid "Show less" msgstr "Weniger anzeigen" +#: bookwyrm/templates/user/books_header.html:5 +#, fuzzy, python-format +#| msgid "%(username)s's %(year)s Books" +msgid "%(username)s's books" +msgstr "%(username)ss %(year)s Bücher" + +#: bookwyrm/templates/user/goal.html:8 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "%(year)s Lesefortschritt" + +#: bookwyrm/templates/user/goal.html:12 +msgid "Edit Goal" +msgstr "Ziel bearbeiten" + +#: bookwyrm/templates/user/goal.html:28 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "%(name)s hat sich für %(year)s kein Leseziel gesetzt." + +#: bookwyrm/templates/user/goal.html:40 +#, python-format +msgid "Your %(year)s Books" +msgstr "Deine Bücher %(year)s" + +#: bookwyrm/templates/user/goal.html:42 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "%(username)ss %(year)s Bücher" + #: bookwyrm/templates/user/layout.html:18 bookwyrm/templates/user/user.html:10 msgid "User Profile" msgstr "Benutzerprofil" @@ -3667,74 +3927,6 @@ msgstr "Folgend" msgid "%(username)s isn't following any users" msgstr "%(username)s folgt niemandem" -#: bookwyrm/templates/user/shelf/books_header.html:5 -#, fuzzy, python-format -#| msgid "%(username)s's %(year)s Books" -msgid "%(username)s's books" -msgstr "%(username)ss %(year)s Bücher" - -#: bookwyrm/templates/user/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/user/shelf/create_shelf_form.html:22 -msgid "Create Shelf" -msgstr "Regal erstellen" - -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:5 -msgid "Edit Shelf" -msgstr "Regal bearbeiten" - -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:26 -msgid "Update shelf" -msgstr "Regal aktualisieren" - -#: bookwyrm/templates/user/shelf/shelf.html:28 bookwyrm/views/shelf.py:56 -#, fuzzy -#| msgid "books" -msgid "All books" -msgstr "Bücher" - -#: bookwyrm/templates/user/shelf/shelf.html:55 -msgid "Create shelf" -msgstr "Regal erstellen" - -#: bookwyrm/templates/user/shelf/shelf.html:76 -#, python-format -msgid "%(formatted_count)s book" -msgid_plural "%(formatted_count)s books" -msgstr[0] "" -msgstr[1] "" - -#: bookwyrm/templates/user/shelf/shelf.html:83 -#, python-format -msgid "(showing %(start)s-%(end)s)" -msgstr "(zeige %(start)s-%(end)s)" - -#: bookwyrm/templates/user/shelf/shelf.html:94 -msgid "Edit shelf" -msgstr "Regal bearbeiten" - -#: bookwyrm/templates/user/shelf/shelf.html:113 -#: bookwyrm/templates/user/shelf/shelf.html:137 -msgid "Shelved" -msgstr "Ins Regal gestellt" - -#: bookwyrm/templates/user/shelf/shelf.html:114 -#: bookwyrm/templates/user/shelf/shelf.html:141 -msgid "Started" -msgstr "Gestartet" - -#: bookwyrm/templates/user/shelf/shelf.html:115 -#: bookwyrm/templates/user/shelf/shelf.html:144 -msgid "Finished" -msgstr "Abgeschlossen" - -#: bookwyrm/templates/user/shelf/shelf.html:170 -msgid "This shelf is empty." -msgstr "Dieses Regal ist leer." - -#: bookwyrm/templates/user/shelf/shelf.html:176 -msgid "Delete shelf" -msgstr "Regal löschen" - #: bookwyrm/templates/user/user.html:16 msgid "Edit profile" msgstr "Profil bearbeiten" @@ -3792,160 +3984,6 @@ msgstr[1] "folgt dir" msgid "No followers you follow" msgstr "folgt dir" -#: bookwyrm/templates/user_admin/delete_user_form.html:5 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:31 -msgid "Permanently delete user" -msgstr "User permanent löschen" - -#: bookwyrm/templates/user_admin/delete_user_form.html:12 -#, python-format -msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." -msgstr "Bist du sicher, dass du %(username)ss Account löschen möchtest? Diese Aktion kann nicht rückgängig gemacht werden. Zur Bestätigung gib bitte dein Passwort ein." - -#: bookwyrm/templates/user_admin/delete_user_form.html:17 -#, fuzzy -#| msgid "Confirm password:" -msgid "Your password:" -msgstr "Passwort bestätigen:" - -#: bookwyrm/templates/user_admin/user.html:8 -#, fuzzy -#| msgid "Back to reports" -msgid "Back to users" -msgstr "Zurück zu den Meldungen" - -#: bookwyrm/templates/user_admin/user_admin.html:7 -#, fuzzy, python-format -#| msgid "Lists: %(username)s" -msgid "Users: %(instance_name)s" -msgstr "Listen: %(username)s" - -#: bookwyrm/templates/user_admin/user_admin.html:22 -#: bookwyrm/templates/user_admin/username_filter.html:5 -#, fuzzy -#| msgid "username" -msgid "Username" -msgstr "Username" - -#: bookwyrm/templates/user_admin/user_admin.html:26 -#, fuzzy -#| msgid "Added:" -msgid "Date Added" -msgstr "Hinzugefügt:" - -#: bookwyrm/templates/user_admin/user_admin.html:30 -msgid "Last Active" -msgstr "Zuletzt aktiv" - -#: bookwyrm/templates/user_admin/user_admin.html:38 -#, fuzzy -#| msgid "Instance Name:" -msgid "Remote instance" -msgstr "Instanzname" - -#: bookwyrm/templates/user_admin/user_admin.html:47 -#: bookwyrm/templates/user_admin/user_info.html:24 -#, fuzzy -#| msgid "Activity" -msgid "Active" -msgstr "Aktivität" - -#: bookwyrm/templates/user_admin/user_admin.html:47 -#: bookwyrm/templates/user_admin/user_info.html:28 -msgid "Inactive" -msgstr "Inaktiv" - -#: bookwyrm/templates/user_admin/user_admin.html:52 -#: bookwyrm/templates/user_admin/user_info.html:140 -msgid "Not set" -msgstr "Nicht gesetzt" - -#: bookwyrm/templates/user_admin/user_info.html:16 -#, fuzzy -#| msgid "User Profile" -msgid "View user profile" -msgstr "Benutzerprofil" - -#: bookwyrm/templates/user_admin/user_info.html:36 -msgid "Local" -msgstr "Lokal" - -#: bookwyrm/templates/user_admin/user_info.html:38 -#, fuzzy -#| msgid "Remove" -msgid "Remote" -msgstr "Entfernen" - -#: bookwyrm/templates/user_admin/user_info.html:47 -msgid "User details" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:52 -#, fuzzy -#| msgid "Email address:" -msgid "Email:" -msgstr "E-Mail Adresse" - -#: bookwyrm/templates/user_admin/user_info.html:64 -msgid "(View reports)" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:72 -#, fuzzy -#| msgid "Blocked Users" -msgid "Blocked by count:" -msgstr "Blockierte Nutzer*innen" - -#: bookwyrm/templates/user_admin/user_info.html:77 -#, fuzzy -#| msgid "Birth date:" -msgid "Last active date:" -msgstr "Geburtsdatum:" - -#: bookwyrm/templates/user_admin/user_info.html:82 -#, fuzzy -#| msgid "Manually approve followers:" -msgid "Manually approved followers:" -msgstr "Folgende manuell bestätigen" - -#: bookwyrm/templates/user_admin/user_info.html:87 -#, fuzzy -#| msgid "Discard" -msgid "Discoverable:" -msgstr "Ablehnen" - -#: bookwyrm/templates/user_admin/user_info.html:93 -#, fuzzy -#| msgid "Deactivate user" -msgid "Deactivation reason:" -msgstr "Nutzer:in deaktivieren" - -#: bookwyrm/templates/user_admin/user_info.html:111 -#, fuzzy -#| msgid "Instance Settings" -msgid "Instance details" -msgstr "Instanzeinstellungen" - -#: bookwyrm/templates/user_admin/user_info.html:137 -msgid "View instance" -msgstr "" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:5 -msgid "Permanently deleted" -msgstr "Permanent gelöscht" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:20 -msgid "Suspend user" -msgstr "" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:25 -msgid "Un-suspend user" -msgstr "" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:47 -msgid "Access level:" -msgstr "" - #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 msgid "File exceeds maximum size: 10MB" msgstr "" @@ -3982,6 +4020,9 @@ msgstr "Ein Passwortwiederherstellungslinl wurde zu %s gesendet" msgid "Status updates from {obj.display_name}" msgstr "Status updates von {obj.display_name}" +#~ msgid "Update shelf" +#~ msgstr "Regal aktualisieren" + #~ msgid "%(count)d uses" #~ msgstr "%(count)d Benutzungen" diff --git a/locale/en_US/LC_MESSAGES/django.po b/locale/en_US/LC_MESSAGES/django.po index 7b6fcda5a..5a9a88b0d 100644 --- a/locale/en_US/LC_MESSAGES/django.po +++ b/locale/en_US/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-28 18:31+0000\n" +"POT-Creation-Date: 2021-09-29 18:32+0000\n" "PO-Revision-Date: 2021-02-28 17:19-0800\n" "Last-Translator: Mouse Reeve \n" "Language-Team: English \n" @@ -55,10 +55,9 @@ msgstr "" msgid "Book Title" msgstr "" -#: bookwyrm/forms.py:327 +#: bookwyrm/forms.py:327 bookwyrm/templates/shelf/shelf.html:134 +#: bookwyrm/templates/shelf/shelf.html:165 #: bookwyrm/templates/snippets/create_status/review.html:33 -#: bookwyrm/templates/user/shelf/shelf.html:117 -#: bookwyrm/templates/user/shelf/shelf.html:148 msgid "Rating" msgstr "" @@ -102,16 +101,36 @@ msgstr "" msgid "Domain block" msgstr "" +#: bookwyrm/models/book.py:232 +msgid "Audiobook" +msgstr "" + +#: bookwyrm/models/book.py:233 +msgid "eBook" +msgstr "" + +#: bookwyrm/models/book.py:234 +msgid "Graphic novel" +msgstr "" + +#: bookwyrm/models/book.py:235 +msgid "Hardcover" +msgstr "" + +#: bookwyrm/models/book.py:236 +msgid "Paperback" +msgstr "" + #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/edit_server.html:40 -#: bookwyrm/templates/settings/federation.html:19 +#: bookwyrm/templates/settings/federation/edit_instance.html:42 +#: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "" #: bookwyrm/models/federated_server.py:12 -#: bookwyrm/templates/settings/edit_server.html:41 -#: bookwyrm/templates/settings/federated_server.html:10 -#: bookwyrm/templates/settings/federation.html:23 +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:23 msgid "Blocked" msgstr "" @@ -265,9 +284,7 @@ msgid "Metadata" msgstr "" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/lists/form.html:8 -#: bookwyrm/templates/user/shelf/create_shelf_form.html:13 -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:14 +#: bookwyrm/templates/lists/form.html:8 bookwyrm/templates/shelf/form.html:9 msgid "Name:" msgstr "" @@ -303,7 +320,7 @@ msgid "Openlibrary key:" msgstr "" #: bookwyrm/templates/author/edit_author.html:89 -#: bookwyrm/templates/book/edit_book.html:300 +#: bookwyrm/templates/book/edit_book.html:313 msgid "Inventaire ID:" msgstr "" @@ -317,32 +334,30 @@ msgstr "" #: bookwyrm/templates/author/edit_author.html:116 #: bookwyrm/templates/book/book.html:140 -#: bookwyrm/templates/book/edit_book.html:328 +#: bookwyrm/templates/book/edit_book.html:341 #: bookwyrm/templates/book/readthrough.html:76 #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/form.html:44 #: bookwyrm/templates/preferences/edit_user.html:118 -#: bookwyrm/templates/settings/announcement_form.html:69 -#: bookwyrm/templates/settings/edit_server.html:68 -#: bookwyrm/templates/settings/federated_server.html:98 -#: bookwyrm/templates/settings/site.html:120 -#: bookwyrm/templates/snippets/reading_modals/layout.html:16 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:43 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:64 +#: bookwyrm/templates/settings/announcements/announcement_form.html:69 +#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/instance.html:87 +#: bookwyrm/templates/settings/site.html:134 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:64 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 msgid "Save" msgstr "" #: bookwyrm/templates/author/edit_author.html:117 #: bookwyrm/templates/book/book.html:141 bookwyrm/templates/book/book.html:190 #: bookwyrm/templates/book/cover_modal.html:32 -#: bookwyrm/templates/book/edit_book.html:329 +#: bookwyrm/templates/book/edit_book.html:342 #: bookwyrm/templates/book/readthrough.html:77 #: bookwyrm/templates/lists/delete_list_modal.html:17 -#: bookwyrm/templates/moderation/report_modal.html:34 -#: bookwyrm/templates/settings/federated_server.html:99 +#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/snippets/delete_readthrough_modal.html:17 -#: bookwyrm/templates/snippets/goal_form.html:32 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:44 +#: bookwyrm/templates/snippets/report_modal.html:34 msgid "Cancel" msgstr "" @@ -379,7 +394,7 @@ msgstr "" #: bookwyrm/templates/book/book.html:136 #: bookwyrm/templates/book/edit_book.html:143 -#: bookwyrm/templates/lists/form.html:12 +#: bookwyrm/templates/lists/form.html:12 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "" @@ -453,8 +468,8 @@ msgstr "" #: bookwyrm/templates/book/book.html:313 #: bookwyrm/templates/book/cover_modal.html:31 #: bookwyrm/templates/lists/list.html:181 -#: bookwyrm/templates/settings/domain_form.html:26 -#: bookwyrm/templates/settings/ip_address_form.html:32 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:26 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 msgid "Add" msgstr "" @@ -463,12 +478,12 @@ msgid "ISBN:" msgstr "" #: bookwyrm/templates/book/book_identifiers.html:14 -#: bookwyrm/templates/book/edit_book.html:308 +#: bookwyrm/templates/book/edit_book.html:321 msgid "OCLC Number:" msgstr "" #: bookwyrm/templates/book/book_identifiers.html:21 -#: bookwyrm/templates/book/edit_book.html:316 +#: bookwyrm/templates/book/edit_book.html:329 msgid "ASIN:" msgstr "" @@ -478,7 +493,7 @@ msgid "Upload cover:" msgstr "" #: bookwyrm/templates/book/cover_modal.html:23 -#: bookwyrm/templates/book/edit_book.html:242 +#: bookwyrm/templates/book/edit_book.html:241 msgid "Load cover from url:" msgstr "" @@ -590,11 +605,11 @@ msgid "John Doe, Jane Smith" msgstr "" #: bookwyrm/templates/book/edit_book.html:227 -#: bookwyrm/templates/user/shelf/shelf.html:110 +#: bookwyrm/templates/shelf/shelf.html:127 msgid "Cover" msgstr "" -#: bookwyrm/templates/book/edit_book.html:255 +#: bookwyrm/templates/book/edit_book.html:253 msgid "Physical Properties" msgstr "" @@ -603,23 +618,27 @@ msgstr "" msgid "Format:" msgstr "" -#: bookwyrm/templates/book/edit_book.html:265 +#: bookwyrm/templates/book/edit_book.html:268 +msgid "Format details:" +msgstr "" + +#: bookwyrm/templates/book/edit_book.html:278 msgid "Pages:" msgstr "" -#: bookwyrm/templates/book/edit_book.html:274 +#: bookwyrm/templates/book/edit_book.html:287 msgid "Book Identifiers" msgstr "" -#: bookwyrm/templates/book/edit_book.html:276 +#: bookwyrm/templates/book/edit_book.html:289 msgid "ISBN 13:" msgstr "" -#: bookwyrm/templates/book/edit_book.html:284 +#: bookwyrm/templates/book/edit_book.html:297 msgid "ISBN 10:" msgstr "" -#: bookwyrm/templates/book/edit_book.html:292 +#: bookwyrm/templates/book/edit_book.html:305 msgid "Openlibrary ID:" msgstr "" @@ -750,14 +769,14 @@ msgid "Sorry! We couldn't find that code." msgstr "" #: bookwyrm/templates/confirm_email/confirm_email.html:19 -#: bookwyrm/templates/user_admin/user_info.html:100 +#: bookwyrm/templates/settings/users/user_info.html:85 msgid "Confirmation code:" msgstr "" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:73 -#: bookwyrm/templates/moderation/report_modal.html:33 -#: bookwyrm/templates/settings/dashboard.html:93 +#: bookwyrm/templates/settings/dashboard/dashboard.html:93 +#: bookwyrm/templates/snippets/report_modal.html:33 msgid "Submit" msgstr "" @@ -809,8 +828,8 @@ msgid "You can opt-out at any time in your profile settings msgstr "" #: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/feed/goal_card.html:17 #: bookwyrm/templates/snippets/announcement.html:34 -#: bookwyrm/templates/snippets/goal_card.html:22 msgid "Dismiss message" msgstr "" @@ -819,11 +838,11 @@ msgid "Order by" msgstr "" #: bookwyrm/templates/directory/sort_filter.html:8 -msgid "Suggested" +msgid "Recently active" msgstr "" #: bookwyrm/templates/directory/sort_filter.html:9 -msgid "Recently active" +msgid "Suggested" msgstr "" #: bookwyrm/templates/directory/user_card.html:17 @@ -1014,12 +1033,24 @@ msgstr "" msgid "There aren't any activities right now! Try following a user to get started" msgstr "" +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:90 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "" + #: bookwyrm/templates/feed/layout.html:5 msgid "Updates" msgstr "" #: bookwyrm/templates/feed/layout.html:12 -#: bookwyrm/templates/user/shelf/books_header.html:3 +#: bookwyrm/templates/user/books_header.html:3 msgid "Your books" msgstr "" @@ -1028,28 +1059,22 @@ msgid "There are no books here right now! Try searching for a book to get starte msgstr "" #: bookwyrm/templates/feed/layout.html:25 -#: bookwyrm/templates/user/shelf/shelf.html:38 +#: bookwyrm/templates/shelf/shelf.html:38 msgid "To Read" msgstr "" #: bookwyrm/templates/feed/layout.html:26 -#: bookwyrm/templates/user/shelf/shelf.html:40 +#: bookwyrm/templates/shelf/shelf.html:40 msgid "Currently Reading" msgstr "" #: bookwyrm/templates/feed/layout.html:27 +#: bookwyrm/templates/shelf/shelf.html:42 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:23 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/user/shelf/shelf.html:42 msgid "Read" msgstr "" -#: bookwyrm/templates/feed/layout.html:90 bookwyrm/templates/goal.html:26 -#: bookwyrm/templates/snippets/goal_card.html:6 -#, python-format -msgid "%(year)s Reading Goal" -msgstr "" - #: bookwyrm/templates/feed/suggested_users.html:5 #: bookwyrm/templates/get_started/users.html:6 msgid "Who to follow" @@ -1194,39 +1219,9 @@ msgstr "" msgid "No users found for \"%(query)s\"" msgstr "" -#: bookwyrm/templates/goal.html:7 -#, python-format -msgid "%(year)s Reading Progress" -msgstr "" - -#: bookwyrm/templates/goal.html:11 -msgid "Edit Goal" -msgstr "" - -#: bookwyrm/templates/goal.html:30 -#: bookwyrm/templates/snippets/goal_card.html:13 -#, python-format -msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." -msgstr "" - -#: bookwyrm/templates/goal.html:39 -#, python-format -msgid "%(name)s hasn't set a reading goal for %(year)s." -msgstr "" - -#: bookwyrm/templates/goal.html:51 -#, python-format -msgid "Your %(year)s Books" -msgstr "" - -#: bookwyrm/templates/goal.html:53 -#, python-format -msgid "%(username)s's %(year)s Books" -msgstr "" - #: bookwyrm/templates/import/import.html:5 #: bookwyrm/templates/import/import.html:9 -#: bookwyrm/templates/user/shelf/shelf.html:57 +#: bookwyrm/templates/shelf/shelf.html:57 msgid "Import Books" msgstr "" @@ -1247,7 +1242,7 @@ msgid "Privacy setting for imported reviews:" msgstr "" #: bookwyrm/templates/import/import.html:56 -#: bookwyrm/templates/settings/server_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 msgid "Import" msgstr "" @@ -1323,14 +1318,14 @@ msgid "Book" msgstr "" #: bookwyrm/templates/import/import_status.html:122 -#: bookwyrm/templates/user/shelf/shelf.html:111 -#: bookwyrm/templates/user/shelf/shelf.html:131 +#: bookwyrm/templates/shelf/shelf.html:128 +#: bookwyrm/templates/shelf/shelf.html:148 msgid "Title" msgstr "" #: bookwyrm/templates/import/import_status.html:125 -#: bookwyrm/templates/user/shelf/shelf.html:112 -#: bookwyrm/templates/user/shelf/shelf.html:134 +#: bookwyrm/templates/shelf/shelf.html:129 +#: bookwyrm/templates/shelf/shelf.html:151 msgid "Author" msgstr "" @@ -1434,10 +1429,10 @@ msgid "Settings" msgstr "" #: bookwyrm/templates/layout.html:125 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 #: bookwyrm/templates/settings/layout.html:40 -#: bookwyrm/templates/settings/manage_invite_requests.html:15 -#: bookwyrm/templates/settings/manage_invites.html:3 -#: bookwyrm/templates/settings/manage_invites.html:15 msgid "Invites" msgstr "" @@ -1559,9 +1554,9 @@ msgid "This action cannot be un-done" msgstr "" #: bookwyrm/templates/lists/delete_list_modal.html:15 -#: bookwyrm/templates/settings/announcement.html:20 -#: bookwyrm/templates/settings/email_blocklist.html:49 -#: bookwyrm/templates/settings/ip_blocklist.html:36 +#: bookwyrm/templates/settings/announcements/announcement.html:20 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 #: bookwyrm/templates/snippets/delete_readthrough_modal.html:15 #: bookwyrm/templates/snippets/follow_request_buttons.html:12 msgid "Delete" @@ -1592,9 +1587,8 @@ msgstr "" msgid "Anyone can suggest books, subject to your approval" msgstr "" -#: bookwyrm/templates/lists/form.html:31 -#: bookwyrm/templates/moderation/reports.html:25 -#: bookwyrm/templates/search/book.html:30 +#: bookwyrm/templates/lists/form.html:31 bookwyrm/templates/search/book.html:30 +#: bookwyrm/templates/settings/reports/reports.html:25 #: bookwyrm/templates/snippets/announcement.html:16 msgid "Open" msgstr "" @@ -1704,93 +1698,6 @@ msgstr "" msgid "More about this site" msgstr "" -#: bookwyrm/templates/moderation/report.html:5 -#: bookwyrm/templates/moderation/report.html:6 -#: bookwyrm/templates/moderation/report_preview.html:6 -#, python-format -msgid "Report #%(report_id)s: %(username)s" -msgstr "" - -#: bookwyrm/templates/moderation/report.html:10 -msgid "Back to reports" -msgstr "" - -#: bookwyrm/templates/moderation/report.html:22 -msgid "Moderator Comments" -msgstr "" - -#: bookwyrm/templates/moderation/report.html:40 -#: bookwyrm/templates/snippets/create_status.html:28 -msgid "Comment" -msgstr "" - -#: bookwyrm/templates/moderation/report.html:45 -msgid "Reported statuses" -msgstr "" - -#: bookwyrm/templates/moderation/report.html:47 -msgid "No statuses reported" -msgstr "" - -#: bookwyrm/templates/moderation/report.html:53 -msgid "Status has been deleted" -msgstr "" - -#: bookwyrm/templates/moderation/report_modal.html:6 -#, python-format -msgid "Report @%(username)s" -msgstr "" - -#: bookwyrm/templates/moderation/report_modal.html:23 -#, python-format -msgid "This report will be sent to %(site_name)s's moderators for review." -msgstr "" - -#: bookwyrm/templates/moderation/report_modal.html:24 -msgid "More info about this report:" -msgstr "" - -#: bookwyrm/templates/moderation/report_preview.html:13 -msgid "No notes provided" -msgstr "" - -#: bookwyrm/templates/moderation/report_preview.html:20 -#, python-format -msgid "Reported by %(username)s" -msgstr "" - -#: bookwyrm/templates/moderation/report_preview.html:30 -msgid "Re-open" -msgstr "" - -#: bookwyrm/templates/moderation/report_preview.html:32 -msgid "Resolve" -msgstr "" - -#: bookwyrm/templates/moderation/reports.html:6 -#, python-format -msgid "Reports: %(instance_name)s" -msgstr "" - -#: bookwyrm/templates/moderation/reports.html:8 -#: bookwyrm/templates/moderation/reports.html:17 -#: bookwyrm/templates/settings/layout.html:55 -msgid "Reports" -msgstr "" - -#: bookwyrm/templates/moderation/reports.html:14 -#, python-format -msgid "Reports: %(instance_name)s" -msgstr "" - -#: bookwyrm/templates/moderation/reports.html:28 -msgid "Resolved" -msgstr "" - -#: bookwyrm/templates/moderation/reports.html:37 -msgid "No reports found." -msgstr "" - #: bookwyrm/templates/notifications.html:16 msgid "Delete notifications" msgstr "" @@ -1954,7 +1861,7 @@ msgstr "" #: bookwyrm/templates/preferences/delete_user.html:7 #: bookwyrm/templates/preferences/delete_user.html:26 #: bookwyrm/templates/preferences/layout.html:24 -#: bookwyrm/templates/user_admin/delete_user_form.html:23 +#: bookwyrm/templates/settings/users/delete_user_form.html:23 msgid "Delete Account" msgstr "" @@ -1974,7 +1881,7 @@ msgstr "" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 -#: bookwyrm/templates/user_admin/user_info.html:7 +#: bookwyrm/templates/settings/users/user_info.html:7 msgid "Profile" msgstr "" @@ -2054,11 +1961,11 @@ msgstr "" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 -#: bookwyrm/templates/settings/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation.html:44 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:44 #: bookwyrm/templates/settings/layout.html:34 -#: bookwyrm/templates/user_admin/user_admin.html:3 -#: bookwyrm/templates/user_admin/user_admin.html:10 +#: bookwyrm/templates/settings/users/user_admin.html:3 +#: bookwyrm/templates/settings/users/user_admin.html:10 msgid "Users" msgstr "" @@ -2067,371 +1974,510 @@ msgstr "" msgid "No results found for \"%(query)s\"" msgstr "" -#: bookwyrm/templates/settings/announcement.html:3 -#: bookwyrm/templates/settings/announcement.html:6 +#: bookwyrm/templates/settings/announcements/announcement.html:3 +#: bookwyrm/templates/settings/announcements/announcement.html:6 msgid "Announcement" msgstr "" -#: bookwyrm/templates/settings/announcement.html:7 -#: bookwyrm/templates/settings/federated_server.html:13 +#: bookwyrm/templates/settings/announcements/announcement.html:7 +#: bookwyrm/templates/settings/federation/instance.html:13 msgid "Back to list" msgstr "" -#: bookwyrm/templates/settings/announcement.html:11 -#: bookwyrm/templates/settings/announcement_form.html:6 +#: bookwyrm/templates/settings/announcements/announcement.html:11 +#: bookwyrm/templates/settings/announcements/announcement_form.html:6 msgid "Edit Announcement" msgstr "" -#: bookwyrm/templates/settings/announcement.html:35 +#: bookwyrm/templates/settings/announcements/announcement.html:35 msgid "Visible:" msgstr "" -#: bookwyrm/templates/settings/announcement.html:38 +#: bookwyrm/templates/settings/announcements/announcement.html:38 msgid "True" msgstr "" -#: bookwyrm/templates/settings/announcement.html:40 +#: bookwyrm/templates/settings/announcements/announcement.html:40 msgid "False" msgstr "" -#: bookwyrm/templates/settings/announcement.html:47 -#: bookwyrm/templates/settings/announcement_form.html:40 -#: bookwyrm/templates/settings/dashboard.html:71 +#: bookwyrm/templates/settings/announcements/announcement.html:47 +#: bookwyrm/templates/settings/announcements/announcement_form.html:40 +#: bookwyrm/templates/settings/dashboard/dashboard.html:71 msgid "Start date:" msgstr "" -#: bookwyrm/templates/settings/announcement.html:54 -#: bookwyrm/templates/settings/announcement_form.html:49 -#: bookwyrm/templates/settings/dashboard.html:77 +#: bookwyrm/templates/settings/announcements/announcement.html:54 +#: bookwyrm/templates/settings/announcements/announcement_form.html:49 +#: bookwyrm/templates/settings/dashboard/dashboard.html:77 msgid "End date:" msgstr "" -#: bookwyrm/templates/settings/announcement.html:60 -#: bookwyrm/templates/settings/announcement_form.html:58 +#: bookwyrm/templates/settings/announcements/announcement.html:60 +#: bookwyrm/templates/settings/announcements/announcement_form.html:58 msgid "Active:" msgstr "" -#: bookwyrm/templates/settings/announcement_form.html:8 -#: bookwyrm/templates/settings/announcements.html:8 +#: bookwyrm/templates/settings/announcements/announcement_form.html:8 +#: bookwyrm/templates/settings/announcements/announcements.html:8 msgid "Create Announcement" msgstr "" -#: bookwyrm/templates/settings/announcement_form.html:16 +#: bookwyrm/templates/settings/announcements/announcement_form.html:16 msgid "Preview:" msgstr "" -#: bookwyrm/templates/settings/announcement_form.html:23 +#: bookwyrm/templates/settings/announcements/announcement_form.html:23 msgid "Content:" msgstr "" -#: bookwyrm/templates/settings/announcement_form.html:30 +#: bookwyrm/templates/settings/announcements/announcement_form.html:30 msgid "Event date:" msgstr "" -#: bookwyrm/templates/settings/announcements.html:3 -#: bookwyrm/templates/settings/announcements.html:5 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/layout.html:72 msgid "Announcements" msgstr "" -#: bookwyrm/templates/settings/announcements.html:22 -#: bookwyrm/templates/settings/federation.html:36 +#: bookwyrm/templates/settings/announcements/announcements.html:22 +#: bookwyrm/templates/settings/federation/instance_list.html:36 msgid "Date added" msgstr "" -#: bookwyrm/templates/settings/announcements.html:26 +#: bookwyrm/templates/settings/announcements/announcements.html:26 msgid "Preview" msgstr "" -#: bookwyrm/templates/settings/announcements.html:30 +#: bookwyrm/templates/settings/announcements/announcements.html:30 msgid "Start date" msgstr "" -#: bookwyrm/templates/settings/announcements.html:34 +#: bookwyrm/templates/settings/announcements/announcements.html:34 msgid "End date" msgstr "" -#: bookwyrm/templates/settings/announcements.html:38 -#: bookwyrm/templates/settings/federation.html:46 -#: bookwyrm/templates/settings/manage_invite_requests.html:44 -#: bookwyrm/templates/settings/status_filter.html:5 -#: bookwyrm/templates/user_admin/user_admin.html:34 -#: bookwyrm/templates/user_admin/user_info.html:20 +#: 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/settings/announcements.html:48 +#: bookwyrm/templates/settings/announcements/announcements.html:48 msgid "active" msgstr "" -#: bookwyrm/templates/settings/announcements.html:48 +#: bookwyrm/templates/settings/announcements/announcements.html:48 msgid "inactive" msgstr "" -#: bookwyrm/templates/settings/announcements.html:54 -msgid "No announcements found." +#: bookwyrm/templates/settings/announcements/announcements.html:52 +msgid "No announcements found" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:6 -#: bookwyrm/templates/settings/dashboard.html:8 +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:26 msgid "Dashboard" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 msgid "Total users" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:21 -#: bookwyrm/templates/settings/dashboard_user_chart.html:12 +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/dashboard_user_chart.html:12 msgid "Active this month" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 msgid "Statuses" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 msgid "Works" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:43 +#: bookwyrm/templates/settings/dashboard/dashboard.html:43 #, python-format msgid "%(display_count)s open report" msgid_plural "%(display_count)s open reports" msgstr[0] "" msgstr[1] "" -#: bookwyrm/templates/settings/dashboard.html:54 +#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #, python-format msgid "%(display_count)s invite request" msgid_plural "%(display_count)s invite requests" msgstr[0] "" msgstr[1] "" -#: bookwyrm/templates/settings/dashboard.html:65 +#: bookwyrm/templates/settings/dashboard/dashboard.html:65 msgid "Instance Activity" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:83 +#: bookwyrm/templates/settings/dashboard/dashboard.html:83 msgid "Interval:" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:87 msgid "Days" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:87 +#: bookwyrm/templates/settings/dashboard/dashboard.html:88 msgid "Weeks" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:100 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "User signup activity" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:106 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 msgid "Status activity" msgstr "" -#: bookwyrm/templates/settings/dashboard_status_chart.html:7 +#: bookwyrm/templates/settings/dashboard/dashboard_status_chart.html:7 msgid "Statuses posted" msgstr "" -#: bookwyrm/templates/settings/dashboard_user_chart.html:7 +#: bookwyrm/templates/settings/dashboard/dashboard_user_chart.html:7 msgid "Total" msgstr "" -#: bookwyrm/templates/settings/domain_form.html:5 -#: bookwyrm/templates/settings/email_blocklist.html:10 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 msgid "Add domain" msgstr "" -#: bookwyrm/templates/settings/domain_form.html:11 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 msgid "Domain:" msgstr "" -#: bookwyrm/templates/settings/edit_server.html:3 -#: bookwyrm/templates/settings/edit_server.html:6 -#: bookwyrm/templates/settings/edit_server.html:20 -#: bookwyrm/templates/settings/federation.html:9 -#: bookwyrm/templates/settings/federation.html:10 -#: bookwyrm/templates/settings/server_blocklist.html:3 -#: bookwyrm/templates/settings/server_blocklist.html:20 -msgid "Add instance" -msgstr "" - -#: bookwyrm/templates/settings/edit_server.html:7 -#: bookwyrm/templates/settings/server_blocklist.html:7 -msgid "Back to instance list" -msgstr "" - -#: bookwyrm/templates/settings/edit_server.html:16 -#: bookwyrm/templates/settings/server_blocklist.html:16 -msgid "Import block list" -msgstr "" - -#: bookwyrm/templates/settings/edit_server.html:30 -msgid "Instance:" -msgstr "" - -#: bookwyrm/templates/settings/edit_server.html:37 -#: bookwyrm/templates/settings/federated_server.html:31 -#: bookwyrm/templates/user_admin/user_info.html:125 -msgid "Status:" -msgstr "" - -#: bookwyrm/templates/settings/edit_server.html:48 -#: bookwyrm/templates/settings/federated_server.html:23 -#: bookwyrm/templates/user_admin/user_info.html:117 -msgid "Software:" -msgstr "" - -#: bookwyrm/templates/settings/edit_server.html:55 -#: bookwyrm/templates/settings/federated_server.html:27 -#: bookwyrm/templates/user_admin/user_info.html:121 -msgid "Version:" -msgstr "" - -#: bookwyrm/templates/settings/edit_server.html:64 -msgid "Notes:" -msgstr "" - -#: bookwyrm/templates/settings/email_blocklist.html:5 -#: bookwyrm/templates/settings/email_blocklist.html:7 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 #: bookwyrm/templates/settings/layout.html:59 msgid "Email Blocklist" msgstr "" -#: bookwyrm/templates/settings/email_blocklist.html:18 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 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 "" -#: bookwyrm/templates/settings/email_blocklist.html:25 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 msgid "Domain" msgstr "" -#: bookwyrm/templates/settings/email_blocklist.html:29 -#: bookwyrm/templates/settings/ip_blocklist.html:27 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 msgid "Options" msgstr "" -#: bookwyrm/templates/settings/email_blocklist.html:38 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 #, python-format msgid "%(display_count)s user" msgid_plural "%(display_count)s users" msgstr[0] "" msgstr[1] "" -#: bookwyrm/templates/settings/federated_server.html:19 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:7 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:7 +msgid "Back to instance list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:16 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:16 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:30 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:39 +#: bookwyrm/templates/settings/federation/instance.html:28 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:22 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:61 +#: bookwyrm/templates/settings/federation/instance.html:25 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:70 +msgid "Notes:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:19 msgid "Details" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:39 +#: bookwyrm/templates/settings/federation/instance.html:35 #: bookwyrm/templates/user/layout.html:63 msgid "Activity" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:43 +#: bookwyrm/templates/settings/federation/instance.html:38 msgid "Users:" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:46 -#: bookwyrm/templates/settings/federated_server.html:53 +#: bookwyrm/templates/settings/federation/instance.html:41 +#: bookwyrm/templates/settings/federation/instance.html:47 msgid "View all" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:50 -#: bookwyrm/templates/user_admin/user_info.html:59 +#: bookwyrm/templates/settings/federation/instance.html:44 +#: bookwyrm/templates/settings/users/user_info.html:56 msgid "Reports:" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:57 +#: bookwyrm/templates/settings/federation/instance.html:50 msgid "Followed by us:" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:63 +#: bookwyrm/templates/settings/federation/instance.html:55 msgid "Followed by them:" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:69 +#: bookwyrm/templates/settings/federation/instance.html:60 msgid "Blocked by us:" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:82 -#: bookwyrm/templates/user_admin/user_info.html:130 +#: bookwyrm/templates/settings/federation/instance.html:72 +#: bookwyrm/templates/settings/users/user_info.html:110 msgid "Notes" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:85 +#: bookwyrm/templates/settings/federation/instance.html:75 msgid "Edit" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:105 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:8 +#: bookwyrm/templates/settings/federation/instance.html:79 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:8 msgid "Actions" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:109 +#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/snippets/block_button.html:5 msgid "Block" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:110 +#: bookwyrm/templates/settings/federation/instance.html:99 msgid "All users from this instance will be deactivated." msgstr "" -#: bookwyrm/templates/settings/federated_server.html:115 +#: bookwyrm/templates/settings/federation/instance.html:104 #: bookwyrm/templates/snippets/block_button.html:10 msgid "Un-block" msgstr "" -#: bookwyrm/templates/settings/federated_server.html:116 +#: bookwyrm/templates/settings/federation/instance.html:105 msgid "All users from this instance will be re-activated." msgstr "" -#: bookwyrm/templates/settings/federation.html:3 -#: bookwyrm/templates/settings/federation.html:5 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:26 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:30 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:45 msgid "Federated Instances" msgstr "" -#: bookwyrm/templates/settings/federation.html:32 -#: bookwyrm/templates/user_admin/server_filter.html:5 +#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "" -#: bookwyrm/templates/settings/federation.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:40 msgid "Software" msgstr "" -#: bookwyrm/templates/settings/ip_address_form.html:5 -#: bookwyrm/templates/settings/ip_blocklist.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:63 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:35 +msgid "Date requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:39 +msgid "Date accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:42 +msgid "Email" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +msgid "Action" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +msgid "No requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +msgid "Send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +msgid "Re-send invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +msgid "Ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +msgid "Un-ignore" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +msgid "Back to pending requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +msgid "View ignored requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 msgid "Add IP address" msgstr "" -#: bookwyrm/templates/settings/ip_address_form.html:11 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." msgstr "" -#: bookwyrm/templates/settings/ip_address_form.html:18 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 msgid "IP Address:" msgstr "" -#: bookwyrm/templates/settings/ip_blocklist.html:5 -#: bookwyrm/templates/settings/ip_blocklist.html:7 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 #: bookwyrm/templates/settings/layout.html:63 msgid "IP Address Blocklist" msgstr "" -#: bookwyrm/templates/settings/ip_blocklist.html:18 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." msgstr "" -#: bookwyrm/templates/settings/ip_blocklist.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 msgid "Address" msgstr "" -#: bookwyrm/templates/settings/ip_tooltip.html:6 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/ip_blocklist/ip_tooltip.html:6 msgid "You can block IP ranges using CIDR syntax." msgstr "" @@ -2447,6 +2493,12 @@ msgstr "" msgid "Moderation" msgstr "" +#: bookwyrm/templates/settings/layout.html:55 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "" + #: bookwyrm/templates/settings/layout.html:68 msgid "Instance Settings" msgstr "" @@ -2457,229 +2509,357 @@ msgstr "" msgid "Site Settings" msgstr "" -#: bookwyrm/templates/settings/layout.html:79 -#: bookwyrm/templates/settings/site.html:13 +#: bookwyrm/templates/settings/reports/report.html:5 +#: bookwyrm/templates/settings/reports/report.html:8 +#: bookwyrm/templates/settings/reports/report_preview.html:6 +#, python-format +msgid "Report #%(report_id)s: %(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:9 +msgid "Back to reports" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:23 +msgid "Moderator Comments" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:41 +#: bookwyrm/templates/snippets/create_status.html:28 +msgid "Comment" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:46 +msgid "Reported statuses" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "No statuses reported" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:54 +msgid "Status has been deleted" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:13 +msgid "No notes provided" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:20 +#, python-format +msgid "Reported by %(username)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:30 +msgid "Re-open" +msgstr "" + +#: bookwyrm/templates/settings/reports/report_preview.html:32 +msgid "Resolve" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:21 msgid "Instance Info" msgstr "" -#: bookwyrm/templates/settings/layout.html:80 -#: bookwyrm/templates/settings/site.html:44 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:54 msgid "Images" msgstr "" -#: bookwyrm/templates/settings/layout.html:81 -#: bookwyrm/templates/settings/site.html:64 +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:74 msgid "Footer Content" msgstr "" -#: bookwyrm/templates/settings/layout.html:82 -#: bookwyrm/templates/settings/site.html:86 +#: bookwyrm/templates/settings/site.html:13 +#: bookwyrm/templates/settings/site.html:98 msgid "Registration" msgstr "" -#: bookwyrm/templates/settings/manage_invite_requests.html:4 -#: bookwyrm/templates/settings/manage_invite_requests.html:11 -#: bookwyrm/templates/settings/manage_invite_requests.html:25 -#: bookwyrm/templates/settings/manage_invites.html:11 -msgid "Invite Requests" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:23 -msgid "Ignored Invite Requests" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:35 -msgid "Date requested" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:39 -msgid "Date accepted" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:42 -msgid "Email" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:47 -msgid "Action" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:50 -msgid "No requests" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:59 -#: bookwyrm/templates/settings/status_filter.html:16 -msgid "Accepted" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:61 -#: bookwyrm/templates/settings/status_filter.html:12 -msgid "Sent" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:63 -#: bookwyrm/templates/settings/status_filter.html:8 -msgid "Requested" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:73 -msgid "Send invite" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:75 -msgid "Re-send invite" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:95 -msgid "Ignore" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:97 -msgid "Un-ignore" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:108 -msgid "Back to pending requests" -msgstr "" - -#: bookwyrm/templates/settings/manage_invite_requests.html:110 -msgid "View ignored requests" -msgstr "" - -#: bookwyrm/templates/settings/manage_invites.html:21 -msgid "Generate New Invite" -msgstr "" - -#: bookwyrm/templates/settings/manage_invites.html:27 -msgid "Expiry:" -msgstr "" - -#: bookwyrm/templates/settings/manage_invites.html:33 -msgid "Use limit:" -msgstr "" - -#: bookwyrm/templates/settings/manage_invites.html:40 -msgid "Create Invite" -msgstr "" - -#: bookwyrm/templates/settings/manage_invites.html:47 -msgid "Link" -msgstr "" - -#: bookwyrm/templates/settings/manage_invites.html:48 -msgid "Expires" -msgstr "" - -#: bookwyrm/templates/settings/manage_invites.html:49 -msgid "Max uses" -msgstr "" - -#: bookwyrm/templates/settings/manage_invites.html:50 -msgid "Times used" -msgstr "" - -#: bookwyrm/templates/settings/manage_invites.html:53 -msgid "No active invites" -msgstr "" - -#: bookwyrm/templates/settings/server_blocklist.html:6 -msgid "Import Blocklist" -msgstr "" - -#: bookwyrm/templates/settings/server_blocklist.html:26 -#: bookwyrm/templates/snippets/goal_progress.html:7 -msgid "Success!" -msgstr "" - -#: bookwyrm/templates/settings/server_blocklist.html:30 -msgid "Successfully blocked:" -msgstr "" - -#: bookwyrm/templates/settings/server_blocklist.html:32 -msgid "Failed:" -msgstr "" - -#: bookwyrm/templates/settings/site.html:15 +#: bookwyrm/templates/settings/site.html:24 msgid "Instance Name:" msgstr "" -#: bookwyrm/templates/settings/site.html:19 +#: bookwyrm/templates/settings/site.html:28 msgid "Tagline:" msgstr "" -#: bookwyrm/templates/settings/site.html:23 +#: bookwyrm/templates/settings/site.html:32 msgid "Instance description:" msgstr "" -#: bookwyrm/templates/settings/site.html:27 +#: bookwyrm/templates/settings/site.html:36 msgid "Short description:" msgstr "" -#: bookwyrm/templates/settings/site.html:28 +#: bookwyrm/templates/settings/site.html:37 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown." msgstr "" -#: bookwyrm/templates/settings/site.html:32 +#: bookwyrm/templates/settings/site.html:41 msgid "Code of conduct:" msgstr "" -#: bookwyrm/templates/settings/site.html:36 +#: bookwyrm/templates/settings/site.html:45 msgid "Privacy Policy:" msgstr "" -#: bookwyrm/templates/settings/site.html:47 +#: bookwyrm/templates/settings/site.html:57 msgid "Logo:" msgstr "" -#: bookwyrm/templates/settings/site.html:51 +#: bookwyrm/templates/settings/site.html:61 msgid "Logo small:" msgstr "" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:65 msgid "Favicon:" msgstr "" -#: bookwyrm/templates/settings/site.html:66 +#: bookwyrm/templates/settings/site.html:77 msgid "Support link:" msgstr "" -#: bookwyrm/templates/settings/site.html:70 +#: bookwyrm/templates/settings/site.html:81 msgid "Support title:" msgstr "" -#: bookwyrm/templates/settings/site.html:74 +#: bookwyrm/templates/settings/site.html:85 msgid "Admin email:" msgstr "" -#: bookwyrm/templates/settings/site.html:78 +#: bookwyrm/templates/settings/site.html:89 msgid "Additional info:" msgstr "" -#: bookwyrm/templates/settings/site.html:90 +#: bookwyrm/templates/settings/site.html:103 msgid "Allow registration" msgstr "" -#: bookwyrm/templates/settings/site.html:96 +#: bookwyrm/templates/settings/site.html:109 msgid "Allow invite requests" msgstr "" -#: bookwyrm/templates/settings/site.html:102 +#: bookwyrm/templates/settings/site.html:115 msgid "Require users to confirm email address" msgstr "" -#: bookwyrm/templates/settings/site.html:104 +#: bookwyrm/templates/settings/site.html:117 msgid "(Recommended if registration is open)" msgstr "" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:120 msgid "Registration closed text:" msgstr "" -#: bookwyrm/templates/settings/site.html:111 +#: bookwyrm/templates/settings/site.html:124 msgid "Invite request text:" msgstr "" +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user.html:7 +msgid "Back to users" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:7 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:22 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:26 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:30 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:38 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:47 +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:47 +#: bookwyrm/templates/settings/users/user_info.html:28 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +#: bookwyrm/templates/settings/users/user_info.html:120 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:16 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:36 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:38 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:47 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:61 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:67 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:70 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:73 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:76 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:95 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:5 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:13 +msgid "Send direct message" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +msgid "Create Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:28 bookwyrm/views/shelf.py:56 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:55 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:77 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:84 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:96 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:104 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:130 +#: bookwyrm/templates/shelf/shelf.html:154 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:131 +#: bookwyrm/templates/shelf/shelf.html:158 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:132 +#: bookwyrm/templates/shelf/shelf.html:161 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:187 +msgid "This shelf is empty." +msgstr "" + #: bookwyrm/templates/snippets/announcement.html:31 #, python-format msgid "Posted by %(username)s" @@ -2724,24 +2904,21 @@ msgid "Some thoughts on the book" msgstr "" #: bookwyrm/templates/snippets/create_status/comment.html:26 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:16 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:15 msgid "Progress:" msgstr "" #: bookwyrm/templates/snippets/create_status/comment.html:52 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:31 -#: bookwyrm/templates/snippets/readthrough_form.html:22 +#: bookwyrm/templates/snippets/progress_field.html:18 msgid "pages" msgstr "" #: bookwyrm/templates/snippets/create_status/comment.html:58 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:32 -#: bookwyrm/templates/snippets/readthrough_form.html:23 +#: bookwyrm/templates/snippets/progress_field.html:23 msgid "percent" msgstr "" #: bookwyrm/templates/snippets/create_status/comment.html:65 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:37 #, python-format msgid "of %(pages)s pages" msgstr "" @@ -2922,29 +3099,29 @@ msgstr[1] "" msgid "Review of \"%(book_title)s\": %(review_title)s" msgstr "" -#: bookwyrm/templates/snippets/goal_card.html:23 +#: bookwyrm/templates/snippets/goal_form.html:3 #, python-format -msgid "You can set or change your reading goal any time from your profile page" +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." msgstr "" -#: bookwyrm/templates/snippets/goal_form.html:9 +#: bookwyrm/templates/snippets/goal_form.html:12 msgid "Reading goal:" msgstr "" -#: bookwyrm/templates/snippets/goal_form.html:14 +#: bookwyrm/templates/snippets/goal_form.html:17 msgid "books" msgstr "" -#: bookwyrm/templates/snippets/goal_form.html:19 +#: bookwyrm/templates/snippets/goal_form.html:22 msgid "Goal privacy:" msgstr "" -#: bookwyrm/templates/snippets/goal_form.html:26 +#: bookwyrm/templates/snippets/goal_form.html:29 #: bookwyrm/templates/snippets/reading_modals/layout.html:13 msgid "Post to feed" msgstr "" -#: bookwyrm/templates/snippets/goal_form.html:30 +#: bookwyrm/templates/snippets/goal_form.html:33 msgid "Set goal" msgstr "" @@ -3020,18 +3197,18 @@ msgstr "" msgid "Finish \"%(book_title)s\"" msgstr "" -#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:22 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:23 #: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:20 #: bookwyrm/templates/snippets/readthrough_form.html:7 msgid "Started reading" msgstr "" -#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:30 -#: bookwyrm/templates/snippets/readthrough_form.html:30 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:31 +#: bookwyrm/templates/snippets/readthrough_form.html:20 msgid "Finished reading" msgstr "" -#: bookwyrm/templates/snippets/reading_modals/form.html:8 +#: bookwyrm/templates/snippets/reading_modals/form.html:9 msgid "(Optional)" msgstr "" @@ -3062,6 +3239,20 @@ msgstr "" msgid "Report" msgstr "" +#: bookwyrm/templates/snippets/report_modal.html:6 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:23 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:24 +msgid "More info about this report:" +msgstr "" + #: bookwyrm/templates/snippets/search_result_text.html:36 msgid "Import book" msgstr "" @@ -3187,12 +3378,6 @@ msgstr "" msgid "Delete & re-draft" msgstr "" -#: bookwyrm/templates/snippets/status/status_options.html:35 -#: bookwyrm/templates/snippets/user_options.html:13 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:13 -msgid "Send direct message" -msgstr "" - #: bookwyrm/templates/snippets/suggested_users.html:16 #, python-format msgid "%(mutuals)s follower you follow" @@ -3232,6 +3417,35 @@ msgstr "" msgid "Show less" msgstr "" +#: bookwyrm/templates/user/books_header.html:5 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:8 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:28 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:40 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:42 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + #: bookwyrm/templates/user/layout.html:18 bookwyrm/templates/user/user.html:10 msgid "User Profile" msgstr "" @@ -3268,71 +3482,6 @@ msgstr "" msgid "%(username)s isn't following any users" msgstr "" -#: bookwyrm/templates/user/shelf/books_header.html:5 -#, python-format -msgid "%(username)s's books" -msgstr "" - -#: bookwyrm/templates/user/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/user/shelf/create_shelf_form.html:22 -msgid "Create Shelf" -msgstr "" - -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:5 -msgid "Edit Shelf" -msgstr "" - -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:26 -msgid "Update shelf" -msgstr "" - -#: bookwyrm/templates/user/shelf/shelf.html:28 bookwyrm/views/shelf.py:56 -msgid "All books" -msgstr "" - -#: bookwyrm/templates/user/shelf/shelf.html:55 -msgid "Create shelf" -msgstr "" - -#: bookwyrm/templates/user/shelf/shelf.html:76 -#, python-format -msgid "%(formatted_count)s book" -msgid_plural "%(formatted_count)s books" -msgstr[0] "" -msgstr[1] "" - -#: bookwyrm/templates/user/shelf/shelf.html:83 -#, python-format -msgid "(showing %(start)s-%(end)s)" -msgstr "" - -#: bookwyrm/templates/user/shelf/shelf.html:94 -msgid "Edit shelf" -msgstr "" - -#: bookwyrm/templates/user/shelf/shelf.html:113 -#: bookwyrm/templates/user/shelf/shelf.html:137 -msgid "Shelved" -msgstr "" - -#: bookwyrm/templates/user/shelf/shelf.html:114 -#: bookwyrm/templates/user/shelf/shelf.html:141 -msgid "Started" -msgstr "" - -#: bookwyrm/templates/user/shelf/shelf.html:115 -#: bookwyrm/templates/user/shelf/shelf.html:144 -msgid "Finished" -msgstr "" - -#: bookwyrm/templates/user/shelf/shelf.html:170 -msgid "This shelf is empty." -msgstr "" - -#: bookwyrm/templates/user/shelf/shelf.html:176 -msgid "Delete shelf" -msgstr "" - #: bookwyrm/templates/user/user.html:16 msgid "Edit profile" msgstr "" @@ -3386,129 +3535,6 @@ msgstr[1] "" msgid "No followers you follow" msgstr "" -#: bookwyrm/templates/user_admin/delete_user_form.html:5 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:31 -msgid "Permanently delete user" -msgstr "" - -#: bookwyrm/templates/user_admin/delete_user_form.html:12 -#, python-format -msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." -msgstr "" - -#: bookwyrm/templates/user_admin/delete_user_form.html:17 -msgid "Your password:" -msgstr "" - -#: bookwyrm/templates/user_admin/user.html:8 -msgid "Back to users" -msgstr "" - -#: bookwyrm/templates/user_admin/user_admin.html:7 -#, python-format -msgid "Users: %(instance_name)s" -msgstr "" - -#: bookwyrm/templates/user_admin/user_admin.html:22 -#: bookwyrm/templates/user_admin/username_filter.html:5 -msgid "Username" -msgstr "" - -#: bookwyrm/templates/user_admin/user_admin.html:26 -msgid "Date Added" -msgstr "" - -#: bookwyrm/templates/user_admin/user_admin.html:30 -msgid "Last Active" -msgstr "" - -#: bookwyrm/templates/user_admin/user_admin.html:38 -msgid "Remote instance" -msgstr "" - -#: bookwyrm/templates/user_admin/user_admin.html:47 -#: bookwyrm/templates/user_admin/user_info.html:24 -msgid "Active" -msgstr "" - -#: bookwyrm/templates/user_admin/user_admin.html:47 -#: bookwyrm/templates/user_admin/user_info.html:28 -msgid "Inactive" -msgstr "" - -#: bookwyrm/templates/user_admin/user_admin.html:52 -#: bookwyrm/templates/user_admin/user_info.html:140 -msgid "Not set" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:16 -msgid "View user profile" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:36 -msgid "Local" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:38 -msgid "Remote" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:47 -msgid "User details" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:52 -msgid "Email:" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:64 -msgid "(View reports)" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:72 -msgid "Blocked by count:" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:77 -msgid "Last active date:" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:82 -msgid "Manually approved followers:" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:87 -msgid "Discoverable:" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:93 -msgid "Deactivation reason:" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:111 -msgid "Instance details" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:137 -msgid "View instance" -msgstr "" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:5 -msgid "Permanently deleted" -msgstr "" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:20 -msgid "Suspend user" -msgstr "" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:25 -msgid "Un-suspend user" -msgstr "" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:47 -msgid "Access level:" -msgstr "" - #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 msgid "File exceeds maximum size: 10MB" msgstr "" diff --git a/locale/es/LC_MESSAGES/django.po b/locale/es/LC_MESSAGES/django.po index e9c8d7e89..8148658a7 100644 --- a/locale/es/LC_MESSAGES/django.po +++ b/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-28 18:31+0000\n" +"POT-Creation-Date: 2021-09-29 18:32+0000\n" "PO-Revision-Date: 2021-03-19 11:49+0800\n" "Last-Translator: Reese Porter \n" "Language-Team: LANGUAGE \n" @@ -56,10 +56,9 @@ msgstr "Orden de la lista" msgid "Book Title" msgstr "Título" -#: bookwyrm/forms.py:327 +#: bookwyrm/forms.py:327 bookwyrm/templates/shelf/shelf.html:134 +#: bookwyrm/templates/shelf/shelf.html:165 #: bookwyrm/templates/snippets/create_status/review.html:33 -#: bookwyrm/templates/user/shelf/shelf.html:117 -#: bookwyrm/templates/user/shelf/shelf.html:148 msgid "Rating" msgstr "Calificación" @@ -103,16 +102,42 @@ msgstr "Eliminación de moderador" msgid "Domain block" msgstr "Bloqueo de dominio" +#: bookwyrm/models/book.py:232 +#, fuzzy +#| msgid "Add books" +msgid "Audiobook" +msgstr "Agregar libros" + +#: bookwyrm/models/book.py:233 +#, fuzzy +#| msgid "Book" +msgid "eBook" +msgstr "Libro" + +#: bookwyrm/models/book.py:234 +msgid "Graphic novel" +msgstr "" + +#: bookwyrm/models/book.py:235 +#, fuzzy +#| msgid "Add cover" +msgid "Hardcover" +msgstr "Agregar portada" + +#: bookwyrm/models/book.py:236 +msgid "Paperback" +msgstr "" + #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/edit_server.html:40 -#: bookwyrm/templates/settings/federation.html:19 +#: bookwyrm/templates/settings/federation/edit_instance.html:42 +#: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "Federalizado" #: bookwyrm/models/federated_server.py:12 -#: bookwyrm/templates/settings/edit_server.html:41 -#: bookwyrm/templates/settings/federated_server.html:10 -#: bookwyrm/templates/settings/federation.html:23 +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:23 msgid "Blocked" msgstr "Bloqueado" @@ -266,9 +291,7 @@ msgid "Metadata" msgstr "Metadatos" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/lists/form.html:8 -#: bookwyrm/templates/user/shelf/create_shelf_form.html:13 -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:14 +#: bookwyrm/templates/lists/form.html:8 bookwyrm/templates/shelf/form.html:9 msgid "Name:" msgstr "Nombre:" @@ -304,7 +327,7 @@ msgid "Openlibrary key:" msgstr "Clave OpenLibrary:" #: bookwyrm/templates/author/edit_author.html:89 -#: bookwyrm/templates/book/edit_book.html:300 +#: bookwyrm/templates/book/edit_book.html:313 msgid "Inventaire ID:" msgstr "ID Inventaire:" @@ -318,32 +341,30 @@ msgstr "Clave Goodreads:" #: bookwyrm/templates/author/edit_author.html:116 #: bookwyrm/templates/book/book.html:140 -#: bookwyrm/templates/book/edit_book.html:328 +#: bookwyrm/templates/book/edit_book.html:341 #: bookwyrm/templates/book/readthrough.html:76 #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/form.html:44 #: bookwyrm/templates/preferences/edit_user.html:118 -#: bookwyrm/templates/settings/announcement_form.html:69 -#: bookwyrm/templates/settings/edit_server.html:68 -#: bookwyrm/templates/settings/federated_server.html:98 -#: bookwyrm/templates/settings/site.html:120 -#: bookwyrm/templates/snippets/reading_modals/layout.html:16 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:43 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:64 +#: bookwyrm/templates/settings/announcements/announcement_form.html:69 +#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/instance.html:87 +#: bookwyrm/templates/settings/site.html:134 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:64 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 msgid "Save" msgstr "Guardar" #: bookwyrm/templates/author/edit_author.html:117 #: bookwyrm/templates/book/book.html:141 bookwyrm/templates/book/book.html:190 #: bookwyrm/templates/book/cover_modal.html:32 -#: bookwyrm/templates/book/edit_book.html:329 +#: bookwyrm/templates/book/edit_book.html:342 #: bookwyrm/templates/book/readthrough.html:77 #: bookwyrm/templates/lists/delete_list_modal.html:17 -#: bookwyrm/templates/moderation/report_modal.html:34 -#: bookwyrm/templates/settings/federated_server.html:99 +#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/snippets/delete_readthrough_modal.html:17 -#: bookwyrm/templates/snippets/goal_form.html:32 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:44 +#: bookwyrm/templates/snippets/report_modal.html:34 msgid "Cancel" msgstr "Cancelar" @@ -380,7 +401,7 @@ msgstr "Agregar descripción" #: bookwyrm/templates/book/book.html:136 #: bookwyrm/templates/book/edit_book.html:143 -#: bookwyrm/templates/lists/form.html:12 +#: bookwyrm/templates/lists/form.html:12 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Descripción:" @@ -454,8 +475,8 @@ msgstr "Agregar a lista" #: bookwyrm/templates/book/book.html:313 #: bookwyrm/templates/book/cover_modal.html:31 #: bookwyrm/templates/lists/list.html:181 -#: bookwyrm/templates/settings/domain_form.html:26 -#: bookwyrm/templates/settings/ip_address_form.html:32 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:26 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 msgid "Add" msgstr "Agregar" @@ -464,12 +485,12 @@ msgid "ISBN:" msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:14 -#: bookwyrm/templates/book/edit_book.html:308 +#: bookwyrm/templates/book/edit_book.html:321 msgid "OCLC Number:" msgstr "Número OCLC:" #: bookwyrm/templates/book/book_identifiers.html:21 -#: bookwyrm/templates/book/edit_book.html:316 +#: bookwyrm/templates/book/edit_book.html:329 msgid "ASIN:" msgstr "ASIN:" @@ -479,7 +500,7 @@ msgid "Upload cover:" msgstr "Subir portada:" #: bookwyrm/templates/book/cover_modal.html:23 -#: bookwyrm/templates/book/edit_book.html:242 +#: bookwyrm/templates/book/edit_book.html:241 msgid "Load cover from url:" msgstr "Agregar portada de url:" @@ -591,11 +612,11 @@ msgid "John Doe, Jane Smith" msgstr "Juan Nadie, Natalia Natalia" #: bookwyrm/templates/book/edit_book.html:227 -#: bookwyrm/templates/user/shelf/shelf.html:110 +#: bookwyrm/templates/shelf/shelf.html:127 msgid "Cover" msgstr "Portada:" -#: bookwyrm/templates/book/edit_book.html:255 +#: bookwyrm/templates/book/edit_book.html:253 msgid "Physical Properties" msgstr "Propiedades físicas:" @@ -604,23 +625,29 @@ msgstr "Propiedades físicas:" msgid "Format:" msgstr "Formato:" -#: bookwyrm/templates/book/edit_book.html:265 +#: bookwyrm/templates/book/edit_book.html:268 +#, fuzzy +#| msgid "User details" +msgid "Format details:" +msgstr "Detalles" + +#: bookwyrm/templates/book/edit_book.html:278 msgid "Pages:" msgstr "Páginas:" -#: bookwyrm/templates/book/edit_book.html:274 +#: bookwyrm/templates/book/edit_book.html:287 msgid "Book Identifiers" msgstr "Identificadores de libro" -#: bookwyrm/templates/book/edit_book.html:276 +#: bookwyrm/templates/book/edit_book.html:289 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit_book.html:284 +#: bookwyrm/templates/book/edit_book.html:297 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit_book.html:292 +#: bookwyrm/templates/book/edit_book.html:305 msgid "Openlibrary ID:" msgstr "ID OpenLibrary:" @@ -751,14 +778,14 @@ msgid "Sorry! We couldn't find that code." msgstr "Sentimos que no pudimos encontrar ese código" #: bookwyrm/templates/confirm_email/confirm_email.html:19 -#: bookwyrm/templates/user_admin/user_info.html:100 +#: bookwyrm/templates/settings/users/user_info.html:85 msgid "Confirmation code:" msgstr "Código de confirmación:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:73 -#: bookwyrm/templates/moderation/report_modal.html:33 -#: bookwyrm/templates/settings/dashboard.html:93 +#: bookwyrm/templates/settings/dashboard/dashboard.html:93 +#: bookwyrm/templates/snippets/report_modal.html:33 msgid "Submit" msgstr "Enviar" @@ -810,8 +837,8 @@ msgid "You can opt-out at any time in your profile settings msgstr "Puedes optar por no en cualquier hora en tus configuraciones de perfil." #: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/feed/goal_card.html:17 #: bookwyrm/templates/snippets/announcement.html:34 -#: bookwyrm/templates/snippets/goal_card.html:22 msgid "Dismiss message" msgstr "Desechar mensaje" @@ -820,13 +847,13 @@ msgid "Order by" msgstr "Ordenar por" #: bookwyrm/templates/directory/sort_filter.html:8 -msgid "Suggested" -msgstr "Sugerido" - -#: bookwyrm/templates/directory/sort_filter.html:9 msgid "Recently active" msgstr "Activ@ recientemente" +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Suggested" +msgstr "Sugerido" + #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 #: bookwyrm/templates/user/user_preview.html:16 @@ -1015,12 +1042,24 @@ msgstr "cargar 0 status(es) no le msgid "There aren't any activities right now! Try following a user to get started" msgstr "¡No hay actividad ahora mismo! Sigue a otro usuario para empezar" +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:90 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "%(year)s Meta de lectura" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "Puedes establecer o cambiar tu meta de lectura en cualquier momento que desees desde tu perfil" + #: bookwyrm/templates/feed/layout.html:5 msgid "Updates" msgstr "Actualizaciones" #: bookwyrm/templates/feed/layout.html:12 -#: bookwyrm/templates/user/shelf/books_header.html:3 +#: bookwyrm/templates/user/books_header.html:3 msgid "Your books" msgstr "Tus libros" @@ -1029,28 +1068,22 @@ msgid "There are no books here right now! Try searching for a book to get starte msgstr "¡No hay ningún libro aqui ahorita! Busca a un libro para empezar" #: bookwyrm/templates/feed/layout.html:25 -#: bookwyrm/templates/user/shelf/shelf.html:38 +#: bookwyrm/templates/shelf/shelf.html:38 msgid "To Read" msgstr "Para leer" #: bookwyrm/templates/feed/layout.html:26 -#: bookwyrm/templates/user/shelf/shelf.html:40 +#: bookwyrm/templates/shelf/shelf.html:40 msgid "Currently Reading" msgstr "Leyendo actualmente" #: bookwyrm/templates/feed/layout.html:27 +#: bookwyrm/templates/shelf/shelf.html:42 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:23 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/user/shelf/shelf.html:42 msgid "Read" msgstr "Leido" -#: bookwyrm/templates/feed/layout.html:90 bookwyrm/templates/goal.html:26 -#: bookwyrm/templates/snippets/goal_card.html:6 -#, python-format -msgid "%(year)s Reading Goal" -msgstr "%(year)s Meta de lectura" - #: bookwyrm/templates/feed/suggested_users.html:5 #: bookwyrm/templates/get_started/users.html:6 msgid "Who to follow" @@ -1195,39 +1228,9 @@ msgstr "Buscar un usuario" msgid "No users found for \"%(query)s\"" msgstr "No se encontró ningún usuario correspondiente a \"%(query)s\"" -#: bookwyrm/templates/goal.html:7 -#, python-format -msgid "%(year)s Reading Progress" -msgstr "%(year)s Progreso de la meta de lectura" - -#: bookwyrm/templates/goal.html:11 -msgid "Edit Goal" -msgstr "Editar meta" - -#: bookwyrm/templates/goal.html:30 -#: bookwyrm/templates/snippets/goal_card.html:13 -#, python-format -msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." -msgstr "Establece una meta para cuantos libros leerás en %(year)s, y seguir tu progreso durante el año." - -#: bookwyrm/templates/goal.html:39 -#, python-format -msgid "%(name)s hasn't set a reading goal for %(year)s." -msgstr "%(name)s no ha establecido una meta de lectura para %(year)s." - -#: bookwyrm/templates/goal.html:51 -#, python-format -msgid "Your %(year)s Books" -msgstr "Tus libros de %(year)s" - -#: bookwyrm/templates/goal.html:53 -#, python-format -msgid "%(username)s's %(year)s Books" -msgstr "Los libros de %(username)s para %(year)s" - #: bookwyrm/templates/import/import.html:5 #: bookwyrm/templates/import/import.html:9 -#: bookwyrm/templates/user/shelf/shelf.html:57 +#: bookwyrm/templates/shelf/shelf.html:57 msgid "Import Books" msgstr "Importar libros" @@ -1248,7 +1251,7 @@ msgid "Privacy setting for imported reviews:" msgstr "Configuración de privacidad para las reseñas importadas:" #: bookwyrm/templates/import/import.html:56 -#: bookwyrm/templates/settings/server_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 msgid "Import" msgstr "Importar" @@ -1324,14 +1327,14 @@ msgid "Book" msgstr "Libro" #: bookwyrm/templates/import/import_status.html:122 -#: bookwyrm/templates/user/shelf/shelf.html:111 -#: bookwyrm/templates/user/shelf/shelf.html:131 +#: bookwyrm/templates/shelf/shelf.html:128 +#: bookwyrm/templates/shelf/shelf.html:148 msgid "Title" msgstr "Título" #: bookwyrm/templates/import/import_status.html:125 -#: bookwyrm/templates/user/shelf/shelf.html:112 -#: bookwyrm/templates/user/shelf/shelf.html:134 +#: bookwyrm/templates/shelf/shelf.html:129 +#: bookwyrm/templates/shelf/shelf.html:151 msgid "Author" msgstr "Autor/Autora" @@ -1439,10 +1442,10 @@ msgid "Settings" msgstr "Configuración" #: bookwyrm/templates/layout.html:125 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 #: bookwyrm/templates/settings/layout.html:40 -#: bookwyrm/templates/settings/manage_invite_requests.html:15 -#: bookwyrm/templates/settings/manage_invites.html:3 -#: bookwyrm/templates/settings/manage_invites.html:15 msgid "Invites" msgstr "Invitaciones" @@ -1564,9 +1567,9 @@ msgid "This action cannot be un-done" msgstr "Esta acción no se puede deshacer" #: bookwyrm/templates/lists/delete_list_modal.html:15 -#: bookwyrm/templates/settings/announcement.html:20 -#: bookwyrm/templates/settings/email_blocklist.html:49 -#: bookwyrm/templates/settings/ip_blocklist.html:36 +#: bookwyrm/templates/settings/announcements/announcement.html:20 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 #: bookwyrm/templates/snippets/delete_readthrough_modal.html:15 #: bookwyrm/templates/snippets/follow_request_buttons.html:12 msgid "Delete" @@ -1597,9 +1600,8 @@ msgstr "De comisariado" msgid "Anyone can suggest books, subject to your approval" msgstr "Cualquier usuario puede sugerir libros, en cuanto lo hayas aprobado" -#: bookwyrm/templates/lists/form.html:31 -#: bookwyrm/templates/moderation/reports.html:25 -#: bookwyrm/templates/search/book.html:30 +#: bookwyrm/templates/lists/form.html:31 bookwyrm/templates/search/book.html:30 +#: bookwyrm/templates/settings/reports/reports.html:25 #: bookwyrm/templates/snippets/announcement.html:16 msgid "Open" msgstr "Abierto" @@ -1709,93 +1711,6 @@ msgstr "Contraseña:" msgid "More about this site" msgstr "Más sobre este sitio" -#: bookwyrm/templates/moderation/report.html:5 -#: bookwyrm/templates/moderation/report.html:6 -#: bookwyrm/templates/moderation/report_preview.html:6 -#, python-format -msgid "Report #%(report_id)s: %(username)s" -msgstr "Reportar #%(report_id)s: %(username)s" - -#: bookwyrm/templates/moderation/report.html:10 -msgid "Back to reports" -msgstr "Volver a los informes" - -#: bookwyrm/templates/moderation/report.html:22 -msgid "Moderator Comments" -msgstr "Comentarios de moderador" - -#: bookwyrm/templates/moderation/report.html:40 -#: bookwyrm/templates/snippets/create_status.html:28 -msgid "Comment" -msgstr "Comentario" - -#: bookwyrm/templates/moderation/report.html:45 -msgid "Reported statuses" -msgstr "Statuses reportados" - -#: bookwyrm/templates/moderation/report.html:47 -msgid "No statuses reported" -msgstr "Ningún estatus reportado" - -#: bookwyrm/templates/moderation/report.html:53 -msgid "Status has been deleted" -msgstr "Status ha sido eliminado" - -#: bookwyrm/templates/moderation/report_modal.html:6 -#, python-format -msgid "Report @%(username)s" -msgstr "Reportar @%(username)s" - -#: bookwyrm/templates/moderation/report_modal.html:23 -#, python-format -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." - -#: bookwyrm/templates/moderation/report_modal.html:24 -msgid "More info about this report:" -msgstr "Más información sobre este informe:" - -#: bookwyrm/templates/moderation/report_preview.html:13 -msgid "No notes provided" -msgstr "No se proporcionó notas" - -#: bookwyrm/templates/moderation/report_preview.html:20 -#, python-format -msgid "Reported by %(username)s" -msgstr "Reportado por %(username)s" - -#: bookwyrm/templates/moderation/report_preview.html:30 -msgid "Re-open" -msgstr "Reabrir" - -#: bookwyrm/templates/moderation/report_preview.html:32 -msgid "Resolve" -msgstr "Resolver" - -#: bookwyrm/templates/moderation/reports.html:6 -#, python-format -msgid "Reports: %(instance_name)s" -msgstr "Informes: %(instance_name)s" - -#: bookwyrm/templates/moderation/reports.html:8 -#: bookwyrm/templates/moderation/reports.html:17 -#: bookwyrm/templates/settings/layout.html:55 -msgid "Reports" -msgstr "Informes" - -#: bookwyrm/templates/moderation/reports.html:14 -#, python-format -msgid "Reports: %(instance_name)s" -msgstr "Informes: %(instance_name)s" - -#: bookwyrm/templates/moderation/reports.html:28 -msgid "Resolved" -msgstr "Resuelto" - -#: bookwyrm/templates/moderation/reports.html:37 -msgid "No reports found." -msgstr "No se encontró ningún informe." - #: bookwyrm/templates/notifications.html:16 msgid "Delete notifications" msgstr "Borrar notificaciones" @@ -1959,7 +1874,7 @@ msgstr "Nueva contraseña:" #: bookwyrm/templates/preferences/delete_user.html:7 #: bookwyrm/templates/preferences/delete_user.html:26 #: bookwyrm/templates/preferences/layout.html:24 -#: bookwyrm/templates/user_admin/delete_user_form.html:23 +#: bookwyrm/templates/settings/users/delete_user_form.html:23 msgid "Delete Account" msgstr "Quitar cuenta" @@ -1979,7 +1894,7 @@ msgstr "Editar perfil" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 -#: bookwyrm/templates/user_admin/user_info.html:7 +#: bookwyrm/templates/settings/users/user_info.html:7 msgid "Profile" msgstr "Perfil" @@ -2063,11 +1978,11 @@ msgstr "Tipo de búsqueda" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 -#: bookwyrm/templates/settings/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation.html:44 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:44 #: bookwyrm/templates/settings/layout.html:34 -#: bookwyrm/templates/user_admin/user_admin.html:3 -#: bookwyrm/templates/user_admin/user_admin.html:10 +#: bookwyrm/templates/settings/users/user_admin.html:3 +#: bookwyrm/templates/settings/users/user_admin.html:10 msgid "Users" msgstr "Usuarios" @@ -2076,379 +1991,526 @@ msgstr "Usuarios" msgid "No results found for \"%(query)s\"" msgstr "No se encontró ningún resultado correspondiente a \"%(query)s\"" -#: bookwyrm/templates/settings/announcement.html:3 -#: bookwyrm/templates/settings/announcement.html:6 +#: bookwyrm/templates/settings/announcements/announcement.html:3 +#: bookwyrm/templates/settings/announcements/announcement.html:6 msgid "Announcement" msgstr "Anuncio" -#: bookwyrm/templates/settings/announcement.html:7 -#: bookwyrm/templates/settings/federated_server.html:13 +#: bookwyrm/templates/settings/announcements/announcement.html:7 +#: bookwyrm/templates/settings/federation/instance.html:13 msgid "Back to list" msgstr "Volver a la lista de servidores" -#: bookwyrm/templates/settings/announcement.html:11 -#: bookwyrm/templates/settings/announcement_form.html:6 +#: bookwyrm/templates/settings/announcements/announcement.html:11 +#: bookwyrm/templates/settings/announcements/announcement_form.html:6 msgid "Edit Announcement" msgstr "Editar anuncio" -#: bookwyrm/templates/settings/announcement.html:35 +#: bookwyrm/templates/settings/announcements/announcement.html:35 msgid "Visible:" msgstr "Visible:" -#: bookwyrm/templates/settings/announcement.html:38 +#: bookwyrm/templates/settings/announcements/announcement.html:38 msgid "True" msgstr "Verdadero" -#: bookwyrm/templates/settings/announcement.html:40 +#: bookwyrm/templates/settings/announcements/announcement.html:40 msgid "False" msgstr "Falso" -#: bookwyrm/templates/settings/announcement.html:47 -#: bookwyrm/templates/settings/announcement_form.html:40 -#: bookwyrm/templates/settings/dashboard.html:71 +#: bookwyrm/templates/settings/announcements/announcement.html:47 +#: bookwyrm/templates/settings/announcements/announcement_form.html:40 +#: bookwyrm/templates/settings/dashboard/dashboard.html:71 msgid "Start date:" msgstr "Fecha de inicio:" -#: bookwyrm/templates/settings/announcement.html:54 -#: bookwyrm/templates/settings/announcement_form.html:49 -#: bookwyrm/templates/settings/dashboard.html:77 +#: bookwyrm/templates/settings/announcements/announcement.html:54 +#: bookwyrm/templates/settings/announcements/announcement_form.html:49 +#: bookwyrm/templates/settings/dashboard/dashboard.html:77 msgid "End date:" msgstr "Fecha final:" -#: bookwyrm/templates/settings/announcement.html:60 -#: bookwyrm/templates/settings/announcement_form.html:58 +#: bookwyrm/templates/settings/announcements/announcement.html:60 +#: bookwyrm/templates/settings/announcements/announcement_form.html:58 msgid "Active:" msgstr "Activ@:" -#: bookwyrm/templates/settings/announcement_form.html:8 -#: bookwyrm/templates/settings/announcements.html:8 +#: bookwyrm/templates/settings/announcements/announcement_form.html:8 +#: bookwyrm/templates/settings/announcements/announcements.html:8 msgid "Create Announcement" msgstr "Crear anuncio" -#: bookwyrm/templates/settings/announcement_form.html:16 +#: bookwyrm/templates/settings/announcements/announcement_form.html:16 msgid "Preview:" msgstr "Vista preliminar:" -#: bookwyrm/templates/settings/announcement_form.html:23 +#: bookwyrm/templates/settings/announcements/announcement_form.html:23 msgid "Content:" msgstr "Contenido:" -#: bookwyrm/templates/settings/announcement_form.html:30 +#: bookwyrm/templates/settings/announcements/announcement_form.html:30 msgid "Event date:" msgstr "Fecha de evento:" -#: bookwyrm/templates/settings/announcements.html:3 -#: bookwyrm/templates/settings/announcements.html:5 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/layout.html:72 msgid "Announcements" msgstr "Anuncios" -#: bookwyrm/templates/settings/announcements.html:22 -#: bookwyrm/templates/settings/federation.html:36 +#: bookwyrm/templates/settings/announcements/announcements.html:22 +#: bookwyrm/templates/settings/federation/instance_list.html:36 msgid "Date added" msgstr "Fecha agregada" -#: bookwyrm/templates/settings/announcements.html:26 +#: bookwyrm/templates/settings/announcements/announcements.html:26 msgid "Preview" msgstr "Vista preliminar" -#: bookwyrm/templates/settings/announcements.html:30 +#: bookwyrm/templates/settings/announcements/announcements.html:30 msgid "Start date" msgstr "Fecha de inicio" -#: bookwyrm/templates/settings/announcements.html:34 +#: bookwyrm/templates/settings/announcements/announcements.html:34 msgid "End date" msgstr "Fecha final" -#: bookwyrm/templates/settings/announcements.html:38 -#: bookwyrm/templates/settings/federation.html:46 -#: bookwyrm/templates/settings/manage_invite_requests.html:44 -#: bookwyrm/templates/settings/status_filter.html:5 -#: bookwyrm/templates/user_admin/user_admin.html:34 -#: bookwyrm/templates/user_admin/user_info.html:20 +#: 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 "Status" -#: bookwyrm/templates/settings/announcements.html:48 +#: bookwyrm/templates/settings/announcements/announcements.html:48 msgid "active" msgstr "activo" -#: bookwyrm/templates/settings/announcements.html:48 +#: bookwyrm/templates/settings/announcements/announcements.html:48 msgid "inactive" msgstr "inactivo" -#: bookwyrm/templates/settings/announcements.html:54 -msgid "No announcements found." +#: bookwyrm/templates/settings/announcements/announcements.html:52 +#, fuzzy +#| msgid "No announcements found." +msgid "No announcements found" msgstr "No se encontró ningun anuncio." -#: bookwyrm/templates/settings/dashboard.html:6 -#: bookwyrm/templates/settings/dashboard.html:8 +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:26 msgid "Dashboard" msgstr "Tablero" -#: bookwyrm/templates/settings/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 msgid "Total users" msgstr "Número de usuarios" -#: bookwyrm/templates/settings/dashboard.html:21 -#: bookwyrm/templates/settings/dashboard_user_chart.html:12 +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/dashboard_user_chart.html:12 msgid "Active this month" msgstr "Activos este mes" -#: bookwyrm/templates/settings/dashboard.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 msgid "Statuses" msgstr "Statuses" -#: bookwyrm/templates/settings/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 msgid "Works" msgstr "Obras" -#: bookwyrm/templates/settings/dashboard.html:43 +#: bookwyrm/templates/settings/dashboard/dashboard.html:43 #, python-format msgid "%(display_count)s open report" msgid_plural "%(display_count)s open reports" msgstr[0] "%(display_count)s informe abierto" msgstr[1] "%(display_count)s informes abiertos" -#: bookwyrm/templates/settings/dashboard.html:54 +#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #, python-format msgid "%(display_count)s invite request" msgid_plural "%(display_count)s invite requests" msgstr[0] "%(display_count)s solicitación de invitado" msgstr[1] "%(display_count)s solicitaciones de invitado" -#: bookwyrm/templates/settings/dashboard.html:65 +#: bookwyrm/templates/settings/dashboard/dashboard.html:65 msgid "Instance Activity" msgstr "Actividad de instancia" -#: bookwyrm/templates/settings/dashboard.html:83 +#: bookwyrm/templates/settings/dashboard/dashboard.html:83 msgid "Interval:" msgstr "Intervalo:" -#: bookwyrm/templates/settings/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:87 msgid "Days" msgstr "Dias" -#: bookwyrm/templates/settings/dashboard.html:87 +#: bookwyrm/templates/settings/dashboard/dashboard.html:88 msgid "Weeks" msgstr "Semanas" -#: bookwyrm/templates/settings/dashboard.html:100 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 msgid "User signup activity" msgstr "Actividad de inscripciones de usuarios" -#: bookwyrm/templates/settings/dashboard.html:106 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 msgid "Status activity" msgstr "Actividad de status" -#: bookwyrm/templates/settings/dashboard_status_chart.html:7 +#: bookwyrm/templates/settings/dashboard/dashboard_status_chart.html:7 msgid "Statuses posted" msgstr "Statuses publicados" -#: bookwyrm/templates/settings/dashboard_user_chart.html:7 +#: bookwyrm/templates/settings/dashboard/dashboard_user_chart.html:7 msgid "Total" msgstr "Suma" -#: bookwyrm/templates/settings/domain_form.html:5 -#: bookwyrm/templates/settings/email_blocklist.html:10 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 msgid "Add domain" msgstr "Agregar dominio" -#: bookwyrm/templates/settings/domain_form.html:11 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 msgid "Domain:" msgstr "Dominio:" -#: bookwyrm/templates/settings/edit_server.html:3 -#: bookwyrm/templates/settings/edit_server.html:6 -#: bookwyrm/templates/settings/edit_server.html:20 -#: bookwyrm/templates/settings/federation.html:9 -#: bookwyrm/templates/settings/federation.html:10 -#: bookwyrm/templates/settings/server_blocklist.html:3 -#: bookwyrm/templates/settings/server_blocklist.html:20 -msgid "Add instance" -msgstr "Agregar instancia" - -#: bookwyrm/templates/settings/edit_server.html:7 -#: bookwyrm/templates/settings/server_blocklist.html:7 -msgid "Back to instance list" -msgstr "Volver a la lista de instancias" - -#: bookwyrm/templates/settings/edit_server.html:16 -#: bookwyrm/templates/settings/server_blocklist.html:16 -msgid "Import block list" -msgstr "Importar lista de bloqueo" - -#: bookwyrm/templates/settings/edit_server.html:30 -msgid "Instance:" -msgstr "Instancia:" - -#: bookwyrm/templates/settings/edit_server.html:37 -#: bookwyrm/templates/settings/federated_server.html:31 -#: bookwyrm/templates/user_admin/user_info.html:125 -msgid "Status:" -msgstr "Status:" - -#: bookwyrm/templates/settings/edit_server.html:48 -#: bookwyrm/templates/settings/federated_server.html:23 -#: bookwyrm/templates/user_admin/user_info.html:117 -msgid "Software:" -msgstr "Software:" - -#: bookwyrm/templates/settings/edit_server.html:55 -#: bookwyrm/templates/settings/federated_server.html:27 -#: bookwyrm/templates/user_admin/user_info.html:121 -msgid "Version:" -msgstr "Versión:" - -#: bookwyrm/templates/settings/edit_server.html:64 -msgid "Notes:" -msgstr "Notas:" - -#: bookwyrm/templates/settings/email_blocklist.html:5 -#: bookwyrm/templates/settings/email_blocklist.html:7 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 #: bookwyrm/templates/settings/layout.html:59 msgid "Email Blocklist" msgstr "Lista de bloqueo de correos electrónicos" -#: bookwyrm/templates/settings/email_blocklist.html:18 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 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." -#: bookwyrm/templates/settings/email_blocklist.html:25 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 msgid "Domain" msgstr "Dominio" -#: bookwyrm/templates/settings/email_blocklist.html:29 -#: bookwyrm/templates/settings/ip_blocklist.html:27 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 msgid "Options" msgstr "Opciones" -#: bookwyrm/templates/settings/email_blocklist.html:38 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 #, python-format msgid "%(display_count)s user" msgid_plural "%(display_count)s users" msgstr[0] "%(display_count)s usuario" msgstr[1] "%(display_count)s usuarios" -#: bookwyrm/templates/settings/federated_server.html:19 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +#, fuzzy +#| msgid "No users currently blocked." +msgid "No email domains currently blocked" +msgstr "No hay ningún usuario bloqueado actualmente." + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "Agregar instancia" + +#: bookwyrm/templates/settings/federation/edit_instance.html:7 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:7 +msgid "Back to instance list" +msgstr "Volver a la lista de instancias" + +#: bookwyrm/templates/settings/federation/edit_instance.html:16 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:16 +msgid "Import block list" +msgstr "Importar lista de bloqueo" + +#: bookwyrm/templates/settings/federation/edit_instance.html:30 +msgid "Instance:" +msgstr "Instancia:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:39 +#: bookwyrm/templates/settings/federation/instance.html:28 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "Status:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:22 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "Software:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:61 +#: bookwyrm/templates/settings/federation/instance.html:25 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "Versión:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:70 +msgid "Notes:" +msgstr "Notas:" + +#: bookwyrm/templates/settings/federation/instance.html:19 msgid "Details" msgstr "Detalles" -#: bookwyrm/templates/settings/federated_server.html:39 +#: bookwyrm/templates/settings/federation/instance.html:35 #: bookwyrm/templates/user/layout.html:63 msgid "Activity" msgstr "Actividad" -#: bookwyrm/templates/settings/federated_server.html:43 +#: bookwyrm/templates/settings/federation/instance.html:38 msgid "Users:" msgstr "Usuarios:" -#: bookwyrm/templates/settings/federated_server.html:46 -#: bookwyrm/templates/settings/federated_server.html:53 +#: bookwyrm/templates/settings/federation/instance.html:41 +#: bookwyrm/templates/settings/federation/instance.html:47 msgid "View all" msgstr "Ver todos" -#: bookwyrm/templates/settings/federated_server.html:50 -#: bookwyrm/templates/user_admin/user_info.html:59 +#: bookwyrm/templates/settings/federation/instance.html:44 +#: bookwyrm/templates/settings/users/user_info.html:56 msgid "Reports:" msgstr "Informes:" -#: bookwyrm/templates/settings/federated_server.html:57 +#: bookwyrm/templates/settings/federation/instance.html:50 msgid "Followed by us:" msgstr "Seguido por nosotros:" -#: bookwyrm/templates/settings/federated_server.html:63 +#: bookwyrm/templates/settings/federation/instance.html:55 msgid "Followed by them:" msgstr "Seguido por ellos:" -#: bookwyrm/templates/settings/federated_server.html:69 +#: bookwyrm/templates/settings/federation/instance.html:60 msgid "Blocked by us:" msgstr "Bloqueado por nosotros:" -#: bookwyrm/templates/settings/federated_server.html:82 -#: bookwyrm/templates/user_admin/user_info.html:130 +#: bookwyrm/templates/settings/federation/instance.html:72 +#: bookwyrm/templates/settings/users/user_info.html:110 msgid "Notes" msgstr "Notas" -#: bookwyrm/templates/settings/federated_server.html:85 +#: bookwyrm/templates/settings/federation/instance.html:75 msgid "Edit" msgstr "Editar" -#: bookwyrm/templates/settings/federated_server.html:105 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:8 +#: bookwyrm/templates/settings/federation/instance.html:79 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:8 msgid "Actions" msgstr "Acciones" -#: bookwyrm/templates/settings/federated_server.html:109 +#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/snippets/block_button.html:5 msgid "Block" msgstr "Bloquear" -#: bookwyrm/templates/settings/federated_server.html:110 +#: bookwyrm/templates/settings/federation/instance.html:99 msgid "All users from this instance will be deactivated." msgstr "Todos los usuarios en esta instancia serán desactivados." -#: bookwyrm/templates/settings/federated_server.html:115 +#: bookwyrm/templates/settings/federation/instance.html:104 #: bookwyrm/templates/snippets/block_button.html:10 msgid "Un-block" msgstr "Desbloquear" -#: bookwyrm/templates/settings/federated_server.html:116 +#: bookwyrm/templates/settings/federation/instance.html:105 msgid "All users from this instance will be re-activated." msgstr "Todos los usuarios en esta instancia serán re-activados." -#: bookwyrm/templates/settings/federation.html:3 -#: bookwyrm/templates/settings/federation.html:5 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +msgid "Import Blocklist" +msgstr "Importar lista de bloqueo" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:26 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "¡Meta logrado!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:30 +msgid "Successfully blocked:" +msgstr "Se bloqueó exitosamente:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +msgid "Failed:" +msgstr "Falló:" + +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:45 msgid "Federated Instances" msgstr "Instancias federalizadas" -#: bookwyrm/templates/settings/federation.html:32 -#: bookwyrm/templates/user_admin/server_filter.html:5 +#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Nombre de instancia" -#: bookwyrm/templates/settings/federation.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:40 msgid "Software" msgstr "Software" -#: bookwyrm/templates/settings/ip_address_form.html:5 -#: bookwyrm/templates/settings/ip_blocklist.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:63 +#, fuzzy +#| msgid "No announcements found." +msgid "No instances found" +msgstr "No se encontró ningun anuncio." + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "Solicitudes de invitación" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "Solicitudes de invitación ignoradas" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:35 +msgid "Date requested" +msgstr "Fecha solicitada" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:39 +msgid "Date accepted" +msgstr "Fecha de aceptación" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:42 +msgid "Email" +msgstr "Correo electronico" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +msgid "Action" +msgstr "Acción" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +msgid "No requests" +msgstr "No solicitudes" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "Aceptado" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "Enviado" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "Solicitado" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +msgid "Send invite" +msgstr "Enviar invitación" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +msgid "Re-send invite" +msgstr "Re-enviar invitación" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +msgid "Ignore" +msgstr "Ignorar" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +msgid "Un-ignore" +msgstr "Des-ignorar" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +msgid "Back to pending requests" +msgstr "Volver a las solicitudes pendientes" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +msgid "View ignored requests" +msgstr "Ver solicitudes ignoradas" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "Generar nuevo invitación" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "Vencimiento:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "Límite de uso:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "Crear invitación" + +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "Enlace" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "Vence" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "Número máximo de usos" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "Número de usos" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "No invitaciónes activas" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 #, fuzzy #| msgid "IP address" msgid "Add IP address" msgstr "Dirección IP" -#: bookwyrm/templates/settings/ip_address_form.html:11 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." msgstr "" -#: bookwyrm/templates/settings/ip_address_form.html:18 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 #, fuzzy #| msgid "IP address" msgid "IP Address:" msgstr "Dirección IP" -#: bookwyrm/templates/settings/ip_blocklist.html:5 -#: bookwyrm/templates/settings/ip_blocklist.html:7 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 #: bookwyrm/templates/settings/layout.html:63 #, fuzzy #| msgid "Import Blocklist" msgid "IP Address Blocklist" msgstr "Importar lista de bloqueo" -#: bookwyrm/templates/settings/ip_blocklist.html:18 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." msgstr "" -#: bookwyrm/templates/settings/ip_blocklist.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 #, fuzzy #| msgid "IP address" msgid "Address" msgstr "Dirección IP" -#: bookwyrm/templates/settings/ip_tooltip.html:6 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +#, fuzzy +#| msgid "No users currently blocked." +msgid "No IP addresses currently blocked" +msgstr "No hay ningún usuario bloqueado actualmente." + +#: bookwyrm/templates/settings/ip_blocklist/ip_tooltip.html:6 msgid "You can block IP ranges using CIDR syntax." msgstr "" @@ -2464,6 +2526,12 @@ msgstr "Administrar usuarios" msgid "Moderation" msgstr "Moderación" +#: bookwyrm/templates/settings/layout.html:55 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "Informes" + #: bookwyrm/templates/settings/layout.html:68 msgid "Instance Settings" msgstr "Configuración de instancia" @@ -2474,231 +2542,359 @@ msgstr "Configuración de instancia" msgid "Site Settings" msgstr "Configuración de sitio" -#: bookwyrm/templates/settings/layout.html:79 -#: bookwyrm/templates/settings/site.html:13 +#: bookwyrm/templates/settings/reports/report.html:5 +#: bookwyrm/templates/settings/reports/report.html:8 +#: bookwyrm/templates/settings/reports/report_preview.html:6 +#, python-format +msgid "Report #%(report_id)s: %(username)s" +msgstr "Reportar #%(report_id)s: %(username)s" + +#: bookwyrm/templates/settings/reports/report.html:9 +msgid "Back to reports" +msgstr "Volver a los informes" + +#: bookwyrm/templates/settings/reports/report.html:23 +msgid "Moderator Comments" +msgstr "Comentarios de moderador" + +#: bookwyrm/templates/settings/reports/report.html:41 +#: bookwyrm/templates/snippets/create_status.html:28 +msgid "Comment" +msgstr "Comentario" + +#: bookwyrm/templates/settings/reports/report.html:46 +msgid "Reported statuses" +msgstr "Statuses reportados" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "No statuses reported" +msgstr "Ningún estatus reportado" + +#: bookwyrm/templates/settings/reports/report.html:54 +msgid "Status has been deleted" +msgstr "Status ha sido eliminado" + +#: bookwyrm/templates/settings/reports/report_preview.html:13 +msgid "No notes provided" +msgstr "No se proporcionó notas" + +#: bookwyrm/templates/settings/reports/report_preview.html:20 +#, python-format +msgid "Reported by %(username)s" +msgstr "Reportado por %(username)s" + +#: bookwyrm/templates/settings/reports/report_preview.html:30 +msgid "Re-open" +msgstr "Reabrir" + +#: bookwyrm/templates/settings/reports/report_preview.html:32 +msgid "Resolve" +msgstr "Resolver" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "Informes: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "Informes: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "Resuelto" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "No se encontró ningún informe." + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:21 msgid "Instance Info" msgstr "Información de instancia" -#: bookwyrm/templates/settings/layout.html:80 -#: bookwyrm/templates/settings/site.html:44 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:54 msgid "Images" msgstr "Imagenes" -#: bookwyrm/templates/settings/layout.html:81 -#: bookwyrm/templates/settings/site.html:64 +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:74 msgid "Footer Content" msgstr "Contenido del pie de página" -#: bookwyrm/templates/settings/layout.html:82 -#: bookwyrm/templates/settings/site.html:86 +#: bookwyrm/templates/settings/site.html:13 +#: bookwyrm/templates/settings/site.html:98 msgid "Registration" msgstr "Registración" -#: bookwyrm/templates/settings/manage_invite_requests.html:4 -#: bookwyrm/templates/settings/manage_invite_requests.html:11 -#: bookwyrm/templates/settings/manage_invite_requests.html:25 -#: bookwyrm/templates/settings/manage_invites.html:11 -msgid "Invite Requests" -msgstr "Solicitudes de invitación" - -#: bookwyrm/templates/settings/manage_invite_requests.html:23 -msgid "Ignored Invite Requests" -msgstr "Solicitudes de invitación ignoradas" - -#: bookwyrm/templates/settings/manage_invite_requests.html:35 -msgid "Date requested" -msgstr "Fecha solicitada" - -#: bookwyrm/templates/settings/manage_invite_requests.html:39 -msgid "Date accepted" -msgstr "Fecha de aceptación" - -#: bookwyrm/templates/settings/manage_invite_requests.html:42 -msgid "Email" -msgstr "Correo electronico" - -#: bookwyrm/templates/settings/manage_invite_requests.html:47 -msgid "Action" -msgstr "Acción" - -#: bookwyrm/templates/settings/manage_invite_requests.html:50 -msgid "No requests" -msgstr "No solicitudes" - -#: bookwyrm/templates/settings/manage_invite_requests.html:59 -#: bookwyrm/templates/settings/status_filter.html:16 -msgid "Accepted" -msgstr "Aceptado" - -#: bookwyrm/templates/settings/manage_invite_requests.html:61 -#: bookwyrm/templates/settings/status_filter.html:12 -msgid "Sent" -msgstr "Enviado" - -#: bookwyrm/templates/settings/manage_invite_requests.html:63 -#: bookwyrm/templates/settings/status_filter.html:8 -msgid "Requested" -msgstr "Solicitado" - -#: bookwyrm/templates/settings/manage_invite_requests.html:73 -msgid "Send invite" -msgstr "Enviar invitación" - -#: bookwyrm/templates/settings/manage_invite_requests.html:75 -msgid "Re-send invite" -msgstr "Re-enviar invitación" - -#: bookwyrm/templates/settings/manage_invite_requests.html:95 -msgid "Ignore" -msgstr "Ignorar" - -#: bookwyrm/templates/settings/manage_invite_requests.html:97 -msgid "Un-ignore" -msgstr "Des-ignorar" - -#: bookwyrm/templates/settings/manage_invite_requests.html:108 -msgid "Back to pending requests" -msgstr "Volver a las solicitudes pendientes" - -#: bookwyrm/templates/settings/manage_invite_requests.html:110 -msgid "View ignored requests" -msgstr "Ver solicitudes ignoradas" - -#: bookwyrm/templates/settings/manage_invites.html:21 -msgid "Generate New Invite" -msgstr "Generar nuevo invitación" - -#: bookwyrm/templates/settings/manage_invites.html:27 -msgid "Expiry:" -msgstr "Vencimiento:" - -#: bookwyrm/templates/settings/manage_invites.html:33 -msgid "Use limit:" -msgstr "Límite de uso:" - -#: bookwyrm/templates/settings/manage_invites.html:40 -msgid "Create Invite" -msgstr "Crear invitación" - -#: bookwyrm/templates/settings/manage_invites.html:47 -msgid "Link" -msgstr "Enlace" - -#: bookwyrm/templates/settings/manage_invites.html:48 -msgid "Expires" -msgstr "Vence" - -#: bookwyrm/templates/settings/manage_invites.html:49 -msgid "Max uses" -msgstr "Número máximo de usos" - -#: bookwyrm/templates/settings/manage_invites.html:50 -msgid "Times used" -msgstr "Número de usos" - -#: bookwyrm/templates/settings/manage_invites.html:53 -msgid "No active invites" -msgstr "No invitaciónes activas" - -#: bookwyrm/templates/settings/server_blocklist.html:6 -msgid "Import Blocklist" -msgstr "Importar lista de bloqueo" - -#: bookwyrm/templates/settings/server_blocklist.html:26 -#: bookwyrm/templates/snippets/goal_progress.html:7 -msgid "Success!" -msgstr "¡Meta logrado!" - -#: bookwyrm/templates/settings/server_blocklist.html:30 -msgid "Successfully blocked:" -msgstr "Se bloqueó exitosamente:" - -#: bookwyrm/templates/settings/server_blocklist.html:32 -msgid "Failed:" -msgstr "Falló:" - -#: bookwyrm/templates/settings/site.html:15 +#: bookwyrm/templates/settings/site.html:24 msgid "Instance Name:" msgstr "Nombre de instancia:" -#: bookwyrm/templates/settings/site.html:19 +#: bookwyrm/templates/settings/site.html:28 msgid "Tagline:" msgstr "Lema:" -#: bookwyrm/templates/settings/site.html:23 +#: bookwyrm/templates/settings/site.html:32 msgid "Instance description:" msgstr "Descripción de instancia:" -#: bookwyrm/templates/settings/site.html:27 +#: bookwyrm/templates/settings/site.html:36 msgid "Short description:" msgstr "Descripción corta:" -#: bookwyrm/templates/settings/site.html:28 +#: bookwyrm/templates/settings/site.html:37 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown." msgstr "Utilizado cuando la instancia se ve de una vista previa en joinbookwyrm.com. No es compatible con html o markdown." -#: bookwyrm/templates/settings/site.html:32 +#: bookwyrm/templates/settings/site.html:41 msgid "Code of conduct:" msgstr "Código de conducta:" -#: bookwyrm/templates/settings/site.html:36 +#: bookwyrm/templates/settings/site.html:45 msgid "Privacy Policy:" msgstr "Política de privacidad:" -#: bookwyrm/templates/settings/site.html:47 +#: bookwyrm/templates/settings/site.html:57 msgid "Logo:" msgstr "Logo:" -#: bookwyrm/templates/settings/site.html:51 +#: bookwyrm/templates/settings/site.html:61 msgid "Logo small:" msgstr "Logo pequeño:" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:65 msgid "Favicon:" msgstr "Favicon:" -#: bookwyrm/templates/settings/site.html:66 +#: bookwyrm/templates/settings/site.html:77 msgid "Support link:" msgstr "Enlace de apoyo:" -#: bookwyrm/templates/settings/site.html:70 +#: bookwyrm/templates/settings/site.html:81 msgid "Support title:" msgstr "Título de apoyo:" -#: bookwyrm/templates/settings/site.html:74 +#: bookwyrm/templates/settings/site.html:85 msgid "Admin email:" msgstr "Correo electrónico de administradorx:" -#: bookwyrm/templates/settings/site.html:78 +#: bookwyrm/templates/settings/site.html:89 msgid "Additional info:" msgstr "Más informacion:" -#: bookwyrm/templates/settings/site.html:90 +#: bookwyrm/templates/settings/site.html:103 msgid "Allow registration" msgstr "Permitir registración" -#: bookwyrm/templates/settings/site.html:96 +#: bookwyrm/templates/settings/site.html:109 msgid "Allow invite requests" msgstr "Permitir solicitudes de invitación" -#: bookwyrm/templates/settings/site.html:102 +#: bookwyrm/templates/settings/site.html:115 msgid "Require users to confirm email address" msgstr "Requerir a usuarios a confirmar dirección de correo electrónico" -#: bookwyrm/templates/settings/site.html:104 +#: bookwyrm/templates/settings/site.html:117 msgid "(Recommended if registration is open)" msgstr "(Recomendado si la registración es abierta)" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:120 msgid "Registration closed text:" msgstr "Texto de registración cerrada:" -#: bookwyrm/templates/settings/site.html:111 +#: bookwyrm/templates/settings/site.html:124 #, fuzzy #| msgid "Invite Requests" msgid "Invite request text:" msgstr "Solicitudes de invitación" +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 +msgid "Permanently delete user" +msgstr "Eliminar usuario permanentemente" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "¿Estás seguro que quieres eliminar la cuenta de %(username)s's? Esta acción no se puede deshacer. Para continuar, por favor, ingrese tu contraseña para confirmar eliminación." + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "Tu contraseña:" + +#: bookwyrm/templates/settings/users/user.html:7 +msgid "Back to users" +msgstr "Volver a usuarios" + +#: bookwyrm/templates/settings/users/user_admin.html:7 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "Usuarios %(instance_name)s" + +#: bookwyrm/templates/settings/users/user_admin.html:22 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "Nombre de usuario" + +#: bookwyrm/templates/settings/users/user_admin.html:26 +msgid "Date Added" +msgstr "Fecha agregada" + +#: bookwyrm/templates/settings/users/user_admin.html:30 +msgid "Last Active" +msgstr "Actividad reciente" + +#: bookwyrm/templates/settings/users/user_admin.html:38 +msgid "Remote instance" +msgstr "Instancia remota" + +#: bookwyrm/templates/settings/users/user_admin.html:47 +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "Active" +msgstr "Activ@" + +#: bookwyrm/templates/settings/users/user_admin.html:47 +#: bookwyrm/templates/settings/users/user_info.html:28 +msgid "Inactive" +msgstr "Inactiv@" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +#: bookwyrm/templates/settings/users/user_info.html:120 +msgid "Not set" +msgstr "No establecido" + +#: bookwyrm/templates/settings/users/user_info.html:16 +msgid "View user profile" +msgstr "Ver perfil de usuario" + +#: bookwyrm/templates/settings/users/user_info.html:36 +msgid "Local" +msgstr "Local" + +#: bookwyrm/templates/settings/users/user_info.html:38 +msgid "Remote" +msgstr "Remoto" + +#: bookwyrm/templates/settings/users/user_info.html:47 +msgid "User details" +msgstr "Detalles" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "Email:" +msgstr "Correo electronico:" + +#: bookwyrm/templates/settings/users/user_info.html:61 +msgid "(View reports)" +msgstr "(Ver informes)" + +#: bookwyrm/templates/settings/users/user_info.html:67 +msgid "Blocked by count:" +msgstr "Recuento de usuarios que han bloqueado este usuario:" + +#: bookwyrm/templates/settings/users/user_info.html:70 +msgid "Last active date:" +msgstr "Fecha de actividad más reciente:" + +#: bookwyrm/templates/settings/users/user_info.html:73 +msgid "Manually approved followers:" +msgstr "Seguidores aprobados a mano:" + +#: bookwyrm/templates/settings/users/user_info.html:76 +msgid "Discoverable:" +msgstr "Reconocible:" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Deactivation reason:" +msgstr "Razón de desactivación:" + +#: bookwyrm/templates/settings/users/user_info.html:95 +msgid "Instance details" +msgstr "Detalles de instancia" + +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "View instance" +msgstr "Ver instancia" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:5 +msgid "Permanently deleted" +msgstr "Eliminado permanentemente" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:13 +msgid "Send direct message" +msgstr "Enviar mensaje directo" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 +msgid "Suspend user" +msgstr "Suspender usuario" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 +msgid "Un-suspend user" +msgstr "Des-suspender usuario" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 +msgid "Access level:" +msgstr "Nivel de acceso:" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +msgid "Create Shelf" +msgstr "Crear estante" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "Editar estante" + +#: bookwyrm/templates/shelf/shelf.html:28 bookwyrm/views/shelf.py:56 +msgid "All books" +msgstr "Todos los libros" + +#: bookwyrm/templates/shelf/shelf.html:55 +msgid "Create shelf" +msgstr "Crear estante" + +#: bookwyrm/templates/shelf/shelf.html:77 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:84 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "(mostrando %(start)s-%(end)s)" + +#: bookwyrm/templates/shelf/shelf.html:96 +msgid "Edit shelf" +msgstr "Editar estante" + +#: bookwyrm/templates/shelf/shelf.html:104 +msgid "Delete shelf" +msgstr "Eliminar estante" + +#: bookwyrm/templates/shelf/shelf.html:130 +#: bookwyrm/templates/shelf/shelf.html:154 +msgid "Shelved" +msgstr "Archivado" + +#: bookwyrm/templates/shelf/shelf.html:131 +#: bookwyrm/templates/shelf/shelf.html:158 +msgid "Started" +msgstr "Empezado" + +#: bookwyrm/templates/shelf/shelf.html:132 +#: bookwyrm/templates/shelf/shelf.html:161 +msgid "Finished" +msgstr "Terminado" + +#: bookwyrm/templates/shelf/shelf.html:187 +msgid "This shelf is empty." +msgstr "Este estante está vacio." + #: bookwyrm/templates/snippets/announcement.html:31 #, python-format msgid "Posted by %(username)s" @@ -2743,24 +2939,21 @@ msgid "Some thoughts on the book" msgstr "Algunos pensamientos sobre el libro" #: bookwyrm/templates/snippets/create_status/comment.html:26 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:16 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:15 msgid "Progress:" msgstr "Progreso:" #: bookwyrm/templates/snippets/create_status/comment.html:52 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:31 -#: bookwyrm/templates/snippets/readthrough_form.html:22 +#: bookwyrm/templates/snippets/progress_field.html:18 msgid "pages" msgstr "páginas" #: bookwyrm/templates/snippets/create_status/comment.html:58 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:32 -#: bookwyrm/templates/snippets/readthrough_form.html:23 +#: bookwyrm/templates/snippets/progress_field.html:23 msgid "percent" msgstr "por ciento" #: bookwyrm/templates/snippets/create_status/comment.html:65 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:37 #, python-format msgid "of %(pages)s pages" msgstr "de %(pages)s páginas" @@ -2943,29 +3136,29 @@ msgstr[1] "Reseña de \"%(book_title)s\" (%(display_rating)s estrellas): %(revie msgid "Review of \"%(book_title)s\": %(review_title)s" msgstr "Reseña de \"%(book_title)s\": %(review_title)s" -#: bookwyrm/templates/snippets/goal_card.html:23 +#: bookwyrm/templates/snippets/goal_form.html:3 #, python-format -msgid "You can set or change your reading goal any time from your profile page" -msgstr "Puedes establecer o cambiar tu meta de lectura en cualquier momento que desees desde tu perfil" +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "Establece una meta para cuantos libros leerás en %(year)s, y seguir tu progreso durante el año." -#: bookwyrm/templates/snippets/goal_form.html:9 +#: bookwyrm/templates/snippets/goal_form.html:12 msgid "Reading goal:" msgstr "Meta de lectura:" -#: bookwyrm/templates/snippets/goal_form.html:14 +#: bookwyrm/templates/snippets/goal_form.html:17 msgid "books" msgstr "libros" -#: bookwyrm/templates/snippets/goal_form.html:19 +#: bookwyrm/templates/snippets/goal_form.html:22 msgid "Goal privacy:" msgstr "Privacidad de meta:" -#: bookwyrm/templates/snippets/goal_form.html:26 +#: bookwyrm/templates/snippets/goal_form.html:29 #: bookwyrm/templates/snippets/reading_modals/layout.html:13 msgid "Post to feed" msgstr "Compartir con tu feed" -#: bookwyrm/templates/snippets/goal_form.html:30 +#: bookwyrm/templates/snippets/goal_form.html:33 msgid "Set goal" msgstr "Establecer meta" @@ -3041,18 +3234,18 @@ msgstr "Calificar" msgid "Finish \"%(book_title)s\"" msgstr "Terminar \"%(book_title)s\"" -#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:22 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:23 #: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:20 #: bookwyrm/templates/snippets/readthrough_form.html:7 msgid "Started reading" msgstr "Lectura se empezó" -#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:30 -#: bookwyrm/templates/snippets/readthrough_form.html:30 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:31 +#: bookwyrm/templates/snippets/readthrough_form.html:20 msgid "Finished reading" msgstr "Lectura se terminó" -#: bookwyrm/templates/snippets/reading_modals/form.html:8 +#: bookwyrm/templates/snippets/reading_modals/form.html:9 msgid "(Optional)" msgstr "(Opcional)" @@ -3083,6 +3276,20 @@ msgstr "Inscribirse" msgid "Report" msgstr "Reportar" +#: bookwyrm/templates/snippets/report_modal.html:6 +#, python-format +msgid "Report @%(username)s" +msgstr "Reportar @%(username)s" + +#: bookwyrm/templates/snippets/report_modal.html:23 +#, python-format +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." + +#: bookwyrm/templates/snippets/report_modal.html:24 +msgid "More info about this report:" +msgstr "Más información sobre este informe:" + #: bookwyrm/templates/snippets/search_result_text.html:36 msgid "Import book" msgstr "Importar libro" @@ -3214,12 +3421,6 @@ msgstr "Más opciones" msgid "Delete & re-draft" msgstr "Eliminar y recomponer" -#: bookwyrm/templates/snippets/status/status_options.html:35 -#: bookwyrm/templates/snippets/user_options.html:13 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:13 -msgid "Send direct message" -msgstr "Enviar mensaje directo" - #: bookwyrm/templates/snippets/suggested_users.html:16 #, python-format msgid "%(mutuals)s follower you follow" @@ -3259,6 +3460,35 @@ msgstr "Mostrar más" msgid "Show less" msgstr "Mostrar menos" +#: bookwyrm/templates/user/books_header.html:5 +#, python-format +msgid "%(username)s's books" +msgstr "Los libros de %(username)s" + +#: bookwyrm/templates/user/goal.html:8 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "%(year)s Progreso de la meta de lectura" + +#: bookwyrm/templates/user/goal.html:12 +msgid "Edit Goal" +msgstr "Editar meta" + +#: bookwyrm/templates/user/goal.html:28 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "%(name)s no ha establecido una meta de lectura para %(year)s." + +#: bookwyrm/templates/user/goal.html:40 +#, python-format +msgid "Your %(year)s Books" +msgstr "Tus libros de %(year)s" + +#: bookwyrm/templates/user/goal.html:42 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "Los libros de %(username)s para %(year)s" + #: bookwyrm/templates/user/layout.html:18 bookwyrm/templates/user/user.html:10 msgid "User Profile" msgstr "Perfil de usuario" @@ -3295,71 +3525,6 @@ msgstr "Siguiendo" msgid "%(username)s isn't following any users" msgstr "%(username)s no sigue a nadie" -#: bookwyrm/templates/user/shelf/books_header.html:5 -#, python-format -msgid "%(username)s's books" -msgstr "Los libros de %(username)s" - -#: bookwyrm/templates/user/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/user/shelf/create_shelf_form.html:22 -msgid "Create Shelf" -msgstr "Crear estante" - -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:5 -msgid "Edit Shelf" -msgstr "Editar estante" - -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:26 -msgid "Update shelf" -msgstr "Actualizar estante" - -#: bookwyrm/templates/user/shelf/shelf.html:28 bookwyrm/views/shelf.py:56 -msgid "All books" -msgstr "Todos los libros" - -#: bookwyrm/templates/user/shelf/shelf.html:55 -msgid "Create shelf" -msgstr "Crear estante" - -#: bookwyrm/templates/user/shelf/shelf.html:76 -#, python-format -msgid "%(formatted_count)s book" -msgid_plural "%(formatted_count)s books" -msgstr[0] "" -msgstr[1] "" - -#: bookwyrm/templates/user/shelf/shelf.html:83 -#, python-format -msgid "(showing %(start)s-%(end)s)" -msgstr "(mostrando %(start)s-%(end)s)" - -#: bookwyrm/templates/user/shelf/shelf.html:94 -msgid "Edit shelf" -msgstr "Editar estante" - -#: bookwyrm/templates/user/shelf/shelf.html:113 -#: bookwyrm/templates/user/shelf/shelf.html:137 -msgid "Shelved" -msgstr "Archivado" - -#: bookwyrm/templates/user/shelf/shelf.html:114 -#: bookwyrm/templates/user/shelf/shelf.html:141 -msgid "Started" -msgstr "Empezado" - -#: bookwyrm/templates/user/shelf/shelf.html:115 -#: bookwyrm/templates/user/shelf/shelf.html:144 -msgid "Finished" -msgstr "Terminado" - -#: bookwyrm/templates/user/shelf/shelf.html:170 -msgid "This shelf is empty." -msgstr "Este estante está vacio." - -#: bookwyrm/templates/user/shelf/shelf.html:176 -msgid "Delete shelf" -msgstr "Eliminar estante" - #: bookwyrm/templates/user/user.html:16 msgid "Edit profile" msgstr "Editar perfil" @@ -3413,129 +3578,6 @@ msgstr[1] "%(mutuals_display)s seguidores que sigues" msgid "No followers you follow" msgstr "Ningún seguidor que tu sigues" -#: bookwyrm/templates/user_admin/delete_user_form.html:5 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:31 -msgid "Permanently delete user" -msgstr "Eliminar usuario permanentemente" - -#: bookwyrm/templates/user_admin/delete_user_form.html:12 -#, python-format -msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." -msgstr "¿Estás seguro que quieres eliminar la cuenta de %(username)s's? Esta acción no se puede deshacer. Para continuar, por favor, ingrese tu contraseña para confirmar eliminación." - -#: bookwyrm/templates/user_admin/delete_user_form.html:17 -msgid "Your password:" -msgstr "Tu contraseña:" - -#: bookwyrm/templates/user_admin/user.html:8 -msgid "Back to users" -msgstr "Volver a usuarios" - -#: bookwyrm/templates/user_admin/user_admin.html:7 -#, python-format -msgid "Users: %(instance_name)s" -msgstr "Usuarios %(instance_name)s" - -#: bookwyrm/templates/user_admin/user_admin.html:22 -#: bookwyrm/templates/user_admin/username_filter.html:5 -msgid "Username" -msgstr "Nombre de usuario" - -#: bookwyrm/templates/user_admin/user_admin.html:26 -msgid "Date Added" -msgstr "Fecha agregada" - -#: bookwyrm/templates/user_admin/user_admin.html:30 -msgid "Last Active" -msgstr "Actividad reciente" - -#: bookwyrm/templates/user_admin/user_admin.html:38 -msgid "Remote instance" -msgstr "Instancia remota" - -#: bookwyrm/templates/user_admin/user_admin.html:47 -#: bookwyrm/templates/user_admin/user_info.html:24 -msgid "Active" -msgstr "Activ@" - -#: bookwyrm/templates/user_admin/user_admin.html:47 -#: bookwyrm/templates/user_admin/user_info.html:28 -msgid "Inactive" -msgstr "Inactiv@" - -#: bookwyrm/templates/user_admin/user_admin.html:52 -#: bookwyrm/templates/user_admin/user_info.html:140 -msgid "Not set" -msgstr "No establecido" - -#: bookwyrm/templates/user_admin/user_info.html:16 -msgid "View user profile" -msgstr "Ver perfil de usuario" - -#: bookwyrm/templates/user_admin/user_info.html:36 -msgid "Local" -msgstr "Local" - -#: bookwyrm/templates/user_admin/user_info.html:38 -msgid "Remote" -msgstr "Remoto" - -#: bookwyrm/templates/user_admin/user_info.html:47 -msgid "User details" -msgstr "Detalles" - -#: bookwyrm/templates/user_admin/user_info.html:52 -msgid "Email:" -msgstr "Correo electronico:" - -#: bookwyrm/templates/user_admin/user_info.html:64 -msgid "(View reports)" -msgstr "(Ver informes)" - -#: bookwyrm/templates/user_admin/user_info.html:72 -msgid "Blocked by count:" -msgstr "Recuento de usuarios que han bloqueado este usuario:" - -#: bookwyrm/templates/user_admin/user_info.html:77 -msgid "Last active date:" -msgstr "Fecha de actividad más reciente:" - -#: bookwyrm/templates/user_admin/user_info.html:82 -msgid "Manually approved followers:" -msgstr "Seguidores aprobados a mano:" - -#: bookwyrm/templates/user_admin/user_info.html:87 -msgid "Discoverable:" -msgstr "Reconocible:" - -#: bookwyrm/templates/user_admin/user_info.html:93 -msgid "Deactivation reason:" -msgstr "Razón de desactivación:" - -#: bookwyrm/templates/user_admin/user_info.html:111 -msgid "Instance details" -msgstr "Detalles de instancia" - -#: bookwyrm/templates/user_admin/user_info.html:137 -msgid "View instance" -msgstr "Ver instancia" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:5 -msgid "Permanently deleted" -msgstr "Eliminado permanentemente" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:20 -msgid "Suspend user" -msgstr "Suspender usuario" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:25 -msgid "Un-suspend user" -msgstr "Des-suspender usuario" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:47 -msgid "Access level:" -msgstr "Nivel de acceso:" - #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 msgid "File exceeds maximum size: 10MB" msgstr "Archivo excede el tamaño máximo: 10MB" @@ -3568,6 +3610,9 @@ msgstr "Un enlace para reestablecer tu contraseña se enviará a %s" msgid "Status updates from {obj.display_name}" msgstr "Actualizaciones de status de {obj.display_name}" +#~ msgid "Update shelf" +#~ msgstr "Actualizar estante" + #~ msgid "%(count)d uses" #~ msgstr "%(count)d usos" diff --git a/locale/fr_FR/LC_MESSAGES/django.po b/locale/fr_FR/LC_MESSAGES/django.po index e84c9e74a..52ccac2be 100644 --- a/locale/fr_FR/LC_MESSAGES/django.po +++ b/locale/fr_FR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-28 18:31+0000\n" +"POT-Creation-Date: 2021-09-29 18:32+0000\n" "PO-Revision-Date: 2021-04-05 12:44+0100\n" "Last-Translator: Fabien Basmaison \n" "Language-Team: Mouse Reeve \n" @@ -56,10 +56,9 @@ msgstr "Ordre de la liste" msgid "Book Title" msgstr "Titre du livre" -#: bookwyrm/forms.py:327 +#: bookwyrm/forms.py:327 bookwyrm/templates/shelf/shelf.html:134 +#: bookwyrm/templates/shelf/shelf.html:165 #: bookwyrm/templates/snippets/create_status/review.html:33 -#: bookwyrm/templates/user/shelf/shelf.html:117 -#: bookwyrm/templates/user/shelf/shelf.html:148 msgid "Rating" msgstr "Note" @@ -111,16 +110,42 @@ msgstr "Modération de la liste :" msgid "Domain block" msgstr "Débloquer" +#: bookwyrm/models/book.py:232 +#, fuzzy +#| msgid "Add books" +msgid "Audiobook" +msgstr "Ajoutez des livres" + +#: bookwyrm/models/book.py:233 +#, fuzzy +#| msgid "Book" +msgid "eBook" +msgstr "Livre" + +#: bookwyrm/models/book.py:234 +msgid "Graphic novel" +msgstr "" + +#: bookwyrm/models/book.py:235 +#, fuzzy +#| msgid "Add cover" +msgid "Hardcover" +msgstr "Ajouter une couverture" + +#: bookwyrm/models/book.py:236 +msgid "Paperback" +msgstr "" + #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/edit_server.html:40 -#: bookwyrm/templates/settings/federation.html:19 +#: bookwyrm/templates/settings/federation/edit_instance.html:42 +#: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "Fédéré" #: bookwyrm/models/federated_server.py:12 -#: bookwyrm/templates/settings/edit_server.html:41 -#: bookwyrm/templates/settings/federated_server.html:10 -#: bookwyrm/templates/settings/federation.html:23 +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:23 msgid "Blocked" msgstr "Bloqué" @@ -278,9 +303,7 @@ msgid "Metadata" msgstr "Métadonnées" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/lists/form.html:8 -#: bookwyrm/templates/user/shelf/create_shelf_form.html:13 -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:14 +#: bookwyrm/templates/lists/form.html:8 bookwyrm/templates/shelf/form.html:9 msgid "Name:" msgstr "Nom :" @@ -316,7 +339,7 @@ msgid "Openlibrary key:" msgstr "Clé Openlibrary :" #: bookwyrm/templates/author/edit_author.html:89 -#: bookwyrm/templates/book/edit_book.html:300 +#: bookwyrm/templates/book/edit_book.html:313 msgid "Inventaire ID:" msgstr "Identifiant Inventaire :" @@ -330,32 +353,30 @@ msgstr "Clé Goodreads :" #: bookwyrm/templates/author/edit_author.html:116 #: bookwyrm/templates/book/book.html:140 -#: bookwyrm/templates/book/edit_book.html:328 +#: bookwyrm/templates/book/edit_book.html:341 #: bookwyrm/templates/book/readthrough.html:76 #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/form.html:44 #: bookwyrm/templates/preferences/edit_user.html:118 -#: bookwyrm/templates/settings/announcement_form.html:69 -#: bookwyrm/templates/settings/edit_server.html:68 -#: bookwyrm/templates/settings/federated_server.html:98 -#: bookwyrm/templates/settings/site.html:120 -#: bookwyrm/templates/snippets/reading_modals/layout.html:16 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:43 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:64 +#: bookwyrm/templates/settings/announcements/announcement_form.html:69 +#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/instance.html:87 +#: bookwyrm/templates/settings/site.html:134 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:64 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 msgid "Save" msgstr "Enregistrer" #: bookwyrm/templates/author/edit_author.html:117 #: bookwyrm/templates/book/book.html:141 bookwyrm/templates/book/book.html:190 #: bookwyrm/templates/book/cover_modal.html:32 -#: bookwyrm/templates/book/edit_book.html:329 +#: bookwyrm/templates/book/edit_book.html:342 #: bookwyrm/templates/book/readthrough.html:77 #: bookwyrm/templates/lists/delete_list_modal.html:17 -#: bookwyrm/templates/moderation/report_modal.html:34 -#: bookwyrm/templates/settings/federated_server.html:99 +#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/snippets/delete_readthrough_modal.html:17 -#: bookwyrm/templates/snippets/goal_form.html:32 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:44 +#: bookwyrm/templates/snippets/report_modal.html:34 msgid "Cancel" msgstr "Annuler" @@ -392,7 +413,7 @@ msgstr "Ajouter une description" #: bookwyrm/templates/book/book.html:136 #: bookwyrm/templates/book/edit_book.html:143 -#: bookwyrm/templates/lists/form.html:12 +#: bookwyrm/templates/lists/form.html:12 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Description :" @@ -466,8 +487,8 @@ msgstr "Ajouter à la liste" #: bookwyrm/templates/book/book.html:313 #: bookwyrm/templates/book/cover_modal.html:31 #: bookwyrm/templates/lists/list.html:181 -#: bookwyrm/templates/settings/domain_form.html:26 -#: bookwyrm/templates/settings/ip_address_form.html:32 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:26 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 msgid "Add" msgstr "Ajouter" @@ -476,12 +497,12 @@ msgid "ISBN:" msgstr "ISBN :" #: bookwyrm/templates/book/book_identifiers.html:14 -#: bookwyrm/templates/book/edit_book.html:308 +#: bookwyrm/templates/book/edit_book.html:321 msgid "OCLC Number:" msgstr "Numéro OCLC :" #: bookwyrm/templates/book/book_identifiers.html:21 -#: bookwyrm/templates/book/edit_book.html:316 +#: bookwyrm/templates/book/edit_book.html:329 msgid "ASIN:" msgstr "ASIN :" @@ -491,7 +512,7 @@ msgid "Upload cover:" msgstr "Charger une couverture :" #: bookwyrm/templates/book/cover_modal.html:23 -#: bookwyrm/templates/book/edit_book.html:242 +#: bookwyrm/templates/book/edit_book.html:241 msgid "Load cover from url:" msgstr "Charger la couverture depuis une URL :" @@ -603,11 +624,11 @@ msgid "John Doe, Jane Smith" msgstr "Claude Dupont, Dominique Durand" #: bookwyrm/templates/book/edit_book.html:227 -#: bookwyrm/templates/user/shelf/shelf.html:110 +#: bookwyrm/templates/shelf/shelf.html:127 msgid "Cover" msgstr "Couverture" -#: bookwyrm/templates/book/edit_book.html:255 +#: bookwyrm/templates/book/edit_book.html:253 msgid "Physical Properties" msgstr "Propriétés physiques" @@ -616,23 +637,29 @@ msgstr "Propriétés physiques" msgid "Format:" msgstr "Format :" -#: bookwyrm/templates/book/edit_book.html:265 +#: bookwyrm/templates/book/edit_book.html:268 +#, fuzzy +#| msgid "User details" +msgid "Format details:" +msgstr "Détails du compte" + +#: bookwyrm/templates/book/edit_book.html:278 msgid "Pages:" msgstr "Pages :" -#: bookwyrm/templates/book/edit_book.html:274 +#: bookwyrm/templates/book/edit_book.html:287 msgid "Book Identifiers" msgstr "Identifiants du livre" -#: bookwyrm/templates/book/edit_book.html:276 +#: bookwyrm/templates/book/edit_book.html:289 msgid "ISBN 13:" msgstr "ISBN 13 :" -#: bookwyrm/templates/book/edit_book.html:284 +#: bookwyrm/templates/book/edit_book.html:297 msgid "ISBN 10:" msgstr "ISBN 10 :" -#: bookwyrm/templates/book/edit_book.html:292 +#: bookwyrm/templates/book/edit_book.html:305 msgid "Openlibrary ID:" msgstr "Identifiant Openlibrary :" @@ -765,14 +792,14 @@ msgid "Sorry! We couldn't find that code." msgstr "Pardon ! Nous ne reconnaissons pas ce code." #: bookwyrm/templates/confirm_email/confirm_email.html:19 -#: bookwyrm/templates/user_admin/user_info.html:100 +#: bookwyrm/templates/settings/users/user_info.html:85 msgid "Confirmation code:" msgstr "Code de confirmation :" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:73 -#: bookwyrm/templates/moderation/report_modal.html:33 -#: bookwyrm/templates/settings/dashboard.html:93 +#: bookwyrm/templates/settings/dashboard/dashboard.html:93 +#: bookwyrm/templates/snippets/report_modal.html:33 msgid "Submit" msgstr "Valider" @@ -824,8 +851,8 @@ msgid "You can opt-out at any time in your profile settings msgstr "Vous pouvez décider de ne plus y figurer à n’importe quel moment depuis vos paramètres de profil." #: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/feed/goal_card.html:17 #: bookwyrm/templates/snippets/announcement.html:34 -#: bookwyrm/templates/snippets/goal_card.html:22 msgid "Dismiss message" msgstr "Fermer le message" @@ -834,13 +861,13 @@ msgid "Order by" msgstr "Trier par" #: bookwyrm/templates/directory/sort_filter.html:8 -msgid "Suggested" -msgstr "Suggéré" - -#: bookwyrm/templates/directory/sort_filter.html:9 msgid "Recently active" msgstr "Actif récemment" +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Suggested" +msgstr "Suggéré" + #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 #: bookwyrm/templates/user/user_preview.html:16 @@ -1036,12 +1063,24 @@ msgstr "charger le(s) 0 statut(s) non msgid "There aren't any activities right now! Try following a user to get started" msgstr "Aucune activité pour l’instant ! Abonnez‑vous à quelqu’un pour commencer" +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:90 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "Défi lecture pour %(year)s" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "Vous pouvez définir ou changer votre défi lecture à n’importe quel moment depuis votre profil" + #: bookwyrm/templates/feed/layout.html:5 msgid "Updates" msgstr "Mises à jour" #: bookwyrm/templates/feed/layout.html:12 -#: bookwyrm/templates/user/shelf/books_header.html:3 +#: bookwyrm/templates/user/books_header.html:3 msgid "Your books" msgstr "Vos livres" @@ -1050,28 +1089,22 @@ msgid "There are no books here right now! Try searching for a book to get starte msgstr "Aucun livre ici pour l’instant ! Cherchez un livre pour commencer" #: bookwyrm/templates/feed/layout.html:25 -#: bookwyrm/templates/user/shelf/shelf.html:38 +#: bookwyrm/templates/shelf/shelf.html:38 msgid "To Read" msgstr "À lire" #: bookwyrm/templates/feed/layout.html:26 -#: bookwyrm/templates/user/shelf/shelf.html:40 +#: bookwyrm/templates/shelf/shelf.html:40 msgid "Currently Reading" msgstr "Lectures en cours" #: bookwyrm/templates/feed/layout.html:27 +#: bookwyrm/templates/shelf/shelf.html:42 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:23 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/user/shelf/shelf.html:42 msgid "Read" msgstr "Lu" -#: bookwyrm/templates/feed/layout.html:90 bookwyrm/templates/goal.html:26 -#: bookwyrm/templates/snippets/goal_card.html:6 -#, python-format -msgid "%(year)s Reading Goal" -msgstr "Défi lecture pour %(year)s" - #: bookwyrm/templates/feed/suggested_users.html:5 #: bookwyrm/templates/get_started/users.html:6 msgid "Who to follow" @@ -1220,39 +1253,9 @@ msgstr "Chercher un compte" msgid "No users found for \"%(query)s\"" msgstr "Aucun compte trouvé pour « %(query)s »" -#: bookwyrm/templates/goal.html:7 -#, python-format -msgid "%(year)s Reading Progress" -msgstr "Progression de lecture pour %(year)s" - -#: bookwyrm/templates/goal.html:11 -msgid "Edit Goal" -msgstr "Modifier le défi" - -#: bookwyrm/templates/goal.html:30 -#: bookwyrm/templates/snippets/goal_card.html:13 -#, python-format -msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." -msgstr "Définissez un nombre de livre à lire comme objectif pour %(year)s, et suivezvotre progression au fil de l’année." - -#: bookwyrm/templates/goal.html:39 -#, python-format -msgid "%(name)s hasn't set a reading goal for %(year)s." -msgstr "%(name)s n’a aucun défi lecture pour %(year)s." - -#: bookwyrm/templates/goal.html:51 -#, python-format -msgid "Your %(year)s Books" -msgstr "Vos livres en %(year)s" - -#: bookwyrm/templates/goal.html:53 -#, python-format -msgid "%(username)s's %(year)s Books" -msgstr "Livres de %(username)s en %(year)s" - #: bookwyrm/templates/import/import.html:5 #: bookwyrm/templates/import/import.html:9 -#: bookwyrm/templates/user/shelf/shelf.html:57 +#: bookwyrm/templates/shelf/shelf.html:57 msgid "Import Books" msgstr "Importer des livres" @@ -1273,7 +1276,7 @@ msgid "Privacy setting for imported reviews:" msgstr "Confidentialité des critiques importées :" #: bookwyrm/templates/import/import.html:56 -#: bookwyrm/templates/settings/server_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 msgid "Import" msgstr "Importer" @@ -1353,14 +1356,14 @@ msgid "Book" msgstr "Livre" #: bookwyrm/templates/import/import_status.html:122 -#: bookwyrm/templates/user/shelf/shelf.html:111 -#: bookwyrm/templates/user/shelf/shelf.html:131 +#: bookwyrm/templates/shelf/shelf.html:128 +#: bookwyrm/templates/shelf/shelf.html:148 msgid "Title" msgstr "Titre" #: bookwyrm/templates/import/import_status.html:125 -#: bookwyrm/templates/user/shelf/shelf.html:112 -#: bookwyrm/templates/user/shelf/shelf.html:134 +#: bookwyrm/templates/shelf/shelf.html:129 +#: bookwyrm/templates/shelf/shelf.html:151 msgid "Author" msgstr "Auteur/autrice" @@ -1468,10 +1471,10 @@ msgid "Settings" msgstr "Paramètres" #: bookwyrm/templates/layout.html:125 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 #: bookwyrm/templates/settings/layout.html:40 -#: bookwyrm/templates/settings/manage_invite_requests.html:15 -#: bookwyrm/templates/settings/manage_invites.html:3 -#: bookwyrm/templates/settings/manage_invites.html:15 msgid "Invites" msgstr "Invitations" @@ -1601,9 +1604,9 @@ msgid "This action cannot be un-done" msgstr "Cette étagère est vide" #: bookwyrm/templates/lists/delete_list_modal.html:15 -#: bookwyrm/templates/settings/announcement.html:20 -#: bookwyrm/templates/settings/email_blocklist.html:49 -#: bookwyrm/templates/settings/ip_blocklist.html:36 +#: bookwyrm/templates/settings/announcements/announcement.html:20 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 #: bookwyrm/templates/snippets/delete_readthrough_modal.html:15 #: bookwyrm/templates/snippets/follow_request_buttons.html:12 msgid "Delete" @@ -1634,9 +1637,8 @@ msgstr "Modérée" msgid "Anyone can suggest books, subject to your approval" msgstr "N’importe qui peut suggérer des livres, soumis à votre approbation" -#: bookwyrm/templates/lists/form.html:31 -#: bookwyrm/templates/moderation/reports.html:25 -#: bookwyrm/templates/search/book.html:30 +#: bookwyrm/templates/lists/form.html:31 bookwyrm/templates/search/book.html:30 +#: bookwyrm/templates/settings/reports/reports.html:25 #: bookwyrm/templates/snippets/announcement.html:16 msgid "Open" msgstr "Ouverte" @@ -1754,93 +1756,6 @@ msgstr "Mot de passe :" msgid "More about this site" msgstr "En savoir plus sur ce site" -#: bookwyrm/templates/moderation/report.html:5 -#: bookwyrm/templates/moderation/report.html:6 -#: bookwyrm/templates/moderation/report_preview.html:6 -#, python-format -msgid "Report #%(report_id)s: %(username)s" -msgstr "Signalement #%(report_id)s : %(username)s" - -#: bookwyrm/templates/moderation/report.html:10 -msgid "Back to reports" -msgstr "Retour aux signalements" - -#: bookwyrm/templates/moderation/report.html:22 -msgid "Moderator Comments" -msgstr "Commentaires de l’équipe de modération" - -#: bookwyrm/templates/moderation/report.html:40 -#: bookwyrm/templates/snippets/create_status.html:28 -msgid "Comment" -msgstr "Commentaire" - -#: bookwyrm/templates/moderation/report.html:45 -msgid "Reported statuses" -msgstr "Statuts signalés" - -#: bookwyrm/templates/moderation/report.html:47 -msgid "No statuses reported" -msgstr "Aucun statut signalé" - -#: bookwyrm/templates/moderation/report.html:53 -msgid "Status has been deleted" -msgstr "Le statut a été supprimé" - -#: bookwyrm/templates/moderation/report_modal.html:6 -#, python-format -msgid "Report @%(username)s" -msgstr "Signaler @%(username)s" - -#: bookwyrm/templates/moderation/report_modal.html:23 -#, python-format -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." - -#: bookwyrm/templates/moderation/report_modal.html:24 -msgid "More info about this report:" -msgstr "En savoir plus sur ce signalement :" - -#: bookwyrm/templates/moderation/report_preview.html:13 -msgid "No notes provided" -msgstr "Aucune note fournie" - -#: bookwyrm/templates/moderation/report_preview.html:20 -#, python-format -msgid "Reported by %(username)s" -msgstr "Signalé par %(username)s" - -#: bookwyrm/templates/moderation/report_preview.html:30 -msgid "Re-open" -msgstr "Réouvrir" - -#: bookwyrm/templates/moderation/report_preview.html:32 -msgid "Resolve" -msgstr "Résoudre" - -#: bookwyrm/templates/moderation/reports.html:6 -#, python-format -msgid "Reports: %(instance_name)s" -msgstr "Signalements : %(instance_name)s" - -#: bookwyrm/templates/moderation/reports.html:8 -#: bookwyrm/templates/moderation/reports.html:17 -#: bookwyrm/templates/settings/layout.html:55 -msgid "Reports" -msgstr "Signalements" - -#: bookwyrm/templates/moderation/reports.html:14 -#, python-format -msgid "Reports: %(instance_name)s" -msgstr "Signalements : %(instance_name)s" - -#: bookwyrm/templates/moderation/reports.html:28 -msgid "Resolved" -msgstr "Résolus" - -#: bookwyrm/templates/moderation/reports.html:37 -msgid "No reports found." -msgstr "Aucun signalement trouvé." - #: bookwyrm/templates/notifications.html:16 msgid "Delete notifications" msgstr "Supprimer les notifications" @@ -2004,7 +1919,7 @@ msgstr "Nouveau mot de passe :" #: bookwyrm/templates/preferences/delete_user.html:7 #: bookwyrm/templates/preferences/delete_user.html:26 #: bookwyrm/templates/preferences/layout.html:24 -#: bookwyrm/templates/user_admin/delete_user_form.html:23 +#: bookwyrm/templates/settings/users/delete_user_form.html:23 #, fuzzy #| msgid "Create an Account" msgid "Delete Account" @@ -2026,7 +1941,7 @@ msgstr "Modifier le profil" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 -#: bookwyrm/templates/user_admin/user_info.html:7 +#: bookwyrm/templates/settings/users/user_info.html:7 msgid "Profile" msgstr "Profil" @@ -2119,11 +2034,11 @@ msgstr "Type de recherche" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 -#: bookwyrm/templates/settings/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation.html:44 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:44 #: bookwyrm/templates/settings/layout.html:34 -#: bookwyrm/templates/user_admin/user_admin.html:3 -#: bookwyrm/templates/user_admin/user_admin.html:10 +#: bookwyrm/templates/settings/users/user_admin.html:3 +#: bookwyrm/templates/settings/users/user_admin.html:10 msgid "Users" msgstr "Comptes" @@ -2132,147 +2047,147 @@ msgstr "Comptes" msgid "No results found for \"%(query)s\"" msgstr "Aucun résultat pour « %(query)s »" -#: bookwyrm/templates/settings/announcement.html:3 -#: bookwyrm/templates/settings/announcement.html:6 +#: bookwyrm/templates/settings/announcements/announcement.html:3 +#: bookwyrm/templates/settings/announcements/announcement.html:6 msgid "Announcement" msgstr "Annonce" -#: bookwyrm/templates/settings/announcement.html:7 -#: bookwyrm/templates/settings/federated_server.html:13 +#: bookwyrm/templates/settings/announcements/announcement.html:7 +#: bookwyrm/templates/settings/federation/instance.html:13 msgid "Back to list" msgstr "Retour à la liste" -#: bookwyrm/templates/settings/announcement.html:11 -#: bookwyrm/templates/settings/announcement_form.html:6 +#: bookwyrm/templates/settings/announcements/announcement.html:11 +#: bookwyrm/templates/settings/announcements/announcement_form.html:6 msgid "Edit Announcement" msgstr "Modifier l’annonce" -#: bookwyrm/templates/settings/announcement.html:35 +#: bookwyrm/templates/settings/announcements/announcement.html:35 msgid "Visible:" msgstr "Visible :" -#: bookwyrm/templates/settings/announcement.html:38 +#: bookwyrm/templates/settings/announcements/announcement.html:38 msgid "True" msgstr "Vrai" -#: bookwyrm/templates/settings/announcement.html:40 +#: bookwyrm/templates/settings/announcements/announcement.html:40 msgid "False" msgstr "Faux" -#: bookwyrm/templates/settings/announcement.html:47 -#: bookwyrm/templates/settings/announcement_form.html:40 -#: bookwyrm/templates/settings/dashboard.html:71 +#: bookwyrm/templates/settings/announcements/announcement.html:47 +#: bookwyrm/templates/settings/announcements/announcement_form.html:40 +#: bookwyrm/templates/settings/dashboard/dashboard.html:71 msgid "Start date:" msgstr "Date de début :" -#: bookwyrm/templates/settings/announcement.html:54 -#: bookwyrm/templates/settings/announcement_form.html:49 -#: bookwyrm/templates/settings/dashboard.html:77 +#: bookwyrm/templates/settings/announcements/announcement.html:54 +#: bookwyrm/templates/settings/announcements/announcement_form.html:49 +#: bookwyrm/templates/settings/dashboard/dashboard.html:77 msgid "End date:" msgstr "Date de fin :" -#: bookwyrm/templates/settings/announcement.html:60 -#: bookwyrm/templates/settings/announcement_form.html:58 +#: bookwyrm/templates/settings/announcements/announcement.html:60 +#: bookwyrm/templates/settings/announcements/announcement_form.html:58 msgid "Active:" msgstr "Active :" -#: bookwyrm/templates/settings/announcement_form.html:8 -#: bookwyrm/templates/settings/announcements.html:8 +#: bookwyrm/templates/settings/announcements/announcement_form.html:8 +#: bookwyrm/templates/settings/announcements/announcements.html:8 msgid "Create Announcement" msgstr "Ajouter une annonce" -#: bookwyrm/templates/settings/announcement_form.html:16 +#: bookwyrm/templates/settings/announcements/announcement_form.html:16 #, fuzzy #| msgid "Preview" msgid "Preview:" msgstr "Aperçu" -#: bookwyrm/templates/settings/announcement_form.html:23 +#: bookwyrm/templates/settings/announcements/announcement_form.html:23 #, fuzzy #| msgid "Content" msgid "Content:" msgstr "Contenu" -#: bookwyrm/templates/settings/announcement_form.html:30 +#: bookwyrm/templates/settings/announcements/announcement_form.html:30 #, fuzzy #| msgid "End date:" msgid "Event date:" msgstr "Date de fin :" -#: bookwyrm/templates/settings/announcements.html:3 -#: bookwyrm/templates/settings/announcements.html:5 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/layout.html:72 msgid "Announcements" msgstr "Annonces" -#: bookwyrm/templates/settings/announcements.html:22 -#: bookwyrm/templates/settings/federation.html:36 +#: bookwyrm/templates/settings/announcements/announcements.html:22 +#: bookwyrm/templates/settings/federation/instance_list.html:36 msgid "Date added" msgstr "Date d’ajout" -#: bookwyrm/templates/settings/announcements.html:26 +#: bookwyrm/templates/settings/announcements/announcements.html:26 msgid "Preview" msgstr "Aperçu" -#: bookwyrm/templates/settings/announcements.html:30 +#: bookwyrm/templates/settings/announcements/announcements.html:30 msgid "Start date" msgstr "Date de début" -#: bookwyrm/templates/settings/announcements.html:34 +#: bookwyrm/templates/settings/announcements/announcements.html:34 msgid "End date" msgstr "Date de fin" -#: bookwyrm/templates/settings/announcements.html:38 -#: bookwyrm/templates/settings/federation.html:46 -#: bookwyrm/templates/settings/manage_invite_requests.html:44 -#: bookwyrm/templates/settings/status_filter.html:5 -#: bookwyrm/templates/user_admin/user_admin.html:34 -#: bookwyrm/templates/user_admin/user_info.html:20 +#: 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 "Statut" -#: bookwyrm/templates/settings/announcements.html:48 +#: bookwyrm/templates/settings/announcements/announcements.html:48 msgid "active" msgstr "active" -#: bookwyrm/templates/settings/announcements.html:48 +#: bookwyrm/templates/settings/announcements/announcements.html:48 msgid "inactive" msgstr "inactive" -#: bookwyrm/templates/settings/announcements.html:54 +#: bookwyrm/templates/settings/announcements/announcements.html:52 #, fuzzy #| msgid "Announcements" -msgid "No announcements found." +msgid "No announcements found" msgstr "Annonces" -#: bookwyrm/templates/settings/dashboard.html:6 -#: bookwyrm/templates/settings/dashboard.html:8 +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:26 msgid "Dashboard" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 #, fuzzy #| msgid "Local users" msgid "Total users" msgstr "Comptes locaux" -#: bookwyrm/templates/settings/dashboard.html:21 -#: bookwyrm/templates/settings/dashboard_user_chart.html:12 +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/dashboard_user_chart.html:12 msgid "Active this month" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 #, fuzzy #| msgid "Status" msgid "Statuses" msgstr "Statut" -#: bookwyrm/templates/settings/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 msgid "Works" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:43 +#: bookwyrm/templates/settings/dashboard/dashboard.html:43 #, fuzzy, python-format #| msgid "%(count)d uses" msgid "%(display_count)s open report" @@ -2280,7 +2195,7 @@ msgid_plural "%(display_count)s open reports" msgstr[0] "%(count)d utilisations" msgstr[1] "%(count)d utilisations" -#: bookwyrm/templates/settings/dashboard.html:54 +#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #, fuzzy, python-format #| msgid "%(count)d uses" msgid "%(display_count)s invite request" @@ -2288,127 +2203,81 @@ msgid_plural "%(display_count)s invite requests" msgstr[0] "%(count)d utilisations" msgstr[1] "%(count)d utilisations" -#: bookwyrm/templates/settings/dashboard.html:65 +#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #, fuzzy #| msgid "User Activity" msgid "Instance Activity" msgstr "Activité du compte" -#: bookwyrm/templates/settings/dashboard.html:83 +#: bookwyrm/templates/settings/dashboard/dashboard.html:83 msgid "Interval:" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:87 msgid "Days" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:87 +#: bookwyrm/templates/settings/dashboard/dashboard.html:88 #, fuzzy #| msgid "One Week" msgid "Weeks" msgstr "Une semaine" -#: bookwyrm/templates/settings/dashboard.html:100 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 #, fuzzy #| msgid "User Activity" msgid "User signup activity" msgstr "Activité du compte" -#: bookwyrm/templates/settings/dashboard.html:106 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #, fuzzy #| msgid "User Activity" msgid "Status activity" msgstr "Activité du compte" -#: bookwyrm/templates/settings/dashboard_status_chart.html:7 +#: bookwyrm/templates/settings/dashboard/dashboard_status_chart.html:7 #, fuzzy #| msgid "No statuses reported" msgid "Statuses posted" msgstr "Aucun statut signalé" -#: bookwyrm/templates/settings/dashboard_user_chart.html:7 +#: bookwyrm/templates/settings/dashboard/dashboard_user_chart.html:7 msgid "Total" msgstr "" -#: bookwyrm/templates/settings/domain_form.html:5 -#: bookwyrm/templates/settings/email_blocklist.html:10 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 msgid "Add domain" msgstr "" -#: bookwyrm/templates/settings/domain_form.html:11 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 msgid "Domain:" msgstr "" -#: bookwyrm/templates/settings/edit_server.html:3 -#: bookwyrm/templates/settings/edit_server.html:6 -#: bookwyrm/templates/settings/edit_server.html:20 -#: bookwyrm/templates/settings/federation.html:9 -#: bookwyrm/templates/settings/federation.html:10 -#: bookwyrm/templates/settings/server_blocklist.html:3 -#: bookwyrm/templates/settings/server_blocklist.html:20 -msgid "Add instance" -msgstr "Ajouter une instance" - -#: bookwyrm/templates/settings/edit_server.html:7 -#: bookwyrm/templates/settings/server_blocklist.html:7 -msgid "Back to instance list" -msgstr "Retour à la liste des instances" - -#: bookwyrm/templates/settings/edit_server.html:16 -#: bookwyrm/templates/settings/server_blocklist.html:16 -msgid "Import block list" -msgstr "Importer une liste de blocage" - -#: bookwyrm/templates/settings/edit_server.html:30 -msgid "Instance:" -msgstr "Instance :" - -#: bookwyrm/templates/settings/edit_server.html:37 -#: bookwyrm/templates/settings/federated_server.html:31 -#: bookwyrm/templates/user_admin/user_info.html:125 -msgid "Status:" -msgstr "Statut :" - -#: bookwyrm/templates/settings/edit_server.html:48 -#: bookwyrm/templates/settings/federated_server.html:23 -#: bookwyrm/templates/user_admin/user_info.html:117 -msgid "Software:" -msgstr "Logiciel :" - -#: bookwyrm/templates/settings/edit_server.html:55 -#: bookwyrm/templates/settings/federated_server.html:27 -#: bookwyrm/templates/user_admin/user_info.html:121 -msgid "Version:" -msgstr "Description :" - -#: bookwyrm/templates/settings/edit_server.html:64 -msgid "Notes:" -msgstr "Remarques :" - -#: bookwyrm/templates/settings/email_blocklist.html:5 -#: bookwyrm/templates/settings/email_blocklist.html:7 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 #: bookwyrm/templates/settings/layout.html:59 #, fuzzy #| msgid "Import Blocklist" msgid "Email Blocklist" msgstr "Importer une liste de blocage" -#: bookwyrm/templates/settings/email_blocklist.html:18 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 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 "" -#: bookwyrm/templates/settings/email_blocklist.html:25 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 msgid "Domain" msgstr "" -#: bookwyrm/templates/settings/email_blocklist.html:29 -#: bookwyrm/templates/settings/ip_blocklist.html:27 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 #, fuzzy #| msgid "Actions" msgid "Options" msgstr "Actions" -#: bookwyrm/templates/settings/email_blocklist.html:38 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 #, fuzzy, python-format #| msgid "%(count)d uses" msgid "%(display_count)s user" @@ -2416,124 +2285,315 @@ msgid_plural "%(display_count)s users" msgstr[0] "%(count)d utilisations" msgstr[1] "%(count)d utilisations" -#: bookwyrm/templates/settings/federated_server.html:19 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +#, fuzzy +#| msgid "No users currently blocked." +msgid "No email domains currently blocked" +msgstr "Aucun compte bloqué actuellement" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "Ajouter une instance" + +#: bookwyrm/templates/settings/federation/edit_instance.html:7 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:7 +msgid "Back to instance list" +msgstr "Retour à la liste des instances" + +#: bookwyrm/templates/settings/federation/edit_instance.html:16 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:16 +msgid "Import block list" +msgstr "Importer une liste de blocage" + +#: bookwyrm/templates/settings/federation/edit_instance.html:30 +msgid "Instance:" +msgstr "Instance :" + +#: bookwyrm/templates/settings/federation/edit_instance.html:39 +#: bookwyrm/templates/settings/federation/instance.html:28 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "Statut :" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:22 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "Logiciel :" + +#: bookwyrm/templates/settings/federation/edit_instance.html:61 +#: bookwyrm/templates/settings/federation/instance.html:25 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "Description :" + +#: bookwyrm/templates/settings/federation/edit_instance.html:70 +msgid "Notes:" +msgstr "Remarques :" + +#: bookwyrm/templates/settings/federation/instance.html:19 msgid "Details" msgstr "Détails" -#: bookwyrm/templates/settings/federated_server.html:39 +#: bookwyrm/templates/settings/federation/instance.html:35 #: bookwyrm/templates/user/layout.html:63 msgid "Activity" msgstr "Activité" -#: bookwyrm/templates/settings/federated_server.html:43 +#: bookwyrm/templates/settings/federation/instance.html:38 msgid "Users:" msgstr "Comptes :" -#: bookwyrm/templates/settings/federated_server.html:46 -#: bookwyrm/templates/settings/federated_server.html:53 +#: bookwyrm/templates/settings/federation/instance.html:41 +#: bookwyrm/templates/settings/federation/instance.html:47 msgid "View all" msgstr "Voir tous" -#: bookwyrm/templates/settings/federated_server.html:50 -#: bookwyrm/templates/user_admin/user_info.html:59 +#: bookwyrm/templates/settings/federation/instance.html:44 +#: bookwyrm/templates/settings/users/user_info.html:56 msgid "Reports:" msgstr "Signalements :" -#: bookwyrm/templates/settings/federated_server.html:57 +#: bookwyrm/templates/settings/federation/instance.html:50 msgid "Followed by us:" msgstr "Suivi par nous :" -#: bookwyrm/templates/settings/federated_server.html:63 +#: bookwyrm/templates/settings/federation/instance.html:55 msgid "Followed by them:" msgstr "Suivi par eux :" -#: bookwyrm/templates/settings/federated_server.html:69 +#: bookwyrm/templates/settings/federation/instance.html:60 msgid "Blocked by us:" msgstr "Bloqués par nous :" -#: bookwyrm/templates/settings/federated_server.html:82 -#: bookwyrm/templates/user_admin/user_info.html:130 +#: bookwyrm/templates/settings/federation/instance.html:72 +#: bookwyrm/templates/settings/users/user_info.html:110 msgid "Notes" msgstr "Remarques" -#: bookwyrm/templates/settings/federated_server.html:85 +#: bookwyrm/templates/settings/federation/instance.html:75 msgid "Edit" msgstr "Modifier" -#: bookwyrm/templates/settings/federated_server.html:105 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:8 +#: bookwyrm/templates/settings/federation/instance.html:79 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:8 msgid "Actions" msgstr "Actions" -#: bookwyrm/templates/settings/federated_server.html:109 +#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/snippets/block_button.html:5 msgid "Block" msgstr "Bloquer" -#: bookwyrm/templates/settings/federated_server.html:110 +#: bookwyrm/templates/settings/federation/instance.html:99 msgid "All users from this instance will be deactivated." msgstr "Tous les comptes de cette instance seront désactivés." -#: bookwyrm/templates/settings/federated_server.html:115 +#: bookwyrm/templates/settings/federation/instance.html:104 #: bookwyrm/templates/snippets/block_button.html:10 msgid "Un-block" msgstr "Débloquer" -#: bookwyrm/templates/settings/federated_server.html:116 +#: bookwyrm/templates/settings/federation/instance.html:105 msgid "All users from this instance will be re-activated." msgstr "Tous les comptes de cette instance seront réactivés." -#: bookwyrm/templates/settings/federation.html:3 -#: bookwyrm/templates/settings/federation.html:5 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +msgid "Import Blocklist" +msgstr "Importer une liste de blocage" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:26 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "Bravo !" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:30 +msgid "Successfully blocked:" +msgstr "Blocage réussi :" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +msgid "Failed:" +msgstr "Échec :" + +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:45 msgid "Federated Instances" msgstr "Instances fédérées" -#: bookwyrm/templates/settings/federation.html:32 -#: bookwyrm/templates/user_admin/server_filter.html:5 +#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Nom de l’instance" -#: bookwyrm/templates/settings/federation.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:40 msgid "Software" msgstr "Logiciel" -#: bookwyrm/templates/settings/ip_address_form.html:5 -#: bookwyrm/templates/settings/ip_blocklist.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:63 +#, fuzzy +#| msgid "Announcements" +msgid "No instances found" +msgstr "Annonces" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "Demandes d’invitation" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "Invitations ignorées" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:35 +msgid "Date requested" +msgstr "Date d’envoi" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:39 +msgid "Date accepted" +msgstr "Date de validation" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:42 +msgid "Email" +msgstr "Email" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +msgid "Action" +msgstr "Action" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +msgid "No requests" +msgstr "Aucune demande" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "Accepté(e)s" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "Envoyé(e)s" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "Demandé(e)s" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +msgid "Send invite" +msgstr "Envoyer l’invitation" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +msgid "Re-send invite" +msgstr "Envoyer l’invitation de nouveau" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +msgid "Ignore" +msgstr "Ignorer" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +msgid "Un-ignore" +msgstr "Ne plus ignorer" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +msgid "Back to pending requests" +msgstr "Retour aux demandes en attente" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +msgid "View ignored requests" +msgstr "Voir les demandes ignorées" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "Générer une nouvelle invitation" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "Expiration :" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "Limiter à :" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "Créer une invitation" + +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "Lien" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "Expiration" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "Nombre maximum d’utilisations" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "Nombre de fois utilisée" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "Aucune invitation active" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 #, fuzzy #| msgid "Email address:" msgid "Add IP address" msgstr "Adresse email :" -#: bookwyrm/templates/settings/ip_address_form.html:11 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." msgstr "" -#: bookwyrm/templates/settings/ip_address_form.html:18 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 #, fuzzy #| msgid "Email address:" msgid "IP Address:" msgstr "Adresse email :" -#: bookwyrm/templates/settings/ip_blocklist.html:5 -#: bookwyrm/templates/settings/ip_blocklist.html:7 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 #: bookwyrm/templates/settings/layout.html:63 #, fuzzy #| msgid "Import Blocklist" msgid "IP Address Blocklist" msgstr "Importer une liste de blocage" -#: bookwyrm/templates/settings/ip_blocklist.html:18 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." msgstr "" -#: bookwyrm/templates/settings/ip_blocklist.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 #, fuzzy #| msgid "Email address:" msgid "Address" msgstr "Adresse email :" -#: bookwyrm/templates/settings/ip_tooltip.html:6 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +#, fuzzy +#| msgid "No users currently blocked." +msgid "No IP addresses currently blocked" +msgstr "Aucun compte bloqué actuellement" + +#: bookwyrm/templates/settings/ip_blocklist/ip_tooltip.html:6 msgid "You can block IP ranges using CIDR syntax." msgstr "" @@ -2551,6 +2611,12 @@ msgstr "Gérer les comptes" msgid "Moderation" msgstr "Modération de la liste :" +#: bookwyrm/templates/settings/layout.html:55 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "Signalements" + #: bookwyrm/templates/settings/layout.html:68 msgid "Instance Settings" msgstr "Paramètres de l’instance" @@ -2561,233 +2627,379 @@ msgstr "Paramètres de l’instance" msgid "Site Settings" msgstr "Paramètres du site" -#: bookwyrm/templates/settings/layout.html:79 -#: bookwyrm/templates/settings/site.html:13 +#: bookwyrm/templates/settings/reports/report.html:5 +#: bookwyrm/templates/settings/reports/report.html:8 +#: bookwyrm/templates/settings/reports/report_preview.html:6 +#, python-format +msgid "Report #%(report_id)s: %(username)s" +msgstr "Signalement #%(report_id)s : %(username)s" + +#: bookwyrm/templates/settings/reports/report.html:9 +msgid "Back to reports" +msgstr "Retour aux signalements" + +#: bookwyrm/templates/settings/reports/report.html:23 +msgid "Moderator Comments" +msgstr "Commentaires de l’équipe de modération" + +#: bookwyrm/templates/settings/reports/report.html:41 +#: bookwyrm/templates/snippets/create_status.html:28 +msgid "Comment" +msgstr "Commentaire" + +#: bookwyrm/templates/settings/reports/report.html:46 +msgid "Reported statuses" +msgstr "Statuts signalés" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "No statuses reported" +msgstr "Aucun statut signalé" + +#: bookwyrm/templates/settings/reports/report.html:54 +msgid "Status has been deleted" +msgstr "Le statut a été supprimé" + +#: bookwyrm/templates/settings/reports/report_preview.html:13 +msgid "No notes provided" +msgstr "Aucune note fournie" + +#: bookwyrm/templates/settings/reports/report_preview.html:20 +#, python-format +msgid "Reported by %(username)s" +msgstr "Signalé par %(username)s" + +#: bookwyrm/templates/settings/reports/report_preview.html:30 +msgid "Re-open" +msgstr "Réouvrir" + +#: bookwyrm/templates/settings/reports/report_preview.html:32 +msgid "Resolve" +msgstr "Résoudre" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "Signalements : %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "Signalements : %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "Résolus" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "Aucun signalement trouvé." + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:21 msgid "Instance Info" msgstr "Information sur l’instance" -#: bookwyrm/templates/settings/layout.html:80 -#: bookwyrm/templates/settings/site.html:44 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:54 msgid "Images" msgstr "Images" -#: bookwyrm/templates/settings/layout.html:81 -#: bookwyrm/templates/settings/site.html:64 +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:74 msgid "Footer Content" msgstr "Contenu du pied de page" -#: bookwyrm/templates/settings/layout.html:82 -#: bookwyrm/templates/settings/site.html:86 +#: bookwyrm/templates/settings/site.html:13 +#: bookwyrm/templates/settings/site.html:98 msgid "Registration" msgstr "Inscription" -#: bookwyrm/templates/settings/manage_invite_requests.html:4 -#: bookwyrm/templates/settings/manage_invite_requests.html:11 -#: bookwyrm/templates/settings/manage_invite_requests.html:25 -#: bookwyrm/templates/settings/manage_invites.html:11 -msgid "Invite Requests" -msgstr "Demandes d’invitation" - -#: bookwyrm/templates/settings/manage_invite_requests.html:23 -msgid "Ignored Invite Requests" -msgstr "Invitations ignorées" - -#: bookwyrm/templates/settings/manage_invite_requests.html:35 -msgid "Date requested" -msgstr "Date d’envoi" - -#: bookwyrm/templates/settings/manage_invite_requests.html:39 -msgid "Date accepted" -msgstr "Date de validation" - -#: bookwyrm/templates/settings/manage_invite_requests.html:42 -msgid "Email" -msgstr "Email" - -#: bookwyrm/templates/settings/manage_invite_requests.html:47 -msgid "Action" -msgstr "Action" - -#: bookwyrm/templates/settings/manage_invite_requests.html:50 -msgid "No requests" -msgstr "Aucune demande" - -#: bookwyrm/templates/settings/manage_invite_requests.html:59 -#: bookwyrm/templates/settings/status_filter.html:16 -msgid "Accepted" -msgstr "Accepté(e)s" - -#: bookwyrm/templates/settings/manage_invite_requests.html:61 -#: bookwyrm/templates/settings/status_filter.html:12 -msgid "Sent" -msgstr "Envoyé(e)s" - -#: bookwyrm/templates/settings/manage_invite_requests.html:63 -#: bookwyrm/templates/settings/status_filter.html:8 -msgid "Requested" -msgstr "Demandé(e)s" - -#: bookwyrm/templates/settings/manage_invite_requests.html:73 -msgid "Send invite" -msgstr "Envoyer l’invitation" - -#: bookwyrm/templates/settings/manage_invite_requests.html:75 -msgid "Re-send invite" -msgstr "Envoyer l’invitation de nouveau" - -#: bookwyrm/templates/settings/manage_invite_requests.html:95 -msgid "Ignore" -msgstr "Ignorer" - -#: bookwyrm/templates/settings/manage_invite_requests.html:97 -msgid "Un-ignore" -msgstr "Ne plus ignorer" - -#: bookwyrm/templates/settings/manage_invite_requests.html:108 -msgid "Back to pending requests" -msgstr "Retour aux demandes en attente" - -#: bookwyrm/templates/settings/manage_invite_requests.html:110 -msgid "View ignored requests" -msgstr "Voir les demandes ignorées" - -#: bookwyrm/templates/settings/manage_invites.html:21 -msgid "Generate New Invite" -msgstr "Générer une nouvelle invitation" - -#: bookwyrm/templates/settings/manage_invites.html:27 -msgid "Expiry:" -msgstr "Expiration :" - -#: bookwyrm/templates/settings/manage_invites.html:33 -msgid "Use limit:" -msgstr "Limiter à :" - -#: bookwyrm/templates/settings/manage_invites.html:40 -msgid "Create Invite" -msgstr "Créer une invitation" - -#: bookwyrm/templates/settings/manage_invites.html:47 -msgid "Link" -msgstr "Lien" - -#: bookwyrm/templates/settings/manage_invites.html:48 -msgid "Expires" -msgstr "Expiration" - -#: bookwyrm/templates/settings/manage_invites.html:49 -msgid "Max uses" -msgstr "Nombre maximum d’utilisations" - -#: bookwyrm/templates/settings/manage_invites.html:50 -msgid "Times used" -msgstr "Nombre de fois utilisée" - -#: bookwyrm/templates/settings/manage_invites.html:53 -msgid "No active invites" -msgstr "Aucune invitation active" - -#: bookwyrm/templates/settings/server_blocklist.html:6 -msgid "Import Blocklist" -msgstr "Importer une liste de blocage" - -#: bookwyrm/templates/settings/server_blocklist.html:26 -#: bookwyrm/templates/snippets/goal_progress.html:7 -msgid "Success!" -msgstr "Bravo !" - -#: bookwyrm/templates/settings/server_blocklist.html:30 -msgid "Successfully blocked:" -msgstr "Blocage réussi :" - -#: bookwyrm/templates/settings/server_blocklist.html:32 -msgid "Failed:" -msgstr "Échec :" - -#: bookwyrm/templates/settings/site.html:15 +#: bookwyrm/templates/settings/site.html:24 msgid "Instance Name:" msgstr "Nom de l’instance :" -#: bookwyrm/templates/settings/site.html:19 +#: bookwyrm/templates/settings/site.html:28 msgid "Tagline:" msgstr "Slogan :" -#: bookwyrm/templates/settings/site.html:23 +#: bookwyrm/templates/settings/site.html:32 msgid "Instance description:" msgstr "Description de l’instance :" -#: bookwyrm/templates/settings/site.html:27 +#: bookwyrm/templates/settings/site.html:36 #, fuzzy #| msgid "Description:" msgid "Short description:" msgstr "Description :" -#: bookwyrm/templates/settings/site.html:28 +#: bookwyrm/templates/settings/site.html:37 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown." msgstr "" -#: bookwyrm/templates/settings/site.html:32 +#: bookwyrm/templates/settings/site.html:41 msgid "Code of conduct:" msgstr "Code de conduite :" -#: bookwyrm/templates/settings/site.html:36 +#: bookwyrm/templates/settings/site.html:45 msgid "Privacy Policy:" msgstr "Politique de vie privée :" -#: bookwyrm/templates/settings/site.html:47 +#: bookwyrm/templates/settings/site.html:57 msgid "Logo:" msgstr "Logo :" -#: bookwyrm/templates/settings/site.html:51 +#: bookwyrm/templates/settings/site.html:61 msgid "Logo small:" msgstr "Logo réduit :" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:65 msgid "Favicon:" msgstr "Favicon :" -#: bookwyrm/templates/settings/site.html:66 +#: bookwyrm/templates/settings/site.html:77 msgid "Support link:" msgstr "URL pour soutenir l’instance :" -#: bookwyrm/templates/settings/site.html:70 +#: bookwyrm/templates/settings/site.html:81 msgid "Support title:" msgstr "Titre pour soutenir l’instance :" -#: bookwyrm/templates/settings/site.html:74 +#: bookwyrm/templates/settings/site.html:85 msgid "Admin email:" msgstr "Email de l’administrateur :" -#: bookwyrm/templates/settings/site.html:78 +#: bookwyrm/templates/settings/site.html:89 msgid "Additional info:" msgstr "Infos supplémentaires :" -#: bookwyrm/templates/settings/site.html:90 +#: bookwyrm/templates/settings/site.html:103 msgid "Allow registration" msgstr "Autoriser les inscriptions" -#: bookwyrm/templates/settings/site.html:96 +#: bookwyrm/templates/settings/site.html:109 msgid "Allow invite requests" msgstr "Autoriser les demandes d’invitation" -#: bookwyrm/templates/settings/site.html:102 +#: bookwyrm/templates/settings/site.html:115 msgid "Require users to confirm email address" msgstr "Demander aux utilisateurs et utilisatrices de confirmer leur adresse email" -#: bookwyrm/templates/settings/site.html:104 +#: bookwyrm/templates/settings/site.html:117 msgid "(Recommended if registration is open)" msgstr "(Recommandé si les inscriptions sont ouvertes)" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:120 msgid "Registration closed text:" msgstr "Texte affiché lorsque les inscriptions sont closes :" -#: bookwyrm/templates/settings/site.html:111 +#: bookwyrm/templates/settings/site.html:124 #, fuzzy #| msgid "Invite Requests" msgid "Invite request text:" msgstr "Demandes d’invitation" +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +#, fuzzy +#| msgid "Confirm password:" +msgid "Your password:" +msgstr "Confirmez le mot de passe :" + +#: bookwyrm/templates/settings/users/user.html:7 +msgid "Back to users" +msgstr "Retour aux comptes" + +#: bookwyrm/templates/settings/users/user_admin.html:7 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "Comptes : %(instance_name)s" + +#: bookwyrm/templates/settings/users/user_admin.html:22 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "Nom du compte" + +#: bookwyrm/templates/settings/users/user_admin.html:26 +msgid "Date Added" +msgstr "Date d’ajout" + +#: bookwyrm/templates/settings/users/user_admin.html:30 +msgid "Last Active" +msgstr "Dernière activité" + +#: bookwyrm/templates/settings/users/user_admin.html:38 +msgid "Remote instance" +msgstr "Instance distante" + +#: bookwyrm/templates/settings/users/user_admin.html:47 +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "Active" +msgstr "Actif" + +#: bookwyrm/templates/settings/users/user_admin.html:47 +#: bookwyrm/templates/settings/users/user_info.html:28 +msgid "Inactive" +msgstr "Inactif" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +#: bookwyrm/templates/settings/users/user_info.html:120 +msgid "Not set" +msgstr "Non défini" + +#: bookwyrm/templates/settings/users/user_info.html:16 +msgid "View user profile" +msgstr "Voir le profil" + +#: bookwyrm/templates/settings/users/user_info.html:36 +msgid "Local" +msgstr "Local" + +#: bookwyrm/templates/settings/users/user_info.html:38 +#, fuzzy +#| msgid "Remove" +msgid "Remote" +msgstr "Retirer" + +#: bookwyrm/templates/settings/users/user_info.html:47 +msgid "User details" +msgstr "Détails du compte" + +#: bookwyrm/templates/settings/users/user_info.html:51 +#, fuzzy +#| msgid "Email" +msgid "Email:" +msgstr "Email" + +#: bookwyrm/templates/settings/users/user_info.html:61 +#, fuzzy +#| msgid "Directory" +msgid "(View reports)" +msgstr "Répertoire" + +#: bookwyrm/templates/settings/users/user_info.html:67 +#, fuzzy +#| msgid "Blocked by us:" +msgid "Blocked by count:" +msgstr "Bloqués par nous :" + +#: bookwyrm/templates/settings/users/user_info.html:70 +#, fuzzy +#| msgid "last active" +msgid "Last active date:" +msgstr "dernière activité" + +#: bookwyrm/templates/settings/users/user_info.html:73 +#, fuzzy +#| msgid "Manually approve followers:" +msgid "Manually approved followers:" +msgstr "Autoriser les abonnements manuellement :" + +#: bookwyrm/templates/settings/users/user_info.html:76 +#, fuzzy +#| msgid "Discard" +msgid "Discoverable:" +msgstr "Rejeter" + +#: bookwyrm/templates/settings/users/user_info.html:80 +#, fuzzy +#| msgid "Deactivate user" +msgid "Deactivation reason:" +msgstr "Désactiver le compte" + +#: bookwyrm/templates/settings/users/user_info.html:95 +msgid "Instance details" +msgstr "Détails de l’instance" + +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "View instance" +msgstr "Voir l’instance" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:5 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:13 +msgid "Send direct message" +msgstr "Envoyer un message direct" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 +msgid "Suspend user" +msgstr "Suspendre le compte" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 +msgid "Un-suspend user" +msgstr "Rétablir le compte" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 +msgid "Access level:" +msgstr "Niveau d’accès :" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +msgid "Create Shelf" +msgstr "Créer une étagère" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "Modifier l’étagère" + +#: bookwyrm/templates/shelf/shelf.html:28 bookwyrm/views/shelf.py:56 +msgid "All books" +msgstr "Tous les livres" + +#: bookwyrm/templates/shelf/shelf.html:55 +msgid "Create shelf" +msgstr "Créer une étagère" + +#: bookwyrm/templates/shelf/shelf.html:77 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" + +#: bookwyrm/templates/shelf/shelf.html:84 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:96 +msgid "Edit shelf" +msgstr "Modifier l’étagère" + +#: bookwyrm/templates/shelf/shelf.html:104 +msgid "Delete shelf" +msgstr "Supprimer l’étagère" + +#: bookwyrm/templates/shelf/shelf.html:130 +#: bookwyrm/templates/shelf/shelf.html:154 +msgid "Shelved" +msgstr "Date d’ajout" + +#: bookwyrm/templates/shelf/shelf.html:131 +#: bookwyrm/templates/shelf/shelf.html:158 +msgid "Started" +msgstr "Commencé" + +#: bookwyrm/templates/shelf/shelf.html:132 +#: bookwyrm/templates/shelf/shelf.html:161 +msgid "Finished" +msgstr "Terminé" + +#: bookwyrm/templates/shelf/shelf.html:187 +msgid "This shelf is empty." +msgstr "Cette étagère est vide" + #: bookwyrm/templates/snippets/announcement.html:31 #, python-format msgid "Posted by %(username)s" @@ -2833,24 +3045,21 @@ msgid "Some thoughts on the book" msgstr "" #: bookwyrm/templates/snippets/create_status/comment.html:26 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:16 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:15 msgid "Progress:" msgstr "Progression :" #: bookwyrm/templates/snippets/create_status/comment.html:52 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:31 -#: bookwyrm/templates/snippets/readthrough_form.html:22 +#: bookwyrm/templates/snippets/progress_field.html:18 msgid "pages" msgstr "pages" #: bookwyrm/templates/snippets/create_status/comment.html:58 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:32 -#: bookwyrm/templates/snippets/readthrough_form.html:23 +#: bookwyrm/templates/snippets/progress_field.html:23 msgid "percent" msgstr "pourcent" #: bookwyrm/templates/snippets/create_status/comment.html:65 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:37 #, python-format msgid "of %(pages)s pages" msgstr "sur %(pages)s pages" @@ -3047,29 +3256,29 @@ msgstr[1] "Critique de « %(book_title)s » (%(display_rating)s stars) : % msgid "Review of \"%(book_title)s\": %(review_title)s" msgstr "Critique de « %(book_title)s » : %(review_title)s" -#: bookwyrm/templates/snippets/goal_card.html:23 +#: bookwyrm/templates/snippets/goal_form.html:3 #, python-format -msgid "You can set or change your reading goal any time from your profile page" -msgstr "Vous pouvez définir ou changer votre défi lecture à n’importe quel moment depuis votre profil" +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "Définissez un nombre de livre à lire comme objectif pour %(year)s, et suivezvotre progression au fil de l’année." -#: bookwyrm/templates/snippets/goal_form.html:9 +#: bookwyrm/templates/snippets/goal_form.html:12 msgid "Reading goal:" msgstr "Défi lecture :" -#: bookwyrm/templates/snippets/goal_form.html:14 +#: bookwyrm/templates/snippets/goal_form.html:17 msgid "books" msgstr "livres" -#: bookwyrm/templates/snippets/goal_form.html:19 +#: bookwyrm/templates/snippets/goal_form.html:22 msgid "Goal privacy:" msgstr "Confidentialité du défi :" -#: bookwyrm/templates/snippets/goal_form.html:26 +#: bookwyrm/templates/snippets/goal_form.html:29 #: bookwyrm/templates/snippets/reading_modals/layout.html:13 msgid "Post to feed" msgstr "Publier sur le fil d’actualité" -#: bookwyrm/templates/snippets/goal_form.html:30 +#: bookwyrm/templates/snippets/goal_form.html:33 msgid "Set goal" msgstr "Valider ce défi" @@ -3145,18 +3354,18 @@ msgstr "Noter" msgid "Finish \"%(book_title)s\"" msgstr "Terminer « %(book_title)s »" -#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:22 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:23 #: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:20 #: bookwyrm/templates/snippets/readthrough_form.html:7 msgid "Started reading" msgstr "Lecture commencée le" -#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:30 -#: bookwyrm/templates/snippets/readthrough_form.html:30 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:31 +#: bookwyrm/templates/snippets/readthrough_form.html:20 msgid "Finished reading" msgstr "Lecture terminée le" -#: bookwyrm/templates/snippets/reading_modals/form.html:8 +#: bookwyrm/templates/snippets/reading_modals/form.html:9 msgid "(Optional)" msgstr "" @@ -3187,6 +3396,20 @@ msgstr "S’enregistrer" msgid "Report" msgstr "Signaler" +#: bookwyrm/templates/snippets/report_modal.html:6 +#, python-format +msgid "Report @%(username)s" +msgstr "Signaler @%(username)s" + +#: bookwyrm/templates/snippets/report_modal.html:23 +#, python-format +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." + +#: bookwyrm/templates/snippets/report_modal.html:24 +msgid "More info about this report:" +msgstr "En savoir plus sur ce signalement :" + #: bookwyrm/templates/snippets/search_result_text.html:36 msgid "Import book" msgstr "Importer le livre" @@ -3327,12 +3550,6 @@ msgstr "Plus d’options" msgid "Delete & re-draft" msgstr "Supprimer & recommencer la rédaction" -#: bookwyrm/templates/snippets/status/status_options.html:35 -#: bookwyrm/templates/snippets/user_options.html:13 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:13 -msgid "Send direct message" -msgstr "Envoyer un message direct" - #: bookwyrm/templates/snippets/suggested_users.html:16 #, python-format msgid "%(mutuals)s follower you follow" @@ -3374,6 +3591,35 @@ msgstr "Déplier" msgid "Show less" msgstr "Replier" +#: bookwyrm/templates/user/books_header.html:5 +#, python-format +msgid "%(username)s's books" +msgstr "Livres de %(username)s" + +#: bookwyrm/templates/user/goal.html:8 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "Progression de lecture pour %(year)s" + +#: bookwyrm/templates/user/goal.html:12 +msgid "Edit Goal" +msgstr "Modifier le défi" + +#: bookwyrm/templates/user/goal.html:28 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "%(name)s n’a aucun défi lecture pour %(year)s." + +#: bookwyrm/templates/user/goal.html:40 +#, python-format +msgid "Your %(year)s Books" +msgstr "Vos livres en %(year)s" + +#: bookwyrm/templates/user/goal.html:42 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "Livres de %(username)s en %(year)s" + #: bookwyrm/templates/user/layout.html:18 bookwyrm/templates/user/user.html:10 msgid "User Profile" msgstr "Profil" @@ -3410,71 +3656,6 @@ msgstr "Comptes suivis" msgid "%(username)s isn't following any users" msgstr "%(username)s ne suit personne" -#: bookwyrm/templates/user/shelf/books_header.html:5 -#, python-format -msgid "%(username)s's books" -msgstr "Livres de %(username)s" - -#: bookwyrm/templates/user/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/user/shelf/create_shelf_form.html:22 -msgid "Create Shelf" -msgstr "Créer une étagère" - -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:5 -msgid "Edit Shelf" -msgstr "Modifier l’étagère" - -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:26 -msgid "Update shelf" -msgstr "Mettre l’étagère à jour" - -#: bookwyrm/templates/user/shelf/shelf.html:28 bookwyrm/views/shelf.py:56 -msgid "All books" -msgstr "Tous les livres" - -#: bookwyrm/templates/user/shelf/shelf.html:55 -msgid "Create shelf" -msgstr "Créer une étagère" - -#: bookwyrm/templates/user/shelf/shelf.html:76 -#, python-format -msgid "%(formatted_count)s book" -msgid_plural "%(formatted_count)s books" -msgstr[0] "" -msgstr[1] "" - -#: bookwyrm/templates/user/shelf/shelf.html:83 -#, python-format -msgid "(showing %(start)s-%(end)s)" -msgstr "" - -#: bookwyrm/templates/user/shelf/shelf.html:94 -msgid "Edit shelf" -msgstr "Modifier l’étagère" - -#: bookwyrm/templates/user/shelf/shelf.html:113 -#: bookwyrm/templates/user/shelf/shelf.html:137 -msgid "Shelved" -msgstr "Date d’ajout" - -#: bookwyrm/templates/user/shelf/shelf.html:114 -#: bookwyrm/templates/user/shelf/shelf.html:141 -msgid "Started" -msgstr "Commencé" - -#: bookwyrm/templates/user/shelf/shelf.html:115 -#: bookwyrm/templates/user/shelf/shelf.html:144 -msgid "Finished" -msgstr "Terminé" - -#: bookwyrm/templates/user/shelf/shelf.html:170 -msgid "This shelf is empty." -msgstr "Cette étagère est vide" - -#: bookwyrm/templates/user/shelf/shelf.html:176 -msgid "Delete shelf" -msgstr "Supprimer l’étagère" - #: bookwyrm/templates/user/user.html:16 msgid "Edit profile" msgstr "Modifier le profil" @@ -3531,147 +3712,6 @@ msgstr[1] "%(mutuals_display)s abonné(e)s que vous suivez" msgid "No followers you follow" msgstr "compte que vous suivez" -#: bookwyrm/templates/user_admin/delete_user_form.html:5 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:31 -msgid "Permanently delete user" -msgstr "" - -#: bookwyrm/templates/user_admin/delete_user_form.html:12 -#, python-format -msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." -msgstr "" - -#: bookwyrm/templates/user_admin/delete_user_form.html:17 -#, fuzzy -#| msgid "Confirm password:" -msgid "Your password:" -msgstr "Confirmez le mot de passe :" - -#: bookwyrm/templates/user_admin/user.html:8 -msgid "Back to users" -msgstr "Retour aux comptes" - -#: bookwyrm/templates/user_admin/user_admin.html:7 -#, python-format -msgid "Users: %(instance_name)s" -msgstr "Comptes : %(instance_name)s" - -#: bookwyrm/templates/user_admin/user_admin.html:22 -#: bookwyrm/templates/user_admin/username_filter.html:5 -msgid "Username" -msgstr "Nom du compte" - -#: bookwyrm/templates/user_admin/user_admin.html:26 -msgid "Date Added" -msgstr "Date d’ajout" - -#: bookwyrm/templates/user_admin/user_admin.html:30 -msgid "Last Active" -msgstr "Dernière activité" - -#: bookwyrm/templates/user_admin/user_admin.html:38 -msgid "Remote instance" -msgstr "Instance distante" - -#: bookwyrm/templates/user_admin/user_admin.html:47 -#: bookwyrm/templates/user_admin/user_info.html:24 -msgid "Active" -msgstr "Actif" - -#: bookwyrm/templates/user_admin/user_admin.html:47 -#: bookwyrm/templates/user_admin/user_info.html:28 -msgid "Inactive" -msgstr "Inactif" - -#: bookwyrm/templates/user_admin/user_admin.html:52 -#: bookwyrm/templates/user_admin/user_info.html:140 -msgid "Not set" -msgstr "Non défini" - -#: bookwyrm/templates/user_admin/user_info.html:16 -msgid "View user profile" -msgstr "Voir le profil" - -#: bookwyrm/templates/user_admin/user_info.html:36 -msgid "Local" -msgstr "Local" - -#: bookwyrm/templates/user_admin/user_info.html:38 -#, fuzzy -#| msgid "Remove" -msgid "Remote" -msgstr "Retirer" - -#: bookwyrm/templates/user_admin/user_info.html:47 -msgid "User details" -msgstr "Détails du compte" - -#: bookwyrm/templates/user_admin/user_info.html:52 -#, fuzzy -#| msgid "Email" -msgid "Email:" -msgstr "Email" - -#: bookwyrm/templates/user_admin/user_info.html:64 -#, fuzzy -#| msgid "Directory" -msgid "(View reports)" -msgstr "Répertoire" - -#: bookwyrm/templates/user_admin/user_info.html:72 -#, fuzzy -#| msgid "Blocked by us:" -msgid "Blocked by count:" -msgstr "Bloqués par nous :" - -#: bookwyrm/templates/user_admin/user_info.html:77 -#, fuzzy -#| msgid "last active" -msgid "Last active date:" -msgstr "dernière activité" - -#: bookwyrm/templates/user_admin/user_info.html:82 -#, fuzzy -#| msgid "Manually approve followers:" -msgid "Manually approved followers:" -msgstr "Autoriser les abonnements manuellement :" - -#: bookwyrm/templates/user_admin/user_info.html:87 -#, fuzzy -#| msgid "Discard" -msgid "Discoverable:" -msgstr "Rejeter" - -#: bookwyrm/templates/user_admin/user_info.html:93 -#, fuzzy -#| msgid "Deactivate user" -msgid "Deactivation reason:" -msgstr "Désactiver le compte" - -#: bookwyrm/templates/user_admin/user_info.html:111 -msgid "Instance details" -msgstr "Détails de l’instance" - -#: bookwyrm/templates/user_admin/user_info.html:137 -msgid "View instance" -msgstr "Voir l’instance" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:5 -msgid "Permanently deleted" -msgstr "" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:20 -msgid "Suspend user" -msgstr "Suspendre le compte" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:25 -msgid "Un-suspend user" -msgstr "Rétablir le compte" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:47 -msgid "Access level:" -msgstr "Niveau d’accès :" - #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 msgid "File exceeds maximum size: 10MB" msgstr "Ce fichier dépasse la taille limite : 10 Mo" @@ -3704,6 +3744,9 @@ msgstr "Un lien de réinitialisation a été envoyé à %s." msgid "Status updates from {obj.display_name}" msgstr "" +#~ msgid "Update shelf" +#~ msgstr "Mettre l’étagère à jour" + #~ msgid "%(count)d uses" #~ msgstr "%(count)d utilisations" diff --git a/locale/zh_Hans/LC_MESSAGES/django.po b/locale/zh_Hans/LC_MESSAGES/django.po index 142045a9f..28e029045 100644 --- a/locale/zh_Hans/LC_MESSAGES/django.po +++ b/locale/zh_Hans/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-28 18:31+0000\n" +"POT-Creation-Date: 2021-09-29 18:32+0000\n" "PO-Revision-Date: 2021-03-20 00:56+0000\n" "Last-Translator: Kana \n" "Language-Team: Mouse Reeve \n" @@ -56,10 +56,9 @@ msgstr "列表顺序" msgid "Book Title" msgstr "书名" -#: bookwyrm/forms.py:327 +#: bookwyrm/forms.py:327 bookwyrm/templates/shelf/shelf.html:134 +#: bookwyrm/templates/shelf/shelf.html:165 #: bookwyrm/templates/snippets/create_status/review.html:33 -#: bookwyrm/templates/user/shelf/shelf.html:117 -#: bookwyrm/templates/user/shelf/shelf.html:148 msgid "Rating" msgstr "评价" @@ -111,16 +110,42 @@ msgstr "提及" msgid "Domain block" msgstr "取消屏蔽" +#: bookwyrm/models/book.py:232 +#, fuzzy +#| msgid "Add books" +msgid "Audiobook" +msgstr "添加书目" + +#: bookwyrm/models/book.py:233 +#, fuzzy +#| msgid "Book" +msgid "eBook" +msgstr "书目" + +#: bookwyrm/models/book.py:234 +msgid "Graphic novel" +msgstr "" + +#: bookwyrm/models/book.py:235 +#, fuzzy +#| msgid "Add cover" +msgid "Hardcover" +msgstr "添加封面" + +#: bookwyrm/models/book.py:236 +msgid "Paperback" +msgstr "" + #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/edit_server.html:40 -#: bookwyrm/templates/settings/federation.html:19 +#: bookwyrm/templates/settings/federation/edit_instance.html:42 +#: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "跨站" #: bookwyrm/models/federated_server.py:12 -#: bookwyrm/templates/settings/edit_server.html:41 -#: bookwyrm/templates/settings/federated_server.html:10 -#: bookwyrm/templates/settings/federation.html:23 +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:23 msgid "Blocked" msgstr "已屏蔽" @@ -274,9 +299,7 @@ msgid "Metadata" msgstr "元数据" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/lists/form.html:8 -#: bookwyrm/templates/user/shelf/create_shelf_form.html:13 -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:14 +#: bookwyrm/templates/lists/form.html:8 bookwyrm/templates/shelf/form.html:9 msgid "Name:" msgstr "名称:" @@ -312,7 +335,7 @@ msgid "Openlibrary key:" msgstr "Openlibrary key:" #: bookwyrm/templates/author/edit_author.html:89 -#: bookwyrm/templates/book/edit_book.html:300 +#: bookwyrm/templates/book/edit_book.html:313 msgid "Inventaire ID:" msgstr "Inventaire ID:" @@ -326,32 +349,30 @@ msgstr "Goodreads key:" #: bookwyrm/templates/author/edit_author.html:116 #: bookwyrm/templates/book/book.html:140 -#: bookwyrm/templates/book/edit_book.html:328 +#: bookwyrm/templates/book/edit_book.html:341 #: bookwyrm/templates/book/readthrough.html:76 #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/form.html:44 #: bookwyrm/templates/preferences/edit_user.html:118 -#: bookwyrm/templates/settings/announcement_form.html:69 -#: bookwyrm/templates/settings/edit_server.html:68 -#: bookwyrm/templates/settings/federated_server.html:98 -#: bookwyrm/templates/settings/site.html:120 -#: bookwyrm/templates/snippets/reading_modals/layout.html:16 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:43 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:64 +#: bookwyrm/templates/settings/announcements/announcement_form.html:69 +#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/instance.html:87 +#: bookwyrm/templates/settings/site.html:134 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:64 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 msgid "Save" msgstr "保存" #: bookwyrm/templates/author/edit_author.html:117 #: bookwyrm/templates/book/book.html:141 bookwyrm/templates/book/book.html:190 #: bookwyrm/templates/book/cover_modal.html:32 -#: bookwyrm/templates/book/edit_book.html:329 +#: bookwyrm/templates/book/edit_book.html:342 #: bookwyrm/templates/book/readthrough.html:77 #: bookwyrm/templates/lists/delete_list_modal.html:17 -#: bookwyrm/templates/moderation/report_modal.html:34 -#: bookwyrm/templates/settings/federated_server.html:99 +#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/snippets/delete_readthrough_modal.html:17 -#: bookwyrm/templates/snippets/goal_form.html:32 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:44 +#: bookwyrm/templates/snippets/report_modal.html:34 msgid "Cancel" msgstr "取消" @@ -387,7 +408,7 @@ msgstr "添加描述" #: bookwyrm/templates/book/book.html:136 #: bookwyrm/templates/book/edit_book.html:143 -#: bookwyrm/templates/lists/form.html:12 +#: bookwyrm/templates/lists/form.html:12 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "描述:" @@ -461,8 +482,8 @@ msgstr "添加到列表" #: bookwyrm/templates/book/book.html:313 #: bookwyrm/templates/book/cover_modal.html:31 #: bookwyrm/templates/lists/list.html:181 -#: bookwyrm/templates/settings/domain_form.html:26 -#: bookwyrm/templates/settings/ip_address_form.html:32 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:26 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 msgid "Add" msgstr "添加" @@ -471,12 +492,12 @@ msgid "ISBN:" msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:14 -#: bookwyrm/templates/book/edit_book.html:308 +#: bookwyrm/templates/book/edit_book.html:321 msgid "OCLC Number:" msgstr "OCLC 号:" #: bookwyrm/templates/book/book_identifiers.html:21 -#: bookwyrm/templates/book/edit_book.html:316 +#: bookwyrm/templates/book/edit_book.html:329 msgid "ASIN:" msgstr "ASIN:" @@ -486,7 +507,7 @@ msgid "Upload cover:" msgstr "上传封面:" #: bookwyrm/templates/book/cover_modal.html:23 -#: bookwyrm/templates/book/edit_book.html:242 +#: bookwyrm/templates/book/edit_book.html:241 msgid "Load cover from url:" msgstr "从网址加载封面:" @@ -598,11 +619,11 @@ msgid "John Doe, Jane Smith" msgstr "张三, 李四" #: bookwyrm/templates/book/edit_book.html:227 -#: bookwyrm/templates/user/shelf/shelf.html:110 +#: bookwyrm/templates/shelf/shelf.html:127 msgid "Cover" msgstr "封面" -#: bookwyrm/templates/book/edit_book.html:255 +#: bookwyrm/templates/book/edit_book.html:253 msgid "Physical Properties" msgstr "实体性质" @@ -611,23 +632,29 @@ msgstr "实体性质" msgid "Format:" msgstr "格式:" -#: bookwyrm/templates/book/edit_book.html:265 +#: bookwyrm/templates/book/edit_book.html:268 +#, fuzzy +#| msgid "User details" +msgid "Format details:" +msgstr "用户详情" + +#: bookwyrm/templates/book/edit_book.html:278 msgid "Pages:" msgstr "页数:" -#: bookwyrm/templates/book/edit_book.html:274 +#: bookwyrm/templates/book/edit_book.html:287 msgid "Book Identifiers" msgstr "书目标识号" -#: bookwyrm/templates/book/edit_book.html:276 +#: bookwyrm/templates/book/edit_book.html:289 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit_book.html:284 +#: bookwyrm/templates/book/edit_book.html:297 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit_book.html:292 +#: bookwyrm/templates/book/edit_book.html:305 msgid "Openlibrary ID:" msgstr "Openlibrary ID:" @@ -760,14 +787,14 @@ msgid "Sorry! We couldn't find that code." msgstr "抱歉!我们无法找到该代码。" #: bookwyrm/templates/confirm_email/confirm_email.html:19 -#: bookwyrm/templates/user_admin/user_info.html:100 +#: bookwyrm/templates/settings/users/user_info.html:85 msgid "Confirmation code:" msgstr "确认代码:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:73 -#: bookwyrm/templates/moderation/report_modal.html:33 -#: bookwyrm/templates/settings/dashboard.html:93 +#: bookwyrm/templates/settings/dashboard/dashboard.html:93 +#: bookwyrm/templates/snippets/report_modal.html:33 msgid "Submit" msgstr "提交" @@ -819,8 +846,8 @@ msgid "You can opt-out at any time in your profile settings msgstr "你可以在任何时候从你的 个人资料设定 中退出。" #: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/feed/goal_card.html:17 #: bookwyrm/templates/snippets/announcement.html:34 -#: bookwyrm/templates/snippets/goal_card.html:22 msgid "Dismiss message" msgstr "遣散消息" @@ -829,13 +856,13 @@ msgid "Order by" msgstr "排列顺序" #: bookwyrm/templates/directory/sort_filter.html:8 -msgid "Suggested" -msgstr "受推荐" - -#: bookwyrm/templates/directory/sort_filter.html:9 msgid "Recently active" msgstr "最近活跃" +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Suggested" +msgstr "受推荐" + #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 #: bookwyrm/templates/user/user_preview.html:16 @@ -1022,12 +1049,24 @@ msgstr "加载 0 条未读状态" msgid "There aren't any activities right now! Try following a user to get started" msgstr "现在还没有任何活动!尝试从关注一个用户开始吧" +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:90 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "%(year)s 阅读目标" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "你可以在任何时候从你的个人资料页面 中设置或改变你的阅读目标" + #: bookwyrm/templates/feed/layout.html:5 msgid "Updates" msgstr "更新" #: bookwyrm/templates/feed/layout.html:12 -#: bookwyrm/templates/user/shelf/books_header.html:3 +#: bookwyrm/templates/user/books_header.html:3 msgid "Your books" msgstr "你的书目" @@ -1036,28 +1075,22 @@ msgid "There are no books here right now! Try searching for a book to get starte msgstr "现在这里还没有任何书目!尝试着从搜索某本书开始吧" #: bookwyrm/templates/feed/layout.html:25 -#: bookwyrm/templates/user/shelf/shelf.html:38 +#: bookwyrm/templates/shelf/shelf.html:38 msgid "To Read" msgstr "想读" #: bookwyrm/templates/feed/layout.html:26 -#: bookwyrm/templates/user/shelf/shelf.html:40 +#: bookwyrm/templates/shelf/shelf.html:40 msgid "Currently Reading" msgstr "在读" #: bookwyrm/templates/feed/layout.html:27 +#: bookwyrm/templates/shelf/shelf.html:42 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:23 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/user/shelf/shelf.html:42 msgid "Read" msgstr "读过" -#: bookwyrm/templates/feed/layout.html:90 bookwyrm/templates/goal.html:26 -#: bookwyrm/templates/snippets/goal_card.html:6 -#, python-format -msgid "%(year)s Reading Goal" -msgstr "%(year)s 阅读目标" - #: bookwyrm/templates/feed/suggested_users.html:5 #: bookwyrm/templates/get_started/users.html:6 msgid "Who to follow" @@ -1206,39 +1239,9 @@ msgstr "搜索用户" msgid "No users found for \"%(query)s\"" msgstr "没有找到 \"%(query)s\" 的用户" -#: bookwyrm/templates/goal.html:7 -#, python-format -msgid "%(year)s Reading Progress" -msgstr "%(year)s 阅读进度" - -#: bookwyrm/templates/goal.html:11 -msgid "Edit Goal" -msgstr "编辑目标" - -#: bookwyrm/templates/goal.html:30 -#: bookwyrm/templates/snippets/goal_card.html:13 -#, python-format -msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." -msgstr "设定一个 %(year)s 内要读多少书的目标,并记录你全年的进度。" - -#: bookwyrm/templates/goal.html:39 -#, python-format -msgid "%(name)s hasn't set a reading goal for %(year)s." -msgstr "%(name)s 还没有设定 %(year)s 的阅读目标。" - -#: bookwyrm/templates/goal.html:51 -#, python-format -msgid "Your %(year)s Books" -msgstr "你 %(year)s 的书目" - -#: bookwyrm/templates/goal.html:53 -#, python-format -msgid "%(username)s's %(year)s Books" -msgstr "%(username)s 在 %(year)s 的书目" - #: bookwyrm/templates/import/import.html:5 #: bookwyrm/templates/import/import.html:9 -#: bookwyrm/templates/user/shelf/shelf.html:57 +#: bookwyrm/templates/shelf/shelf.html:57 msgid "Import Books" msgstr "导入书目" @@ -1259,7 +1262,7 @@ msgid "Privacy setting for imported reviews:" msgstr "导入书评的隐私设定" #: bookwyrm/templates/import/import.html:56 -#: bookwyrm/templates/settings/server_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 msgid "Import" msgstr "导入" @@ -1335,14 +1338,14 @@ msgid "Book" msgstr "书目" #: bookwyrm/templates/import/import_status.html:122 -#: bookwyrm/templates/user/shelf/shelf.html:111 -#: bookwyrm/templates/user/shelf/shelf.html:131 +#: bookwyrm/templates/shelf/shelf.html:128 +#: bookwyrm/templates/shelf/shelf.html:148 msgid "Title" msgstr "标题" #: bookwyrm/templates/import/import_status.html:125 -#: bookwyrm/templates/user/shelf/shelf.html:112 -#: bookwyrm/templates/user/shelf/shelf.html:134 +#: bookwyrm/templates/shelf/shelf.html:129 +#: bookwyrm/templates/shelf/shelf.html:151 msgid "Author" msgstr "作者" @@ -1450,10 +1453,10 @@ msgid "Settings" msgstr "设置" #: bookwyrm/templates/layout.html:125 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 #: bookwyrm/templates/settings/layout.html:40 -#: bookwyrm/templates/settings/manage_invite_requests.html:15 -#: bookwyrm/templates/settings/manage_invites.html:3 -#: bookwyrm/templates/settings/manage_invites.html:15 msgid "Invites" msgstr "邀请" @@ -1581,9 +1584,9 @@ msgid "This action cannot be un-done" msgstr "" #: bookwyrm/templates/lists/delete_list_modal.html:15 -#: bookwyrm/templates/settings/announcement.html:20 -#: bookwyrm/templates/settings/email_blocklist.html:49 -#: bookwyrm/templates/settings/ip_blocklist.html:36 +#: bookwyrm/templates/settings/announcements/announcement.html:20 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 #: bookwyrm/templates/snippets/delete_readthrough_modal.html:15 #: bookwyrm/templates/snippets/follow_request_buttons.html:12 msgid "Delete" @@ -1614,9 +1617,8 @@ msgstr "策展" msgid "Anyone can suggest books, subject to your approval" msgstr "任何人都可以推荐书目、主题让你批准" -#: bookwyrm/templates/lists/form.html:31 -#: bookwyrm/templates/moderation/reports.html:25 -#: bookwyrm/templates/search/book.html:30 +#: bookwyrm/templates/lists/form.html:31 bookwyrm/templates/search/book.html:30 +#: bookwyrm/templates/settings/reports/reports.html:25 #: bookwyrm/templates/snippets/announcement.html:16 msgid "Open" msgstr "开放" @@ -1734,93 +1736,6 @@ msgstr "密码:" msgid "More about this site" msgstr "更多关于本站点的信息" -#: bookwyrm/templates/moderation/report.html:5 -#: bookwyrm/templates/moderation/report.html:6 -#: bookwyrm/templates/moderation/report_preview.html:6 -#, python-format -msgid "Report #%(report_id)s: %(username)s" -msgstr "报告 #%(report_id)s: %(username)s" - -#: bookwyrm/templates/moderation/report.html:10 -msgid "Back to reports" -msgstr "回到报告" - -#: bookwyrm/templates/moderation/report.html:22 -msgid "Moderator Comments" -msgstr "监察员评论" - -#: bookwyrm/templates/moderation/report.html:40 -#: bookwyrm/templates/snippets/create_status.html:28 -msgid "Comment" -msgstr "评论" - -#: bookwyrm/templates/moderation/report.html:45 -msgid "Reported statuses" -msgstr "被报告的状态" - -#: bookwyrm/templates/moderation/report.html:47 -msgid "No statuses reported" -msgstr "没有被报告的状态" - -#: bookwyrm/templates/moderation/report.html:53 -msgid "Status has been deleted" -msgstr "状态已被删除" - -#: bookwyrm/templates/moderation/report_modal.html:6 -#, python-format -msgid "Report @%(username)s" -msgstr "报告 %(username)s" - -#: bookwyrm/templates/moderation/report_modal.html:23 -#, python-format -msgid "This report will be sent to %(site_name)s's moderators for review." -msgstr "本报告会被发送至 %(site_name)s 的监察员以复查。" - -#: bookwyrm/templates/moderation/report_modal.html:24 -msgid "More info about this report:" -msgstr "关于本报告的更多信息" - -#: bookwyrm/templates/moderation/report_preview.html:13 -msgid "No notes provided" -msgstr "没有提供摘记" - -#: bookwyrm/templates/moderation/report_preview.html:20 -#, python-format -msgid "Reported by %(username)s" -msgstr "由 %(username)s 报告" - -#: bookwyrm/templates/moderation/report_preview.html:30 -msgid "Re-open" -msgstr "重新开启" - -#: bookwyrm/templates/moderation/report_preview.html:32 -msgid "Resolve" -msgstr "已解决" - -#: bookwyrm/templates/moderation/reports.html:6 -#, python-format -msgid "Reports: %(instance_name)s" -msgstr "报告: %(instance_name)s" - -#: bookwyrm/templates/moderation/reports.html:8 -#: bookwyrm/templates/moderation/reports.html:17 -#: bookwyrm/templates/settings/layout.html:55 -msgid "Reports" -msgstr "报告" - -#: bookwyrm/templates/moderation/reports.html:14 -#, python-format -msgid "Reports: %(instance_name)s" -msgstr "报告: %(instance_name)s" - -#: bookwyrm/templates/moderation/reports.html:28 -msgid "Resolved" -msgstr "已解决" - -#: bookwyrm/templates/moderation/reports.html:37 -msgid "No reports found." -msgstr "没有找到报告" - #: bookwyrm/templates/notifications.html:16 msgid "Delete notifications" msgstr "删除通知" @@ -1985,7 +1900,7 @@ msgstr "新密码:" #: bookwyrm/templates/preferences/delete_user.html:7 #: bookwyrm/templates/preferences/delete_user.html:26 #: bookwyrm/templates/preferences/layout.html:24 -#: bookwyrm/templates/user_admin/delete_user_form.html:23 +#: bookwyrm/templates/settings/users/delete_user_form.html:23 msgid "Delete Account" msgstr "删除帐号" @@ -2005,7 +1920,7 @@ msgstr "编辑个人资料" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 -#: bookwyrm/templates/user_admin/user_info.html:7 +#: bookwyrm/templates/settings/users/user_info.html:7 msgid "Profile" msgstr "个人资料" @@ -2093,11 +2008,11 @@ msgstr "搜索类型" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 -#: bookwyrm/templates/settings/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation.html:44 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:44 #: bookwyrm/templates/settings/layout.html:34 -#: bookwyrm/templates/user_admin/user_admin.html:3 -#: bookwyrm/templates/user_admin/user_admin.html:10 +#: bookwyrm/templates/settings/users/user_admin.html:3 +#: bookwyrm/templates/settings/users/user_admin.html:10 msgid "Users" msgstr "用户" @@ -2106,403 +2021,548 @@ msgstr "用户" msgid "No results found for \"%(query)s\"" msgstr "没有找到 “%(query)s” 的搜索结果" -#: bookwyrm/templates/settings/announcement.html:3 -#: bookwyrm/templates/settings/announcement.html:6 +#: bookwyrm/templates/settings/announcements/announcement.html:3 +#: bookwyrm/templates/settings/announcements/announcement.html:6 msgid "Announcement" msgstr "公告" -#: bookwyrm/templates/settings/announcement.html:7 -#: bookwyrm/templates/settings/federated_server.html:13 +#: bookwyrm/templates/settings/announcements/announcement.html:7 +#: bookwyrm/templates/settings/federation/instance.html:13 msgid "Back to list" msgstr "回到列表" -#: bookwyrm/templates/settings/announcement.html:11 -#: bookwyrm/templates/settings/announcement_form.html:6 +#: bookwyrm/templates/settings/announcements/announcement.html:11 +#: bookwyrm/templates/settings/announcements/announcement_form.html:6 msgid "Edit Announcement" msgstr "编辑公告" -#: bookwyrm/templates/settings/announcement.html:35 +#: bookwyrm/templates/settings/announcements/announcement.html:35 msgid "Visible:" msgstr "可见:" -#: bookwyrm/templates/settings/announcement.html:38 +#: bookwyrm/templates/settings/announcements/announcement.html:38 msgid "True" msgstr "是" -#: bookwyrm/templates/settings/announcement.html:40 +#: bookwyrm/templates/settings/announcements/announcement.html:40 msgid "False" msgstr "否" -#: bookwyrm/templates/settings/announcement.html:47 -#: bookwyrm/templates/settings/announcement_form.html:40 -#: bookwyrm/templates/settings/dashboard.html:71 +#: bookwyrm/templates/settings/announcements/announcement.html:47 +#: bookwyrm/templates/settings/announcements/announcement_form.html:40 +#: bookwyrm/templates/settings/dashboard/dashboard.html:71 msgid "Start date:" msgstr "开始日期:" -#: bookwyrm/templates/settings/announcement.html:54 -#: bookwyrm/templates/settings/announcement_form.html:49 -#: bookwyrm/templates/settings/dashboard.html:77 +#: bookwyrm/templates/settings/announcements/announcement.html:54 +#: bookwyrm/templates/settings/announcements/announcement_form.html:49 +#: bookwyrm/templates/settings/dashboard/dashboard.html:77 msgid "End date:" msgstr "结束日期:" -#: bookwyrm/templates/settings/announcement.html:60 -#: bookwyrm/templates/settings/announcement_form.html:58 +#: bookwyrm/templates/settings/announcements/announcement.html:60 +#: bookwyrm/templates/settings/announcements/announcement_form.html:58 msgid "Active:" msgstr "活跃:" -#: bookwyrm/templates/settings/announcement_form.html:8 -#: bookwyrm/templates/settings/announcements.html:8 +#: bookwyrm/templates/settings/announcements/announcement_form.html:8 +#: bookwyrm/templates/settings/announcements/announcements.html:8 msgid "Create Announcement" msgstr "创建公告" -#: bookwyrm/templates/settings/announcement_form.html:16 +#: bookwyrm/templates/settings/announcements/announcement_form.html:16 #, fuzzy #| msgid "Preview" msgid "Preview:" msgstr "预览" -#: bookwyrm/templates/settings/announcement_form.html:23 +#: bookwyrm/templates/settings/announcements/announcement_form.html:23 #, fuzzy #| msgid "Content" msgid "Content:" msgstr "内容" -#: bookwyrm/templates/settings/announcement_form.html:30 +#: bookwyrm/templates/settings/announcements/announcement_form.html:30 #, fuzzy #| msgid "End date:" msgid "Event date:" msgstr "结束日期:" -#: bookwyrm/templates/settings/announcements.html:3 -#: bookwyrm/templates/settings/announcements.html:5 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/layout.html:72 msgid "Announcements" msgstr "公告" -#: bookwyrm/templates/settings/announcements.html:22 -#: bookwyrm/templates/settings/federation.html:36 +#: bookwyrm/templates/settings/announcements/announcements.html:22 +#: bookwyrm/templates/settings/federation/instance_list.html:36 msgid "Date added" msgstr "添加日期:" -#: bookwyrm/templates/settings/announcements.html:26 +#: bookwyrm/templates/settings/announcements/announcements.html:26 msgid "Preview" msgstr "预览" -#: bookwyrm/templates/settings/announcements.html:30 +#: bookwyrm/templates/settings/announcements/announcements.html:30 msgid "Start date" msgstr "开始日期" -#: bookwyrm/templates/settings/announcements.html:34 +#: bookwyrm/templates/settings/announcements/announcements.html:34 msgid "End date" msgstr "结束日期" -#: bookwyrm/templates/settings/announcements.html:38 -#: bookwyrm/templates/settings/federation.html:46 -#: bookwyrm/templates/settings/manage_invite_requests.html:44 -#: bookwyrm/templates/settings/status_filter.html:5 -#: bookwyrm/templates/user_admin/user_admin.html:34 -#: bookwyrm/templates/user_admin/user_info.html:20 +#: 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/settings/announcements.html:48 +#: bookwyrm/templates/settings/announcements/announcements.html:48 msgid "active" msgstr "活跃" -#: bookwyrm/templates/settings/announcements.html:48 +#: bookwyrm/templates/settings/announcements/announcements.html:48 msgid "inactive" msgstr "停用" -#: bookwyrm/templates/settings/announcements.html:54 +#: bookwyrm/templates/settings/announcements/announcements.html:52 #, fuzzy #| msgid "Announcements" -msgid "No announcements found." +msgid "No announcements found" msgstr "公告" -#: bookwyrm/templates/settings/dashboard.html:6 -#: bookwyrm/templates/settings/dashboard.html:8 +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:26 msgid "Dashboard" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 #, fuzzy #| msgid "Local users" msgid "Total users" msgstr "本地用户" -#: bookwyrm/templates/settings/dashboard.html:21 -#: bookwyrm/templates/settings/dashboard_user_chart.html:12 +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/dashboard_user_chart.html:12 msgid "Active this month" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 #, fuzzy #| msgid "Status" msgid "Statuses" msgstr "状态" -#: bookwyrm/templates/settings/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 msgid "Works" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:43 +#: bookwyrm/templates/settings/dashboard/dashboard.html:43 #, fuzzy, python-format #| msgid "%(count)d uses" msgid "%(display_count)s open report" msgid_plural "%(display_count)s open reports" msgstr[0] "%(count)d 次使用" -#: bookwyrm/templates/settings/dashboard.html:54 +#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #, fuzzy, python-format #| msgid "%(count)d uses" msgid "%(display_count)s invite request" msgid_plural "%(display_count)s invite requests" msgstr[0] "%(count)d 次使用" -#: bookwyrm/templates/settings/dashboard.html:65 +#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #, fuzzy #| msgid "User Activity" msgid "Instance Activity" msgstr "用户活动" -#: bookwyrm/templates/settings/dashboard.html:83 +#: bookwyrm/templates/settings/dashboard/dashboard.html:83 msgid "Interval:" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:87 msgid "Days" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:87 +#: bookwyrm/templates/settings/dashboard/dashboard.html:88 #, fuzzy #| msgid "One Week" msgid "Weeks" msgstr "一周" -#: bookwyrm/templates/settings/dashboard.html:100 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 #, fuzzy #| msgid "User Activity" msgid "User signup activity" msgstr "用户活动" -#: bookwyrm/templates/settings/dashboard.html:106 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #, fuzzy #| msgid "User Activity" msgid "Status activity" msgstr "用户活动" -#: bookwyrm/templates/settings/dashboard_status_chart.html:7 +#: bookwyrm/templates/settings/dashboard/dashboard_status_chart.html:7 #, fuzzy #| msgid "No statuses reported" msgid "Statuses posted" msgstr "没有被报告的状态" -#: bookwyrm/templates/settings/dashboard_user_chart.html:7 +#: bookwyrm/templates/settings/dashboard/dashboard_user_chart.html:7 msgid "Total" msgstr "" -#: bookwyrm/templates/settings/domain_form.html:5 -#: bookwyrm/templates/settings/email_blocklist.html:10 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 msgid "Add domain" msgstr "" -#: bookwyrm/templates/settings/domain_form.html:11 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 msgid "Domain:" msgstr "" -#: bookwyrm/templates/settings/edit_server.html:3 -#: bookwyrm/templates/settings/edit_server.html:6 -#: bookwyrm/templates/settings/edit_server.html:20 -#: bookwyrm/templates/settings/federation.html:9 -#: bookwyrm/templates/settings/federation.html:10 -#: bookwyrm/templates/settings/server_blocklist.html:3 -#: bookwyrm/templates/settings/server_blocklist.html:20 -msgid "Add instance" -msgstr "添加实例" - -#: bookwyrm/templates/settings/edit_server.html:7 -#: bookwyrm/templates/settings/server_blocklist.html:7 -msgid "Back to instance list" -msgstr "回到实例列表" - -#: bookwyrm/templates/settings/edit_server.html:16 -#: bookwyrm/templates/settings/server_blocklist.html:16 -msgid "Import block list" -msgstr "导入屏蔽列表" - -#: bookwyrm/templates/settings/edit_server.html:30 -msgid "Instance:" -msgstr "实例:" - -#: bookwyrm/templates/settings/edit_server.html:37 -#: bookwyrm/templates/settings/federated_server.html:31 -#: bookwyrm/templates/user_admin/user_info.html:125 -msgid "Status:" -msgstr "状态:" - -#: bookwyrm/templates/settings/edit_server.html:48 -#: bookwyrm/templates/settings/federated_server.html:23 -#: bookwyrm/templates/user_admin/user_info.html:117 -msgid "Software:" -msgstr "软件:" - -#: bookwyrm/templates/settings/edit_server.html:55 -#: bookwyrm/templates/settings/federated_server.html:27 -#: bookwyrm/templates/user_admin/user_info.html:121 -msgid "Version:" -msgstr "版本:" - -#: bookwyrm/templates/settings/edit_server.html:64 -msgid "Notes:" -msgstr "备注:" - -#: bookwyrm/templates/settings/email_blocklist.html:5 -#: bookwyrm/templates/settings/email_blocklist.html:7 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 #: bookwyrm/templates/settings/layout.html:59 #, fuzzy #| msgid "Import Blocklist" msgid "Email Blocklist" msgstr "导入屏蔽列表" -#: bookwyrm/templates/settings/email_blocklist.html:18 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 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 "" -#: bookwyrm/templates/settings/email_blocklist.html:25 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 msgid "Domain" msgstr "" -#: bookwyrm/templates/settings/email_blocklist.html:29 -#: bookwyrm/templates/settings/ip_blocklist.html:27 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 #, fuzzy #| msgid "Actions" msgid "Options" msgstr "动作" -#: bookwyrm/templates/settings/email_blocklist.html:38 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 #, fuzzy, python-format #| msgid "%(count)d uses" msgid "%(display_count)s user" msgid_plural "%(display_count)s users" msgstr[0] "%(count)d 次使用" -#: bookwyrm/templates/settings/federated_server.html:19 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +#, fuzzy +#| msgid "No users currently blocked." +msgid "No email domains currently blocked" +msgstr "当前没有被屏蔽的用户。" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "添加实例" + +#: bookwyrm/templates/settings/federation/edit_instance.html:7 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:7 +msgid "Back to instance list" +msgstr "回到实例列表" + +#: bookwyrm/templates/settings/federation/edit_instance.html:16 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:16 +msgid "Import block list" +msgstr "导入屏蔽列表" + +#: bookwyrm/templates/settings/federation/edit_instance.html:30 +msgid "Instance:" +msgstr "实例:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:39 +#: bookwyrm/templates/settings/federation/instance.html:28 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "状态:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:22 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "软件:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:61 +#: bookwyrm/templates/settings/federation/instance.html:25 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "版本:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:70 +msgid "Notes:" +msgstr "备注:" + +#: bookwyrm/templates/settings/federation/instance.html:19 msgid "Details" msgstr "详细" -#: bookwyrm/templates/settings/federated_server.html:39 +#: bookwyrm/templates/settings/federation/instance.html:35 #: bookwyrm/templates/user/layout.html:63 msgid "Activity" msgstr "活动" -#: bookwyrm/templates/settings/federated_server.html:43 +#: bookwyrm/templates/settings/federation/instance.html:38 msgid "Users:" msgstr "用户:" -#: bookwyrm/templates/settings/federated_server.html:46 -#: bookwyrm/templates/settings/federated_server.html:53 +#: bookwyrm/templates/settings/federation/instance.html:41 +#: bookwyrm/templates/settings/federation/instance.html:47 msgid "View all" msgstr "查看全部" -#: bookwyrm/templates/settings/federated_server.html:50 -#: bookwyrm/templates/user_admin/user_info.html:59 +#: bookwyrm/templates/settings/federation/instance.html:44 +#: bookwyrm/templates/settings/users/user_info.html:56 msgid "Reports:" msgstr "报告:" -#: bookwyrm/templates/settings/federated_server.html:57 +#: bookwyrm/templates/settings/federation/instance.html:50 msgid "Followed by us:" msgstr "我们关注了的:" -#: bookwyrm/templates/settings/federated_server.html:63 +#: bookwyrm/templates/settings/federation/instance.html:55 msgid "Followed by them:" msgstr "TA 们关注了的:" -#: bookwyrm/templates/settings/federated_server.html:69 +#: bookwyrm/templates/settings/federation/instance.html:60 msgid "Blocked by us:" msgstr "我们所屏蔽的:" -#: bookwyrm/templates/settings/federated_server.html:82 -#: bookwyrm/templates/user_admin/user_info.html:130 +#: bookwyrm/templates/settings/federation/instance.html:72 +#: bookwyrm/templates/settings/users/user_info.html:110 msgid "Notes" msgstr "备注" -#: bookwyrm/templates/settings/federated_server.html:85 +#: bookwyrm/templates/settings/federation/instance.html:75 msgid "Edit" msgstr "编辑" -#: bookwyrm/templates/settings/federated_server.html:105 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:8 +#: bookwyrm/templates/settings/federation/instance.html:79 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:8 msgid "Actions" msgstr "动作" -#: bookwyrm/templates/settings/federated_server.html:109 +#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/snippets/block_button.html:5 msgid "Block" msgstr "屏蔽" -#: bookwyrm/templates/settings/federated_server.html:110 +#: bookwyrm/templates/settings/federation/instance.html:99 msgid "All users from this instance will be deactivated." msgstr "来自此实例的所有用户将会被停用。" -#: bookwyrm/templates/settings/federated_server.html:115 +#: bookwyrm/templates/settings/federation/instance.html:104 #: bookwyrm/templates/snippets/block_button.html:10 msgid "Un-block" msgstr "取消屏蔽" -#: bookwyrm/templates/settings/federated_server.html:116 +#: bookwyrm/templates/settings/federation/instance.html:105 msgid "All users from this instance will be re-activated." msgstr "来自此实例的所有用户将会被重新启用。" -#: bookwyrm/templates/settings/federation.html:3 -#: bookwyrm/templates/settings/federation.html:5 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +msgid "Import Blocklist" +msgstr "导入屏蔽列表" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:26 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "成功!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:30 +msgid "Successfully blocked:" +msgstr "成功屏蔽了" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +msgid "Failed:" +msgstr "已失败:" + +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:45 msgid "Federated Instances" msgstr "互联实例" -#: bookwyrm/templates/settings/federation.html:32 -#: bookwyrm/templates/user_admin/server_filter.html:5 +#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "实例名称" -#: bookwyrm/templates/settings/federation.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:40 msgid "Software" msgstr "软件" -#: bookwyrm/templates/settings/ip_address_form.html:5 -#: bookwyrm/templates/settings/ip_blocklist.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:63 +#, fuzzy +#| msgid "Announcements" +msgid "No instances found" +msgstr "公告" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "邀请请求" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "已忽略的邀请请求" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:35 +msgid "Date requested" +msgstr "请求日期" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:39 +msgid "Date accepted" +msgstr "接受日期" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:42 +msgid "Email" +msgstr "邮箱" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +msgid "Action" +msgstr "动作" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +msgid "No requests" +msgstr "没有请求" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "已接受" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "已发送" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "已请求" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +msgid "Send invite" +msgstr "发送请求" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +msgid "Re-send invite" +msgstr "重新发送请求" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +msgid "Ignore" +msgstr "忽略" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +msgid "Un-ignore" +msgstr "取消忽略" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +msgid "Back to pending requests" +msgstr "回到待处理的请求" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +msgid "View ignored requests" +msgstr "查看忽略的请求" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "生成新的邀请" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "过期:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "使用限制:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "创建邀请" + +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "链接" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "过期" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "最大使用次数" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "已使用次数" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "无有效的邀请" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 #, fuzzy #| msgid "Add read dates" msgid "Add IP address" msgstr "添加阅读日期" -#: bookwyrm/templates/settings/ip_address_form.html:11 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." msgstr "" -#: bookwyrm/templates/settings/ip_address_form.html:18 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 #, fuzzy #| msgid "Email address:" msgid "IP Address:" msgstr "邮箱地址:" -#: bookwyrm/templates/settings/ip_blocklist.html:5 -#: bookwyrm/templates/settings/ip_blocklist.html:7 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 #: bookwyrm/templates/settings/layout.html:63 #, fuzzy #| msgid "Import Blocklist" msgid "IP Address Blocklist" msgstr "导入屏蔽列表" -#: bookwyrm/templates/settings/ip_blocklist.html:18 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." msgstr "" -#: bookwyrm/templates/settings/ip_blocklist.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 msgid "Address" msgstr "" -#: bookwyrm/templates/settings/ip_tooltip.html:6 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +#, fuzzy +#| msgid "No users currently blocked." +msgid "No IP addresses currently blocked" +msgstr "当前没有被屏蔽的用户。" + +#: bookwyrm/templates/settings/ip_blocklist/ip_tooltip.html:6 msgid "You can block IP ranges using CIDR syntax." msgstr "" @@ -2520,6 +2580,12 @@ msgstr "管理用户" msgid "Moderation" msgstr "提及" +#: bookwyrm/templates/settings/layout.html:55 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "报告" + #: bookwyrm/templates/settings/layout.html:68 msgid "Instance Settings" msgstr "实例设置" @@ -2530,233 +2596,378 @@ msgstr "实例设置" msgid "Site Settings" msgstr "站点设置" -#: bookwyrm/templates/settings/layout.html:79 -#: bookwyrm/templates/settings/site.html:13 +#: bookwyrm/templates/settings/reports/report.html:5 +#: bookwyrm/templates/settings/reports/report.html:8 +#: bookwyrm/templates/settings/reports/report_preview.html:6 +#, python-format +msgid "Report #%(report_id)s: %(username)s" +msgstr "报告 #%(report_id)s: %(username)s" + +#: bookwyrm/templates/settings/reports/report.html:9 +msgid "Back to reports" +msgstr "回到报告" + +#: bookwyrm/templates/settings/reports/report.html:23 +msgid "Moderator Comments" +msgstr "监察员评论" + +#: bookwyrm/templates/settings/reports/report.html:41 +#: bookwyrm/templates/snippets/create_status.html:28 +msgid "Comment" +msgstr "评论" + +#: bookwyrm/templates/settings/reports/report.html:46 +msgid "Reported statuses" +msgstr "被报告的状态" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "No statuses reported" +msgstr "没有被报告的状态" + +#: bookwyrm/templates/settings/reports/report.html:54 +msgid "Status has been deleted" +msgstr "状态已被删除" + +#: bookwyrm/templates/settings/reports/report_preview.html:13 +msgid "No notes provided" +msgstr "没有提供摘记" + +#: bookwyrm/templates/settings/reports/report_preview.html:20 +#, python-format +msgid "Reported by %(username)s" +msgstr "由 %(username)s 报告" + +#: bookwyrm/templates/settings/reports/report_preview.html:30 +msgid "Re-open" +msgstr "重新开启" + +#: bookwyrm/templates/settings/reports/report_preview.html:32 +msgid "Resolve" +msgstr "已解决" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "报告: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "报告: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "已解决" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "没有找到报告" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:21 msgid "Instance Info" msgstr "实例信息" -#: bookwyrm/templates/settings/layout.html:80 -#: bookwyrm/templates/settings/site.html:44 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:54 msgid "Images" msgstr "图像" -#: bookwyrm/templates/settings/layout.html:81 -#: bookwyrm/templates/settings/site.html:64 +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:74 msgid "Footer Content" msgstr "页脚内容" -#: bookwyrm/templates/settings/layout.html:82 -#: bookwyrm/templates/settings/site.html:86 +#: bookwyrm/templates/settings/site.html:13 +#: bookwyrm/templates/settings/site.html:98 msgid "Registration" msgstr "注册" -#: bookwyrm/templates/settings/manage_invite_requests.html:4 -#: bookwyrm/templates/settings/manage_invite_requests.html:11 -#: bookwyrm/templates/settings/manage_invite_requests.html:25 -#: bookwyrm/templates/settings/manage_invites.html:11 -msgid "Invite Requests" -msgstr "邀请请求" - -#: bookwyrm/templates/settings/manage_invite_requests.html:23 -msgid "Ignored Invite Requests" -msgstr "已忽略的邀请请求" - -#: bookwyrm/templates/settings/manage_invite_requests.html:35 -msgid "Date requested" -msgstr "请求日期" - -#: bookwyrm/templates/settings/manage_invite_requests.html:39 -msgid "Date accepted" -msgstr "接受日期" - -#: bookwyrm/templates/settings/manage_invite_requests.html:42 -msgid "Email" -msgstr "邮箱" - -#: bookwyrm/templates/settings/manage_invite_requests.html:47 -msgid "Action" -msgstr "动作" - -#: bookwyrm/templates/settings/manage_invite_requests.html:50 -msgid "No requests" -msgstr "没有请求" - -#: bookwyrm/templates/settings/manage_invite_requests.html:59 -#: bookwyrm/templates/settings/status_filter.html:16 -msgid "Accepted" -msgstr "已接受" - -#: bookwyrm/templates/settings/manage_invite_requests.html:61 -#: bookwyrm/templates/settings/status_filter.html:12 -msgid "Sent" -msgstr "已发送" - -#: bookwyrm/templates/settings/manage_invite_requests.html:63 -#: bookwyrm/templates/settings/status_filter.html:8 -msgid "Requested" -msgstr "已请求" - -#: bookwyrm/templates/settings/manage_invite_requests.html:73 -msgid "Send invite" -msgstr "发送请求" - -#: bookwyrm/templates/settings/manage_invite_requests.html:75 -msgid "Re-send invite" -msgstr "重新发送请求" - -#: bookwyrm/templates/settings/manage_invite_requests.html:95 -msgid "Ignore" -msgstr "忽略" - -#: bookwyrm/templates/settings/manage_invite_requests.html:97 -msgid "Un-ignore" -msgstr "取消忽略" - -#: bookwyrm/templates/settings/manage_invite_requests.html:108 -msgid "Back to pending requests" -msgstr "回到待处理的请求" - -#: bookwyrm/templates/settings/manage_invite_requests.html:110 -msgid "View ignored requests" -msgstr "查看忽略的请求" - -#: bookwyrm/templates/settings/manage_invites.html:21 -msgid "Generate New Invite" -msgstr "生成新的邀请" - -#: bookwyrm/templates/settings/manage_invites.html:27 -msgid "Expiry:" -msgstr "过期:" - -#: bookwyrm/templates/settings/manage_invites.html:33 -msgid "Use limit:" -msgstr "使用限制:" - -#: bookwyrm/templates/settings/manage_invites.html:40 -msgid "Create Invite" -msgstr "创建邀请" - -#: bookwyrm/templates/settings/manage_invites.html:47 -msgid "Link" -msgstr "链接" - -#: bookwyrm/templates/settings/manage_invites.html:48 -msgid "Expires" -msgstr "过期" - -#: bookwyrm/templates/settings/manage_invites.html:49 -msgid "Max uses" -msgstr "最大使用次数" - -#: bookwyrm/templates/settings/manage_invites.html:50 -msgid "Times used" -msgstr "已使用次数" - -#: bookwyrm/templates/settings/manage_invites.html:53 -msgid "No active invites" -msgstr "无有效的邀请" - -#: bookwyrm/templates/settings/server_blocklist.html:6 -msgid "Import Blocklist" -msgstr "导入屏蔽列表" - -#: bookwyrm/templates/settings/server_blocklist.html:26 -#: bookwyrm/templates/snippets/goal_progress.html:7 -msgid "Success!" -msgstr "成功!" - -#: bookwyrm/templates/settings/server_blocklist.html:30 -msgid "Successfully blocked:" -msgstr "成功屏蔽了" - -#: bookwyrm/templates/settings/server_blocklist.html:32 -msgid "Failed:" -msgstr "已失败:" - -#: bookwyrm/templates/settings/site.html:15 +#: bookwyrm/templates/settings/site.html:24 msgid "Instance Name:" msgstr "实例名称" -#: bookwyrm/templates/settings/site.html:19 +#: bookwyrm/templates/settings/site.html:28 msgid "Tagline:" msgstr "标语" -#: bookwyrm/templates/settings/site.html:23 +#: bookwyrm/templates/settings/site.html:32 msgid "Instance description:" msgstr "实例描述:" -#: bookwyrm/templates/settings/site.html:27 +#: bookwyrm/templates/settings/site.html:36 #, fuzzy #| msgid "Description:" msgid "Short description:" msgstr "描述:" -#: bookwyrm/templates/settings/site.html:28 +#: bookwyrm/templates/settings/site.html:37 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown." msgstr "" -#: bookwyrm/templates/settings/site.html:32 +#: bookwyrm/templates/settings/site.html:41 msgid "Code of conduct:" msgstr "行为准则:" -#: bookwyrm/templates/settings/site.html:36 +#: bookwyrm/templates/settings/site.html:45 msgid "Privacy Policy:" msgstr "隐私政策:" -#: bookwyrm/templates/settings/site.html:47 +#: bookwyrm/templates/settings/site.html:57 msgid "Logo:" msgstr "图标:" -#: bookwyrm/templates/settings/site.html:51 +#: bookwyrm/templates/settings/site.html:61 msgid "Logo small:" msgstr "小号图标:" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:65 msgid "Favicon:" msgstr "Favicon:" -#: bookwyrm/templates/settings/site.html:66 +#: bookwyrm/templates/settings/site.html:77 msgid "Support link:" msgstr "支持链接:" -#: bookwyrm/templates/settings/site.html:70 +#: bookwyrm/templates/settings/site.html:81 msgid "Support title:" msgstr "支持标题:" -#: bookwyrm/templates/settings/site.html:74 +#: bookwyrm/templates/settings/site.html:85 msgid "Admin email:" msgstr "管理员邮件:" -#: bookwyrm/templates/settings/site.html:78 +#: bookwyrm/templates/settings/site.html:89 msgid "Additional info:" msgstr "附加信息:" -#: bookwyrm/templates/settings/site.html:90 +#: bookwyrm/templates/settings/site.html:103 msgid "Allow registration" msgstr "允许注册" -#: bookwyrm/templates/settings/site.html:96 +#: bookwyrm/templates/settings/site.html:109 msgid "Allow invite requests" msgstr "允许请求邀请" -#: bookwyrm/templates/settings/site.html:102 +#: bookwyrm/templates/settings/site.html:115 msgid "Require users to confirm email address" msgstr "要求用户确认邮箱地址" -#: bookwyrm/templates/settings/site.html:104 +#: bookwyrm/templates/settings/site.html:117 msgid "(Recommended if registration is open)" msgstr "(当开放注册时推荐)" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:120 msgid "Registration closed text:" msgstr "注册关闭文字:" -#: bookwyrm/templates/settings/site.html:111 +#: bookwyrm/templates/settings/site.html:124 #, fuzzy #| msgid "Invite Requests" msgid "Invite request text:" msgstr "邀请请求" +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 +#, fuzzy +#| msgid "Permanently deleted" +msgid "Permanently delete user" +msgstr "已永久删除" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +#, fuzzy +#| msgid "Confirm password:" +msgid "Your password:" +msgstr "确认密码:" + +#: bookwyrm/templates/settings/users/user.html:7 +msgid "Back to users" +msgstr "回到用户" + +#: bookwyrm/templates/settings/users/user_admin.html:7 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "用户: %(instance_name)s" + +#: bookwyrm/templates/settings/users/user_admin.html:22 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "用户名" + +#: bookwyrm/templates/settings/users/user_admin.html:26 +msgid "Date Added" +msgstr "添加日期:" + +#: bookwyrm/templates/settings/users/user_admin.html:30 +msgid "Last Active" +msgstr "最后或缺" + +#: bookwyrm/templates/settings/users/user_admin.html:38 +msgid "Remote instance" +msgstr "移除服务器" + +#: bookwyrm/templates/settings/users/user_admin.html:47 +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "Active" +msgstr "活跃" + +#: bookwyrm/templates/settings/users/user_admin.html:47 +#: bookwyrm/templates/settings/users/user_info.html:28 +msgid "Inactive" +msgstr "停用" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +#: bookwyrm/templates/settings/users/user_info.html:120 +msgid "Not set" +msgstr "未设置" + +#: bookwyrm/templates/settings/users/user_info.html:16 +msgid "View user profile" +msgstr "查看用户个人资料" + +#: bookwyrm/templates/settings/users/user_info.html:36 +msgid "Local" +msgstr "本站" + +#: bookwyrm/templates/settings/users/user_info.html:38 +#, fuzzy +#| msgid "Remove" +msgid "Remote" +msgstr "移除" + +#: bookwyrm/templates/settings/users/user_info.html:47 +msgid "User details" +msgstr "用户详情" + +#: bookwyrm/templates/settings/users/user_info.html:51 +#, fuzzy +#| msgid "Email" +msgid "Email:" +msgstr "邮箱" + +#: bookwyrm/templates/settings/users/user_info.html:61 +#, fuzzy +#| msgid "Directory" +msgid "(View reports)" +msgstr "目录" + +#: bookwyrm/templates/settings/users/user_info.html:67 +#, fuzzy +#| msgid "Blocked by us:" +msgid "Blocked by count:" +msgstr "我们所屏蔽的:" + +#: bookwyrm/templates/settings/users/user_info.html:70 +#, fuzzy +#| msgid "last active" +msgid "Last active date:" +msgstr "最后活跃" + +#: bookwyrm/templates/settings/users/user_info.html:73 +#, fuzzy +#| msgid "Manually approve followers:" +msgid "Manually approved followers:" +msgstr "手动批准关注者:" + +#: bookwyrm/templates/settings/users/user_info.html:76 +#, fuzzy +#| msgid "Discover" +msgid "Discoverable:" +msgstr "发现" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:95 +msgid "Instance details" +msgstr "实例详情" + +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "View instance" +msgstr "查看实例" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:5 +msgid "Permanently deleted" +msgstr "已永久删除" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:13 +msgid "Send direct message" +msgstr "发送私信" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 +msgid "Suspend user" +msgstr "停用用户" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 +msgid "Un-suspend user" +msgstr "取消停用用户" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 +msgid "Access level:" +msgstr "访问级别:" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +msgid "Create Shelf" +msgstr "创建书架" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "编辑书架" + +#: bookwyrm/templates/shelf/shelf.html:28 bookwyrm/views/shelf.py:56 +msgid "All books" +msgstr "所有书目" + +#: bookwyrm/templates/shelf/shelf.html:55 +msgid "Create shelf" +msgstr "创建书架" + +#: bookwyrm/templates/shelf/shelf.html:77 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" + +#: bookwyrm/templates/shelf/shelf.html:84 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:96 +msgid "Edit shelf" +msgstr "编辑书架" + +#: bookwyrm/templates/shelf/shelf.html:104 +msgid "Delete shelf" +msgstr "删除书架" + +#: bookwyrm/templates/shelf/shelf.html:130 +#: bookwyrm/templates/shelf/shelf.html:154 +msgid "Shelved" +msgstr "上架时间" + +#: bookwyrm/templates/shelf/shelf.html:131 +#: bookwyrm/templates/shelf/shelf.html:158 +msgid "Started" +msgstr "开始时间" + +#: bookwyrm/templates/shelf/shelf.html:132 +#: bookwyrm/templates/shelf/shelf.html:161 +msgid "Finished" +msgstr "完成时间" + +#: bookwyrm/templates/shelf/shelf.html:187 +msgid "This shelf is empty." +msgstr "此书架是空的。" + #: bookwyrm/templates/snippets/announcement.html:31 #, python-format msgid "Posted by %(username)s" @@ -2800,24 +3011,21 @@ msgid "Some thoughts on the book" msgstr "对书的一些看法" #: bookwyrm/templates/snippets/create_status/comment.html:26 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:16 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:15 msgid "Progress:" msgstr "进度:" #: bookwyrm/templates/snippets/create_status/comment.html:52 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:31 -#: bookwyrm/templates/snippets/readthrough_form.html:22 +#: bookwyrm/templates/snippets/progress_field.html:18 msgid "pages" msgstr "页数" #: bookwyrm/templates/snippets/create_status/comment.html:58 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:32 -#: bookwyrm/templates/snippets/readthrough_form.html:23 +#: bookwyrm/templates/snippets/progress_field.html:23 msgid "percent" msgstr "百分比" #: bookwyrm/templates/snippets/create_status/comment.html:65 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:37 #, python-format msgid "of %(pages)s pages" msgstr "全书 %(pages)s 页" @@ -3003,29 +3211,29 @@ msgstr[0] "《%(book_title)s》的书评(%(display_rating)s 星): %(review_t msgid "Review of \"%(book_title)s\": %(review_title)s" msgstr "《%(book_title)s》的书评: %(review_title)s" -#: bookwyrm/templates/snippets/goal_card.html:23 +#: bookwyrm/templates/snippets/goal_form.html:3 #, python-format -msgid "You can set or change your reading goal any time from your profile page" -msgstr "你可以在任何时候从你的个人资料页面 中设置或改变你的阅读目标" +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "设定一个 %(year)s 内要读多少书的目标,并记录你全年的进度。" -#: bookwyrm/templates/snippets/goal_form.html:9 +#: bookwyrm/templates/snippets/goal_form.html:12 msgid "Reading goal:" msgstr "阅读目标:" -#: bookwyrm/templates/snippets/goal_form.html:14 +#: bookwyrm/templates/snippets/goal_form.html:17 msgid "books" msgstr "本书" -#: bookwyrm/templates/snippets/goal_form.html:19 +#: bookwyrm/templates/snippets/goal_form.html:22 msgid "Goal privacy:" msgstr "目标隐私:" -#: bookwyrm/templates/snippets/goal_form.html:26 +#: bookwyrm/templates/snippets/goal_form.html:29 #: bookwyrm/templates/snippets/reading_modals/layout.html:13 msgid "Post to feed" msgstr "发布到消息流中" -#: bookwyrm/templates/snippets/goal_form.html:30 +#: bookwyrm/templates/snippets/goal_form.html:33 msgid "Set goal" msgstr "设置目标" @@ -3101,18 +3309,18 @@ msgstr "评价" msgid "Finish \"%(book_title)s\"" msgstr "完成《%(book_title)s》" -#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:22 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:23 #: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:20 #: bookwyrm/templates/snippets/readthrough_form.html:7 msgid "Started reading" msgstr "已开始阅读" -#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:30 -#: bookwyrm/templates/snippets/readthrough_form.html:30 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:31 +#: bookwyrm/templates/snippets/readthrough_form.html:20 msgid "Finished reading" msgstr "已完成阅读" -#: bookwyrm/templates/snippets/reading_modals/form.html:8 +#: bookwyrm/templates/snippets/reading_modals/form.html:9 msgid "(Optional)" msgstr "" @@ -3143,6 +3351,20 @@ msgstr "注册" msgid "Report" msgstr "报告" +#: bookwyrm/templates/snippets/report_modal.html:6 +#, python-format +msgid "Report @%(username)s" +msgstr "报告 %(username)s" + +#: bookwyrm/templates/snippets/report_modal.html:23 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "本报告会被发送至 %(site_name)s 的监察员以复查。" + +#: bookwyrm/templates/snippets/report_modal.html:24 +msgid "More info about this report:" +msgstr "关于本报告的更多信息" + #: bookwyrm/templates/snippets/search_result_text.html:36 msgid "Import book" msgstr "导入书目" @@ -3276,12 +3498,6 @@ msgstr "更多选项" msgid "Delete & re-draft" msgstr "删除并重新起草" -#: bookwyrm/templates/snippets/status/status_options.html:35 -#: bookwyrm/templates/snippets/user_options.html:13 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:13 -msgid "Send direct message" -msgstr "发送私信" - #: bookwyrm/templates/snippets/suggested_users.html:16 #, python-format msgid "%(mutuals)s follower you follow" @@ -3319,6 +3535,35 @@ msgstr "显示更多" msgid "Show less" msgstr "显示更少" +#: bookwyrm/templates/user/books_header.html:5 +#, python-format +msgid "%(username)s's books" +msgstr "%(username)s 的书目" + +#: bookwyrm/templates/user/goal.html:8 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "%(year)s 阅读进度" + +#: bookwyrm/templates/user/goal.html:12 +msgid "Edit Goal" +msgstr "编辑目标" + +#: bookwyrm/templates/user/goal.html:28 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "%(name)s 还没有设定 %(year)s 的阅读目标。" + +#: bookwyrm/templates/user/goal.html:40 +#, python-format +msgid "Your %(year)s Books" +msgstr "你 %(year)s 的书目" + +#: bookwyrm/templates/user/goal.html:42 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "%(username)s 在 %(year)s 的书目" + #: bookwyrm/templates/user/layout.html:18 bookwyrm/templates/user/user.html:10 msgid "User Profile" msgstr "用户个人资料" @@ -3355,70 +3600,6 @@ msgstr "正在关注" msgid "%(username)s isn't following any users" msgstr "%(username)s 没有关注任何用户" -#: bookwyrm/templates/user/shelf/books_header.html:5 -#, python-format -msgid "%(username)s's books" -msgstr "%(username)s 的书目" - -#: bookwyrm/templates/user/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/user/shelf/create_shelf_form.html:22 -msgid "Create Shelf" -msgstr "创建书架" - -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:5 -msgid "Edit Shelf" -msgstr "编辑书架" - -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:26 -msgid "Update shelf" -msgstr "更新书架" - -#: bookwyrm/templates/user/shelf/shelf.html:28 bookwyrm/views/shelf.py:56 -msgid "All books" -msgstr "所有书目" - -#: bookwyrm/templates/user/shelf/shelf.html:55 -msgid "Create shelf" -msgstr "创建书架" - -#: bookwyrm/templates/user/shelf/shelf.html:76 -#, python-format -msgid "%(formatted_count)s book" -msgid_plural "%(formatted_count)s books" -msgstr[0] "" - -#: bookwyrm/templates/user/shelf/shelf.html:83 -#, python-format -msgid "(showing %(start)s-%(end)s)" -msgstr "" - -#: bookwyrm/templates/user/shelf/shelf.html:94 -msgid "Edit shelf" -msgstr "编辑书架" - -#: bookwyrm/templates/user/shelf/shelf.html:113 -#: bookwyrm/templates/user/shelf/shelf.html:137 -msgid "Shelved" -msgstr "上架时间" - -#: bookwyrm/templates/user/shelf/shelf.html:114 -#: bookwyrm/templates/user/shelf/shelf.html:141 -msgid "Started" -msgstr "开始时间" - -#: bookwyrm/templates/user/shelf/shelf.html:115 -#: bookwyrm/templates/user/shelf/shelf.html:144 -msgid "Finished" -msgstr "完成时间" - -#: bookwyrm/templates/user/shelf/shelf.html:170 -msgid "This shelf is empty." -msgstr "此书架是空的。" - -#: bookwyrm/templates/user/shelf/shelf.html:176 -msgid "Delete shelf" -msgstr "删除书架" - #: bookwyrm/templates/user/user.html:16 msgid "Edit profile" msgstr "编辑个人资料" @@ -3470,147 +3651,6 @@ msgstr[0] "%(mutuals_display)s 个你也关注的关注者" msgid "No followers you follow" msgstr "没有你关注的关注者" -#: bookwyrm/templates/user_admin/delete_user_form.html:5 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:31 -#, fuzzy -#| msgid "Permanently deleted" -msgid "Permanently delete user" -msgstr "已永久删除" - -#: bookwyrm/templates/user_admin/delete_user_form.html:12 -#, python-format -msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." -msgstr "" - -#: bookwyrm/templates/user_admin/delete_user_form.html:17 -#, fuzzy -#| msgid "Confirm password:" -msgid "Your password:" -msgstr "确认密码:" - -#: bookwyrm/templates/user_admin/user.html:8 -msgid "Back to users" -msgstr "回到用户" - -#: bookwyrm/templates/user_admin/user_admin.html:7 -#, python-format -msgid "Users: %(instance_name)s" -msgstr "用户: %(instance_name)s" - -#: bookwyrm/templates/user_admin/user_admin.html:22 -#: bookwyrm/templates/user_admin/username_filter.html:5 -msgid "Username" -msgstr "用户名" - -#: bookwyrm/templates/user_admin/user_admin.html:26 -msgid "Date Added" -msgstr "添加日期:" - -#: bookwyrm/templates/user_admin/user_admin.html:30 -msgid "Last Active" -msgstr "最后或缺" - -#: bookwyrm/templates/user_admin/user_admin.html:38 -msgid "Remote instance" -msgstr "移除服务器" - -#: bookwyrm/templates/user_admin/user_admin.html:47 -#: bookwyrm/templates/user_admin/user_info.html:24 -msgid "Active" -msgstr "活跃" - -#: bookwyrm/templates/user_admin/user_admin.html:47 -#: bookwyrm/templates/user_admin/user_info.html:28 -msgid "Inactive" -msgstr "停用" - -#: bookwyrm/templates/user_admin/user_admin.html:52 -#: bookwyrm/templates/user_admin/user_info.html:140 -msgid "Not set" -msgstr "未设置" - -#: bookwyrm/templates/user_admin/user_info.html:16 -msgid "View user profile" -msgstr "查看用户个人资料" - -#: bookwyrm/templates/user_admin/user_info.html:36 -msgid "Local" -msgstr "本站" - -#: bookwyrm/templates/user_admin/user_info.html:38 -#, fuzzy -#| msgid "Remove" -msgid "Remote" -msgstr "移除" - -#: bookwyrm/templates/user_admin/user_info.html:47 -msgid "User details" -msgstr "用户详情" - -#: bookwyrm/templates/user_admin/user_info.html:52 -#, fuzzy -#| msgid "Email" -msgid "Email:" -msgstr "邮箱" - -#: bookwyrm/templates/user_admin/user_info.html:64 -#, fuzzy -#| msgid "Directory" -msgid "(View reports)" -msgstr "目录" - -#: bookwyrm/templates/user_admin/user_info.html:72 -#, fuzzy -#| msgid "Blocked by us:" -msgid "Blocked by count:" -msgstr "我们所屏蔽的:" - -#: bookwyrm/templates/user_admin/user_info.html:77 -#, fuzzy -#| msgid "last active" -msgid "Last active date:" -msgstr "最后活跃" - -#: bookwyrm/templates/user_admin/user_info.html:82 -#, fuzzy -#| msgid "Manually approve followers:" -msgid "Manually approved followers:" -msgstr "手动批准关注者:" - -#: bookwyrm/templates/user_admin/user_info.html:87 -#, fuzzy -#| msgid "Discover" -msgid "Discoverable:" -msgstr "发现" - -#: bookwyrm/templates/user_admin/user_info.html:93 -msgid "Deactivation reason:" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:111 -msgid "Instance details" -msgstr "实例详情" - -#: bookwyrm/templates/user_admin/user_info.html:137 -msgid "View instance" -msgstr "查看实例" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:5 -msgid "Permanently deleted" -msgstr "已永久删除" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:20 -msgid "Suspend user" -msgstr "停用用户" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:25 -msgid "Un-suspend user" -msgstr "取消停用用户" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:47 -msgid "Access level:" -msgstr "访问级别:" - #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 msgid "File exceeds maximum size: 10MB" msgstr "文件超过了最大大小: 10MB" @@ -3643,6 +3683,9 @@ msgstr "密码重置连接已发送给 %s" msgid "Status updates from {obj.display_name}" msgstr "" +#~ msgid "Update shelf" +#~ msgstr "更新书架" + #~ msgid "%(count)d uses" #~ msgstr "%(count)d 次使用" diff --git a/locale/zh_Hant/LC_MESSAGES/django.po b/locale/zh_Hant/LC_MESSAGES/django.po index 20bf0d1bb..7c1470922 100644 --- a/locale/zh_Hant/LC_MESSAGES/django.po +++ b/locale/zh_Hant/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-28 18:31+0000\n" +"POT-Creation-Date: 2021-09-29 18:32+0000\n" "PO-Revision-Date: 2021-06-30 10:36+0000\n" "Last-Translator: Grace Cheng \n" "Language-Team: LANGUAGE \n" @@ -56,10 +56,9 @@ msgstr "列表順序" msgid "Book Title" msgstr "書名" -#: bookwyrm/forms.py:327 +#: bookwyrm/forms.py:327 bookwyrm/templates/shelf/shelf.html:134 +#: bookwyrm/templates/shelf/shelf.html:165 #: bookwyrm/templates/snippets/create_status/review.html:33 -#: bookwyrm/templates/user/shelf/shelf.html:117 -#: bookwyrm/templates/user/shelf/shelf.html:148 msgid "Rating" msgstr "評價" @@ -111,16 +110,42 @@ msgstr "提及" msgid "Domain block" msgstr "取消封鎖" +#: bookwyrm/models/book.py:232 +#, fuzzy +#| msgid "Add books" +msgid "Audiobook" +msgstr "新增書目" + +#: bookwyrm/models/book.py:233 +#, fuzzy +#| msgid "Book" +msgid "eBook" +msgstr "書目" + +#: bookwyrm/models/book.py:234 +msgid "Graphic novel" +msgstr "" + +#: bookwyrm/models/book.py:235 +#, fuzzy +#| msgid "Add cover" +msgid "Hardcover" +msgstr "新增封面" + +#: bookwyrm/models/book.py:236 +msgid "Paperback" +msgstr "" + #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/edit_server.html:40 -#: bookwyrm/templates/settings/federation.html:19 +#: bookwyrm/templates/settings/federation/edit_instance.html:42 +#: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "跨站" #: bookwyrm/models/federated_server.py:12 -#: bookwyrm/templates/settings/edit_server.html:41 -#: bookwyrm/templates/settings/federated_server.html:10 -#: bookwyrm/templates/settings/federation.html:23 +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:23 msgid "Blocked" msgstr "已封鎖" @@ -280,9 +305,7 @@ msgid "Metadata" msgstr "元資料" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/lists/form.html:8 -#: bookwyrm/templates/user/shelf/create_shelf_form.html:13 -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:14 +#: bookwyrm/templates/lists/form.html:8 bookwyrm/templates/shelf/form.html:9 msgid "Name:" msgstr "名稱:" @@ -318,7 +341,7 @@ msgid "Openlibrary key:" msgstr "Openlibrary key:" #: bookwyrm/templates/author/edit_author.html:89 -#: bookwyrm/templates/book/edit_book.html:300 +#: bookwyrm/templates/book/edit_book.html:313 msgid "Inventaire ID:" msgstr "Inventaire ID:" @@ -332,32 +355,30 @@ msgstr "Goodreads key:" #: bookwyrm/templates/author/edit_author.html:116 #: bookwyrm/templates/book/book.html:140 -#: bookwyrm/templates/book/edit_book.html:328 +#: bookwyrm/templates/book/edit_book.html:341 #: bookwyrm/templates/book/readthrough.html:76 #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/form.html:44 #: bookwyrm/templates/preferences/edit_user.html:118 -#: bookwyrm/templates/settings/announcement_form.html:69 -#: bookwyrm/templates/settings/edit_server.html:68 -#: bookwyrm/templates/settings/federated_server.html:98 -#: bookwyrm/templates/settings/site.html:120 -#: bookwyrm/templates/snippets/reading_modals/layout.html:16 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:43 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:64 +#: bookwyrm/templates/settings/announcements/announcement_form.html:69 +#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/instance.html:87 +#: bookwyrm/templates/settings/site.html:134 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:64 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 msgid "Save" msgstr "儲存" #: bookwyrm/templates/author/edit_author.html:117 #: bookwyrm/templates/book/book.html:141 bookwyrm/templates/book/book.html:190 #: bookwyrm/templates/book/cover_modal.html:32 -#: bookwyrm/templates/book/edit_book.html:329 +#: bookwyrm/templates/book/edit_book.html:342 #: bookwyrm/templates/book/readthrough.html:77 #: bookwyrm/templates/lists/delete_list_modal.html:17 -#: bookwyrm/templates/moderation/report_modal.html:34 -#: bookwyrm/templates/settings/federated_server.html:99 +#: bookwyrm/templates/settings/federation/instance.html:88 #: bookwyrm/templates/snippets/delete_readthrough_modal.html:17 -#: bookwyrm/templates/snippets/goal_form.html:32 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:44 +#: bookwyrm/templates/snippets/report_modal.html:34 msgid "Cancel" msgstr "取消" @@ -393,7 +414,7 @@ msgstr "新增描述" #: bookwyrm/templates/book/book.html:136 #: bookwyrm/templates/book/edit_book.html:143 -#: bookwyrm/templates/lists/form.html:12 +#: bookwyrm/templates/lists/form.html:12 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "描述:" @@ -467,8 +488,8 @@ msgstr "新增到列表" #: bookwyrm/templates/book/book.html:313 #: bookwyrm/templates/book/cover_modal.html:31 #: bookwyrm/templates/lists/list.html:181 -#: bookwyrm/templates/settings/domain_form.html:26 -#: bookwyrm/templates/settings/ip_address_form.html:32 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:26 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 msgid "Add" msgstr "新增" @@ -477,12 +498,12 @@ msgid "ISBN:" msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:14 -#: bookwyrm/templates/book/edit_book.html:308 +#: bookwyrm/templates/book/edit_book.html:321 msgid "OCLC Number:" msgstr "OCLC 號:" #: bookwyrm/templates/book/book_identifiers.html:21 -#: bookwyrm/templates/book/edit_book.html:316 +#: bookwyrm/templates/book/edit_book.html:329 msgid "ASIN:" msgstr "ASIN:" @@ -492,7 +513,7 @@ msgid "Upload cover:" msgstr "上載封面:" #: bookwyrm/templates/book/cover_modal.html:23 -#: bookwyrm/templates/book/edit_book.html:242 +#: bookwyrm/templates/book/edit_book.html:241 msgid "Load cover from url:" msgstr "從網址載入封面:" @@ -606,11 +627,11 @@ msgid "John Doe, Jane Smith" msgstr "John Doe, Jane Smith" #: bookwyrm/templates/book/edit_book.html:227 -#: bookwyrm/templates/user/shelf/shelf.html:110 +#: bookwyrm/templates/shelf/shelf.html:127 msgid "Cover" msgstr "封面" -#: bookwyrm/templates/book/edit_book.html:255 +#: bookwyrm/templates/book/edit_book.html:253 msgid "Physical Properties" msgstr "實體性質" @@ -619,23 +640,29 @@ msgstr "實體性質" msgid "Format:" msgstr "格式:" -#: bookwyrm/templates/book/edit_book.html:265 +#: bookwyrm/templates/book/edit_book.html:268 +#, fuzzy +#| msgid "User details" +msgid "Format details:" +msgstr "使用者詳情" + +#: bookwyrm/templates/book/edit_book.html:278 msgid "Pages:" msgstr "頁數:" -#: bookwyrm/templates/book/edit_book.html:274 +#: bookwyrm/templates/book/edit_book.html:287 msgid "Book Identifiers" msgstr "書目標識號" -#: bookwyrm/templates/book/edit_book.html:276 +#: bookwyrm/templates/book/edit_book.html:289 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit_book.html:284 +#: bookwyrm/templates/book/edit_book.html:297 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit_book.html:292 +#: bookwyrm/templates/book/edit_book.html:305 msgid "Openlibrary ID:" msgstr "Openlibrary ID:" @@ -772,7 +799,7 @@ msgid "Sorry! We couldn't find that code." msgstr "" #: bookwyrm/templates/confirm_email/confirm_email.html:19 -#: bookwyrm/templates/user_admin/user_info.html:100 +#: bookwyrm/templates/settings/users/user_info.html:85 #, fuzzy #| msgid "Confirm password:" msgid "Confirmation code:" @@ -780,8 +807,8 @@ msgstr "確認密碼:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 #: bookwyrm/templates/landing/layout.html:73 -#: bookwyrm/templates/moderation/report_modal.html:33 -#: bookwyrm/templates/settings/dashboard.html:93 +#: bookwyrm/templates/settings/dashboard/dashboard.html:93 +#: bookwyrm/templates/snippets/report_modal.html:33 msgid "Submit" msgstr "提交" @@ -835,8 +862,8 @@ msgid "You can opt-out at any time in your profile settings msgstr "你可以在任何時候從你的 使用者資料設定 中退出。" #: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/feed/goal_card.html:17 #: bookwyrm/templates/snippets/announcement.html:34 -#: bookwyrm/templates/snippets/goal_card.html:22 msgid "Dismiss message" msgstr "關閉訊息" @@ -845,13 +872,13 @@ msgid "Order by" msgstr "排列順序" #: bookwyrm/templates/directory/sort_filter.html:8 -msgid "Suggested" -msgstr "受推薦" - -#: bookwyrm/templates/directory/sort_filter.html:9 msgid "Recently active" msgstr "最近活躍" +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Suggested" +msgstr "受推薦" + #: bookwyrm/templates/directory/user_card.html:17 #: bookwyrm/templates/directory/user_card.html:18 #: bookwyrm/templates/user/user_preview.html:16 @@ -1047,12 +1074,24 @@ msgstr "載入 0 條未讀狀態" msgid "There aren't any activities right now! Try following a user to get started" msgstr "現在還沒有任何活動!嘗試著從關注一個使用者開始吧" +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:90 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "%(year)s 閱讀目標" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "你可以在任何時候從你的使用者資料頁面 中設定或改變你的閱讀目標" + #: bookwyrm/templates/feed/layout.html:5 msgid "Updates" msgstr "更新" #: bookwyrm/templates/feed/layout.html:12 -#: bookwyrm/templates/user/shelf/books_header.html:3 +#: bookwyrm/templates/user/books_header.html:3 msgid "Your books" msgstr "你的書目" @@ -1061,28 +1100,22 @@ msgid "There are no books here right now! Try searching for a book to get starte msgstr "現在這裡還沒有任何書目!嘗試著從搜尋某本書開始吧" #: bookwyrm/templates/feed/layout.html:25 -#: bookwyrm/templates/user/shelf/shelf.html:38 +#: bookwyrm/templates/shelf/shelf.html:38 msgid "To Read" msgstr "想讀" #: bookwyrm/templates/feed/layout.html:26 -#: bookwyrm/templates/user/shelf/shelf.html:40 +#: bookwyrm/templates/shelf/shelf.html:40 msgid "Currently Reading" msgstr "在讀" #: bookwyrm/templates/feed/layout.html:27 +#: bookwyrm/templates/shelf/shelf.html:42 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:23 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/user/shelf/shelf.html:42 msgid "Read" msgstr "讀過" -#: bookwyrm/templates/feed/layout.html:90 bookwyrm/templates/goal.html:26 -#: bookwyrm/templates/snippets/goal_card.html:6 -#, python-format -msgid "%(year)s Reading Goal" -msgstr "%(year)s 閱讀目標" - #: bookwyrm/templates/feed/suggested_users.html:5 #: bookwyrm/templates/get_started/users.html:6 msgid "Who to follow" @@ -1231,39 +1264,9 @@ msgstr "搜尋使用者" msgid "No users found for \"%(query)s\"" msgstr "沒有找到 \"%(query)s\" 的使用者" -#: bookwyrm/templates/goal.html:7 -#, python-format -msgid "%(year)s Reading Progress" -msgstr "%(year)s 閱讀進度" - -#: bookwyrm/templates/goal.html:11 -msgid "Edit Goal" -msgstr "編輯目標" - -#: bookwyrm/templates/goal.html:30 -#: bookwyrm/templates/snippets/goal_card.html:13 -#, python-format -msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." -msgstr "設定一個 %(year)s 內要讀多少書的目標,並記錄你全年的進度。" - -#: bookwyrm/templates/goal.html:39 -#, python-format -msgid "%(name)s hasn't set a reading goal for %(year)s." -msgstr "%(name)s 還沒有設定 %(year)s 的閱讀目標。" - -#: bookwyrm/templates/goal.html:51 -#, python-format -msgid "Your %(year)s Books" -msgstr "你 %(year)s 的書目" - -#: bookwyrm/templates/goal.html:53 -#, python-format -msgid "%(username)s's %(year)s Books" -msgstr "%(username)s 在 %(year)s 的書目" - #: bookwyrm/templates/import/import.html:5 #: bookwyrm/templates/import/import.html:9 -#: bookwyrm/templates/user/shelf/shelf.html:57 +#: bookwyrm/templates/shelf/shelf.html:57 msgid "Import Books" msgstr "匯入書目" @@ -1284,7 +1287,7 @@ msgid "Privacy setting for imported reviews:" msgstr "匯入書評的隱私設定" #: bookwyrm/templates/import/import.html:56 -#: bookwyrm/templates/settings/server_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 msgid "Import" msgstr "匯入" @@ -1364,14 +1367,14 @@ msgid "Book" msgstr "書目" #: bookwyrm/templates/import/import_status.html:122 -#: bookwyrm/templates/user/shelf/shelf.html:111 -#: bookwyrm/templates/user/shelf/shelf.html:131 +#: bookwyrm/templates/shelf/shelf.html:128 +#: bookwyrm/templates/shelf/shelf.html:148 msgid "Title" msgstr "標題" #: bookwyrm/templates/import/import_status.html:125 -#: bookwyrm/templates/user/shelf/shelf.html:112 -#: bookwyrm/templates/user/shelf/shelf.html:134 +#: bookwyrm/templates/shelf/shelf.html:129 +#: bookwyrm/templates/shelf/shelf.html:151 msgid "Author" msgstr "作者" @@ -1479,10 +1482,10 @@ msgid "Settings" msgstr "設定" #: bookwyrm/templates/layout.html:125 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 #: bookwyrm/templates/settings/layout.html:40 -#: bookwyrm/templates/settings/manage_invite_requests.html:15 -#: bookwyrm/templates/settings/manage_invites.html:3 -#: bookwyrm/templates/settings/manage_invites.html:15 msgid "Invites" msgstr "邀請" @@ -1610,9 +1613,9 @@ msgid "This action cannot be un-done" msgstr "" #: bookwyrm/templates/lists/delete_list_modal.html:15 -#: bookwyrm/templates/settings/announcement.html:20 -#: bookwyrm/templates/settings/email_blocklist.html:49 -#: bookwyrm/templates/settings/ip_blocklist.html:36 +#: bookwyrm/templates/settings/announcements/announcement.html:20 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 #: bookwyrm/templates/snippets/delete_readthrough_modal.html:15 #: bookwyrm/templates/snippets/follow_request_buttons.html:12 msgid "Delete" @@ -1643,9 +1646,8 @@ msgstr "管理" msgid "Anyone can suggest books, subject to your approval" msgstr "任何人都可以推薦書目、主題,但須經你的批准。" -#: bookwyrm/templates/lists/form.html:31 -#: bookwyrm/templates/moderation/reports.html:25 -#: bookwyrm/templates/search/book.html:30 +#: bookwyrm/templates/lists/form.html:31 bookwyrm/templates/search/book.html:30 +#: bookwyrm/templates/settings/reports/reports.html:25 #: bookwyrm/templates/snippets/announcement.html:16 msgid "Open" msgstr "開放" @@ -1763,93 +1765,6 @@ msgstr "密碼:" msgid "More about this site" msgstr "關於本網站的更多" -#: bookwyrm/templates/moderation/report.html:5 -#: bookwyrm/templates/moderation/report.html:6 -#: bookwyrm/templates/moderation/report_preview.html:6 -#, python-format -msgid "Report #%(report_id)s: %(username)s" -msgstr "舉報 #%(report_id)s: %(username)s" - -#: bookwyrm/templates/moderation/report.html:10 -msgid "Back to reports" -msgstr "回到舉報" - -#: bookwyrm/templates/moderation/report.html:22 -msgid "Moderator Comments" -msgstr "監察員評論" - -#: bookwyrm/templates/moderation/report.html:40 -#: bookwyrm/templates/snippets/create_status.html:28 -msgid "Comment" -msgstr "評論" - -#: bookwyrm/templates/moderation/report.html:45 -msgid "Reported statuses" -msgstr "被舉報的狀態" - -#: bookwyrm/templates/moderation/report.html:47 -msgid "No statuses reported" -msgstr "沒有被舉報的狀態" - -#: bookwyrm/templates/moderation/report.html:53 -msgid "Status has been deleted" -msgstr "狀態已被刪除" - -#: bookwyrm/templates/moderation/report_modal.html:6 -#, python-format -msgid "Report @%(username)s" -msgstr "舉報 %(username)s" - -#: bookwyrm/templates/moderation/report_modal.html:23 -#, python-format -msgid "This report will be sent to %(site_name)s's moderators for review." -msgstr "本舉報會被發送至 %(site_name)s 的監察員以複查。" - -#: bookwyrm/templates/moderation/report_modal.html:24 -msgid "More info about this report:" -msgstr "關於本舉報的更多資訊" - -#: bookwyrm/templates/moderation/report_preview.html:13 -msgid "No notes provided" -msgstr "沒有提供摘記" - -#: bookwyrm/templates/moderation/report_preview.html:20 -#, python-format -msgid "Reported by %(username)s" -msgstr "由 %(username)s 舉報" - -#: bookwyrm/templates/moderation/report_preview.html:30 -msgid "Re-open" -msgstr "重新開啟" - -#: bookwyrm/templates/moderation/report_preview.html:32 -msgid "Resolve" -msgstr "已解決" - -#: bookwyrm/templates/moderation/reports.html:6 -#, python-format -msgid "Reports: %(instance_name)s" -msgstr "舉報: %(instance_name)s" - -#: bookwyrm/templates/moderation/reports.html:8 -#: bookwyrm/templates/moderation/reports.html:17 -#: bookwyrm/templates/settings/layout.html:55 -msgid "Reports" -msgstr "舉報" - -#: bookwyrm/templates/moderation/reports.html:14 -#, python-format -msgid "Reports: %(instance_name)s" -msgstr "舉報: %(instance_name)s" - -#: bookwyrm/templates/moderation/reports.html:28 -msgid "Resolved" -msgstr "已解決" - -#: bookwyrm/templates/moderation/reports.html:37 -msgid "No reports found." -msgstr "沒有找到舉報" - #: bookwyrm/templates/notifications.html:16 msgid "Delete notifications" msgstr "刪除通知" @@ -2013,7 +1928,7 @@ msgstr "新密碼:" #: bookwyrm/templates/preferences/delete_user.html:7 #: bookwyrm/templates/preferences/delete_user.html:26 #: bookwyrm/templates/preferences/layout.html:24 -#: bookwyrm/templates/user_admin/delete_user_form.html:23 +#: bookwyrm/templates/settings/users/delete_user_form.html:23 #, fuzzy #| msgid "Create an Account" msgid "Delete Account" @@ -2035,7 +1950,7 @@ msgstr "編輯使用者資料" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 -#: bookwyrm/templates/user_admin/user_info.html:7 +#: bookwyrm/templates/settings/users/user_info.html:7 msgid "Profile" msgstr "使用者資料" @@ -2128,11 +2043,11 @@ msgstr "搜尋類別" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 -#: bookwyrm/templates/settings/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation.html:44 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:44 #: bookwyrm/templates/settings/layout.html:34 -#: bookwyrm/templates/user_admin/user_admin.html:3 -#: bookwyrm/templates/user_admin/user_admin.html:10 +#: bookwyrm/templates/settings/users/user_admin.html:3 +#: bookwyrm/templates/settings/users/user_admin.html:10 msgid "Users" msgstr "使用者" @@ -2141,403 +2056,548 @@ msgstr "使用者" msgid "No results found for \"%(query)s\"" msgstr "沒有找到 \"%(query)s\" 的搜尋結果" -#: bookwyrm/templates/settings/announcement.html:3 -#: bookwyrm/templates/settings/announcement.html:6 +#: bookwyrm/templates/settings/announcements/announcement.html:3 +#: bookwyrm/templates/settings/announcements/announcement.html:6 msgid "Announcement" msgstr "公告" -#: bookwyrm/templates/settings/announcement.html:7 -#: bookwyrm/templates/settings/federated_server.html:13 +#: bookwyrm/templates/settings/announcements/announcement.html:7 +#: bookwyrm/templates/settings/federation/instance.html:13 msgid "Back to list" msgstr "回到列表" -#: bookwyrm/templates/settings/announcement.html:11 -#: bookwyrm/templates/settings/announcement_form.html:6 +#: bookwyrm/templates/settings/announcements/announcement.html:11 +#: bookwyrm/templates/settings/announcements/announcement_form.html:6 msgid "Edit Announcement" msgstr "編輯公告" -#: bookwyrm/templates/settings/announcement.html:35 +#: bookwyrm/templates/settings/announcements/announcement.html:35 msgid "Visible:" msgstr "可見:" -#: bookwyrm/templates/settings/announcement.html:38 +#: bookwyrm/templates/settings/announcements/announcement.html:38 msgid "True" msgstr "是" -#: bookwyrm/templates/settings/announcement.html:40 +#: bookwyrm/templates/settings/announcements/announcement.html:40 msgid "False" msgstr "否" -#: bookwyrm/templates/settings/announcement.html:47 -#: bookwyrm/templates/settings/announcement_form.html:40 -#: bookwyrm/templates/settings/dashboard.html:71 +#: bookwyrm/templates/settings/announcements/announcement.html:47 +#: bookwyrm/templates/settings/announcements/announcement_form.html:40 +#: bookwyrm/templates/settings/dashboard/dashboard.html:71 msgid "Start date:" msgstr "開始日期:" -#: bookwyrm/templates/settings/announcement.html:54 -#: bookwyrm/templates/settings/announcement_form.html:49 -#: bookwyrm/templates/settings/dashboard.html:77 +#: bookwyrm/templates/settings/announcements/announcement.html:54 +#: bookwyrm/templates/settings/announcements/announcement_form.html:49 +#: bookwyrm/templates/settings/dashboard/dashboard.html:77 msgid "End date:" msgstr "結束日期:" -#: bookwyrm/templates/settings/announcement.html:60 -#: bookwyrm/templates/settings/announcement_form.html:58 +#: bookwyrm/templates/settings/announcements/announcement.html:60 +#: bookwyrm/templates/settings/announcements/announcement_form.html:58 msgid "Active:" msgstr "活躍:" -#: bookwyrm/templates/settings/announcement_form.html:8 -#: bookwyrm/templates/settings/announcements.html:8 +#: bookwyrm/templates/settings/announcements/announcement_form.html:8 +#: bookwyrm/templates/settings/announcements/announcements.html:8 msgid "Create Announcement" msgstr "建立公告" -#: bookwyrm/templates/settings/announcement_form.html:16 +#: bookwyrm/templates/settings/announcements/announcement_form.html:16 #, fuzzy #| msgid "Preview" msgid "Preview:" msgstr "預覽" -#: bookwyrm/templates/settings/announcement_form.html:23 +#: bookwyrm/templates/settings/announcements/announcement_form.html:23 #, fuzzy #| msgid "Content" msgid "Content:" msgstr "內容" -#: bookwyrm/templates/settings/announcement_form.html:30 +#: bookwyrm/templates/settings/announcements/announcement_form.html:30 #, fuzzy #| msgid "End date:" msgid "Event date:" msgstr "結束日期:" -#: bookwyrm/templates/settings/announcements.html:3 -#: bookwyrm/templates/settings/announcements.html:5 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 #: bookwyrm/templates/settings/layout.html:72 msgid "Announcements" msgstr "公告" -#: bookwyrm/templates/settings/announcements.html:22 -#: bookwyrm/templates/settings/federation.html:36 +#: bookwyrm/templates/settings/announcements/announcements.html:22 +#: bookwyrm/templates/settings/federation/instance_list.html:36 msgid "Date added" msgstr "新增日期:" -#: bookwyrm/templates/settings/announcements.html:26 +#: bookwyrm/templates/settings/announcements/announcements.html:26 msgid "Preview" msgstr "預覽" -#: bookwyrm/templates/settings/announcements.html:30 +#: bookwyrm/templates/settings/announcements/announcements.html:30 msgid "Start date" msgstr "開始日期" -#: bookwyrm/templates/settings/announcements.html:34 +#: bookwyrm/templates/settings/announcements/announcements.html:34 msgid "End date" msgstr "結束日期" -#: bookwyrm/templates/settings/announcements.html:38 -#: bookwyrm/templates/settings/federation.html:46 -#: bookwyrm/templates/settings/manage_invite_requests.html:44 -#: bookwyrm/templates/settings/status_filter.html:5 -#: bookwyrm/templates/user_admin/user_admin.html:34 -#: bookwyrm/templates/user_admin/user_info.html:20 +#: 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/settings/announcements.html:48 +#: bookwyrm/templates/settings/announcements/announcements.html:48 msgid "active" msgstr "啟用" -#: bookwyrm/templates/settings/announcements.html:48 +#: bookwyrm/templates/settings/announcements/announcements.html:48 msgid "inactive" msgstr "停用" -#: bookwyrm/templates/settings/announcements.html:54 +#: bookwyrm/templates/settings/announcements/announcements.html:52 #, fuzzy #| msgid "Announcements" -msgid "No announcements found." +msgid "No announcements found" msgstr "公告" -#: bookwyrm/templates/settings/dashboard.html:6 -#: bookwyrm/templates/settings/dashboard.html:8 +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 #: bookwyrm/templates/settings/layout.html:26 msgid "Dashboard" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 #, fuzzy #| msgid "Local users" msgid "Total users" msgstr "本地使用者" -#: bookwyrm/templates/settings/dashboard.html:21 -#: bookwyrm/templates/settings/dashboard_user_chart.html:12 +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/dashboard_user_chart.html:12 msgid "Active this month" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:27 +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 #, fuzzy #| msgid "Status" msgid "Statuses" msgstr "狀態" -#: bookwyrm/templates/settings/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 msgid "Works" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:43 +#: bookwyrm/templates/settings/dashboard/dashboard.html:43 #, fuzzy, python-format #| msgid "%(count)d uses" msgid "%(display_count)s open report" msgid_plural "%(display_count)s open reports" msgstr[0] "%(count)d 次使用" -#: bookwyrm/templates/settings/dashboard.html:54 +#: bookwyrm/templates/settings/dashboard/dashboard.html:54 #, fuzzy, python-format #| msgid "%(count)d uses" msgid "%(display_count)s invite request" msgid_plural "%(display_count)s invite requests" msgstr[0] "%(count)d 次使用" -#: bookwyrm/templates/settings/dashboard.html:65 +#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #, fuzzy #| msgid "User Activity" msgid "Instance Activity" msgstr "使用者活動" -#: bookwyrm/templates/settings/dashboard.html:83 +#: bookwyrm/templates/settings/dashboard/dashboard.html:83 msgid "Interval:" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:86 +#: bookwyrm/templates/settings/dashboard/dashboard.html:87 msgid "Days" msgstr "" -#: bookwyrm/templates/settings/dashboard.html:87 +#: bookwyrm/templates/settings/dashboard/dashboard.html:88 #, fuzzy #| msgid "One Week" msgid "Weeks" msgstr "一週" -#: bookwyrm/templates/settings/dashboard.html:100 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 #, fuzzy #| msgid "User Activity" msgid "User signup activity" msgstr "使用者活動" -#: bookwyrm/templates/settings/dashboard.html:106 +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 #, fuzzy #| msgid "User Activity" msgid "Status activity" msgstr "使用者活動" -#: bookwyrm/templates/settings/dashboard_status_chart.html:7 +#: bookwyrm/templates/settings/dashboard/dashboard_status_chart.html:7 #, fuzzy #| msgid "No statuses reported" msgid "Statuses posted" msgstr "沒有被舉報的狀態" -#: bookwyrm/templates/settings/dashboard_user_chart.html:7 +#: bookwyrm/templates/settings/dashboard/dashboard_user_chart.html:7 msgid "Total" msgstr "" -#: bookwyrm/templates/settings/domain_form.html:5 -#: bookwyrm/templates/settings/email_blocklist.html:10 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 msgid "Add domain" msgstr "" -#: bookwyrm/templates/settings/domain_form.html:11 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 msgid "Domain:" msgstr "" -#: bookwyrm/templates/settings/edit_server.html:3 -#: bookwyrm/templates/settings/edit_server.html:6 -#: bookwyrm/templates/settings/edit_server.html:20 -#: bookwyrm/templates/settings/federation.html:9 -#: bookwyrm/templates/settings/federation.html:10 -#: bookwyrm/templates/settings/server_blocklist.html:3 -#: bookwyrm/templates/settings/server_blocklist.html:20 -msgid "Add instance" -msgstr "新增實例" - -#: bookwyrm/templates/settings/edit_server.html:7 -#: bookwyrm/templates/settings/server_blocklist.html:7 -msgid "Back to instance list" -msgstr "回到實例列表" - -#: bookwyrm/templates/settings/edit_server.html:16 -#: bookwyrm/templates/settings/server_blocklist.html:16 -msgid "Import block list" -msgstr "匯入封鎖列表" - -#: bookwyrm/templates/settings/edit_server.html:30 -msgid "Instance:" -msgstr "實例:" - -#: bookwyrm/templates/settings/edit_server.html:37 -#: bookwyrm/templates/settings/federated_server.html:31 -#: bookwyrm/templates/user_admin/user_info.html:125 -msgid "Status:" -msgstr "狀態:" - -#: bookwyrm/templates/settings/edit_server.html:48 -#: bookwyrm/templates/settings/federated_server.html:23 -#: bookwyrm/templates/user_admin/user_info.html:117 -msgid "Software:" -msgstr "軟件:" - -#: bookwyrm/templates/settings/edit_server.html:55 -#: bookwyrm/templates/settings/federated_server.html:27 -#: bookwyrm/templates/user_admin/user_info.html:121 -msgid "Version:" -msgstr "版本:" - -#: bookwyrm/templates/settings/edit_server.html:64 -msgid "Notes:" -msgstr "備註:" - -#: bookwyrm/templates/settings/email_blocklist.html:5 -#: bookwyrm/templates/settings/email_blocklist.html:7 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 #: bookwyrm/templates/settings/layout.html:59 #, fuzzy #| msgid "Import Blocklist" msgid "Email Blocklist" msgstr "匯入封鎖列表" -#: bookwyrm/templates/settings/email_blocklist.html:18 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 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 "" -#: bookwyrm/templates/settings/email_blocklist.html:25 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 msgid "Domain" msgstr "" -#: bookwyrm/templates/settings/email_blocklist.html:29 -#: bookwyrm/templates/settings/ip_blocklist.html:27 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 #, fuzzy #| msgid "Actions" msgid "Options" msgstr "動作" -#: bookwyrm/templates/settings/email_blocklist.html:38 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 #, fuzzy, python-format #| msgid "%(count)d uses" msgid "%(display_count)s user" msgid_plural "%(display_count)s users" msgstr[0] "%(count)d 次使用" -#: bookwyrm/templates/settings/federated_server.html:19 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +#, fuzzy +#| msgid "No users currently blocked." +msgid "No email domains currently blocked" +msgstr "當前沒有被封鎖的使用者。" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "新增實例" + +#: bookwyrm/templates/settings/federation/edit_instance.html:7 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:7 +msgid "Back to instance list" +msgstr "回到實例列表" + +#: bookwyrm/templates/settings/federation/edit_instance.html:16 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:16 +msgid "Import block list" +msgstr "匯入封鎖列表" + +#: bookwyrm/templates/settings/federation/edit_instance.html:30 +msgid "Instance:" +msgstr "實例:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:39 +#: bookwyrm/templates/settings/federation/instance.html:28 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "狀態:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:22 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "軟件:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:61 +#: bookwyrm/templates/settings/federation/instance.html:25 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "版本:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:70 +msgid "Notes:" +msgstr "備註:" + +#: bookwyrm/templates/settings/federation/instance.html:19 msgid "Details" msgstr "詳細" -#: bookwyrm/templates/settings/federated_server.html:39 +#: bookwyrm/templates/settings/federation/instance.html:35 #: bookwyrm/templates/user/layout.html:63 msgid "Activity" msgstr "活動" -#: bookwyrm/templates/settings/federated_server.html:43 +#: bookwyrm/templates/settings/federation/instance.html:38 msgid "Users:" msgstr "使用者:" -#: bookwyrm/templates/settings/federated_server.html:46 -#: bookwyrm/templates/settings/federated_server.html:53 +#: bookwyrm/templates/settings/federation/instance.html:41 +#: bookwyrm/templates/settings/federation/instance.html:47 msgid "View all" msgstr "檢視全部" -#: bookwyrm/templates/settings/federated_server.html:50 -#: bookwyrm/templates/user_admin/user_info.html:59 +#: bookwyrm/templates/settings/federation/instance.html:44 +#: bookwyrm/templates/settings/users/user_info.html:56 msgid "Reports:" msgstr "舉報:" -#: bookwyrm/templates/settings/federated_server.html:57 +#: bookwyrm/templates/settings/federation/instance.html:50 msgid "Followed by us:" msgstr "我們關注了的:" -#: bookwyrm/templates/settings/federated_server.html:63 +#: bookwyrm/templates/settings/federation/instance.html:55 msgid "Followed by them:" msgstr "TA 們關注了的:" -#: bookwyrm/templates/settings/federated_server.html:69 +#: bookwyrm/templates/settings/federation/instance.html:60 msgid "Blocked by us:" msgstr "我們所封鎖的:" -#: bookwyrm/templates/settings/federated_server.html:82 -#: bookwyrm/templates/user_admin/user_info.html:130 +#: bookwyrm/templates/settings/federation/instance.html:72 +#: bookwyrm/templates/settings/users/user_info.html:110 msgid "Notes" msgstr "備註" -#: bookwyrm/templates/settings/federated_server.html:85 +#: bookwyrm/templates/settings/federation/instance.html:75 msgid "Edit" msgstr "編輯" -#: bookwyrm/templates/settings/federated_server.html:105 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:8 +#: bookwyrm/templates/settings/federation/instance.html:79 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:8 msgid "Actions" msgstr "動作" -#: bookwyrm/templates/settings/federated_server.html:109 +#: bookwyrm/templates/settings/federation/instance.html:98 #: bookwyrm/templates/snippets/block_button.html:5 msgid "Block" msgstr "封鎖" -#: bookwyrm/templates/settings/federated_server.html:110 +#: bookwyrm/templates/settings/federation/instance.html:99 msgid "All users from this instance will be deactivated." msgstr "來自此實例的所有使用者將會被停用。" -#: bookwyrm/templates/settings/federated_server.html:115 +#: bookwyrm/templates/settings/federation/instance.html:104 #: bookwyrm/templates/snippets/block_button.html:10 msgid "Un-block" msgstr "取消封鎖" -#: bookwyrm/templates/settings/federated_server.html:116 +#: bookwyrm/templates/settings/federation/instance.html:105 msgid "All users from this instance will be re-activated." msgstr "來自此實例的所有使用者將會被重新啟用。" -#: bookwyrm/templates/settings/federation.html:3 -#: bookwyrm/templates/settings/federation.html:5 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +msgid "Import Blocklist" +msgstr "匯入封鎖列表" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:26 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "成功!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:30 +msgid "Successfully blocked:" +msgstr "成功封鎖了" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +msgid "Failed:" +msgstr "已失敗:" + +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:45 msgid "Federated Instances" msgstr "聯合實例" -#: bookwyrm/templates/settings/federation.html:32 -#: bookwyrm/templates/user_admin/server_filter.html:5 +#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "實例名稱" -#: bookwyrm/templates/settings/federation.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:40 msgid "Software" msgstr "軟體" -#: bookwyrm/templates/settings/ip_address_form.html:5 -#: bookwyrm/templates/settings/ip_blocklist.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:63 +#, fuzzy +#| msgid "Announcements" +msgid "No instances found" +msgstr "公告" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "邀請請求" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "已忽略的邀請請求" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:35 +msgid "Date requested" +msgstr "請求日期" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:39 +msgid "Date accepted" +msgstr "接受日期" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:42 +msgid "Email" +msgstr "郵箱" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +msgid "Action" +msgstr "動作" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +msgid "No requests" +msgstr "沒有請求" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "已接受" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "已傳送" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "已請求" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +msgid "Send invite" +msgstr "傳送請求" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +msgid "Re-send invite" +msgstr "重新發送請求" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +msgid "Ignore" +msgstr "忽略" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +msgid "Un-ignore" +msgstr "取消忽略" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +msgid "Back to pending requests" +msgstr "回到待處理的請求" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +msgid "View ignored requests" +msgstr "檢視忽略的請求" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "生成新的邀請" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "過期:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "使用限制:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "創建邀請" + +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "連結" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "過期" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "最大使用次數" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "已使用次數" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "無有效的邀請" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 #, fuzzy #| msgid "Add read dates" msgid "Add IP address" msgstr "新增閱讀日期" -#: bookwyrm/templates/settings/ip_address_form.html:11 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." msgstr "" -#: bookwyrm/templates/settings/ip_address_form.html:18 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 #, fuzzy #| msgid "Email address:" msgid "IP Address:" msgstr "郵箱地址:" -#: bookwyrm/templates/settings/ip_blocklist.html:5 -#: bookwyrm/templates/settings/ip_blocklist.html:7 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 #: bookwyrm/templates/settings/layout.html:63 #, fuzzy #| msgid "Import Blocklist" msgid "IP Address Blocklist" msgstr "匯入封鎖列表" -#: bookwyrm/templates/settings/ip_blocklist.html:18 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." msgstr "" -#: bookwyrm/templates/settings/ip_blocklist.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 msgid "Address" msgstr "" -#: bookwyrm/templates/settings/ip_tooltip.html:6 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +#, fuzzy +#| msgid "No users currently blocked." +msgid "No IP addresses currently blocked" +msgstr "當前沒有被封鎖的使用者。" + +#: bookwyrm/templates/settings/ip_blocklist/ip_tooltip.html:6 msgid "You can block IP ranges using CIDR syntax." msgstr "" @@ -2555,6 +2615,12 @@ msgstr "管理使用者" msgid "Moderation" msgstr "提及" +#: bookwyrm/templates/settings/layout.html:55 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "舉報" + #: bookwyrm/templates/settings/layout.html:68 msgid "Instance Settings" msgstr "實例設定" @@ -2565,237 +2631,380 @@ msgstr "實例設定" msgid "Site Settings" msgstr "網站設定" -#: bookwyrm/templates/settings/layout.html:79 -#: bookwyrm/templates/settings/site.html:13 +#: bookwyrm/templates/settings/reports/report.html:5 +#: bookwyrm/templates/settings/reports/report.html:8 +#: bookwyrm/templates/settings/reports/report_preview.html:6 +#, python-format +msgid "Report #%(report_id)s: %(username)s" +msgstr "舉報 #%(report_id)s: %(username)s" + +#: bookwyrm/templates/settings/reports/report.html:9 +msgid "Back to reports" +msgstr "回到舉報" + +#: bookwyrm/templates/settings/reports/report.html:23 +msgid "Moderator Comments" +msgstr "監察員評論" + +#: bookwyrm/templates/settings/reports/report.html:41 +#: bookwyrm/templates/snippets/create_status.html:28 +msgid "Comment" +msgstr "評論" + +#: bookwyrm/templates/settings/reports/report.html:46 +msgid "Reported statuses" +msgstr "被舉報的狀態" + +#: bookwyrm/templates/settings/reports/report.html:48 +msgid "No statuses reported" +msgstr "沒有被舉報的狀態" + +#: bookwyrm/templates/settings/reports/report.html:54 +msgid "Status has been deleted" +msgstr "狀態已被刪除" + +#: bookwyrm/templates/settings/reports/report_preview.html:13 +msgid "No notes provided" +msgstr "沒有提供摘記" + +#: bookwyrm/templates/settings/reports/report_preview.html:20 +#, python-format +msgid "Reported by %(username)s" +msgstr "由 %(username)s 舉報" + +#: bookwyrm/templates/settings/reports/report_preview.html:30 +msgid "Re-open" +msgstr "重新開啟" + +#: bookwyrm/templates/settings/reports/report_preview.html:32 +msgid "Resolve" +msgstr "已解決" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "舉報: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "舉報: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "已解決" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "沒有找到舉報" + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:21 msgid "Instance Info" msgstr "實例資訊" -#: bookwyrm/templates/settings/layout.html:80 -#: bookwyrm/templates/settings/site.html:44 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:54 msgid "Images" msgstr "圖片" -#: bookwyrm/templates/settings/layout.html:81 -#: bookwyrm/templates/settings/site.html:64 +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:74 msgid "Footer Content" msgstr "頁尾內容" -#: bookwyrm/templates/settings/layout.html:82 -#: bookwyrm/templates/settings/site.html:86 +#: bookwyrm/templates/settings/site.html:13 +#: bookwyrm/templates/settings/site.html:98 msgid "Registration" msgstr "註冊" -#: bookwyrm/templates/settings/manage_invite_requests.html:4 -#: bookwyrm/templates/settings/manage_invite_requests.html:11 -#: bookwyrm/templates/settings/manage_invite_requests.html:25 -#: bookwyrm/templates/settings/manage_invites.html:11 -msgid "Invite Requests" -msgstr "邀請請求" - -#: bookwyrm/templates/settings/manage_invite_requests.html:23 -msgid "Ignored Invite Requests" -msgstr "已忽略的邀請請求" - -#: bookwyrm/templates/settings/manage_invite_requests.html:35 -msgid "Date requested" -msgstr "請求日期" - -#: bookwyrm/templates/settings/manage_invite_requests.html:39 -msgid "Date accepted" -msgstr "接受日期" - -#: bookwyrm/templates/settings/manage_invite_requests.html:42 -msgid "Email" -msgstr "郵箱" - -#: bookwyrm/templates/settings/manage_invite_requests.html:47 -msgid "Action" -msgstr "動作" - -#: bookwyrm/templates/settings/manage_invite_requests.html:50 -msgid "No requests" -msgstr "沒有請求" - -#: bookwyrm/templates/settings/manage_invite_requests.html:59 -#: bookwyrm/templates/settings/status_filter.html:16 -msgid "Accepted" -msgstr "已接受" - -#: bookwyrm/templates/settings/manage_invite_requests.html:61 -#: bookwyrm/templates/settings/status_filter.html:12 -msgid "Sent" -msgstr "已傳送" - -#: bookwyrm/templates/settings/manage_invite_requests.html:63 -#: bookwyrm/templates/settings/status_filter.html:8 -msgid "Requested" -msgstr "已請求" - -#: bookwyrm/templates/settings/manage_invite_requests.html:73 -msgid "Send invite" -msgstr "傳送請求" - -#: bookwyrm/templates/settings/manage_invite_requests.html:75 -msgid "Re-send invite" -msgstr "重新發送請求" - -#: bookwyrm/templates/settings/manage_invite_requests.html:95 -msgid "Ignore" -msgstr "忽略" - -#: bookwyrm/templates/settings/manage_invite_requests.html:97 -msgid "Un-ignore" -msgstr "取消忽略" - -#: bookwyrm/templates/settings/manage_invite_requests.html:108 -msgid "Back to pending requests" -msgstr "回到待處理的請求" - -#: bookwyrm/templates/settings/manage_invite_requests.html:110 -msgid "View ignored requests" -msgstr "檢視忽略的請求" - -#: bookwyrm/templates/settings/manage_invites.html:21 -msgid "Generate New Invite" -msgstr "生成新的邀請" - -#: bookwyrm/templates/settings/manage_invites.html:27 -msgid "Expiry:" -msgstr "過期:" - -#: bookwyrm/templates/settings/manage_invites.html:33 -msgid "Use limit:" -msgstr "使用限制:" - -#: bookwyrm/templates/settings/manage_invites.html:40 -msgid "Create Invite" -msgstr "創建邀請" - -#: bookwyrm/templates/settings/manage_invites.html:47 -msgid "Link" -msgstr "連結" - -#: bookwyrm/templates/settings/manage_invites.html:48 -msgid "Expires" -msgstr "過期" - -#: bookwyrm/templates/settings/manage_invites.html:49 -msgid "Max uses" -msgstr "最大使用次數" - -#: bookwyrm/templates/settings/manage_invites.html:50 -msgid "Times used" -msgstr "已使用次數" - -#: bookwyrm/templates/settings/manage_invites.html:53 -msgid "No active invites" -msgstr "無有效的邀請" - -#: bookwyrm/templates/settings/server_blocklist.html:6 -msgid "Import Blocklist" -msgstr "匯入封鎖列表" - -#: bookwyrm/templates/settings/server_blocklist.html:26 -#: bookwyrm/templates/snippets/goal_progress.html:7 -msgid "Success!" -msgstr "成功!" - -#: bookwyrm/templates/settings/server_blocklist.html:30 -msgid "Successfully blocked:" -msgstr "成功封鎖了" - -#: bookwyrm/templates/settings/server_blocklist.html:32 -msgid "Failed:" -msgstr "已失敗:" - -#: bookwyrm/templates/settings/site.html:15 +#: bookwyrm/templates/settings/site.html:24 msgid "Instance Name:" msgstr "實例名稱" -#: bookwyrm/templates/settings/site.html:19 +#: bookwyrm/templates/settings/site.html:28 msgid "Tagline:" msgstr "標語" -#: bookwyrm/templates/settings/site.html:23 +#: bookwyrm/templates/settings/site.html:32 msgid "Instance description:" msgstr "實例描述:" -#: bookwyrm/templates/settings/site.html:27 +#: bookwyrm/templates/settings/site.html:36 #, fuzzy #| msgid "Description:" msgid "Short description:" msgstr "描述:" -#: bookwyrm/templates/settings/site.html:28 +#: bookwyrm/templates/settings/site.html:37 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown." msgstr "" -#: bookwyrm/templates/settings/site.html:32 +#: bookwyrm/templates/settings/site.html:41 msgid "Code of conduct:" msgstr "行為準則:" -#: bookwyrm/templates/settings/site.html:36 +#: bookwyrm/templates/settings/site.html:45 msgid "Privacy Policy:" msgstr "隱私政策:" -#: bookwyrm/templates/settings/site.html:47 +#: bookwyrm/templates/settings/site.html:57 msgid "Logo:" msgstr "圖示:" -#: bookwyrm/templates/settings/site.html:51 +#: bookwyrm/templates/settings/site.html:61 msgid "Logo small:" msgstr "小號圖示:" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:65 msgid "Favicon:" msgstr "Favicon:" -#: bookwyrm/templates/settings/site.html:66 +#: bookwyrm/templates/settings/site.html:77 msgid "Support link:" msgstr "支援連結:" -#: bookwyrm/templates/settings/site.html:70 +#: bookwyrm/templates/settings/site.html:81 msgid "Support title:" msgstr "支援標題:" -#: bookwyrm/templates/settings/site.html:74 +#: bookwyrm/templates/settings/site.html:85 msgid "Admin email:" msgstr "管理員郵件:" -#: bookwyrm/templates/settings/site.html:78 +#: bookwyrm/templates/settings/site.html:89 msgid "Additional info:" msgstr "附加資訊:" -#: bookwyrm/templates/settings/site.html:90 +#: bookwyrm/templates/settings/site.html:103 #, fuzzy #| msgid "Allow registration:" msgid "Allow registration" msgstr "允許註冊:" -#: bookwyrm/templates/settings/site.html:96 +#: bookwyrm/templates/settings/site.html:109 #, fuzzy #| msgid "Allow invite requests:" msgid "Allow invite requests" msgstr "允許請求邀請:" -#: bookwyrm/templates/settings/site.html:102 +#: bookwyrm/templates/settings/site.html:115 msgid "Require users to confirm email address" msgstr "" -#: bookwyrm/templates/settings/site.html:104 +#: bookwyrm/templates/settings/site.html:117 msgid "(Recommended if registration is open)" msgstr "" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:120 msgid "Registration closed text:" msgstr "註冊關閉文字:" -#: bookwyrm/templates/settings/site.html:111 +#: bookwyrm/templates/settings/site.html:124 #, fuzzy #| msgid "Invite Requests" msgid "Invite request text:" msgstr "邀請請求" +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:31 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +#, fuzzy +#| msgid "Confirm password:" +msgid "Your password:" +msgstr "確認密碼:" + +#: bookwyrm/templates/settings/users/user.html:7 +msgid "Back to users" +msgstr "回到使用者" + +#: bookwyrm/templates/settings/users/user_admin.html:7 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "使用者: %(instance_name)s" + +#: bookwyrm/templates/settings/users/user_admin.html:22 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "使用者名稱" + +#: bookwyrm/templates/settings/users/user_admin.html:26 +msgid "Date Added" +msgstr "新增日期:" + +#: bookwyrm/templates/settings/users/user_admin.html:30 +msgid "Last Active" +msgstr "最後活躍" + +#: bookwyrm/templates/settings/users/user_admin.html:38 +msgid "Remote instance" +msgstr "移除伺服器" + +#: bookwyrm/templates/settings/users/user_admin.html:47 +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "Active" +msgstr "活躍" + +#: bookwyrm/templates/settings/users/user_admin.html:47 +#: bookwyrm/templates/settings/users/user_info.html:28 +msgid "Inactive" +msgstr "停用" + +#: bookwyrm/templates/settings/users/user_admin.html:52 +#: bookwyrm/templates/settings/users/user_info.html:120 +msgid "Not set" +msgstr "未設定" + +#: bookwyrm/templates/settings/users/user_info.html:16 +msgid "View user profile" +msgstr "檢視使用者資料" + +#: bookwyrm/templates/settings/users/user_info.html:36 +msgid "Local" +msgstr "本站" + +#: bookwyrm/templates/settings/users/user_info.html:38 +#, fuzzy +#| msgid "Remove" +msgid "Remote" +msgstr "移除" + +#: bookwyrm/templates/settings/users/user_info.html:47 +msgid "User details" +msgstr "使用者詳情" + +#: bookwyrm/templates/settings/users/user_info.html:51 +#, fuzzy +#| msgid "Email" +msgid "Email:" +msgstr "郵箱" + +#: bookwyrm/templates/settings/users/user_info.html:61 +#, fuzzy +#| msgid "Directory" +msgid "(View reports)" +msgstr "目錄" + +#: bookwyrm/templates/settings/users/user_info.html:67 +#, fuzzy +#| msgid "Blocked by us:" +msgid "Blocked by count:" +msgstr "我們所封鎖的:" + +#: bookwyrm/templates/settings/users/user_info.html:70 +#, fuzzy +#| msgid "last active" +msgid "Last active date:" +msgstr "最後活躍" + +#: bookwyrm/templates/settings/users/user_info.html:73 +#, fuzzy +#| msgid "Manually approve followers:" +msgid "Manually approved followers:" +msgstr "手動批准關注者:" + +#: bookwyrm/templates/settings/users/user_info.html:76 +#, fuzzy +#| msgid "Discard" +msgid "Discoverable:" +msgstr "放棄" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:95 +msgid "Instance details" +msgstr "實例詳情" + +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "View instance" +msgstr "檢視實例" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:5 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:13 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:13 +msgid "Send direct message" +msgstr "發送私信" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:20 +msgid "Suspend user" +msgstr "停用使用者" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:25 +msgid "Un-suspend user" +msgstr "取消停用使用者" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:47 +msgid "Access level:" +msgstr "訪問權限:" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +msgid "Create Shelf" +msgstr "建立書架" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "編輯書架" + +#: bookwyrm/templates/shelf/shelf.html:28 bookwyrm/views/shelf.py:56 +msgid "All books" +msgstr "所有書目" + +#: bookwyrm/templates/shelf/shelf.html:55 +msgid "Create shelf" +msgstr "建立書架" + +#: bookwyrm/templates/shelf/shelf.html:77 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" + +#: bookwyrm/templates/shelf/shelf.html:84 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:96 +msgid "Edit shelf" +msgstr "編輯書架" + +#: bookwyrm/templates/shelf/shelf.html:104 +msgid "Delete shelf" +msgstr "刪除書架" + +#: bookwyrm/templates/shelf/shelf.html:130 +#: bookwyrm/templates/shelf/shelf.html:154 +msgid "Shelved" +msgstr "上架時間" + +#: bookwyrm/templates/shelf/shelf.html:131 +#: bookwyrm/templates/shelf/shelf.html:158 +msgid "Started" +msgstr "開始時間" + +#: bookwyrm/templates/shelf/shelf.html:132 +#: bookwyrm/templates/shelf/shelf.html:161 +msgid "Finished" +msgstr "完成時間" + +#: bookwyrm/templates/shelf/shelf.html:187 +msgid "This shelf is empty." +msgstr "此書架是空的。" + #: bookwyrm/templates/snippets/announcement.html:31 #, python-format msgid "Posted by %(username)s" @@ -2840,24 +3049,21 @@ msgid "Some thoughts on the book" msgstr "" #: bookwyrm/templates/snippets/create_status/comment.html:26 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:16 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:15 msgid "Progress:" msgstr "進度:" #: bookwyrm/templates/snippets/create_status/comment.html:52 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:31 -#: bookwyrm/templates/snippets/readthrough_form.html:22 +#: bookwyrm/templates/snippets/progress_field.html:18 msgid "pages" msgstr "頁數" #: bookwyrm/templates/snippets/create_status/comment.html:58 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:32 -#: bookwyrm/templates/snippets/readthrough_form.html:23 +#: bookwyrm/templates/snippets/progress_field.html:23 msgid "percent" msgstr "百分比" #: bookwyrm/templates/snippets/create_status/comment.html:65 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:37 #, python-format msgid "of %(pages)s pages" msgstr "全書 %(pages)s 頁" @@ -3049,29 +3255,29 @@ msgstr[0] "\"%(book_title)s\" 的書評(%(display_rating)s 星): %(review_ti msgid "Review of \"%(book_title)s\": %(review_title)s" msgstr "\"%(book_title)s\" 的書評: %(review_title)s" -#: bookwyrm/templates/snippets/goal_card.html:23 +#: bookwyrm/templates/snippets/goal_form.html:3 #, python-format -msgid "You can set or change your reading goal any time from your profile page" -msgstr "你可以在任何時候從你的使用者資料頁面 中設定或改變你的閱讀目標" +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "設定一個 %(year)s 內要讀多少書的目標,並記錄你全年的進度。" -#: bookwyrm/templates/snippets/goal_form.html:9 +#: bookwyrm/templates/snippets/goal_form.html:12 msgid "Reading goal:" msgstr "閱讀目標:" -#: bookwyrm/templates/snippets/goal_form.html:14 +#: bookwyrm/templates/snippets/goal_form.html:17 msgid "books" msgstr "本書" -#: bookwyrm/templates/snippets/goal_form.html:19 +#: bookwyrm/templates/snippets/goal_form.html:22 msgid "Goal privacy:" msgstr "目標隱私:" -#: bookwyrm/templates/snippets/goal_form.html:26 +#: bookwyrm/templates/snippets/goal_form.html:29 #: bookwyrm/templates/snippets/reading_modals/layout.html:13 msgid "Post to feed" msgstr "發佈到即時動態" -#: bookwyrm/templates/snippets/goal_form.html:30 +#: bookwyrm/templates/snippets/goal_form.html:33 msgid "Set goal" msgstr "設定目標" @@ -3147,18 +3353,18 @@ msgstr "評價" msgid "Finish \"%(book_title)s\"" msgstr "完成 \"%(book_title)s\"" -#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:22 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:23 #: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:20 #: bookwyrm/templates/snippets/readthrough_form.html:7 msgid "Started reading" msgstr "已開始閱讀" -#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:30 -#: bookwyrm/templates/snippets/readthrough_form.html:30 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:31 +#: bookwyrm/templates/snippets/readthrough_form.html:20 msgid "Finished reading" msgstr "已完成閱讀" -#: bookwyrm/templates/snippets/reading_modals/form.html:8 +#: bookwyrm/templates/snippets/reading_modals/form.html:9 msgid "(Optional)" msgstr "" @@ -3189,6 +3395,20 @@ msgstr "註冊" msgid "Report" msgstr "舉報" +#: bookwyrm/templates/snippets/report_modal.html:6 +#, python-format +msgid "Report @%(username)s" +msgstr "舉報 %(username)s" + +#: bookwyrm/templates/snippets/report_modal.html:23 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "本舉報會被發送至 %(site_name)s 的監察員以複查。" + +#: bookwyrm/templates/snippets/report_modal.html:24 +msgid "More info about this report:" +msgstr "關於本舉報的更多資訊" + #: bookwyrm/templates/snippets/search_result_text.html:36 msgid "Import book" msgstr "匯入書目" @@ -3329,12 +3549,6 @@ msgstr "更多選項" msgid "Delete & re-draft" msgstr "刪除並重新起草" -#: bookwyrm/templates/snippets/status/status_options.html:35 -#: bookwyrm/templates/snippets/user_options.html:13 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:13 -msgid "Send direct message" -msgstr "發送私信" - #: bookwyrm/templates/snippets/suggested_users.html:16 #, python-format msgid "%(mutuals)s follower you follow" @@ -3374,6 +3588,35 @@ msgstr "顯示更多" msgid "Show less" msgstr "顯示更少" +#: bookwyrm/templates/user/books_header.html:5 +#, python-format +msgid "%(username)s's books" +msgstr "%(username)s 的書目" + +#: bookwyrm/templates/user/goal.html:8 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "%(year)s 閱讀進度" + +#: bookwyrm/templates/user/goal.html:12 +msgid "Edit Goal" +msgstr "編輯目標" + +#: bookwyrm/templates/user/goal.html:28 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "%(name)s 還沒有設定 %(year)s 的閱讀目標。" + +#: bookwyrm/templates/user/goal.html:40 +#, python-format +msgid "Your %(year)s Books" +msgstr "你 %(year)s 的書目" + +#: bookwyrm/templates/user/goal.html:42 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "%(username)s 在 %(year)s 的書目" + #: bookwyrm/templates/user/layout.html:18 bookwyrm/templates/user/user.html:10 msgid "User Profile" msgstr "使用者使用者資料" @@ -3410,70 +3653,6 @@ msgstr "正在關注" msgid "%(username)s isn't following any users" msgstr "%(username)s 沒有關注任何使用者" -#: bookwyrm/templates/user/shelf/books_header.html:5 -#, python-format -msgid "%(username)s's books" -msgstr "%(username)s 的書目" - -#: bookwyrm/templates/user/shelf/create_shelf_form.html:5 -#: bookwyrm/templates/user/shelf/create_shelf_form.html:22 -msgid "Create Shelf" -msgstr "建立書架" - -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:5 -msgid "Edit Shelf" -msgstr "編輯書架" - -#: bookwyrm/templates/user/shelf/edit_shelf_form.html:26 -msgid "Update shelf" -msgstr "更新書架" - -#: bookwyrm/templates/user/shelf/shelf.html:28 bookwyrm/views/shelf.py:56 -msgid "All books" -msgstr "所有書目" - -#: bookwyrm/templates/user/shelf/shelf.html:55 -msgid "Create shelf" -msgstr "建立書架" - -#: bookwyrm/templates/user/shelf/shelf.html:76 -#, python-format -msgid "%(formatted_count)s book" -msgid_plural "%(formatted_count)s books" -msgstr[0] "" - -#: bookwyrm/templates/user/shelf/shelf.html:83 -#, python-format -msgid "(showing %(start)s-%(end)s)" -msgstr "" - -#: bookwyrm/templates/user/shelf/shelf.html:94 -msgid "Edit shelf" -msgstr "編輯書架" - -#: bookwyrm/templates/user/shelf/shelf.html:113 -#: bookwyrm/templates/user/shelf/shelf.html:137 -msgid "Shelved" -msgstr "上架時間" - -#: bookwyrm/templates/user/shelf/shelf.html:114 -#: bookwyrm/templates/user/shelf/shelf.html:141 -msgid "Started" -msgstr "開始時間" - -#: bookwyrm/templates/user/shelf/shelf.html:115 -#: bookwyrm/templates/user/shelf/shelf.html:144 -msgid "Finished" -msgstr "完成時間" - -#: bookwyrm/templates/user/shelf/shelf.html:170 -msgid "This shelf is empty." -msgstr "此書架是空的。" - -#: bookwyrm/templates/user/shelf/shelf.html:176 -msgid "Delete shelf" -msgstr "刪除書架" - #: bookwyrm/templates/user/user.html:16 msgid "Edit profile" msgstr "編輯使用者資料" @@ -3528,145 +3707,6 @@ msgstr[0] "%(mutuals_display)s 個你也關注的關注者" msgid "No followers you follow" msgstr "你關注的關注者" -#: bookwyrm/templates/user_admin/delete_user_form.html:5 -#: bookwyrm/templates/user_admin/user_moderation_actions.html:31 -msgid "Permanently delete user" -msgstr "" - -#: bookwyrm/templates/user_admin/delete_user_form.html:12 -#, python-format -msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." -msgstr "" - -#: bookwyrm/templates/user_admin/delete_user_form.html:17 -#, fuzzy -#| msgid "Confirm password:" -msgid "Your password:" -msgstr "確認密碼:" - -#: bookwyrm/templates/user_admin/user.html:8 -msgid "Back to users" -msgstr "回到使用者" - -#: bookwyrm/templates/user_admin/user_admin.html:7 -#, python-format -msgid "Users: %(instance_name)s" -msgstr "使用者: %(instance_name)s" - -#: bookwyrm/templates/user_admin/user_admin.html:22 -#: bookwyrm/templates/user_admin/username_filter.html:5 -msgid "Username" -msgstr "使用者名稱" - -#: bookwyrm/templates/user_admin/user_admin.html:26 -msgid "Date Added" -msgstr "新增日期:" - -#: bookwyrm/templates/user_admin/user_admin.html:30 -msgid "Last Active" -msgstr "最後活躍" - -#: bookwyrm/templates/user_admin/user_admin.html:38 -msgid "Remote instance" -msgstr "移除伺服器" - -#: bookwyrm/templates/user_admin/user_admin.html:47 -#: bookwyrm/templates/user_admin/user_info.html:24 -msgid "Active" -msgstr "活躍" - -#: bookwyrm/templates/user_admin/user_admin.html:47 -#: bookwyrm/templates/user_admin/user_info.html:28 -msgid "Inactive" -msgstr "停用" - -#: bookwyrm/templates/user_admin/user_admin.html:52 -#: bookwyrm/templates/user_admin/user_info.html:140 -msgid "Not set" -msgstr "未設定" - -#: bookwyrm/templates/user_admin/user_info.html:16 -msgid "View user profile" -msgstr "檢視使用者資料" - -#: bookwyrm/templates/user_admin/user_info.html:36 -msgid "Local" -msgstr "本站" - -#: bookwyrm/templates/user_admin/user_info.html:38 -#, fuzzy -#| msgid "Remove" -msgid "Remote" -msgstr "移除" - -#: bookwyrm/templates/user_admin/user_info.html:47 -msgid "User details" -msgstr "使用者詳情" - -#: bookwyrm/templates/user_admin/user_info.html:52 -#, fuzzy -#| msgid "Email" -msgid "Email:" -msgstr "郵箱" - -#: bookwyrm/templates/user_admin/user_info.html:64 -#, fuzzy -#| msgid "Directory" -msgid "(View reports)" -msgstr "目錄" - -#: bookwyrm/templates/user_admin/user_info.html:72 -#, fuzzy -#| msgid "Blocked by us:" -msgid "Blocked by count:" -msgstr "我們所封鎖的:" - -#: bookwyrm/templates/user_admin/user_info.html:77 -#, fuzzy -#| msgid "last active" -msgid "Last active date:" -msgstr "最後活躍" - -#: bookwyrm/templates/user_admin/user_info.html:82 -#, fuzzy -#| msgid "Manually approve followers:" -msgid "Manually approved followers:" -msgstr "手動批准關注者:" - -#: bookwyrm/templates/user_admin/user_info.html:87 -#, fuzzy -#| msgid "Discard" -msgid "Discoverable:" -msgstr "放棄" - -#: bookwyrm/templates/user_admin/user_info.html:93 -msgid "Deactivation reason:" -msgstr "" - -#: bookwyrm/templates/user_admin/user_info.html:111 -msgid "Instance details" -msgstr "實例詳情" - -#: bookwyrm/templates/user_admin/user_info.html:137 -msgid "View instance" -msgstr "檢視實例" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:5 -msgid "Permanently deleted" -msgstr "" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:20 -msgid "Suspend user" -msgstr "停用使用者" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:25 -msgid "Un-suspend user" -msgstr "取消停用使用者" - -#: bookwyrm/templates/user_admin/user_moderation_actions.html:47 -msgid "Access level:" -msgstr "訪問權限:" - #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 msgid "File exceeds maximum size: 10MB" msgstr "檔案超過了最大大小: 10MB" @@ -3699,6 +3739,9 @@ msgstr "密碼重置連結已傳送給 %s" msgid "Status updates from {obj.display_name}" msgstr "" +#~ msgid "Update shelf" +#~ msgstr "更新書架" + #~ msgid "%(count)d uses" #~ msgstr "%(count)d 次使用"