From b0c0af961799afba1baf218c548edd9551453f7a Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 4 Mar 2022 12:40:06 -0800 Subject: [PATCH 01/17] Adds custom compile management command --- bookwyrm/management/commands/compilethemes.py | 32 +++++++++++++++++++ bookwyrm/settings.py | 4 --- bookwyrm/templates/layout.html | 4 +-- bw-dev | 2 +- 4 files changed, 35 insertions(+), 7 deletions(-) create mode 100644 bookwyrm/management/commands/compilethemes.py diff --git a/bookwyrm/management/commands/compilethemes.py b/bookwyrm/management/commands/compilethemes.py new file mode 100644 index 000000000..0f83adeb5 --- /dev/null +++ b/bookwyrm/management/commands/compilethemes.py @@ -0,0 +1,32 @@ +""" Compile themes """ +import os +from django.contrib.staticfiles.utils import get_files +from django.contrib.staticfiles.storage import StaticFilesStorage +from django.core.files.base import ContentFile +from django.core.management.base import BaseCommand + +import sass +from sass_processor.processor import SassProcessor + +# pylint: disable=line-too-long +class Command(BaseCommand): + """Compile themes""" + + help = "Compile theme scss files" + + # pylint: disable=no-self-use,unused-argument + def handle(self, *args, **options): + """compile themes""" + storage = StaticFilesStorage() + theme_files = list(get_files(storage, location="css/themes")) + theme_files = [t for t in theme_files if t[-5:] == '.scss'] + for filename in theme_files: + path = storage.path(filename) + content = sass.compile( + filename=path, + include_paths=SassProcessor.include_paths, + ) + basename, _ = os.path.splitext(path) + destination_filename = basename + '.css' + print(f"saving f{destination_filename}") + storage.save(destination_filename, ContentFile(content)) diff --git a/bookwyrm/settings.py b/bookwyrm/settings.py index d698a34db..7d04a0466 100644 --- a/bookwyrm/settings.py +++ b/bookwyrm/settings.py @@ -189,10 +189,6 @@ STATICFILES_FINDERS = [ SASS_PROCESSOR_INCLUDE_FILE_PATTERN = r"^.+\.[s]{0,1}(?:a|c)ss$" -SASS_PROCESSOR_INCLUDE_DIRS = [ - os.path.join(BASE_DIR, ".css-config-sample"), -] - # minify css is production but not dev if not DEBUG: SASS_OUTPUT_STYLE = "compressed" diff --git a/bookwyrm/templates/layout.html b/bookwyrm/templates/layout.html index a57063cb3..dc18643aa 100644 --- a/bookwyrm/templates/layout.html +++ b/bookwyrm/templates/layout.html @@ -1,14 +1,14 @@ {% load layout %} +{% load sass_tags %} {% load i18n %} {% load static %} -{% load sass_tags %} {% block title %}BookWyrm{% endblock %} - {{ site.name }} - + diff --git a/bw-dev b/bw-dev index 89cc8d8c3..41971bb81 100755 --- a/bw-dev +++ b/bw-dev @@ -154,7 +154,7 @@ case "$CMD" in --config dev-tools/.stylelintrc.js ;; compilescss) - runweb python manage.py compilescss + runweb python manage.py compilethemes runweb python manage.py collectstatic --no-input ;; collectstatic_watch) From f26106fffdde86221c34dcdae9f0ef5a42d7b2cc Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 4 Mar 2022 12:42:43 -0800 Subject: [PATCH 02/17] Python formatting --- bookwyrm/management/commands/compilethemes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bookwyrm/management/commands/compilethemes.py b/bookwyrm/management/commands/compilethemes.py index 0f83adeb5..e3fba632b 100644 --- a/bookwyrm/management/commands/compilethemes.py +++ b/bookwyrm/management/commands/compilethemes.py @@ -19,7 +19,7 @@ class Command(BaseCommand): """compile themes""" storage = StaticFilesStorage() theme_files = list(get_files(storage, location="css/themes")) - theme_files = [t for t in theme_files if t[-5:] == '.scss'] + theme_files = [t for t in theme_files if t[-5:] == ".scss"] for filename in theme_files: path = storage.path(filename) content = sass.compile( @@ -27,6 +27,6 @@ class Command(BaseCommand): include_paths=SassProcessor.include_paths, ) basename, _ = os.path.splitext(path) - destination_filename = basename + '.css' + destination_filename = basename + ".css" print(f"saving f{destination_filename}") storage.save(destination_filename, ContentFile(content)) From a751884762634a70a0080c73251ac7456085d653 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Tue, 8 Mar 2022 12:12:39 -0800 Subject: [PATCH 03/17] Locale updates --- locale/de_DE/LC_MESSAGES/django.po | 551 +++++++++++++++----------- locale/en_US/LC_MESSAGES/django.po | 58 +-- locale/es_ES/LC_MESSAGES/django.mo | Bin 83924 -> 83719 bytes locale/es_ES/LC_MESSAGES/django.po | 551 +++++++++++++++----------- locale/fr_FR/LC_MESSAGES/django.po | 551 +++++++++++++++----------- locale/gl_ES/LC_MESSAGES/django.mo | Bin 87986 -> 89448 bytes locale/gl_ES/LC_MESSAGES/django.po | 551 +++++++++++++++----------- locale/it_IT/LC_MESSAGES/django.mo | Bin 89356 -> 90758 bytes locale/it_IT/LC_MESSAGES/django.po | 551 +++++++++++++++----------- locale/lt_LT/LC_MESSAGES/django.mo | Bin 85058 -> 84886 bytes locale/lt_LT/LC_MESSAGES/django.po | 551 +++++++++++++++----------- locale/no_NO/LC_MESSAGES/django.mo | Bin 80038 -> 79871 bytes locale/no_NO/LC_MESSAGES/django.po | 551 +++++++++++++++----------- locale/pt_BR/LC_MESSAGES/django.mo | Bin 88657 -> 90058 bytes locale/pt_BR/LC_MESSAGES/django.po | 551 +++++++++++++++----------- locale/pt_PT/LC_MESSAGES/django.mo | Bin 73117 -> 72909 bytes locale/pt_PT/LC_MESSAGES/django.po | 551 +++++++++++++++----------- locale/sv_SE/LC_MESSAGES/django.mo | Bin 87441 -> 87935 bytes locale/sv_SE/LC_MESSAGES/django.po | 569 +++++++++++++++------------ locale/zh_Hans/LC_MESSAGES/django.po | 551 +++++++++++++++----------- locale/zh_Hant/LC_MESSAGES/django.po | 549 +++++++++++++++----------- 21 files changed, 3781 insertions(+), 2905 deletions(-) diff --git a/locale/de_DE/LC_MESSAGES/django.po b/locale/de_DE/LC_MESSAGES/django.po index c2dabfd9a..e458e84b6 100644 --- a/locale/de_DE/LC_MESSAGES/django.po +++ b/locale/de_DE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-02-25 20:12+0000\n" -"PO-Revision-Date: 2022-02-27 18:54\n" +"POT-Creation-Date: 2022-03-01 19:48+0000\n" +"PO-Revision-Date: 2022-03-01 20:16\n" "Last-Translator: Mouse Reeve \n" "Language-Team: German\n" "Language: de\n" @@ -21,70 +21,70 @@ msgstr "" msgid "User with this username already exists" msgstr "Ein Benutzer mit diesem Benutzernamen existiert bereits" -#: bookwyrm/forms.py:252 +#: bookwyrm/forms.py:254 msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Diese Domain ist blockiert. Bitte kontaktiere einen Administrator, wenn du denkst, dass dies ein Fehler ist." -#: bookwyrm/forms.py:262 +#: bookwyrm/forms.py:264 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "" -#: bookwyrm/forms.py:401 +#: bookwyrm/forms.py:403 msgid "A user with this email already exists." msgstr "Es existiert bereits ein Benutzer*inkonto mit dieser E-Mail-Adresse." -#: bookwyrm/forms.py:415 +#: bookwyrm/forms.py:417 msgid "One Day" msgstr "Ein Tag" -#: bookwyrm/forms.py:416 +#: bookwyrm/forms.py:418 msgid "One Week" msgstr "Eine Woche" -#: bookwyrm/forms.py:417 +#: bookwyrm/forms.py:419 msgid "One Month" msgstr "Ein Monat" -#: bookwyrm/forms.py:418 +#: bookwyrm/forms.py:420 msgid "Does Not Expire" msgstr "Läuft nicht ab" -#: bookwyrm/forms.py:422 +#: bookwyrm/forms.py:424 #, python-brace-format msgid "{i} uses" msgstr "{i}-mal verwendbar" -#: bookwyrm/forms.py:423 +#: bookwyrm/forms.py:425 msgid "Unlimited" msgstr "Unbegrenzt" -#: bookwyrm/forms.py:525 +#: bookwyrm/forms.py:543 msgid "List Order" msgstr "Reihenfolge der Liste" -#: bookwyrm/forms.py:526 +#: bookwyrm/forms.py:544 msgid "Book Title" msgstr "Buchtitel" -#: bookwyrm/forms.py:527 bookwyrm/templates/shelf/shelf.html:155 +#: bookwyrm/forms.py:545 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Bewertung" -#: bookwyrm/forms.py:529 bookwyrm/templates/lists/list.html:175 +#: bookwyrm/forms.py:547 bookwyrm/templates/lists/list.html:185 msgid "Sort By" msgstr "Sortieren nach" -#: bookwyrm/forms.py:533 +#: bookwyrm/forms.py:551 msgid "Ascending" msgstr "Aufsteigend" -#: bookwyrm/forms.py:534 +#: bookwyrm/forms.py:552 msgid "Descending" msgstr "Absteigend" -#: bookwyrm/forms.py:547 +#: bookwyrm/forms.py:565 msgid "Reading finish date cannot be before start date." msgstr "Enddatum darf nicht vor dem Startdatum liegen." @@ -97,27 +97,23 @@ msgid "Could not find a match for book" msgstr "Keine Übereinstimmung für das Buch gefunden" #: bookwyrm/models/announcement.py:11 -msgid "None" -msgstr "Keine" - -#: bookwyrm/models/announcement.py:12 msgid "Primary" msgstr "Primär" -#: bookwyrm/models/announcement.py:13 +#: bookwyrm/models/announcement.py:12 msgid "Success" msgstr "Erfolg" -#: bookwyrm/models/announcement.py:14 +#: bookwyrm/models/announcement.py:13 #: bookwyrm/templates/settings/invites/manage_invites.html:47 msgid "Link" msgstr "Link" -#: bookwyrm/models/announcement.py:15 +#: bookwyrm/models/announcement.py:14 msgid "Warning" msgstr "Warnung" -#: bookwyrm/models/announcement.py:16 +#: bookwyrm/models/announcement.py:15 msgid "Danger" msgstr "Gefahr" @@ -168,13 +164,13 @@ msgid "Paperback" msgstr "Taschenbuch" #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "Föderiert" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 -#: bookwyrm/templates/settings/federation/edit_instance.html:44 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 @@ -470,7 +466,7 @@ msgid "Copy address" msgstr "Adresse kopieren" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:267 +#: bookwyrm/templates/lists/list.html:277 msgid "Copied!" msgstr "Kopiert!" @@ -737,12 +733,12 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:124 +#: bookwyrm/templates/preferences/edit_user.html:136 #: bookwyrm/templates/readthrough/readthrough_modal.html:72 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 -#: bookwyrm/templates/settings/federation/edit_instance.html:82 -#: bookwyrm/templates/settings/federation/instance.html:87 -#: bookwyrm/templates/settings/site.html:151 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/site.html:169 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -763,7 +759,7 @@ msgstr "Speichern" #: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/readthrough_modal.html:73 -#: bookwyrm/templates/settings/federation/instance.html:88 +#: bookwyrm/templates/settings/federation/instance.html:106 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Cancel" @@ -879,7 +875,7 @@ msgstr "Zur Liste hinzufügen" #: bookwyrm/templates/book/book.html:370 #: bookwyrm/templates/book/cover_add_modal.html:31 #: bookwyrm/templates/lists/add_item_modal.html:37 -#: bookwyrm/templates/lists/list.html:245 +#: bookwyrm/templates/lists/list.html:255 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -1179,8 +1175,9 @@ msgstr "Status" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 -#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/federation/instance.html:112 #: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:118 msgid "Actions" msgstr "Aktionen" @@ -1667,16 +1664,14 @@ msgid "Add to your books" msgstr "Zu deinen Büchern hinzufügen" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:86 -#: bookwyrm/templates/snippets/translated_shelf_name.html:5 -#: bookwyrm/templates/user/user.html:33 +#: bookwyrm/templates/shelf/shelf.html:86 bookwyrm/templates/user/user.html:33 +#: bookwyrm/templatetags/shelf_tags.py:46 msgid "To Read" msgstr "Zu lesen" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:87 -#: bookwyrm/templates/snippets/translated_shelf_name.html:7 -#: bookwyrm/templates/user/user.html:34 +#: bookwyrm/templates/shelf/shelf.html:87 bookwyrm/templates/user/user.html:34 +#: bookwyrm/templatetags/shelf_tags.py:48 msgid "Currently Reading" msgstr "Aktuell lesend" @@ -1685,8 +1680,7 @@ msgstr "Aktuell lesend" #: bookwyrm/templates/snippets/shelf_selector.html:47 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/snippets/translated_shelf_name.html:9 -#: bookwyrm/templates/user/user.html:35 +#: bookwyrm/templates/user/user.html:35 bookwyrm/templatetags/shelf_tags.py:50 msgid "Read" msgstr "Gelesen" @@ -1695,7 +1689,7 @@ msgid "What are you reading?" msgstr "Was liest du gerade?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:203 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:213 msgid "Search for a book" msgstr "Nach einem Buch suchen" @@ -1715,7 +1709,7 @@ msgstr "Du kannst Bücher hinzufügen, wenn du %(site_name)s benutzt." #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/members.html:15 #: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:54 -#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:207 +#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1731,7 +1725,7 @@ msgid "Popular on %(site_name)s" msgstr "Auf %(site_name)s beliebt" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:220 +#: bookwyrm/templates/lists/list.html:230 msgid "No books found" msgstr "Keine Bücher gefunden" @@ -1887,7 +1881,8 @@ msgstr "Gruppe verlassen" #: bookwyrm/templates/groups/members.html:54 #: bookwyrm/templates/groups/suggested_users.html:35 #: bookwyrm/templates/snippets/suggested_users.html:31 -#: bookwyrm/templates/user/user_preview.html:36 +#: bookwyrm/templates/user/user_preview.html:33 +#: bookwyrm/templates/user/user_preview.html:41 msgid "Follows you" msgstr "Folgt dir" @@ -1943,7 +1938,7 @@ msgid "Privacy setting for imported reviews:" msgstr "Datenschutzeinstellung für importierte Besprechungen:" #: bookwyrm/templates/import/import.html:59 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:76 msgid "Import" msgstr "Importieren" @@ -2304,7 +2299,7 @@ msgid "Suggest \"%(title)s\" for this list" msgstr "\"%(title)s\" für diese Liste vorschlagen" #: bookwyrm/templates/lists/add_item_modal.html:39 -#: bookwyrm/templates/lists/list.html:247 +#: bookwyrm/templates/lists/list.html:257 msgid "Suggest" msgstr "Vorschlagen" @@ -2340,7 +2335,7 @@ msgid "You're all set!" msgstr "Du bist soweit!" #: bookwyrm/templates/lists/curate.html:45 -#: bookwyrm/templates/lists/list.html:83 +#: bookwyrm/templates/lists/list.html:93 #, python-format msgid "%(username)s says:" msgstr "%(username)s sagt:" @@ -2373,7 +2368,7 @@ msgid "on %(site_name)s" msgstr "auf %(site_name)s" #: bookwyrm/templates/lists/embed-list.html:27 -#: bookwyrm/templates/lists/list.html:44 +#: bookwyrm/templates/lists/list.html:54 msgid "This list is currently empty" msgstr "Diese Liste ist momentan leer" @@ -2435,7 +2430,7 @@ msgid "Delete list" msgstr "Liste löschen" #: bookwyrm/templates/lists/item_notes_field.html:7 -#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 msgid "Notes:" msgstr "Anmerkungen:" @@ -2443,80 +2438,84 @@ msgstr "Anmerkungen:" msgid "An optional note that will be displayed with the book." msgstr "Eine optionale Notiz die zusammen mit dem Buch angezeigt wird." -#: bookwyrm/templates/lists/list.html:36 +#: bookwyrm/templates/lists/list.html:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 msgid "You successfully suggested a book for this list!" msgstr "Dein Buchvorschlag wurde dieser Liste hinzugefügt!" -#: bookwyrm/templates/lists/list.html:38 +#: bookwyrm/templates/lists/list.html:47 msgid "You successfully added a book to this list!" msgstr "Du hast ein Buch zu dieser Liste hinzugefügt!" -#: bookwyrm/templates/lists/list.html:94 +#: bookwyrm/templates/lists/list.html:104 msgid "Edit notes" msgstr "Notizen bearbeiten" -#: bookwyrm/templates/lists/list.html:109 +#: bookwyrm/templates/lists/list.html:119 msgid "Add notes" msgstr "Notiz hinzufügen" -#: bookwyrm/templates/lists/list.html:121 +#: bookwyrm/templates/lists/list.html:131 #, python-format msgid "Added by %(username)s" msgstr "Hinzugefügt von %(username)s" -#: bookwyrm/templates/lists/list.html:136 +#: bookwyrm/templates/lists/list.html:146 msgid "List position" msgstr "Listenposition" -#: bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/lists/list.html:152 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21 msgid "Set" msgstr "Übernehmen" -#: bookwyrm/templates/lists/list.html:157 +#: bookwyrm/templates/lists/list.html:167 #: bookwyrm/templates/snippets/remove_from_group_button.html:20 msgid "Remove" msgstr "Entfernen" -#: bookwyrm/templates/lists/list.html:171 -#: bookwyrm/templates/lists/list.html:188 +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 msgid "Sort List" msgstr "Liste sortieren" -#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:191 msgid "Direction" msgstr "Reihenfolge" -#: bookwyrm/templates/lists/list.html:195 +#: bookwyrm/templates/lists/list.html:205 msgid "Add Books" msgstr "Bücher hinzufügen" -#: bookwyrm/templates/lists/list.html:197 +#: bookwyrm/templates/lists/list.html:207 msgid "Suggest Books" msgstr "Bücher vorschlagen" -#: bookwyrm/templates/lists/list.html:208 +#: bookwyrm/templates/lists/list.html:218 msgid "search" msgstr "suchen" -#: bookwyrm/templates/lists/list.html:214 +#: bookwyrm/templates/lists/list.html:224 msgid "Clear search" msgstr "Suche zurücksetzen" -#: bookwyrm/templates/lists/list.html:219 +#: bookwyrm/templates/lists/list.html:229 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "Keine passenden Bücher zu „%(query)s“ gefunden" -#: bookwyrm/templates/lists/list.html:258 +#: bookwyrm/templates/lists/list.html:268 msgid "Embed this list on a website" msgstr "Diese Liste auf einer Webseite einbetten" -#: bookwyrm/templates/lists/list.html:266 +#: bookwyrm/templates/lists/list.html:276 msgid "Copy embed code" msgstr "Code zum einbetten kopieren" -#: bookwyrm/templates/lists/list.html:268 +#: bookwyrm/templates/lists/list.html:278 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s, eine Liste von %(owner)s auf %(site_name)s" @@ -2871,11 +2870,14 @@ msgstr "Profil" #: bookwyrm/templates/preferences/edit_user.html:13 #: bookwyrm/templates/preferences/edit_user.html:64 -msgid "Display preferences" -msgstr "Anzeigeeinstellungen" +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:77 +#: bookwyrm/templates/setup/config.html:91 +msgid "Display" +msgstr "" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:106 +#: bookwyrm/templates/preferences/edit_user.html:112 msgid "Privacy" msgstr "Privatsphäre" @@ -2900,11 +2902,19 @@ msgstr "Dein Benutzer*inkonto wird im Verzeichnis angez msgid "Preferred Timezone: " msgstr "Bevorzugte Zeitzone:" -#: bookwyrm/templates/preferences/edit_user.html:111 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:117 msgid "Manually approve followers" msgstr "Follower*innen manuell bestätigen" -#: bookwyrm/templates/preferences/edit_user.html:116 +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:128 msgid "Default post privacy:" msgstr "Voreinstellung für Beitragssichtbarkeit:" @@ -3051,7 +3061,7 @@ msgid "Announcement" msgstr "Ankündigung" #: bookwyrm/templates/settings/announcements/announcement.html:16 -#: bookwyrm/templates/settings/federation/instance.html:75 +#: bookwyrm/templates/settings/federation/instance.html:93 #: bookwyrm/templates/snippets/status/status_options.html:25 msgid "Edit" msgstr "Ändern" @@ -3340,136 +3350,136 @@ msgstr "Derzeit sind keine E-Mail-Domains gesperrt" #: 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/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 #: bookwyrm/templates/settings/federation/instance_blocklist.html:3 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 #: bookwyrm/templates/settings/federation/instance_list.html:9 #: bookwyrm/templates/settings/federation/instance_list.html:10 msgid "Add instance" msgstr "Instanz hinzufügen" -#: bookwyrm/templates/settings/federation/edit_instance.html:7 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:7 -msgid "Back to instance list" -msgstr "Zurück zur Instanzenliste" - -#: bookwyrm/templates/settings/federation/edit_instance.html:16 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:16 -msgid "Import block list" -msgstr "Sperrliste importieren" - -#: bookwyrm/templates/settings/federation/edit_instance.html:31 -msgid "Instance:" -msgstr "Instanz:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:40 -#: 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:54 -#: 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:64 -#: bookwyrm/templates/settings/federation/instance.html:25 -#: bookwyrm/templates/settings/users/user_info.html:103 -msgid "Version:" -msgstr "Version:" - -#: bookwyrm/templates/settings/federation/instance.html:13 -msgid "Back to list" -msgstr "Zurück zur Liste" - -#: bookwyrm/templates/settings/federation/instance.html:19 -msgid "Details" -msgstr "Details" - -#: bookwyrm/templates/settings/federation/instance.html:35 -#: bookwyrm/templates/user/layout.html:67 -msgid "Activity" -msgstr "Aktivität" - -#: bookwyrm/templates/settings/federation/instance.html:38 -msgid "Users:" -msgstr "Benutzer*innen:" - -#: bookwyrm/templates/settings/federation/instance.html:41 -#: bookwyrm/templates/settings/federation/instance.html:47 -msgid "View all" -msgstr "Alle(s) anzeigen" - -#: bookwyrm/templates/settings/federation/instance.html:44 -#: bookwyrm/templates/settings/users/user_info.html:56 -msgid "Reports:" -msgstr "Meldungen:" - -#: bookwyrm/templates/settings/federation/instance.html:50 -msgid "Followed by us:" -msgstr "Folgen wir:" - -#: bookwyrm/templates/settings/federation/instance.html:55 -msgid "Followed by them:" -msgstr "Folgen uns:" - -#: bookwyrm/templates/settings/federation/instance.html:60 -msgid "Blocked by us:" -msgstr "Von uns gesperrt:" - -#: bookwyrm/templates/settings/federation/instance.html:72 -#: bookwyrm/templates/settings/users/user_info.html:110 -msgid "Notes" -msgstr "Anmerkungen" - -#: bookwyrm/templates/settings/federation/instance.html:79 -msgid "No notes" -msgstr "Keine Anmerkungen" - -#: bookwyrm/templates/settings/federation/instance.html:98 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Sperren" - -#: bookwyrm/templates/settings/federation/instance.html:99 -msgid "All users from this instance will be deactivated." -msgstr "Alle Benutzer*innen dieser Instanz werden deaktiviert." - -#: bookwyrm/templates/settings/federation/instance.html:104 -#: bookwyrm/templates/snippets/block_button.html:10 -msgid "Un-block" -msgstr "Entsperren" - -#: bookwyrm/templates/settings/federation/instance.html:105 -msgid "All users from this instance will be re-activated." -msgstr "Alle Benutzer*innen dieser Instanz werden wieder aktiviert." - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 -msgid "Import Blocklist" -msgstr "Sperrliste importieren" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:26 -#: bookwyrm/templates/snippets/goal_progress.html:7 -msgid "Success!" -msgstr "Hat funktioniert!" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:30 -msgid "Successfully blocked:" -msgstr "Erfolgreich gesperrt:" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 -msgid "Failed:" -msgstr "Fehlgeschlagen:" - +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 #: bookwyrm/templates/settings/federation/instance_list.html:3 #: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:47 msgid "Federated Instances" msgstr "Föderierte Instanzen" +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "Sperrliste importieren" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "Instanz:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "Status:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "Software:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "Version:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "Details" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:67 +msgid "Activity" +msgstr "Aktivität" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "Benutzer*innen:" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "Alle(s) anzeigen" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:56 +msgid "Reports:" +msgstr "Meldungen:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "Folgen wir:" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "Folgen uns:" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "Von uns gesperrt:" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Notes" +msgstr "Anmerkungen" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "Keine Anmerkungen" + +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Sperren" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "Alle Benutzer*innen dieser Instanz werden deaktiviert." + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "Entsperren" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "Alle Benutzer*innen dieser Instanz werden wieder aktiviert." + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "Sperrliste importieren" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "Hat funktioniert!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "Erfolgreich gesperrt:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "Fehlgeschlagen:" + #: bookwyrm/templates/settings/federation/instance_list.html:32 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" @@ -3654,6 +3664,13 @@ msgstr "Instanzeinstellungen" msgid "Site Settings" msgstr "Seiteneinstellungen" +#: bookwyrm/templates/settings/layout.html:91 +#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format msgid "Set display name for %(url)s" @@ -3779,22 +3796,17 @@ msgid "No reports found." msgstr "Keine Meldungen gefunden." #: bookwyrm/templates/settings/site.html:10 -#: bookwyrm/templates/settings/site.html:39 +#: bookwyrm/templates/settings/site.html:44 msgid "Instance Info" msgstr "Instanzinformationen" -#: bookwyrm/templates/settings/site.html:11 -#: bookwyrm/templates/settings/site.html:72 -msgid "Images" -msgstr "Bilder" - #: bookwyrm/templates/settings/site.html:12 -#: bookwyrm/templates/settings/site.html:92 +#: bookwyrm/templates/settings/site.html:110 msgid "Footer Content" msgstr "Inhalt der Fußzeile" #: bookwyrm/templates/settings/site.html:13 -#: bookwyrm/templates/settings/site.html:116 +#: bookwyrm/templates/settings/site.html:134 msgid "Registration" msgstr "Registrierung" @@ -3806,86 +3818,152 @@ msgstr "Einstellungen gespeichert" msgid "Unable to save settings" msgstr "Einstellungen konnten nicht gespeichert werden" -#: bookwyrm/templates/settings/site.html:42 +#: bookwyrm/templates/settings/site.html:47 msgid "Instance Name:" msgstr "Instanzname:" -#: bookwyrm/templates/settings/site.html:46 +#: bookwyrm/templates/settings/site.html:51 msgid "Tagline:" msgstr "Motto:" -#: bookwyrm/templates/settings/site.html:50 +#: bookwyrm/templates/settings/site.html:55 msgid "Instance description:" msgstr "Instanzbeschreibung:" -#: bookwyrm/templates/settings/site.html:54 +#: bookwyrm/templates/settings/site.html:59 msgid "Short description:" msgstr "Kurzbeschreibung:" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:60 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." msgstr "Wird verwendet, wenn die Instanz auf joinbookwyrm.com in der Vorschau angezeigt wird. Unterstützt weder HTML noch Markdown." -#: bookwyrm/templates/settings/site.html:59 +#: bookwyrm/templates/settings/site.html:64 msgid "Code of conduct:" msgstr "Verhaltenskodex:" -#: bookwyrm/templates/settings/site.html:63 +#: bookwyrm/templates/settings/site.html:68 msgid "Privacy Policy:" msgstr "Datenschutzerklärung:" -#: bookwyrm/templates/settings/site.html:75 +#: bookwyrm/templates/settings/site.html:79 +msgid "Images" +msgstr "Bilder" + +#: bookwyrm/templates/settings/site.html:82 msgid "Logo:" msgstr "Logo:" -#: bookwyrm/templates/settings/site.html:79 +#: bookwyrm/templates/settings/site.html:86 msgid "Logo small:" msgstr "Kleines Logo:" -#: bookwyrm/templates/settings/site.html:83 +#: bookwyrm/templates/settings/site.html:90 msgid "Favicon:" msgstr "Favicon:" -#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/site.html:98 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:113 msgid "Support link:" msgstr "Support-Link:" -#: bookwyrm/templates/settings/site.html:99 +#: bookwyrm/templates/settings/site.html:117 msgid "Support title:" msgstr "Support-Titel:" -#: bookwyrm/templates/settings/site.html:103 +#: bookwyrm/templates/settings/site.html:121 msgid "Admin email:" msgstr "E-Mail-Adresse des*r Administrator*in:" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:125 msgid "Additional info:" msgstr "Zusätzliche Angaben:" -#: bookwyrm/templates/settings/site.html:121 +#: bookwyrm/templates/settings/site.html:139 msgid "Allow registration" msgstr "Selbstregistrierung zulassen" -#: bookwyrm/templates/settings/site.html:127 +#: bookwyrm/templates/settings/site.html:145 msgid "Allow invite requests" msgstr "Einladungsanfragen zulassen" -#: bookwyrm/templates/settings/site.html:133 +#: bookwyrm/templates/settings/site.html:151 msgid "Require users to confirm email address" msgstr "Benutzer*innen müssen ihre E-Mail-Adresse bestätigen" -#: bookwyrm/templates/settings/site.html:135 +#: bookwyrm/templates/settings/site.html:153 msgid "(Recommended if registration is open)" msgstr "(empfohlen, falls Selbstregistrierung zulässig ist)" -#: bookwyrm/templates/settings/site.html:138 +#: bookwyrm/templates/settings/site.html:156 msgid "Registration closed text:" msgstr "Hinweis, wenn Selbtregistrierung nicht erlaubt ist:" -#: bookwyrm/templates/settings/site.html:142 +#: bookwyrm/templates/settings/site.html:160 msgid "Invite request text:" msgstr "Hinweis für Einladungsanfragen:" +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:26 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:29 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:32 +msgid "Run ./bw-dev compilescss." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:42 +#: bookwyrm/templates/settings/themes.html:101 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:48 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:61 +msgid "No available theme files detected" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:69 +#: bookwyrm/templates/settings/themes.html:112 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:79 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:107 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:115 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:130 +msgid "Remove theme" +msgstr "" + #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32 msgid "Permanently delete user" @@ -4077,10 +4155,6 @@ msgstr "" msgid "Using S3:" msgstr "" -#: bookwyrm/templates/setup/config.html:91 -msgid "Display" -msgstr "" - #: bookwyrm/templates/setup/config.html:95 msgid "Default interface language:" msgstr "" @@ -4138,8 +4212,7 @@ msgid "User profile" msgstr "Benutzer*inprofil" #: bookwyrm/templates/shelf/shelf.html:39 -#: bookwyrm/templates/snippets/translated_shelf_name.html:3 -#: bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templatetags/shelf_tags.py:44 bookwyrm/views/shelf/shelf.py:53 msgid "All books" msgstr "Alle Bücher" @@ -4573,8 +4646,13 @@ msgstr "Zu lesen beginnen" msgid "Want to read" msgstr "Auf Leseliste setzen" -#: bookwyrm/templates/snippets/shelf_selector.html:74 -#: bookwyrm/templates/snippets/shelf_selector.html:86 +#: bookwyrm/templates/snippets/shelf_selector.html:75 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 +#, python-format +msgid "Remove from %(name)s" +msgstr "Aus %(name)s entfernen" + +#: bookwyrm/templates/snippets/shelf_selector.html:88 msgid "Remove from" msgstr "Entfernen aus" @@ -4582,11 +4660,6 @@ msgstr "Entfernen aus" msgid "More shelves" msgstr "Mehr Regale" -#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 -#, python-format -msgid "Remove from %(name)s" -msgstr "Aus %(name)s entfernen" - #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:31 msgid "Finish reading" msgstr "Lesen abschließen" @@ -4869,14 +4942,14 @@ msgstr[1] "%(counter)s Follower*innen" msgid "%(counter)s following" msgstr "Folgt %(counter)s" -#: bookwyrm/templates/user/user_preview.html:34 +#: bookwyrm/templates/user/user_preview.html:39 #, python-format msgid "%(mutuals_display)s follower you follow" msgid_plural "%(mutuals_display)s followers you follow" msgstr[0] "%(mutuals_display)s Follower*in, der*die du folgst" msgstr[1] "%(mutuals_display)s Follower*innen, denen du folgst" -#: bookwyrm/templates/user/user_preview.html:38 +#: bookwyrm/templates/user/user_preview.html:43 msgid "No followers you follow" msgstr "Keine Follower*innen, denen du folgst" diff --git a/locale/en_US/LC_MESSAGES/django.po b/locale/en_US/LC_MESSAGES/django.po index ff2954f37..a6941e87f 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: 2022-03-01 19:48+0000\n" +"POT-Creation-Date: 2022-03-08 19:55+0000\n" "PO-Revision-Date: 2021-02-28 17:19-0800\n" "Last-Translator: Mouse Reeve \n" "Language-Team: English \n" @@ -262,73 +262,73 @@ msgstr "" msgid "Everything else" msgstr "" -#: bookwyrm/settings.py:211 +#: bookwyrm/settings.py:207 msgid "Home Timeline" msgstr "" -#: bookwyrm/settings.py:211 +#: bookwyrm/settings.py:207 msgid "Home" msgstr "" -#: bookwyrm/settings.py:212 +#: bookwyrm/settings.py:208 msgid "Books Timeline" msgstr "" -#: bookwyrm/settings.py:212 bookwyrm/templates/search/layout.html:21 +#: bookwyrm/settings.py:208 bookwyrm/templates/search/layout.html:21 #: bookwyrm/templates/search/layout.html:42 #: bookwyrm/templates/user/layout.html:91 msgid "Books" msgstr "" -#: bookwyrm/settings.py:284 +#: bookwyrm/settings.py:280 msgid "English" msgstr "" -#: bookwyrm/settings.py:285 +#: bookwyrm/settings.py:281 msgid "Deutsch (German)" msgstr "" -#: bookwyrm/settings.py:286 +#: bookwyrm/settings.py:282 msgid "Español (Spanish)" msgstr "" -#: bookwyrm/settings.py:287 +#: bookwyrm/settings.py:283 msgid "Galego (Galician)" msgstr "" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:284 msgid "Italiano (Italian)" msgstr "" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:285 msgid "Français (French)" msgstr "" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:286 msgid "Lietuvių (Lithuanian)" msgstr "" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:287 msgid "Norsk (Norwegian)" msgstr "" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:288 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:289 msgid "Português Europeu (European Portuguese)" msgstr "" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:290 msgid "Svenska (Swedish)" msgstr "" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:291 msgid "简体中文 (Simplified Chinese)" msgstr "" -#: bookwyrm/settings.py:296 +#: bookwyrm/settings.py:292 msgid "繁體中文 (Traditional Chinese)" msgstr "" @@ -357,54 +357,54 @@ msgstr "" msgid "About" msgstr "" -#: bookwyrm/templates/about/about.html:19 +#: bookwyrm/templates/about/about.html:20 #: bookwyrm/templates/get_started/layout.html:20 #, python-format msgid "Welcome to %(site_name)s!" msgstr "" -#: bookwyrm/templates/about/about.html:23 +#: bookwyrm/templates/about/about.html:24 #, python-format msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." msgstr "" -#: bookwyrm/templates/about/about.html:40 +#: bookwyrm/templates/about/about.html:42 #, python-format msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." msgstr "" -#: bookwyrm/templates/about/about.html:59 +#: bookwyrm/templates/about/about.html:61 #, python-format msgid "More %(site_name)s users want to read %(title)s than any other book." msgstr "" -#: bookwyrm/templates/about/about.html:78 +#: bookwyrm/templates/about/about.html:80 #, python-format msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." msgstr "" -#: bookwyrm/templates/about/about.html:89 +#: bookwyrm/templates/about/about.html:91 msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." msgstr "" -#: bookwyrm/templates/about/about.html:96 +#: bookwyrm/templates/about/about.html:98 msgid "Meet your admins" msgstr "" -#: bookwyrm/templates/about/about.html:99 +#: bookwyrm/templates/about/about.html:101 #, python-format msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." msgstr "" -#: bookwyrm/templates/about/about.html:113 +#: bookwyrm/templates/about/about.html:115 msgid "Moderator" msgstr "" -#: bookwyrm/templates/about/about.html:115 bookwyrm/templates/layout.html:132 +#: bookwyrm/templates/about/about.html:117 bookwyrm/templates/layout.html:132 msgid "Admin" msgstr "" -#: bookwyrm/templates/about/about.html:131 +#: bookwyrm/templates/about/about.html:133 #: bookwyrm/templates/settings/users/user_moderation_actions.html:14 #: bookwyrm/templates/snippets/status/status_options.html:35 #: bookwyrm/templates/snippets/user_options.html:14 diff --git a/locale/es_ES/LC_MESSAGES/django.mo b/locale/es_ES/LC_MESSAGES/django.mo index d54b97e67272658f25091fa047b00c7276f7bf00..cdb48a306eb2e333416e2cd803bb8ce01c4274c3 100644 GIT binary patch delta 21096 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 delta 21267 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\n" "Language-Team: Spanish\n" "Language: es\n" @@ -21,70 +21,70 @@ msgstr "" msgid "User with this username already exists" msgstr "" -#: bookwyrm/forms.py:252 +#: bookwyrm/forms.py:254 msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Este dominio está bloqueado. Póngase en contacto con su administrador si cree que esto es un error." -#: bookwyrm/forms.py:262 +#: bookwyrm/forms.py:264 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Este enlace con ese tipo de archivo ya ha sido añadido a este libro. Si no es visible es porque el dominio todavía está pendiente." -#: bookwyrm/forms.py:401 +#: bookwyrm/forms.py:403 msgid "A user with this email already exists." msgstr "Ya existe un usuario con ese correo electrónico." -#: bookwyrm/forms.py:415 +#: bookwyrm/forms.py:417 msgid "One Day" msgstr "Un día" -#: bookwyrm/forms.py:416 +#: bookwyrm/forms.py:418 msgid "One Week" msgstr "Una semana" -#: bookwyrm/forms.py:417 +#: bookwyrm/forms.py:419 msgid "One Month" msgstr "Un mes" -#: bookwyrm/forms.py:418 +#: bookwyrm/forms.py:420 msgid "Does Not Expire" msgstr "No expira" -#: bookwyrm/forms.py:422 +#: bookwyrm/forms.py:424 #, python-brace-format msgid "{i} uses" msgstr "{i} usos" -#: bookwyrm/forms.py:423 +#: bookwyrm/forms.py:425 msgid "Unlimited" msgstr "Sin límite" -#: bookwyrm/forms.py:525 +#: bookwyrm/forms.py:543 msgid "List Order" msgstr "Orden de la lista" -#: bookwyrm/forms.py:526 +#: bookwyrm/forms.py:544 msgid "Book Title" msgstr "Título" -#: bookwyrm/forms.py:527 bookwyrm/templates/shelf/shelf.html:155 +#: bookwyrm/forms.py:545 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Valoración" -#: bookwyrm/forms.py:529 bookwyrm/templates/lists/list.html:175 +#: bookwyrm/forms.py:547 bookwyrm/templates/lists/list.html:185 msgid "Sort By" msgstr "Ordenar por" -#: bookwyrm/forms.py:533 +#: bookwyrm/forms.py:551 msgid "Ascending" msgstr "Ascendente" -#: bookwyrm/forms.py:534 +#: bookwyrm/forms.py:552 msgid "Descending" msgstr "Descendente" -#: bookwyrm/forms.py:547 +#: bookwyrm/forms.py:565 msgid "Reading finish date cannot be before start date." msgstr "La fecha final de lectura no puede ser anterior a la fecha de inicio." @@ -97,27 +97,23 @@ msgid "Could not find a match for book" msgstr "No se pudo encontrar el libro" #: bookwyrm/models/announcement.py:11 -msgid "None" -msgstr "" - -#: bookwyrm/models/announcement.py:12 msgid "Primary" msgstr "" -#: bookwyrm/models/announcement.py:13 +#: bookwyrm/models/announcement.py:12 msgid "Success" msgstr "" -#: bookwyrm/models/announcement.py:14 +#: bookwyrm/models/announcement.py:13 #: bookwyrm/templates/settings/invites/manage_invites.html:47 msgid "Link" msgstr "Enlace" -#: bookwyrm/models/announcement.py:15 +#: bookwyrm/models/announcement.py:14 msgid "Warning" msgstr "" -#: bookwyrm/models/announcement.py:16 +#: bookwyrm/models/announcement.py:15 msgid "Danger" msgstr "" @@ -168,13 +164,13 @@ msgid "Paperback" msgstr "Tapa blanda" #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "Federalizado" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 -#: bookwyrm/templates/settings/federation/edit_instance.html:44 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 @@ -470,7 +466,7 @@ msgid "Copy address" msgstr "Copiar dirección" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:267 +#: bookwyrm/templates/lists/list.html:277 msgid "Copied!" msgstr "¡Copiado!" @@ -737,12 +733,12 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:124 +#: bookwyrm/templates/preferences/edit_user.html:136 #: bookwyrm/templates/readthrough/readthrough_modal.html:72 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 -#: bookwyrm/templates/settings/federation/edit_instance.html:82 -#: bookwyrm/templates/settings/federation/instance.html:87 -#: bookwyrm/templates/settings/site.html:151 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/site.html:169 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -763,7 +759,7 @@ msgstr "Guardar" #: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/readthrough_modal.html:73 -#: bookwyrm/templates/settings/federation/instance.html:88 +#: bookwyrm/templates/settings/federation/instance.html:106 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Cancel" @@ -879,7 +875,7 @@ msgstr "Agregar a lista" #: bookwyrm/templates/book/book.html:370 #: bookwyrm/templates/book/cover_add_modal.html:31 #: bookwyrm/templates/lists/add_item_modal.html:37 -#: bookwyrm/templates/lists/list.html:245 +#: bookwyrm/templates/lists/list.html:255 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -1179,8 +1175,9 @@ msgstr "Estado" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 -#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/federation/instance.html:112 #: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:118 msgid "Actions" msgstr "Acciones" @@ -1667,16 +1664,14 @@ msgid "Add to your books" msgstr "Añadir a tus libros" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:86 -#: bookwyrm/templates/snippets/translated_shelf_name.html:5 -#: bookwyrm/templates/user/user.html:33 +#: bookwyrm/templates/shelf/shelf.html:86 bookwyrm/templates/user/user.html:33 +#: bookwyrm/templatetags/shelf_tags.py:46 msgid "To Read" msgstr "Para leer" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:87 -#: bookwyrm/templates/snippets/translated_shelf_name.html:7 -#: bookwyrm/templates/user/user.html:34 +#: bookwyrm/templates/shelf/shelf.html:87 bookwyrm/templates/user/user.html:34 +#: bookwyrm/templatetags/shelf_tags.py:48 msgid "Currently Reading" msgstr "Leyendo actualmente" @@ -1685,8 +1680,7 @@ msgstr "Leyendo actualmente" #: bookwyrm/templates/snippets/shelf_selector.html:47 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/snippets/translated_shelf_name.html:9 -#: bookwyrm/templates/user/user.html:35 +#: bookwyrm/templates/user/user.html:35 bookwyrm/templatetags/shelf_tags.py:50 msgid "Read" msgstr "Leído" @@ -1695,7 +1689,7 @@ msgid "What are you reading?" msgstr "¿Qué estás leyendo?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:203 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:213 msgid "Search for a book" msgstr "Buscar libros" @@ -1715,7 +1709,7 @@ msgstr "Puedes agregar libros cuando comiences a usar %(site_name)s." #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/members.html:15 #: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:54 -#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:207 +#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1731,7 +1725,7 @@ msgid "Popular on %(site_name)s" msgstr "Popular en %(site_name)s" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:220 +#: bookwyrm/templates/lists/list.html:230 msgid "No books found" msgstr "No se encontró ningún libro" @@ -1887,7 +1881,8 @@ msgstr "Dejar grupo" #: bookwyrm/templates/groups/members.html:54 #: bookwyrm/templates/groups/suggested_users.html:35 #: bookwyrm/templates/snippets/suggested_users.html:31 -#: bookwyrm/templates/user/user_preview.html:36 +#: bookwyrm/templates/user/user_preview.html:33 +#: bookwyrm/templates/user/user_preview.html:41 msgid "Follows you" msgstr "Te sigue" @@ -1943,7 +1938,7 @@ msgid "Privacy setting for imported reviews:" msgstr "Configuración de privacidad para las reseñas importadas:" #: bookwyrm/templates/import/import.html:59 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:76 msgid "Import" msgstr "Importar" @@ -2304,7 +2299,7 @@ msgid "Suggest \"%(title)s\" for this list" msgstr "Sugerir «%(title)s» para esta lista" #: bookwyrm/templates/lists/add_item_modal.html:39 -#: bookwyrm/templates/lists/list.html:247 +#: bookwyrm/templates/lists/list.html:257 msgid "Suggest" msgstr "Sugerir" @@ -2340,7 +2335,7 @@ msgid "You're all set!" msgstr "¡Está todo listo!" #: bookwyrm/templates/lists/curate.html:45 -#: bookwyrm/templates/lists/list.html:83 +#: bookwyrm/templates/lists/list.html:93 #, python-format msgid "%(username)s says:" msgstr "%(username)s dice:" @@ -2373,7 +2368,7 @@ msgid "on %(site_name)s" msgstr "en %(site_name)s" #: bookwyrm/templates/lists/embed-list.html:27 -#: bookwyrm/templates/lists/list.html:44 +#: bookwyrm/templates/lists/list.html:54 msgid "This list is currently empty" msgstr "Esta lista está vacia" @@ -2435,7 +2430,7 @@ msgid "Delete list" msgstr "Eliminar lista" #: bookwyrm/templates/lists/item_notes_field.html:7 -#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 msgid "Notes:" msgstr "Notas:" @@ -2443,80 +2438,84 @@ msgstr "Notas:" msgid "An optional note that will be displayed with the book." msgstr "Una nota opcional que se mostrará con el libro." -#: bookwyrm/templates/lists/list.html:36 +#: bookwyrm/templates/lists/list.html:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 msgid "You successfully suggested a book for this list!" msgstr "¡Has sugerido un libro para esta lista exitosamente!" -#: bookwyrm/templates/lists/list.html:38 +#: bookwyrm/templates/lists/list.html:47 msgid "You successfully added a book to this list!" msgstr "¡Has agregado un libro a esta lista exitosamente!" -#: bookwyrm/templates/lists/list.html:94 +#: bookwyrm/templates/lists/list.html:104 msgid "Edit notes" msgstr "Editar notas" -#: bookwyrm/templates/lists/list.html:109 +#: bookwyrm/templates/lists/list.html:119 msgid "Add notes" msgstr "Añadir notas" -#: bookwyrm/templates/lists/list.html:121 +#: bookwyrm/templates/lists/list.html:131 #, python-format msgid "Added by %(username)s" msgstr "Agregado por %(username)s" -#: bookwyrm/templates/lists/list.html:136 +#: bookwyrm/templates/lists/list.html:146 msgid "List position" msgstr "Posición" -#: bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/lists/list.html:152 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21 msgid "Set" msgstr "Establecido" -#: bookwyrm/templates/lists/list.html:157 +#: bookwyrm/templates/lists/list.html:167 #: bookwyrm/templates/snippets/remove_from_group_button.html:20 msgid "Remove" msgstr "Quitar" -#: bookwyrm/templates/lists/list.html:171 -#: bookwyrm/templates/lists/list.html:188 +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 msgid "Sort List" msgstr "Ordena la lista" -#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:191 msgid "Direction" msgstr "Dirección" -#: bookwyrm/templates/lists/list.html:195 +#: bookwyrm/templates/lists/list.html:205 msgid "Add Books" msgstr "Agregar libros" -#: bookwyrm/templates/lists/list.html:197 +#: bookwyrm/templates/lists/list.html:207 msgid "Suggest Books" msgstr "Sugerir libros" -#: bookwyrm/templates/lists/list.html:208 +#: bookwyrm/templates/lists/list.html:218 msgid "search" msgstr "buscar" -#: bookwyrm/templates/lists/list.html:214 +#: bookwyrm/templates/lists/list.html:224 msgid "Clear search" msgstr "Borrar búsqueda" -#: bookwyrm/templates/lists/list.html:219 +#: bookwyrm/templates/lists/list.html:229 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "No se encontró ningún libro correspondiente a la búsqueda: \"%(query)s\"" -#: bookwyrm/templates/lists/list.html:258 +#: bookwyrm/templates/lists/list.html:268 msgid "Embed this list on a website" msgstr "Incrustar esta lista en un sitio web" -#: bookwyrm/templates/lists/list.html:266 +#: bookwyrm/templates/lists/list.html:276 msgid "Copy embed code" msgstr "Copiar código para incrustar" -#: bookwyrm/templates/lists/list.html:268 +#: bookwyrm/templates/lists/list.html:278 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s, una lista de %(owner)s en %(site_name)s" @@ -2871,11 +2870,14 @@ msgstr "Perfil" #: bookwyrm/templates/preferences/edit_user.html:13 #: bookwyrm/templates/preferences/edit_user.html:64 -msgid "Display preferences" -msgstr "Preferencias de visualización" +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:77 +#: bookwyrm/templates/setup/config.html:91 +msgid "Display" +msgstr "" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:106 +#: bookwyrm/templates/preferences/edit_user.html:112 msgid "Privacy" msgstr "Privacidad" @@ -2900,11 +2902,19 @@ msgstr "Tu cuenta se aparecerá en el directorio, y pue msgid "Preferred Timezone: " msgstr "Huso horario preferido:" -#: bookwyrm/templates/preferences/edit_user.html:111 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:117 msgid "Manually approve followers" msgstr "Aprobar seguidores manualmente" -#: bookwyrm/templates/preferences/edit_user.html:116 +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:128 msgid "Default post privacy:" msgstr "Privacidad de publicación por defecto:" @@ -3051,7 +3061,7 @@ msgid "Announcement" msgstr "Anuncio" #: bookwyrm/templates/settings/announcements/announcement.html:16 -#: bookwyrm/templates/settings/federation/instance.html:75 +#: bookwyrm/templates/settings/federation/instance.html:93 #: bookwyrm/templates/snippets/status/status_options.html:25 msgid "Edit" msgstr "Editar" @@ -3340,136 +3350,136 @@ msgstr "No hay dominios de correo electrónico bloqueados 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/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 #: bookwyrm/templates/settings/federation/instance_blocklist.html:3 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 #: 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:31 -msgid "Instance:" -msgstr "Instancia:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:40 -#: bookwyrm/templates/settings/federation/instance.html:28 -#: bookwyrm/templates/settings/users/user_info.html:106 -msgid "Status:" -msgstr "Estado:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:54 -#: 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:64 -#: bookwyrm/templates/settings/federation/instance.html:25 -#: bookwyrm/templates/settings/users/user_info.html:103 -msgid "Version:" -msgstr "Versión:" - -#: bookwyrm/templates/settings/federation/instance.html:13 -msgid "Back to list" -msgstr "Volver a la lista de servidores" - -#: bookwyrm/templates/settings/federation/instance.html:19 -msgid "Details" -msgstr "Detalles" - -#: bookwyrm/templates/settings/federation/instance.html:35 -#: bookwyrm/templates/user/layout.html:67 -msgid "Activity" -msgstr "Actividad" - -#: bookwyrm/templates/settings/federation/instance.html:38 -msgid "Users:" -msgstr "Usuarios:" - -#: bookwyrm/templates/settings/federation/instance.html:41 -#: bookwyrm/templates/settings/federation/instance.html:47 -msgid "View all" -msgstr "Ver todos" - -#: bookwyrm/templates/settings/federation/instance.html:44 -#: bookwyrm/templates/settings/users/user_info.html:56 -msgid "Reports:" -msgstr "Informes:" - -#: bookwyrm/templates/settings/federation/instance.html:50 -msgid "Followed by us:" -msgstr "Seguido por nosotros:" - -#: bookwyrm/templates/settings/federation/instance.html:55 -msgid "Followed by them:" -msgstr "Seguido por ellos:" - -#: bookwyrm/templates/settings/federation/instance.html:60 -msgid "Blocked by us:" -msgstr "Bloqueado por nosotros:" - -#: bookwyrm/templates/settings/federation/instance.html:72 -#: bookwyrm/templates/settings/users/user_info.html:110 -msgid "Notes" -msgstr "Notas" - -#: bookwyrm/templates/settings/federation/instance.html:79 -msgid "No notes" -msgstr "Sin notas" - -#: bookwyrm/templates/settings/federation/instance.html:98 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Bloquear" - -#: 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/federation/instance.html:104 -#: bookwyrm/templates/snippets/block_button.html:10 -msgid "Un-block" -msgstr "Desbloquear" - -#: 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/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 lograda!" - -#: 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/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 #: bookwyrm/templates/settings/federation/instance_list.html:3 #: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:47 msgid "Federated Instances" msgstr "Instancias federalizadas" +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "Importar lista de bloqueo" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "Instancia:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "Estado:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "Software:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "Versión:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "Detalles" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:67 +msgid "Activity" +msgstr "Actividad" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "Usuarios:" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "Ver todos" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:56 +msgid "Reports:" +msgstr "Informes:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "Seguido por nosotros:" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "Seguido por ellos:" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "Bloqueado por nosotros:" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Notes" +msgstr "Notas" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "Sin notas" + +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Bloquear" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "Todos los usuarios en esta instancia serán desactivados." + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "Desbloquear" + +#: bookwyrm/templates/settings/federation/instance.html:123 +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/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "Importar lista de bloqueo" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "¡Listo!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "Se bloqueó exitosamente:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "Falló:" + #: bookwyrm/templates/settings/federation/instance_list.html:32 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" @@ -3654,6 +3664,13 @@ msgstr "Configuración de instancia" msgid "Site Settings" msgstr "Configuración de sitio" +#: bookwyrm/templates/settings/layout.html:91 +#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format msgid "Set display name for %(url)s" @@ -3779,22 +3796,17 @@ msgid "No reports found." msgstr "No se encontró ningún informe." #: bookwyrm/templates/settings/site.html:10 -#: bookwyrm/templates/settings/site.html:39 +#: bookwyrm/templates/settings/site.html:44 msgid "Instance Info" msgstr "Información de instancia" -#: bookwyrm/templates/settings/site.html:11 -#: bookwyrm/templates/settings/site.html:72 -msgid "Images" -msgstr "Imagenes" - #: bookwyrm/templates/settings/site.html:12 -#: bookwyrm/templates/settings/site.html:92 +#: bookwyrm/templates/settings/site.html:110 msgid "Footer Content" msgstr "Contenido del pie de página" #: bookwyrm/templates/settings/site.html:13 -#: bookwyrm/templates/settings/site.html:116 +#: bookwyrm/templates/settings/site.html:134 msgid "Registration" msgstr "Registración" @@ -3806,86 +3818,152 @@ msgstr "" msgid "Unable to save settings" msgstr "" -#: bookwyrm/templates/settings/site.html:42 +#: bookwyrm/templates/settings/site.html:47 msgid "Instance Name:" msgstr "Nombre de instancia:" -#: bookwyrm/templates/settings/site.html:46 +#: bookwyrm/templates/settings/site.html:51 msgid "Tagline:" msgstr "Lema:" -#: bookwyrm/templates/settings/site.html:50 +#: bookwyrm/templates/settings/site.html:55 msgid "Instance description:" msgstr "Descripción de instancia:" -#: bookwyrm/templates/settings/site.html:54 +#: bookwyrm/templates/settings/site.html:59 msgid "Short description:" msgstr "Descripción corta:" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:60 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." msgstr "Se utiliza cuando se obtiene una vista previa de la instancia en joinbookwyrm.com. No es compatible con HTML ni Markdown." -#: bookwyrm/templates/settings/site.html:59 +#: bookwyrm/templates/settings/site.html:64 msgid "Code of conduct:" msgstr "Código de conducta:" -#: bookwyrm/templates/settings/site.html:63 +#: bookwyrm/templates/settings/site.html:68 msgid "Privacy Policy:" msgstr "Política de privacidad:" -#: bookwyrm/templates/settings/site.html:75 +#: bookwyrm/templates/settings/site.html:79 +msgid "Images" +msgstr "Imagenes" + +#: bookwyrm/templates/settings/site.html:82 msgid "Logo:" msgstr "Logo:" -#: bookwyrm/templates/settings/site.html:79 +#: bookwyrm/templates/settings/site.html:86 msgid "Logo small:" msgstr "Logo pequeño:" -#: bookwyrm/templates/settings/site.html:83 +#: bookwyrm/templates/settings/site.html:90 msgid "Favicon:" msgstr "Favicon:" -#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/site.html:98 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:113 msgid "Support link:" msgstr "Enlace de apoyo:" -#: bookwyrm/templates/settings/site.html:99 +#: bookwyrm/templates/settings/site.html:117 msgid "Support title:" msgstr "Título de apoyo:" -#: bookwyrm/templates/settings/site.html:103 +#: bookwyrm/templates/settings/site.html:121 msgid "Admin email:" msgstr "Correo electrónico de administradorx:" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:125 msgid "Additional info:" msgstr "Más informacion:" -#: bookwyrm/templates/settings/site.html:121 +#: bookwyrm/templates/settings/site.html:139 msgid "Allow registration" msgstr "Permitir registración" -#: bookwyrm/templates/settings/site.html:127 +#: bookwyrm/templates/settings/site.html:145 msgid "Allow invite requests" msgstr "Permitir solicitudes de invitación" -#: bookwyrm/templates/settings/site.html:133 +#: bookwyrm/templates/settings/site.html:151 msgid "Require users to confirm email address" msgstr "Requerir a usuarios a confirmar dirección de correo electrónico" -#: bookwyrm/templates/settings/site.html:135 +#: bookwyrm/templates/settings/site.html:153 msgid "(Recommended if registration is open)" msgstr "(Recomendado si la registración es abierta)" -#: bookwyrm/templates/settings/site.html:138 +#: bookwyrm/templates/settings/site.html:156 msgid "Registration closed text:" msgstr "Texto de registración cerrada:" -#: bookwyrm/templates/settings/site.html:142 +#: bookwyrm/templates/settings/site.html:160 msgid "Invite request text:" msgstr "Texto de solicitud de invitación:" +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:26 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:29 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:32 +msgid "Run ./bw-dev compilescss." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:42 +#: bookwyrm/templates/settings/themes.html:101 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:48 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:61 +msgid "No available theme files detected" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:69 +#: bookwyrm/templates/settings/themes.html:112 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:79 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:107 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:115 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:130 +msgid "Remove theme" +msgstr "" + #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32 msgid "Permanently delete user" @@ -4077,10 +4155,6 @@ msgstr "" msgid "Using S3:" msgstr "" -#: bookwyrm/templates/setup/config.html:91 -msgid "Display" -msgstr "" - #: bookwyrm/templates/setup/config.html:95 msgid "Default interface language:" msgstr "" @@ -4138,8 +4212,7 @@ msgid "User profile" msgstr "Perfil de usuario" #: bookwyrm/templates/shelf/shelf.html:39 -#: bookwyrm/templates/snippets/translated_shelf_name.html:3 -#: bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templatetags/shelf_tags.py:44 bookwyrm/views/shelf/shelf.py:53 msgid "All books" msgstr "Todos los libros" @@ -4573,8 +4646,13 @@ msgstr "Empezar a leer" msgid "Want to read" msgstr "Quiero leer" -#: bookwyrm/templates/snippets/shelf_selector.html:74 -#: bookwyrm/templates/snippets/shelf_selector.html:86 +#: bookwyrm/templates/snippets/shelf_selector.html:75 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 +#, python-format +msgid "Remove from %(name)s" +msgstr "Quitar de %(name)s" + +#: bookwyrm/templates/snippets/shelf_selector.html:88 msgid "Remove from" msgstr "Eliminar de" @@ -4582,11 +4660,6 @@ msgstr "Eliminar de" msgid "More shelves" msgstr "Más estanterías" -#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 -#, python-format -msgid "Remove from %(name)s" -msgstr "Quitar de %(name)s" - #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:31 msgid "Finish reading" msgstr "Terminar de leer" @@ -4869,14 +4942,14 @@ msgstr[1] "%(counter)s seguidores" msgid "%(counter)s following" msgstr "%(counter)s siguiendo" -#: bookwyrm/templates/user/user_preview.html:34 +#: bookwyrm/templates/user/user_preview.html:39 #, python-format msgid "%(mutuals_display)s follower you follow" msgid_plural "%(mutuals_display)s followers you follow" msgstr[0] "%(mutuals_display)s seguidor que sigues" msgstr[1] "%(mutuals_display)s seguidores que sigues" -#: bookwyrm/templates/user/user_preview.html:38 +#: bookwyrm/templates/user/user_preview.html:43 msgid "No followers you follow" msgstr "No le sigue nadie que tu sigas" diff --git a/locale/fr_FR/LC_MESSAGES/django.po b/locale/fr_FR/LC_MESSAGES/django.po index f81eb8ccb..31ebd43cd 100644 --- a/locale/fr_FR/LC_MESSAGES/django.po +++ b/locale/fr_FR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-02-25 20:12+0000\n" -"PO-Revision-Date: 2022-02-26 20:08\n" +"POT-Creation-Date: 2022-03-01 19:48+0000\n" +"PO-Revision-Date: 2022-03-02 12:24\n" "Last-Translator: Mouse Reeve \n" "Language-Team: French\n" "Language: fr\n" @@ -21,70 +21,70 @@ msgstr "" msgid "User with this username already exists" msgstr "Un compte du même nom existe déjà" -#: bookwyrm/forms.py:252 +#: bookwyrm/forms.py:254 msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Ce domaine est bloqué. Contactez l’admin de votre instance si vous pensez que c’est une erreur." -#: bookwyrm/forms.py:262 +#: bookwyrm/forms.py:264 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Le lien avec ce type de fichier a déjà été ajouté pour ce livre. S’il n’est pas visible, le domaine est encore en attente." -#: bookwyrm/forms.py:401 +#: bookwyrm/forms.py:403 msgid "A user with this email already exists." msgstr "Cet email est déjà associé à un compte." -#: bookwyrm/forms.py:415 +#: bookwyrm/forms.py:417 msgid "One Day" msgstr "Un jour" -#: bookwyrm/forms.py:416 +#: bookwyrm/forms.py:418 msgid "One Week" msgstr "Une semaine" -#: bookwyrm/forms.py:417 +#: bookwyrm/forms.py:419 msgid "One Month" msgstr "Un mois" -#: bookwyrm/forms.py:418 +#: bookwyrm/forms.py:420 msgid "Does Not Expire" msgstr "Sans expiration" -#: bookwyrm/forms.py:422 +#: bookwyrm/forms.py:424 #, python-brace-format msgid "{i} uses" msgstr "{i} utilisations" -#: bookwyrm/forms.py:423 +#: bookwyrm/forms.py:425 msgid "Unlimited" msgstr "Sans limite" -#: bookwyrm/forms.py:525 +#: bookwyrm/forms.py:543 msgid "List Order" msgstr "Ordre de la liste" -#: bookwyrm/forms.py:526 +#: bookwyrm/forms.py:544 msgid "Book Title" msgstr "Titre du livre" -#: bookwyrm/forms.py:527 bookwyrm/templates/shelf/shelf.html:155 +#: bookwyrm/forms.py:545 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Note" -#: bookwyrm/forms.py:529 bookwyrm/templates/lists/list.html:175 +#: bookwyrm/forms.py:547 bookwyrm/templates/lists/list.html:185 msgid "Sort By" msgstr "Trier par" -#: bookwyrm/forms.py:533 +#: bookwyrm/forms.py:551 msgid "Ascending" msgstr "Ordre croissant" -#: bookwyrm/forms.py:534 +#: bookwyrm/forms.py:552 msgid "Descending" msgstr "Ordre décroissant" -#: bookwyrm/forms.py:547 +#: bookwyrm/forms.py:565 msgid "Reading finish date cannot be before start date." msgstr "La date de fin de lecture ne peut pas être antérieure à la date de début." @@ -97,27 +97,23 @@ msgid "Could not find a match for book" msgstr "Impossible de trouver une correspondance pour le livre" #: bookwyrm/models/announcement.py:11 -msgid "None" -msgstr "Aucun" - -#: bookwyrm/models/announcement.py:12 msgid "Primary" msgstr "Primaire" -#: bookwyrm/models/announcement.py:13 +#: bookwyrm/models/announcement.py:12 msgid "Success" msgstr "Succès" -#: bookwyrm/models/announcement.py:14 +#: bookwyrm/models/announcement.py:13 #: bookwyrm/templates/settings/invites/manage_invites.html:47 msgid "Link" msgstr "Lien" -#: bookwyrm/models/announcement.py:15 +#: bookwyrm/models/announcement.py:14 msgid "Warning" msgstr "Avertissement" -#: bookwyrm/models/announcement.py:16 +#: bookwyrm/models/announcement.py:15 msgid "Danger" msgstr "Danger" @@ -168,13 +164,13 @@ msgid "Paperback" msgstr "Couverture souple" #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "Fédéré" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 -#: bookwyrm/templates/settings/federation/edit_instance.html:44 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 @@ -470,7 +466,7 @@ msgid "Copy address" msgstr "Copier l’adresse" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:267 +#: bookwyrm/templates/lists/list.html:277 msgid "Copied!" msgstr "Copié !" @@ -737,12 +733,12 @@ msgstr "ISNI :" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:124 +#: bookwyrm/templates/preferences/edit_user.html:136 #: bookwyrm/templates/readthrough/readthrough_modal.html:72 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 -#: bookwyrm/templates/settings/federation/edit_instance.html:82 -#: bookwyrm/templates/settings/federation/instance.html:87 -#: bookwyrm/templates/settings/site.html:151 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/site.html:169 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -763,7 +759,7 @@ msgstr "Enregistrer" #: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/readthrough_modal.html:73 -#: bookwyrm/templates/settings/federation/instance.html:88 +#: bookwyrm/templates/settings/federation/instance.html:106 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Cancel" @@ -879,7 +875,7 @@ msgstr "Ajouter à la liste" #: bookwyrm/templates/book/book.html:370 #: bookwyrm/templates/book/cover_add_modal.html:31 #: bookwyrm/templates/lists/add_item_modal.html:37 -#: bookwyrm/templates/lists/list.html:245 +#: bookwyrm/templates/lists/list.html:255 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -1179,8 +1175,9 @@ msgstr "Statut" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 -#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/federation/instance.html:112 #: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:118 msgid "Actions" msgstr "Actions" @@ -1667,16 +1664,14 @@ msgid "Add to your books" msgstr "Ajouter à vos livres" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:86 -#: bookwyrm/templates/snippets/translated_shelf_name.html:5 -#: bookwyrm/templates/user/user.html:33 +#: bookwyrm/templates/shelf/shelf.html:86 bookwyrm/templates/user/user.html:33 +#: bookwyrm/templatetags/shelf_tags.py:46 msgid "To Read" msgstr "À lire" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:87 -#: bookwyrm/templates/snippets/translated_shelf_name.html:7 -#: bookwyrm/templates/user/user.html:34 +#: bookwyrm/templates/shelf/shelf.html:87 bookwyrm/templates/user/user.html:34 +#: bookwyrm/templatetags/shelf_tags.py:48 msgid "Currently Reading" msgstr "Lectures en cours" @@ -1685,8 +1680,7 @@ msgstr "Lectures en cours" #: bookwyrm/templates/snippets/shelf_selector.html:47 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/snippets/translated_shelf_name.html:9 -#: bookwyrm/templates/user/user.html:35 +#: bookwyrm/templates/user/user.html:35 bookwyrm/templatetags/shelf_tags.py:50 msgid "Read" msgstr "Lu" @@ -1695,7 +1689,7 @@ msgid "What are you reading?" msgstr "Que lisez‑vous ?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:203 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:213 msgid "Search for a book" msgstr "Chercher un livre" @@ -1715,7 +1709,7 @@ msgstr "Vous pourrez ajouter des livres lorsque vous commencerez à utiliser %(s #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/members.html:15 #: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:54 -#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:207 +#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1731,7 +1725,7 @@ msgid "Popular on %(site_name)s" msgstr "Populaire sur %(site_name)s" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:220 +#: bookwyrm/templates/lists/list.html:230 msgid "No books found" msgstr "Aucun livre trouvé" @@ -1887,7 +1881,8 @@ msgstr "Quitter le groupe" #: bookwyrm/templates/groups/members.html:54 #: bookwyrm/templates/groups/suggested_users.html:35 #: bookwyrm/templates/snippets/suggested_users.html:31 -#: bookwyrm/templates/user/user_preview.html:36 +#: bookwyrm/templates/user/user_preview.html:33 +#: bookwyrm/templates/user/user_preview.html:41 msgid "Follows you" msgstr "Vous suit" @@ -1943,7 +1938,7 @@ msgid "Privacy setting for imported reviews:" msgstr "Confidentialité des critiques importées :" #: bookwyrm/templates/import/import.html:59 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:76 msgid "Import" msgstr "Importer" @@ -2304,7 +2299,7 @@ msgid "Suggest \"%(title)s\" for this list" msgstr "Suggérer « %(title)s » pour cette liste" #: bookwyrm/templates/lists/add_item_modal.html:39 -#: bookwyrm/templates/lists/list.html:247 +#: bookwyrm/templates/lists/list.html:257 msgid "Suggest" msgstr "Suggérer" @@ -2340,7 +2335,7 @@ msgid "You're all set!" msgstr "Aucun livre en attente de validation !" #: bookwyrm/templates/lists/curate.html:45 -#: bookwyrm/templates/lists/list.html:83 +#: bookwyrm/templates/lists/list.html:93 #, python-format msgid "%(username)s says:" msgstr "%(username)s a dit :" @@ -2373,7 +2368,7 @@ msgid "on %(site_name)s" msgstr "sur %(site_name)s" #: bookwyrm/templates/lists/embed-list.html:27 -#: bookwyrm/templates/lists/list.html:44 +#: bookwyrm/templates/lists/list.html:54 msgid "This list is currently empty" msgstr "Cette liste est actuellement vide" @@ -2435,7 +2430,7 @@ msgid "Delete list" msgstr "Supprimer la liste" #: bookwyrm/templates/lists/item_notes_field.html:7 -#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 msgid "Notes:" msgstr "Remarques :" @@ -2443,80 +2438,84 @@ msgstr "Remarques :" msgid "An optional note that will be displayed with the book." msgstr "Une note facultative qui sera affichée avec le livre." -#: bookwyrm/templates/lists/list.html:36 +#: bookwyrm/templates/lists/list.html:37 +msgid "That book is already on this list." +msgstr "Ce livre est déjà dans cette liste." + +#: bookwyrm/templates/lists/list.html:45 msgid "You successfully suggested a book for this list!" msgstr "Vous avez suggéré un livre à cette liste !" -#: bookwyrm/templates/lists/list.html:38 +#: bookwyrm/templates/lists/list.html:47 msgid "You successfully added a book to this list!" msgstr "Vous avez ajouté un livre à cette liste !" -#: bookwyrm/templates/lists/list.html:94 +#: bookwyrm/templates/lists/list.html:104 msgid "Edit notes" msgstr "Modifier les notes" -#: bookwyrm/templates/lists/list.html:109 +#: bookwyrm/templates/lists/list.html:119 msgid "Add notes" msgstr "Ajouter des notes" -#: bookwyrm/templates/lists/list.html:121 +#: bookwyrm/templates/lists/list.html:131 #, python-format msgid "Added by %(username)s" msgstr "Ajouté par %(username)s" -#: bookwyrm/templates/lists/list.html:136 +#: bookwyrm/templates/lists/list.html:146 msgid "List position" msgstr "Position" -#: bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/lists/list.html:152 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21 msgid "Set" msgstr "Appliquer" -#: bookwyrm/templates/lists/list.html:157 +#: bookwyrm/templates/lists/list.html:167 #: bookwyrm/templates/snippets/remove_from_group_button.html:20 msgid "Remove" msgstr "Retirer" -#: bookwyrm/templates/lists/list.html:171 -#: bookwyrm/templates/lists/list.html:188 +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 msgid "Sort List" msgstr "Trier la liste" -#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:191 msgid "Direction" msgstr "Direction" -#: bookwyrm/templates/lists/list.html:195 +#: bookwyrm/templates/lists/list.html:205 msgid "Add Books" msgstr "Ajouter des livres" -#: bookwyrm/templates/lists/list.html:197 +#: bookwyrm/templates/lists/list.html:207 msgid "Suggest Books" msgstr "Suggérer des livres" -#: bookwyrm/templates/lists/list.html:208 +#: bookwyrm/templates/lists/list.html:218 msgid "search" msgstr "chercher" -#: bookwyrm/templates/lists/list.html:214 +#: bookwyrm/templates/lists/list.html:224 msgid "Clear search" msgstr "Vider la requête" -#: bookwyrm/templates/lists/list.html:219 +#: bookwyrm/templates/lists/list.html:229 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "Aucun livre trouvé pour la requête « %(query)s »" -#: bookwyrm/templates/lists/list.html:258 +#: bookwyrm/templates/lists/list.html:268 msgid "Embed this list on a website" msgstr "Intégrez cette liste sur un autre site internet" -#: bookwyrm/templates/lists/list.html:266 +#: bookwyrm/templates/lists/list.html:276 msgid "Copy embed code" msgstr "Copier le code d'intégration" -#: bookwyrm/templates/lists/list.html:268 +#: bookwyrm/templates/lists/list.html:278 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s, une liste de %(owner)s sur %(site_name)s" @@ -2871,11 +2870,14 @@ msgstr "Profil" #: bookwyrm/templates/preferences/edit_user.html:13 #: bookwyrm/templates/preferences/edit_user.html:64 -msgid "Display preferences" -msgstr "Paramètres d'affichage" +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:77 +#: bookwyrm/templates/setup/config.html:91 +msgid "Display" +msgstr "Affichage" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:106 +#: bookwyrm/templates/preferences/edit_user.html:112 msgid "Privacy" msgstr "Confidentialité" @@ -2900,11 +2902,19 @@ msgstr "Votre compte sera listé dans le répertoire et msgid "Preferred Timezone: " msgstr "Fuseau horaire préféré" -#: bookwyrm/templates/preferences/edit_user.html:111 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Theme:" +msgstr "Thème :" + +#: bookwyrm/templates/preferences/edit_user.html:117 msgid "Manually approve followers" msgstr "Autoriser les abonnements manuellement" -#: bookwyrm/templates/preferences/edit_user.html:116 +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Hide followers and following on profile" +msgstr "Cacher les comptes abonnés et suivis sur le profil" + +#: bookwyrm/templates/preferences/edit_user.html:128 msgid "Default post privacy:" msgstr "Niveau de confidentialité des messages par défaut :" @@ -3051,7 +3061,7 @@ msgid "Announcement" msgstr "Annonce" #: bookwyrm/templates/settings/announcements/announcement.html:16 -#: bookwyrm/templates/settings/federation/instance.html:75 +#: bookwyrm/templates/settings/federation/instance.html:93 #: bookwyrm/templates/snippets/status/status_options.html:25 msgid "Edit" msgstr "Modifier" @@ -3340,136 +3350,136 @@ msgstr "Aucun domaine de messagerie n’est actuellement bloqué" #: 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/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 #: bookwyrm/templates/settings/federation/instance_blocklist.html:3 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 #: 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:31 -msgid "Instance:" -msgstr "Instance :" - -#: bookwyrm/templates/settings/federation/edit_instance.html:40 -#: 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:54 -#: 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:64 -#: bookwyrm/templates/settings/federation/instance.html:25 -#: bookwyrm/templates/settings/users/user_info.html:103 -msgid "Version:" -msgstr "Description :" - -#: bookwyrm/templates/settings/federation/instance.html:13 -msgid "Back to list" -msgstr "Retour à la liste" - -#: bookwyrm/templates/settings/federation/instance.html:19 -msgid "Details" -msgstr "Détails" - -#: bookwyrm/templates/settings/federation/instance.html:35 -#: bookwyrm/templates/user/layout.html:67 -msgid "Activity" -msgstr "Activité" - -#: bookwyrm/templates/settings/federation/instance.html:38 -msgid "Users:" -msgstr "Comptes :" - -#: bookwyrm/templates/settings/federation/instance.html:41 -#: bookwyrm/templates/settings/federation/instance.html:47 -msgid "View all" -msgstr "Voir tous" - -#: bookwyrm/templates/settings/federation/instance.html:44 -#: bookwyrm/templates/settings/users/user_info.html:56 -msgid "Reports:" -msgstr "Signalements :" - -#: bookwyrm/templates/settings/federation/instance.html:50 -msgid "Followed by us:" -msgstr "Suivi par nous :" - -#: bookwyrm/templates/settings/federation/instance.html:55 -msgid "Followed by them:" -msgstr "Suivi par eux :" - -#: bookwyrm/templates/settings/federation/instance.html:60 -msgid "Blocked by us:" -msgstr "Bloqués par nous :" - -#: bookwyrm/templates/settings/federation/instance.html:72 -#: bookwyrm/templates/settings/users/user_info.html:110 -msgid "Notes" -msgstr "Remarques" - -#: bookwyrm/templates/settings/federation/instance.html:79 -msgid "No notes" -msgstr "Aucune note" - -#: bookwyrm/templates/settings/federation/instance.html:98 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Bloquer" - -#: 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/federation/instance.html:104 -#: bookwyrm/templates/snippets/block_button.html:10 -msgid "Un-block" -msgstr "Débloquer" - -#: 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/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/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 #: bookwyrm/templates/settings/federation/instance_list.html:3 #: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:47 msgid "Federated Instances" msgstr "Instances fédérées" +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "Importer une liste de blocage" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "Instance :" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "Statut :" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "Logiciel :" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "Description :" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "Rafraîchir les données" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "Détails" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:67 +msgid "Activity" +msgstr "Activité" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "Comptes :" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "Voir tous" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:56 +msgid "Reports:" +msgstr "Signalements :" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "Suivi par nous :" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "Suivi par eux :" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "Bloqués par nous :" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Notes" +msgstr "Remarques" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "Aucune note" + +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Bloquer" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "Tous les comptes de cette instance seront désactivés." + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "Débloquer" + +#: bookwyrm/templates/settings/federation/instance.html:123 +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/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "Importer une liste de blocage" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "Bravo !" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "Blocage réussi :" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "Échec :" + #: bookwyrm/templates/settings/federation/instance_list.html:32 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" @@ -3654,6 +3664,13 @@ msgstr "Paramètres de l’instance" msgid "Site Settings" msgstr "Paramètres du site" +#: bookwyrm/templates/settings/layout.html:91 +#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "Thèmes" + #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format msgid "Set display name for %(url)s" @@ -3779,22 +3796,17 @@ msgid "No reports found." msgstr "Aucun signalement trouvé." #: bookwyrm/templates/settings/site.html:10 -#: bookwyrm/templates/settings/site.html:39 +#: bookwyrm/templates/settings/site.html:44 msgid "Instance Info" msgstr "Information sur l’instance" -#: bookwyrm/templates/settings/site.html:11 -#: bookwyrm/templates/settings/site.html:72 -msgid "Images" -msgstr "Images" - #: bookwyrm/templates/settings/site.html:12 -#: bookwyrm/templates/settings/site.html:92 +#: bookwyrm/templates/settings/site.html:110 msgid "Footer Content" msgstr "Contenu du pied de page" #: bookwyrm/templates/settings/site.html:13 -#: bookwyrm/templates/settings/site.html:116 +#: bookwyrm/templates/settings/site.html:134 msgid "Registration" msgstr "Inscription" @@ -3806,86 +3818,152 @@ msgstr "Paramètres enregistrés" msgid "Unable to save settings" msgstr "Impossible d’enregistrer les paramètres" -#: bookwyrm/templates/settings/site.html:42 +#: bookwyrm/templates/settings/site.html:47 msgid "Instance Name:" msgstr "Nom de l’instance :" -#: bookwyrm/templates/settings/site.html:46 +#: bookwyrm/templates/settings/site.html:51 msgid "Tagline:" msgstr "Slogan :" -#: bookwyrm/templates/settings/site.html:50 +#: bookwyrm/templates/settings/site.html:55 msgid "Instance description:" msgstr "Description de l’instance :" -#: bookwyrm/templates/settings/site.html:54 +#: bookwyrm/templates/settings/site.html:59 msgid "Short description:" msgstr "Description courte :" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:60 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." msgstr "Utilisé dans l'aperçu de l'instance sur joinbookwyrm.com. Ne prend pas en charge l'HTML ou le Markdown." -#: bookwyrm/templates/settings/site.html:59 +#: bookwyrm/templates/settings/site.html:64 msgid "Code of conduct:" msgstr "Code de conduite :" -#: bookwyrm/templates/settings/site.html:63 +#: bookwyrm/templates/settings/site.html:68 msgid "Privacy Policy:" msgstr "Politique de vie privée :" -#: bookwyrm/templates/settings/site.html:75 +#: bookwyrm/templates/settings/site.html:79 +msgid "Images" +msgstr "Images" + +#: bookwyrm/templates/settings/site.html:82 msgid "Logo:" msgstr "Logo :" -#: bookwyrm/templates/settings/site.html:79 +#: bookwyrm/templates/settings/site.html:86 msgid "Logo small:" msgstr "Logo réduit :" -#: bookwyrm/templates/settings/site.html:83 +#: bookwyrm/templates/settings/site.html:90 msgid "Favicon:" msgstr "Favicon :" -#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/site.html:98 +msgid "Default theme:" +msgstr "Thème par défaut :" + +#: bookwyrm/templates/settings/site.html:113 msgid "Support link:" msgstr "URL pour soutenir l’instance :" -#: bookwyrm/templates/settings/site.html:99 +#: bookwyrm/templates/settings/site.html:117 msgid "Support title:" msgstr "Titre pour soutenir l’instance :" -#: bookwyrm/templates/settings/site.html:103 +#: bookwyrm/templates/settings/site.html:121 msgid "Admin email:" msgstr "Email de l’administrateur :" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:125 msgid "Additional info:" msgstr "Infos supplémentaires :" -#: bookwyrm/templates/settings/site.html:121 +#: bookwyrm/templates/settings/site.html:139 msgid "Allow registration" msgstr "Autoriser les inscriptions" -#: bookwyrm/templates/settings/site.html:127 +#: bookwyrm/templates/settings/site.html:145 msgid "Allow invite requests" msgstr "Autoriser les demandes d’invitation" -#: bookwyrm/templates/settings/site.html:133 +#: bookwyrm/templates/settings/site.html:151 msgid "Require users to confirm email address" msgstr "Demander aux utilisateurs et utilisatrices de confirmer leur adresse email" -#: bookwyrm/templates/settings/site.html:135 +#: bookwyrm/templates/settings/site.html:153 msgid "(Recommended if registration is open)" msgstr "(Recommandé si les inscriptions sont ouvertes)" -#: bookwyrm/templates/settings/site.html:138 +#: bookwyrm/templates/settings/site.html:156 msgid "Registration closed text:" msgstr "Texte affiché lorsque les inscriptions sont closes :" -#: bookwyrm/templates/settings/site.html:142 +#: bookwyrm/templates/settings/site.html:160 msgid "Invite request text:" msgstr "Texte de la demande d'invitation :" +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "Définir le thème par défaut de l'instance" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "Successfully added theme" +msgstr "Thème ajouté avec succès" + +#: bookwyrm/templates/settings/themes.html:26 +msgid "How to add a theme" +msgstr "Comment ajouter un thème" + +#: bookwyrm/templates/settings/themes.html:29 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "Copiez le fichier de thème dans le répertoire bookwyrm/static/css/themes de votre serveur depuis la ligne de commande." + +#: bookwyrm/templates/settings/themes.html:32 +msgid "Run ./bw-dev compilescss." +msgstr "Exécutez ./bw-dev compilescss." + +#: bookwyrm/templates/settings/themes.html:35 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "Ajoutez le nom du fichier à l'aide du formulaire ci-dessous pour le rendre disponible dans l'interface de l'application." + +#: bookwyrm/templates/settings/themes.html:42 +#: bookwyrm/templates/settings/themes.html:101 +msgid "Add theme" +msgstr "Ajouter un thème" + +#: bookwyrm/templates/settings/themes.html:48 +msgid "Unable to save theme" +msgstr "Impossible d’enregistrer le thème" + +#: bookwyrm/templates/settings/themes.html:61 +msgid "No available theme files detected" +msgstr "Aucun fichier de thème disponible détecté" + +#: bookwyrm/templates/settings/themes.html:69 +#: bookwyrm/templates/settings/themes.html:112 +msgid "Theme name" +msgstr "Nom du thème" + +#: bookwyrm/templates/settings/themes.html:79 +msgid "Theme filename" +msgstr "Nom de fichier du thème" + +#: bookwyrm/templates/settings/themes.html:107 +msgid "Available Themes" +msgstr "Thèmes disponibles" + +#: bookwyrm/templates/settings/themes.html:115 +msgid "File" +msgstr "Fichier" + +#: bookwyrm/templates/settings/themes.html:130 +msgid "Remove theme" +msgstr "Supprimer le thème" + #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32 msgid "Permanently delete user" @@ -4077,10 +4155,6 @@ msgstr "Protocole :" msgid "Using S3:" msgstr "Utilisation de S3 :" -#: bookwyrm/templates/setup/config.html:91 -msgid "Display" -msgstr "Affichage" - #: bookwyrm/templates/setup/config.html:95 msgid "Default interface language:" msgstr "Langue par défaut de l'interface :" @@ -4138,8 +4212,7 @@ msgid "User profile" msgstr "Profil utilisateur·rice" #: bookwyrm/templates/shelf/shelf.html:39 -#: bookwyrm/templates/snippets/translated_shelf_name.html:3 -#: bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templatetags/shelf_tags.py:44 bookwyrm/views/shelf/shelf.py:53 msgid "All books" msgstr "Tous les livres" @@ -4573,8 +4646,13 @@ msgstr "Commencer la lecture" msgid "Want to read" msgstr "Je veux le lire" -#: bookwyrm/templates/snippets/shelf_selector.html:74 -#: bookwyrm/templates/snippets/shelf_selector.html:86 +#: bookwyrm/templates/snippets/shelf_selector.html:75 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 +#, python-format +msgid "Remove from %(name)s" +msgstr "Retirer de %(name)s" + +#: bookwyrm/templates/snippets/shelf_selector.html:88 msgid "Remove from" msgstr "Retirer de" @@ -4582,11 +4660,6 @@ msgstr "Retirer de" msgid "More shelves" msgstr "Plus d’étagères" -#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 -#, python-format -msgid "Remove from %(name)s" -msgstr "Retirer de %(name)s" - #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:31 msgid "Finish reading" msgstr "Terminer la lecture" @@ -4869,14 +4942,14 @@ msgstr[1] "%(counter)s abonné(e)s" msgid "%(counter)s following" msgstr "%(counter)s abonnements" -#: bookwyrm/templates/user/user_preview.html:34 +#: bookwyrm/templates/user/user_preview.html:39 #, python-format msgid "%(mutuals_display)s follower you follow" msgid_plural "%(mutuals_display)s followers you follow" msgstr[0] "%(mutuals_display)s abonné(e) que vous suivez" msgstr[1] "%(mutuals_display)s abonné(e)s que vous suivez" -#: bookwyrm/templates/user/user_preview.html:38 +#: bookwyrm/templates/user/user_preview.html:43 msgid "No followers you follow" msgstr "Aucun·e abonné·e que vous suivez" diff --git a/locale/gl_ES/LC_MESSAGES/django.mo b/locale/gl_ES/LC_MESSAGES/django.mo index 3c390564727bc1654ab8f1cf3a0ca549ef28e396..dbe430ba55e58d9a4febfef0b56a7a2c87061b09 100644 GIT binary patch delta 24201 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 XP@Jleo>-KUU#fu6vR%)Du|*yLMZir} delta 22860 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\n" "Language-Team: Galician\n" "Language: gl\n" @@ -21,70 +21,70 @@ msgstr "" msgid "User with this username already exists" msgstr "Xa existe unha usuaria con este identificador" -#: bookwyrm/forms.py:252 +#: bookwyrm/forms.py:254 msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Este dominio está bloqueado. Contacta coa administración se cres que é un erro." -#: bookwyrm/forms.py:262 +#: bookwyrm/forms.py:264 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Esta ligazón co tipo de ficheiro xa foi engadida para este libro. Se non é visible, o dominio aínda está pendente." -#: bookwyrm/forms.py:401 +#: bookwyrm/forms.py:403 msgid "A user with this email already exists." msgstr "Xa existe unha usuaria con este email." -#: bookwyrm/forms.py:415 +#: bookwyrm/forms.py:417 msgid "One Day" msgstr "Un día" -#: bookwyrm/forms.py:416 +#: bookwyrm/forms.py:418 msgid "One Week" msgstr "Unha semana" -#: bookwyrm/forms.py:417 +#: bookwyrm/forms.py:419 msgid "One Month" msgstr "Un mes" -#: bookwyrm/forms.py:418 +#: bookwyrm/forms.py:420 msgid "Does Not Expire" msgstr "Non caduca" -#: bookwyrm/forms.py:422 +#: bookwyrm/forms.py:424 #, python-brace-format msgid "{i} uses" msgstr "{i} usos" -#: bookwyrm/forms.py:423 +#: bookwyrm/forms.py:425 msgid "Unlimited" msgstr "Sen límite" -#: bookwyrm/forms.py:525 +#: bookwyrm/forms.py:543 msgid "List Order" msgstr "Orde da listaxe" -#: bookwyrm/forms.py:526 +#: bookwyrm/forms.py:544 msgid "Book Title" msgstr "Título do libro" -#: bookwyrm/forms.py:527 bookwyrm/templates/shelf/shelf.html:155 +#: bookwyrm/forms.py:545 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Puntuación" -#: bookwyrm/forms.py:529 bookwyrm/templates/lists/list.html:175 +#: bookwyrm/forms.py:547 bookwyrm/templates/lists/list.html:185 msgid "Sort By" msgstr "Ordenar por" -#: bookwyrm/forms.py:533 +#: bookwyrm/forms.py:551 msgid "Ascending" msgstr "Ascendente" -#: bookwyrm/forms.py:534 +#: bookwyrm/forms.py:552 msgid "Descending" msgstr "Descendente" -#: bookwyrm/forms.py:547 +#: bookwyrm/forms.py:565 msgid "Reading finish date cannot be before start date." msgstr "A data final da lectura non pode ser anterior á de inicio." @@ -97,27 +97,23 @@ msgid "Could not find a match for book" msgstr "Non se atopan coincidencias para o libro" #: bookwyrm/models/announcement.py:11 -msgid "None" -msgstr "Ningún" - -#: bookwyrm/models/announcement.py:12 msgid "Primary" msgstr "Principal" -#: bookwyrm/models/announcement.py:13 +#: bookwyrm/models/announcement.py:12 msgid "Success" msgstr "Feito" -#: bookwyrm/models/announcement.py:14 +#: bookwyrm/models/announcement.py:13 #: bookwyrm/templates/settings/invites/manage_invites.html:47 msgid "Link" msgstr "Ligazón" -#: bookwyrm/models/announcement.py:15 +#: bookwyrm/models/announcement.py:14 msgid "Warning" msgstr "Advertencia" -#: bookwyrm/models/announcement.py:16 +#: bookwyrm/models/announcement.py:15 msgid "Danger" msgstr "Perigo" @@ -168,13 +164,13 @@ msgid "Paperback" msgstr "En rústica" #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "Federado" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 -#: bookwyrm/templates/settings/federation/edit_instance.html:44 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 @@ -470,7 +466,7 @@ msgid "Copy address" msgstr "Copiar enderezo" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:267 +#: bookwyrm/templates/lists/list.html:277 msgid "Copied!" msgstr "Copiado!" @@ -737,12 +733,12 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:124 +#: bookwyrm/templates/preferences/edit_user.html:136 #: bookwyrm/templates/readthrough/readthrough_modal.html:72 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 -#: bookwyrm/templates/settings/federation/edit_instance.html:82 -#: bookwyrm/templates/settings/federation/instance.html:87 -#: bookwyrm/templates/settings/site.html:151 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/site.html:169 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -763,7 +759,7 @@ msgstr "Gardar" #: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/readthrough_modal.html:73 -#: bookwyrm/templates/settings/federation/instance.html:88 +#: bookwyrm/templates/settings/federation/instance.html:106 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Cancel" @@ -879,7 +875,7 @@ msgstr "Engadir a listaxe" #: bookwyrm/templates/book/book.html:370 #: bookwyrm/templates/book/cover_add_modal.html:31 #: bookwyrm/templates/lists/add_item_modal.html:37 -#: bookwyrm/templates/lists/list.html:245 +#: bookwyrm/templates/lists/list.html:255 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -1179,8 +1175,9 @@ msgstr "Estado" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 -#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/federation/instance.html:112 #: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:118 msgid "Actions" msgstr "Accións" @@ -1667,16 +1664,14 @@ msgid "Add to your books" msgstr "Engadir aos teus libros" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:86 -#: bookwyrm/templates/snippets/translated_shelf_name.html:5 -#: bookwyrm/templates/user/user.html:33 +#: bookwyrm/templates/shelf/shelf.html:86 bookwyrm/templates/user/user.html:33 +#: bookwyrm/templatetags/shelf_tags.py:46 msgid "To Read" msgstr "Pendentes" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:87 -#: bookwyrm/templates/snippets/translated_shelf_name.html:7 -#: bookwyrm/templates/user/user.html:34 +#: bookwyrm/templates/shelf/shelf.html:87 bookwyrm/templates/user/user.html:34 +#: bookwyrm/templatetags/shelf_tags.py:48 msgid "Currently Reading" msgstr "Lectura actual" @@ -1685,8 +1680,7 @@ msgstr "Lectura actual" #: bookwyrm/templates/snippets/shelf_selector.html:47 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/snippets/translated_shelf_name.html:9 -#: bookwyrm/templates/user/user.html:35 +#: bookwyrm/templates/user/user.html:35 bookwyrm/templatetags/shelf_tags.py:50 msgid "Read" msgstr "Lido" @@ -1695,7 +1689,7 @@ msgid "What are you reading?" msgstr "Que estás a ler?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:203 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:213 msgid "Search for a book" msgstr "Buscar un libro" @@ -1715,7 +1709,7 @@ msgstr "Podes engadir libros cando comeces a usar %(site_name)s." #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/members.html:15 #: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:54 -#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:207 +#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1731,7 +1725,7 @@ msgid "Popular on %(site_name)s" msgstr "Populares en %(site_name)s" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:220 +#: bookwyrm/templates/lists/list.html:230 msgid "No books found" msgstr "Non se atopan libros" @@ -1887,7 +1881,8 @@ msgstr "Saír do grupo" #: bookwyrm/templates/groups/members.html:54 #: bookwyrm/templates/groups/suggested_users.html:35 #: bookwyrm/templates/snippets/suggested_users.html:31 -#: bookwyrm/templates/user/user_preview.html:36 +#: bookwyrm/templates/user/user_preview.html:33 +#: bookwyrm/templates/user/user_preview.html:41 msgid "Follows you" msgstr "Séguete" @@ -1943,7 +1938,7 @@ msgid "Privacy setting for imported reviews:" msgstr "Axuste de privacidade para recensións importadas:" #: bookwyrm/templates/import/import.html:59 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:76 msgid "Import" msgstr "Importar" @@ -2304,7 +2299,7 @@ msgid "Suggest \"%(title)s\" for this list" msgstr "Suxerir \"%(title)s\" para esta lista" #: bookwyrm/templates/lists/add_item_modal.html:39 -#: bookwyrm/templates/lists/list.html:247 +#: bookwyrm/templates/lists/list.html:257 msgid "Suggest" msgstr "Suxire" @@ -2340,7 +2335,7 @@ msgid "You're all set!" msgstr "Remataches!" #: bookwyrm/templates/lists/curate.html:45 -#: bookwyrm/templates/lists/list.html:83 +#: bookwyrm/templates/lists/list.html:93 #, python-format msgid "%(username)s says:" msgstr "%(username)s di:" @@ -2373,7 +2368,7 @@ msgid "on %(site_name)s" msgstr "en %(site_name)s" #: bookwyrm/templates/lists/embed-list.html:27 -#: bookwyrm/templates/lists/list.html:44 +#: bookwyrm/templates/lists/list.html:54 msgid "This list is currently empty" msgstr "A lista está baleira neste intre" @@ -2435,7 +2430,7 @@ msgid "Delete list" msgstr "Eliminar lista" #: bookwyrm/templates/lists/item_notes_field.html:7 -#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 msgid "Notes:" msgstr "Notas:" @@ -2443,80 +2438,84 @@ msgstr "Notas:" msgid "An optional note that will be displayed with the book." msgstr "Unha nota optativa que aparecerá xunto ao libro." -#: bookwyrm/templates/lists/list.html:36 +#: bookwyrm/templates/lists/list.html:37 +msgid "That book is already on this list." +msgstr "Ese libro xa está na lista." + +#: bookwyrm/templates/lists/list.html:45 msgid "You successfully suggested a book for this list!" msgstr "Suxeriches correctamente un libro para esta lista!" -#: bookwyrm/templates/lists/list.html:38 +#: bookwyrm/templates/lists/list.html:47 msgid "You successfully added a book to this list!" msgstr "Engadiches correctamente un libro a esta lista!" -#: bookwyrm/templates/lists/list.html:94 +#: bookwyrm/templates/lists/list.html:104 msgid "Edit notes" msgstr "Editar notas" -#: bookwyrm/templates/lists/list.html:109 +#: bookwyrm/templates/lists/list.html:119 msgid "Add notes" msgstr "Engadir notas" -#: bookwyrm/templates/lists/list.html:121 +#: bookwyrm/templates/lists/list.html:131 #, python-format msgid "Added by %(username)s" msgstr "Engadido por %(username)s" -#: bookwyrm/templates/lists/list.html:136 +#: bookwyrm/templates/lists/list.html:146 msgid "List position" msgstr "Posición da lista" -#: bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/lists/list.html:152 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21 msgid "Set" msgstr "Establecer" -#: bookwyrm/templates/lists/list.html:157 +#: bookwyrm/templates/lists/list.html:167 #: bookwyrm/templates/snippets/remove_from_group_button.html:20 msgid "Remove" msgstr "Eliminar" -#: bookwyrm/templates/lists/list.html:171 -#: bookwyrm/templates/lists/list.html:188 +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 msgid "Sort List" msgstr "Ordenar lista" -#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:191 msgid "Direction" msgstr "Dirección" -#: bookwyrm/templates/lists/list.html:195 +#: bookwyrm/templates/lists/list.html:205 msgid "Add Books" msgstr "Engadir Libros" -#: bookwyrm/templates/lists/list.html:197 +#: bookwyrm/templates/lists/list.html:207 msgid "Suggest Books" msgstr "Suxerir Libros" -#: bookwyrm/templates/lists/list.html:208 +#: bookwyrm/templates/lists/list.html:218 msgid "search" msgstr "buscar" -#: bookwyrm/templates/lists/list.html:214 +#: bookwyrm/templates/lists/list.html:224 msgid "Clear search" msgstr "Limpar busca" -#: bookwyrm/templates/lists/list.html:219 +#: bookwyrm/templates/lists/list.html:229 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "Non se atopan libros coa consulta \"%(query)s\"" -#: bookwyrm/templates/lists/list.html:258 +#: bookwyrm/templates/lists/list.html:268 msgid "Embed this list on a website" msgstr "Utiliza esta lista nunha páxina web" -#: bookwyrm/templates/lists/list.html:266 +#: bookwyrm/templates/lists/list.html:276 msgid "Copy embed code" msgstr "Copia o código a incluír" -#: bookwyrm/templates/lists/list.html:268 +#: bookwyrm/templates/lists/list.html:278 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s, unha lista de %(owner)s en %(site_name)s" @@ -2871,11 +2870,14 @@ msgstr "Perfil" #: bookwyrm/templates/preferences/edit_user.html:13 #: bookwyrm/templates/preferences/edit_user.html:64 -msgid "Display preferences" -msgstr "Preferencias da interface" +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:77 +#: bookwyrm/templates/setup/config.html:91 +msgid "Display" +msgstr "" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:106 +#: bookwyrm/templates/preferences/edit_user.html:112 msgid "Privacy" msgstr "Privacidade" @@ -2900,11 +2902,19 @@ msgstr "A túa conta aparecerá no directorio, e poder msgid "Preferred Timezone: " msgstr "Zona horaria preferida: " -#: bookwyrm/templates/preferences/edit_user.html:111 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Theme:" +msgstr "Decorado:" + +#: bookwyrm/templates/preferences/edit_user.html:117 msgid "Manually approve followers" msgstr "Aprobar manualmente os seguimentos" -#: bookwyrm/templates/preferences/edit_user.html:116 +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Hide followers and following on profile" +msgstr "Agochar relacións de seguimento no perfil" + +#: bookwyrm/templates/preferences/edit_user.html:128 msgid "Default post privacy:" msgstr "Privacidade por defecto:" @@ -3051,7 +3061,7 @@ msgid "Announcement" msgstr "Anuncio" #: bookwyrm/templates/settings/announcements/announcement.html:16 -#: bookwyrm/templates/settings/federation/instance.html:75 +#: bookwyrm/templates/settings/federation/instance.html:93 #: bookwyrm/templates/snippets/status/status_options.html:25 msgid "Edit" msgstr "Editar" @@ -3340,136 +3350,136 @@ msgstr "Non tes dominios de email bloqueados" #: 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/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 #: bookwyrm/templates/settings/federation/instance_blocklist.html:3 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 #: bookwyrm/templates/settings/federation/instance_list.html:9 #: bookwyrm/templates/settings/federation/instance_list.html:10 msgid "Add instance" msgstr "Engadir instancia" -#: bookwyrm/templates/settings/federation/edit_instance.html:7 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:7 -msgid "Back to instance list" -msgstr "Volver á 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:31 -msgid "Instance:" -msgstr "Instancia:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:40 -#: bookwyrm/templates/settings/federation/instance.html:28 -#: bookwyrm/templates/settings/users/user_info.html:106 -msgid "Status:" -msgstr "Estado:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:54 -#: 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:64 -#: bookwyrm/templates/settings/federation/instance.html:25 -#: bookwyrm/templates/settings/users/user_info.html:103 -msgid "Version:" -msgstr "Versión:" - -#: bookwyrm/templates/settings/federation/instance.html:13 -msgid "Back to list" -msgstr "Volver á lista" - -#: bookwyrm/templates/settings/federation/instance.html:19 -msgid "Details" -msgstr "Detalles" - -#: bookwyrm/templates/settings/federation/instance.html:35 -#: bookwyrm/templates/user/layout.html:67 -msgid "Activity" -msgstr "Actividade" - -#: bookwyrm/templates/settings/federation/instance.html:38 -msgid "Users:" -msgstr "Usuarias:" - -#: bookwyrm/templates/settings/federation/instance.html:41 -#: bookwyrm/templates/settings/federation/instance.html:47 -msgid "View all" -msgstr "Ver todo" - -#: bookwyrm/templates/settings/federation/instance.html:44 -#: bookwyrm/templates/settings/users/user_info.html:56 -msgid "Reports:" -msgstr "Denuncias:" - -#: bookwyrm/templates/settings/federation/instance.html:50 -msgid "Followed by us:" -msgstr "Seguidas por nós:" - -#: bookwyrm/templates/settings/federation/instance.html:55 -msgid "Followed by them:" -msgstr "Somos seguidas por:" - -#: bookwyrm/templates/settings/federation/instance.html:60 -msgid "Blocked by us:" -msgstr "Temos bloquedas:" - -#: bookwyrm/templates/settings/federation/instance.html:72 -#: bookwyrm/templates/settings/users/user_info.html:110 -msgid "Notes" -msgstr "Notas" - -#: bookwyrm/templates/settings/federation/instance.html:79 -msgid "No notes" -msgstr "Sen notas" - -#: bookwyrm/templates/settings/federation/instance.html:98 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Bloquear" - -#: bookwyrm/templates/settings/federation/instance.html:99 -msgid "All users from this instance will be deactivated." -msgstr "Tódalas usuarias desta instancia serán desactivadas." - -#: bookwyrm/templates/settings/federation/instance.html:104 -#: bookwyrm/templates/snippets/block_button.html:10 -msgid "Un-block" -msgstr "Desbloquear" - -#: bookwyrm/templates/settings/federation/instance.html:105 -msgid "All users from this instance will be re-activated." -msgstr "Tódalas usuarias desta instancia volverán a estar activas." - -#: 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 "Feito!" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:30 -msgid "Successfully blocked:" -msgstr "Bloqueaches a:" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 -msgid "Failed:" -msgstr "Fallou:" - +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 #: bookwyrm/templates/settings/federation/instance_list.html:3 #: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:47 msgid "Federated Instances" msgstr "Instancias federadas" +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "Importar lista de bloqueo" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "Instancia:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "Estado:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "Software:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "Versión:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "Actualizar datos" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "Detalles" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:67 +msgid "Activity" +msgstr "Actividade" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "Usuarias:" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "Ver todo" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:56 +msgid "Reports:" +msgstr "Denuncias:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "Seguidas por nós:" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "Somos seguidas por:" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "Temos bloquedas:" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Notes" +msgstr "Notas" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "Sen notas" + +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Bloquear" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "Tódalas usuarias desta instancia serán desactivadas." + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "Desbloquear" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "Tódalas usuarias desta instancia volverán a estar activas." + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "Importar Lista de Bloqueo" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "Feito!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "Bloqueaches a:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "Fallou:" + #: bookwyrm/templates/settings/federation/instance_list.html:32 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" @@ -3654,6 +3664,13 @@ msgstr "Axustes da instancia" msgid "Site Settings" msgstr "Axustes da web" +#: bookwyrm/templates/settings/layout.html:91 +#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "Decorados" + #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format msgid "Set display name for %(url)s" @@ -3779,22 +3796,17 @@ msgid "No reports found." msgstr "Non hai denuncias." #: bookwyrm/templates/settings/site.html:10 -#: bookwyrm/templates/settings/site.html:39 +#: bookwyrm/templates/settings/site.html:44 msgid "Instance Info" msgstr "Info da instancia" -#: bookwyrm/templates/settings/site.html:11 -#: bookwyrm/templates/settings/site.html:72 -msgid "Images" -msgstr "Imaxes" - #: bookwyrm/templates/settings/site.html:12 -#: bookwyrm/templates/settings/site.html:92 +#: bookwyrm/templates/settings/site.html:110 msgid "Footer Content" msgstr "Contido web do pé" #: bookwyrm/templates/settings/site.html:13 -#: bookwyrm/templates/settings/site.html:116 +#: bookwyrm/templates/settings/site.html:134 msgid "Registration" msgstr "Rexistro" @@ -3806,86 +3818,152 @@ msgstr "Axustes gardados" msgid "Unable to save settings" msgstr "Non se gardaron os axustes" -#: bookwyrm/templates/settings/site.html:42 +#: bookwyrm/templates/settings/site.html:47 msgid "Instance Name:" msgstr "Nome da instancia:" -#: bookwyrm/templates/settings/site.html:46 +#: bookwyrm/templates/settings/site.html:51 msgid "Tagline:" msgstr "Lema:" -#: bookwyrm/templates/settings/site.html:50 +#: bookwyrm/templates/settings/site.html:55 msgid "Instance description:" msgstr "Descrición da instancia:" -#: bookwyrm/templates/settings/site.html:54 +#: bookwyrm/templates/settings/site.html:59 msgid "Short description:" msgstr "Descrición curta:" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:60 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." msgstr "Utilizado na vista previa da instancia en joinbookwyrm.com. Non admite HTML ou Markdown." -#: bookwyrm/templates/settings/site.html:59 +#: bookwyrm/templates/settings/site.html:64 msgid "Code of conduct:" msgstr "Código de conduta:" -#: bookwyrm/templates/settings/site.html:63 +#: bookwyrm/templates/settings/site.html:68 msgid "Privacy Policy:" msgstr "Política de privacidade:" -#: bookwyrm/templates/settings/site.html:75 +#: bookwyrm/templates/settings/site.html:79 +msgid "Images" +msgstr "Imaxes" + +#: bookwyrm/templates/settings/site.html:82 msgid "Logo:" msgstr "Logo:" -#: bookwyrm/templates/settings/site.html:79 +#: bookwyrm/templates/settings/site.html:86 msgid "Logo small:" msgstr "Logo pequeno:" -#: bookwyrm/templates/settings/site.html:83 +#: bookwyrm/templates/settings/site.html:90 msgid "Favicon:" msgstr "Favicon:" -#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/site.html:98 +msgid "Default theme:" +msgstr "Decorado por defecto:" + +#: bookwyrm/templates/settings/site.html:113 msgid "Support link:" msgstr "Ligazón de axuda:" -#: bookwyrm/templates/settings/site.html:99 +#: bookwyrm/templates/settings/site.html:117 msgid "Support title:" msgstr "Título de axuda:" -#: bookwyrm/templates/settings/site.html:103 +#: bookwyrm/templates/settings/site.html:121 msgid "Admin email:" msgstr "Email de Admin:" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:125 msgid "Additional info:" msgstr "Info adicional:" -#: bookwyrm/templates/settings/site.html:121 +#: bookwyrm/templates/settings/site.html:139 msgid "Allow registration" msgstr "Abrir rexistro" -#: bookwyrm/templates/settings/site.html:127 +#: bookwyrm/templates/settings/site.html:145 msgid "Allow invite requests" msgstr "Permitir solicitudes de convite" -#: bookwyrm/templates/settings/site.html:133 +#: bookwyrm/templates/settings/site.html:151 msgid "Require users to confirm email address" msgstr "Requerir que a usuaria confirme o enderezo de email" -#: bookwyrm/templates/settings/site.html:135 +#: bookwyrm/templates/settings/site.html:153 msgid "(Recommended if registration is open)" msgstr "(Recomendable se o rexistro está aberto)" -#: bookwyrm/templates/settings/site.html:138 +#: bookwyrm/templates/settings/site.html:156 msgid "Registration closed text:" msgstr "Texto se o rexistro está pechado:" -#: bookwyrm/templates/settings/site.html:142 +#: bookwyrm/templates/settings/site.html:160 msgid "Invite request text:" msgstr "Texto para a solicitude do convite:" +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "Establecer decorado por defecto para a instancia" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "Successfully added theme" +msgstr "Decorado engadido correctamente" + +#: bookwyrm/templates/settings/themes.html:26 +msgid "How to add a theme" +msgstr "Como engadir un decorado" + +#: bookwyrm/templates/settings/themes.html:29 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "Copia o ficheiro do decorado no cartafol bookwyrm/static/css/themes do teu servidor usando a liña de comandos." + +#: bookwyrm/templates/settings/themes.html:32 +msgid "Run ./bw-dev compilescss." +msgstr "Executa ./bw-dev compilescss." + +#: bookwyrm/templates/settings/themes.html:35 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "Engade o nome de ficheiro usando o formulario inferior para que esté dispoñible na interface da aplicación." + +#: bookwyrm/templates/settings/themes.html:42 +#: bookwyrm/templates/settings/themes.html:101 +msgid "Add theme" +msgstr "Engadir decorado" + +#: bookwyrm/templates/settings/themes.html:48 +msgid "Unable to save theme" +msgstr "Non se gardou o decorado" + +#: bookwyrm/templates/settings/themes.html:61 +msgid "No available theme files detected" +msgstr "Non se atopan ficheiros de decorado" + +#: bookwyrm/templates/settings/themes.html:69 +#: bookwyrm/templates/settings/themes.html:112 +msgid "Theme name" +msgstr "Nome do decorado" + +#: bookwyrm/templates/settings/themes.html:79 +msgid "Theme filename" +msgstr "Nome de ficheiro do decorado" + +#: bookwyrm/templates/settings/themes.html:107 +msgid "Available Themes" +msgstr "Decorados dispoñibles" + +#: bookwyrm/templates/settings/themes.html:115 +msgid "File" +msgstr "Ficheiro" + +#: bookwyrm/templates/settings/themes.html:130 +msgid "Remove theme" +msgstr "Eliminar decorado" + #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32 msgid "Permanently delete user" @@ -4077,10 +4155,6 @@ msgstr "Protocolo:" msgid "Using S3:" msgstr "Usando S3:" -#: bookwyrm/templates/setup/config.html:91 -msgid "Display" -msgstr "" - #: bookwyrm/templates/setup/config.html:95 msgid "Default interface language:" msgstr "Idioma por defecto da interface:" @@ -4138,8 +4212,7 @@ msgid "User profile" msgstr "Perfil da usuaria" #: bookwyrm/templates/shelf/shelf.html:39 -#: bookwyrm/templates/snippets/translated_shelf_name.html:3 -#: bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templatetags/shelf_tags.py:44 bookwyrm/views/shelf/shelf.py:53 msgid "All books" msgstr "Tódolos libros" @@ -4573,8 +4646,13 @@ msgstr "Comezar a ler" msgid "Want to read" msgstr "Quero ler" -#: bookwyrm/templates/snippets/shelf_selector.html:74 -#: bookwyrm/templates/snippets/shelf_selector.html:86 +#: bookwyrm/templates/snippets/shelf_selector.html:75 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 +#, python-format +msgid "Remove from %(name)s" +msgstr "Eliminar de %(name)s" + +#: bookwyrm/templates/snippets/shelf_selector.html:88 msgid "Remove from" msgstr "Eliminar de" @@ -4582,11 +4660,6 @@ msgstr "Eliminar de" msgid "More shelves" msgstr "Máis estantes" -#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 -#, python-format -msgid "Remove from %(name)s" -msgstr "Eliminar de %(name)s" - #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:31 msgid "Finish reading" msgstr "Rematar a lectura" @@ -4869,14 +4942,14 @@ msgstr[1] "%(counter)s seguidoras" msgid "%(counter)s following" msgstr "Seguindo a %(counter)s" -#: bookwyrm/templates/user/user_preview.html:34 +#: bookwyrm/templates/user/user_preview.html:39 #, python-format msgid "%(mutuals_display)s follower you follow" msgid_plural "%(mutuals_display)s followers you follow" msgstr[0] "%(mutuals_display)s seguidora que segues" msgstr[1] "%(mutuals_display)s seguidoras que segues" -#: bookwyrm/templates/user/user_preview.html:38 +#: bookwyrm/templates/user/user_preview.html:43 msgid "No followers you follow" msgstr "Sen seguidoras que ti segues" diff --git a/locale/it_IT/LC_MESSAGES/django.mo b/locale/it_IT/LC_MESSAGES/django.mo index fdffc9fc7994171b3fa9e81929c671d086f335ab..cddc0a5404396ed218fbdc22f037e2c5d7c0a1d9 100644 GIT binary patch delta 24175 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 delta 22871 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 diff --git a/locale/it_IT/LC_MESSAGES/django.po b/locale/it_IT/LC_MESSAGES/django.po index caa028dcf..143539d9e 100644 --- a/locale/it_IT/LC_MESSAGES/django.po +++ b/locale/it_IT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-02-25 20:12+0000\n" -"PO-Revision-Date: 2022-02-27 16:14\n" +"POT-Creation-Date: 2022-03-01 19:48+0000\n" +"PO-Revision-Date: 2022-03-01 21:14\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Italian\n" "Language: it\n" @@ -21,70 +21,70 @@ msgstr "" msgid "User with this username already exists" msgstr "Esiste già un utente con questo nome utente" -#: bookwyrm/forms.py:252 +#: bookwyrm/forms.py:254 msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Questo dominio è bloccato. Per favore contatta l'amministratore se pensi che si tratti di un errore." -#: bookwyrm/forms.py:262 +#: bookwyrm/forms.py:264 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Questo collegamento è già stato aggiunto per questo libro. Se non è visibile, il dominio è ancora in sospeso." -#: bookwyrm/forms.py:401 +#: bookwyrm/forms.py:403 msgid "A user with this email already exists." msgstr "Esiste già un'utenza con questo indirizzo email." -#: bookwyrm/forms.py:415 +#: bookwyrm/forms.py:417 msgid "One Day" msgstr "Un giorno" -#: bookwyrm/forms.py:416 +#: bookwyrm/forms.py:418 msgid "One Week" msgstr "Una settimana" -#: bookwyrm/forms.py:417 +#: bookwyrm/forms.py:419 msgid "One Month" msgstr "Un mese" -#: bookwyrm/forms.py:418 +#: bookwyrm/forms.py:420 msgid "Does Not Expire" msgstr "Non scade" -#: bookwyrm/forms.py:422 +#: bookwyrm/forms.py:424 #, python-brace-format msgid "{i} uses" msgstr "{i} usi" -#: bookwyrm/forms.py:423 +#: bookwyrm/forms.py:425 msgid "Unlimited" msgstr "Illimitato" -#: bookwyrm/forms.py:525 +#: bookwyrm/forms.py:543 msgid "List Order" msgstr "Ordina Lista" -#: bookwyrm/forms.py:526 +#: bookwyrm/forms.py:544 msgid "Book Title" msgstr "Titolo del libro" -#: bookwyrm/forms.py:527 bookwyrm/templates/shelf/shelf.html:155 +#: bookwyrm/forms.py:545 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Valutazione" -#: bookwyrm/forms.py:529 bookwyrm/templates/lists/list.html:175 +#: bookwyrm/forms.py:547 bookwyrm/templates/lists/list.html:185 msgid "Sort By" msgstr "Ordina per" -#: bookwyrm/forms.py:533 +#: bookwyrm/forms.py:551 msgid "Ascending" msgstr "Crescente" -#: bookwyrm/forms.py:534 +#: bookwyrm/forms.py:552 msgid "Descending" msgstr "Decrescente" -#: bookwyrm/forms.py:547 +#: bookwyrm/forms.py:565 msgid "Reading finish date cannot be before start date." msgstr "La data di fine lettura non può essere precedente alla data di inizio." @@ -97,27 +97,23 @@ msgid "Could not find a match for book" msgstr "Impossibile trovare una corrispondenza per il libro" #: bookwyrm/models/announcement.py:11 -msgid "None" -msgstr "Niente" - -#: bookwyrm/models/announcement.py:12 msgid "Primary" msgstr "Principale" -#: bookwyrm/models/announcement.py:13 +#: bookwyrm/models/announcement.py:12 msgid "Success" msgstr "Completato" -#: bookwyrm/models/announcement.py:14 +#: bookwyrm/models/announcement.py:13 #: bookwyrm/templates/settings/invites/manage_invites.html:47 msgid "Link" msgstr "Link" -#: bookwyrm/models/announcement.py:15 +#: bookwyrm/models/announcement.py:14 msgid "Warning" msgstr "Avviso" -#: bookwyrm/models/announcement.py:16 +#: bookwyrm/models/announcement.py:15 msgid "Danger" msgstr "Attenzione" @@ -168,13 +164,13 @@ msgid "Paperback" msgstr "Brossura" #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "Federato" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 -#: bookwyrm/templates/settings/federation/edit_instance.html:44 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 @@ -470,7 +466,7 @@ msgid "Copy address" msgstr "Copia l'indirizzo" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:267 +#: bookwyrm/templates/lists/list.html:277 msgid "Copied!" msgstr "Copiato!" @@ -737,12 +733,12 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:124 +#: bookwyrm/templates/preferences/edit_user.html:136 #: bookwyrm/templates/readthrough/readthrough_modal.html:72 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 -#: bookwyrm/templates/settings/federation/edit_instance.html:82 -#: bookwyrm/templates/settings/federation/instance.html:87 -#: bookwyrm/templates/settings/site.html:151 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/site.html:169 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -763,7 +759,7 @@ msgstr "Salva" #: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/readthrough_modal.html:73 -#: bookwyrm/templates/settings/federation/instance.html:88 +#: bookwyrm/templates/settings/federation/instance.html:106 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Cancel" @@ -879,7 +875,7 @@ msgstr "Aggiungi all'elenco" #: bookwyrm/templates/book/book.html:370 #: bookwyrm/templates/book/cover_add_modal.html:31 #: bookwyrm/templates/lists/add_item_modal.html:37 -#: bookwyrm/templates/lists/list.html:245 +#: bookwyrm/templates/lists/list.html:255 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -1179,8 +1175,9 @@ msgstr "Stato" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 -#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/federation/instance.html:112 #: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:118 msgid "Actions" msgstr "Azioni" @@ -1667,16 +1664,14 @@ msgid "Add to your books" msgstr "Aggiungi ai tuoi libri" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:86 -#: bookwyrm/templates/snippets/translated_shelf_name.html:5 -#: bookwyrm/templates/user/user.html:33 +#: bookwyrm/templates/shelf/shelf.html:86 bookwyrm/templates/user/user.html:33 +#: bookwyrm/templatetags/shelf_tags.py:46 msgid "To Read" msgstr "Da leggere" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:87 -#: bookwyrm/templates/snippets/translated_shelf_name.html:7 -#: bookwyrm/templates/user/user.html:34 +#: bookwyrm/templates/shelf/shelf.html:87 bookwyrm/templates/user/user.html:34 +#: bookwyrm/templatetags/shelf_tags.py:48 msgid "Currently Reading" msgstr "Letture correnti" @@ -1685,8 +1680,7 @@ msgstr "Letture correnti" #: bookwyrm/templates/snippets/shelf_selector.html:47 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/snippets/translated_shelf_name.html:9 -#: bookwyrm/templates/user/user.html:35 +#: bookwyrm/templates/user/user.html:35 bookwyrm/templatetags/shelf_tags.py:50 msgid "Read" msgstr "Letti" @@ -1695,7 +1689,7 @@ msgid "What are you reading?" msgstr "Cosa stai leggendo?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:203 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:213 msgid "Search for a book" msgstr "Cerca un libro" @@ -1715,7 +1709,7 @@ msgstr "Puoi aggiungere libri quando inizi a usare %(site_name)s." #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/members.html:15 #: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:54 -#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:207 +#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1731,7 +1725,7 @@ msgid "Popular on %(site_name)s" msgstr "Popolare su %(site_name)s" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:220 +#: bookwyrm/templates/lists/list.html:230 msgid "No books found" msgstr "Nessun libro trovato" @@ -1887,7 +1881,8 @@ msgstr "Lascia il gruppo" #: bookwyrm/templates/groups/members.html:54 #: bookwyrm/templates/groups/suggested_users.html:35 #: bookwyrm/templates/snippets/suggested_users.html:31 -#: bookwyrm/templates/user/user_preview.html:36 +#: bookwyrm/templates/user/user_preview.html:33 +#: bookwyrm/templates/user/user_preview.html:41 msgid "Follows you" msgstr "Ti segue" @@ -1943,7 +1938,7 @@ msgid "Privacy setting for imported reviews:" msgstr "Impostazione della privacy per le recensioni importate:" #: bookwyrm/templates/import/import.html:59 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:76 msgid "Import" msgstr "Importa" @@ -2304,7 +2299,7 @@ msgid "Suggest \"%(title)s\" for this list" msgstr "Suggerisci \"%(title)s\" per questa lista" #: bookwyrm/templates/lists/add_item_modal.html:39 -#: bookwyrm/templates/lists/list.html:247 +#: bookwyrm/templates/lists/list.html:257 msgid "Suggest" msgstr "Suggerisci" @@ -2340,7 +2335,7 @@ msgid "You're all set!" msgstr "é tutto pronto!" #: bookwyrm/templates/lists/curate.html:45 -#: bookwyrm/templates/lists/list.html:83 +#: bookwyrm/templates/lists/list.html:93 #, python-format msgid "%(username)s says:" msgstr "%(username)s dice:" @@ -2373,7 +2368,7 @@ msgid "on %(site_name)s" msgstr "su %(site_name)s" #: bookwyrm/templates/lists/embed-list.html:27 -#: bookwyrm/templates/lists/list.html:44 +#: bookwyrm/templates/lists/list.html:54 msgid "This list is currently empty" msgstr "Questa lista è attualmente vuota" @@ -2435,7 +2430,7 @@ msgid "Delete list" msgstr "Elimina lista" #: bookwyrm/templates/lists/item_notes_field.html:7 -#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 msgid "Notes:" msgstr "Note:" @@ -2443,80 +2438,84 @@ msgstr "Note:" msgid "An optional note that will be displayed with the book." msgstr "Una nota opzionale che verrà visualizzata con il libro." -#: bookwyrm/templates/lists/list.html:36 +#: bookwyrm/templates/lists/list.html:37 +msgid "That book is already on this list." +msgstr "Questo libro è già nell'elenco." + +#: bookwyrm/templates/lists/list.html:45 msgid "You successfully suggested a book for this list!" msgstr "Hai consigliato con successo un libro per questa lista!" -#: bookwyrm/templates/lists/list.html:38 +#: bookwyrm/templates/lists/list.html:47 msgid "You successfully added a book to this list!" msgstr "Hai consigliato con successo un libro per questa lista!" -#: bookwyrm/templates/lists/list.html:94 +#: bookwyrm/templates/lists/list.html:104 msgid "Edit notes" msgstr "Modifica note" -#: bookwyrm/templates/lists/list.html:109 +#: bookwyrm/templates/lists/list.html:119 msgid "Add notes" msgstr "Aggiungi note" -#: bookwyrm/templates/lists/list.html:121 +#: bookwyrm/templates/lists/list.html:131 #, python-format msgid "Added by %(username)s" msgstr "Aggiunto da %(username)s" -#: bookwyrm/templates/lists/list.html:136 +#: bookwyrm/templates/lists/list.html:146 msgid "List position" msgstr "Posizione elenco" -#: bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/lists/list.html:152 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21 msgid "Set" msgstr "Imposta" -#: bookwyrm/templates/lists/list.html:157 +#: bookwyrm/templates/lists/list.html:167 #: bookwyrm/templates/snippets/remove_from_group_button.html:20 msgid "Remove" msgstr "Elimina" -#: bookwyrm/templates/lists/list.html:171 -#: bookwyrm/templates/lists/list.html:188 +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 msgid "Sort List" msgstr "Ordine lista" -#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:191 msgid "Direction" msgstr "Direzione" -#: bookwyrm/templates/lists/list.html:195 +#: bookwyrm/templates/lists/list.html:205 msgid "Add Books" msgstr "Aggiungi Libri" -#: bookwyrm/templates/lists/list.html:197 +#: bookwyrm/templates/lists/list.html:207 msgid "Suggest Books" msgstr "Libri consigliati" -#: bookwyrm/templates/lists/list.html:208 +#: bookwyrm/templates/lists/list.html:218 msgid "search" msgstr "cerca" -#: bookwyrm/templates/lists/list.html:214 +#: bookwyrm/templates/lists/list.html:224 msgid "Clear search" msgstr "Cancella ricerca" -#: bookwyrm/templates/lists/list.html:219 +#: bookwyrm/templates/lists/list.html:229 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "Nessun libro trovato corrispondente alla query \"%(query)s\"" -#: bookwyrm/templates/lists/list.html:258 +#: bookwyrm/templates/lists/list.html:268 msgid "Embed this list on a website" msgstr "Incorpora questa lista in un sito web" -#: bookwyrm/templates/lists/list.html:266 +#: bookwyrm/templates/lists/list.html:276 msgid "Copy embed code" msgstr "Copia codice di incorporamento" -#: bookwyrm/templates/lists/list.html:268 +#: bookwyrm/templates/lists/list.html:278 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s, una lista di %(owner)s su %(site_name)s" @@ -2871,11 +2870,14 @@ msgstr "Profilo" #: bookwyrm/templates/preferences/edit_user.html:13 #: bookwyrm/templates/preferences/edit_user.html:64 -msgid "Display preferences" -msgstr "Preferenze visualizzazione" +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:77 +#: bookwyrm/templates/setup/config.html:91 +msgid "Display" +msgstr "Visualizzazione" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:106 +#: bookwyrm/templates/preferences/edit_user.html:112 msgid "Privacy" msgstr "Privacy" @@ -2900,11 +2902,19 @@ msgstr "Il tuo account verrà visualizzato nella directory< msgid "Preferred Timezone: " msgstr "Fuso orario preferito: " -#: bookwyrm/templates/preferences/edit_user.html:111 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Theme:" +msgstr "Tema:" + +#: bookwyrm/templates/preferences/edit_user.html:117 msgid "Manually approve followers" msgstr "Approvare manualmente i follower" -#: bookwyrm/templates/preferences/edit_user.html:116 +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Hide followers and following on profile" +msgstr "Nascondi i seguaci e i seguiti sul profilo" + +#: bookwyrm/templates/preferences/edit_user.html:128 msgid "Default post privacy:" msgstr "Privacy predefinita dei post:" @@ -3051,7 +3061,7 @@ msgid "Announcement" msgstr "Avviso" #: bookwyrm/templates/settings/announcements/announcement.html:16 -#: bookwyrm/templates/settings/federation/instance.html:75 +#: bookwyrm/templates/settings/federation/instance.html:93 #: bookwyrm/templates/snippets/status/status_options.html:25 msgid "Edit" msgstr "Modifica" @@ -3340,136 +3350,136 @@ msgstr "Nessun dominio email attualmente bloccato" #: 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/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 #: bookwyrm/templates/settings/federation/instance_blocklist.html:3 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 #: bookwyrm/templates/settings/federation/instance_list.html:9 #: bookwyrm/templates/settings/federation/instance_list.html:10 msgid "Add instance" msgstr "Aggiungi istanza" -#: bookwyrm/templates/settings/federation/edit_instance.html:7 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:7 -msgid "Back to instance list" -msgstr "Torna alla lista delle istanze" - -#: bookwyrm/templates/settings/federation/edit_instance.html:16 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:16 -msgid "Import block list" -msgstr "Importa lista blocchi" - -#: bookwyrm/templates/settings/federation/edit_instance.html:31 -msgid "Instance:" -msgstr "Istanza:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:40 -#: bookwyrm/templates/settings/federation/instance.html:28 -#: bookwyrm/templates/settings/users/user_info.html:106 -msgid "Status:" -msgstr "Stato:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:54 -#: 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:64 -#: bookwyrm/templates/settings/federation/instance.html:25 -#: bookwyrm/templates/settings/users/user_info.html:103 -msgid "Version:" -msgstr "Versione:" - -#: bookwyrm/templates/settings/federation/instance.html:13 -msgid "Back to list" -msgstr "Torna alla lista" - -#: bookwyrm/templates/settings/federation/instance.html:19 -msgid "Details" -msgstr "Dettagli" - -#: bookwyrm/templates/settings/federation/instance.html:35 -#: bookwyrm/templates/user/layout.html:67 -msgid "Activity" -msgstr "Attività" - -#: bookwyrm/templates/settings/federation/instance.html:38 -msgid "Users:" -msgstr "Utenti:" - -#: bookwyrm/templates/settings/federation/instance.html:41 -#: bookwyrm/templates/settings/federation/instance.html:47 -msgid "View all" -msgstr "Vedi tutti" - -#: bookwyrm/templates/settings/federation/instance.html:44 -#: bookwyrm/templates/settings/users/user_info.html:56 -msgid "Reports:" -msgstr "Reports:" - -#: bookwyrm/templates/settings/federation/instance.html:50 -msgid "Followed by us:" -msgstr "Seguiti da noi:" - -#: bookwyrm/templates/settings/federation/instance.html:55 -msgid "Followed by them:" -msgstr "Seguiti da loro:" - -#: bookwyrm/templates/settings/federation/instance.html:60 -msgid "Blocked by us:" -msgstr "Bloccati da noi:" - -#: bookwyrm/templates/settings/federation/instance.html:72 -#: bookwyrm/templates/settings/users/user_info.html:110 -msgid "Notes" -msgstr "Note" - -#: bookwyrm/templates/settings/federation/instance.html:79 -msgid "No notes" -msgstr "Nessuna nota" - -#: bookwyrm/templates/settings/federation/instance.html:98 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Blocca" - -#: bookwyrm/templates/settings/federation/instance.html:99 -msgid "All users from this instance will be deactivated." -msgstr "Tutti gli utenti di questa istanza saranno disattivati." - -#: bookwyrm/templates/settings/federation/instance.html:104 -#: bookwyrm/templates/snippets/block_button.html:10 -msgid "Un-block" -msgstr "Sblocca" - -#: bookwyrm/templates/settings/federation/instance.html:105 -msgid "All users from this instance will be re-activated." -msgstr "Tutti gli utenti di questa istanza saranno riattivati." - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 -msgid "Import Blocklist" -msgstr "Importa lista blocchi" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:26 -#: bookwyrm/templates/snippets/goal_progress.html:7 -msgid "Success!" -msgstr "Completato!" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:30 -msgid "Successfully blocked:" -msgstr "Bloccato con successo:" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 -msgid "Failed:" -msgstr "Non riuscito:" - +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 #: bookwyrm/templates/settings/federation/instance_list.html:3 #: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:47 msgid "Federated Instances" msgstr "Istanze federate" +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "Importa lista blocchi" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "Istanza:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "Stato:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "Software:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "Versione:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "Aggiorna dati" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "Dettagli" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:67 +msgid "Activity" +msgstr "Attività" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "Utenti:" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "Vedi tutti" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:56 +msgid "Reports:" +msgstr "Reports:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "Seguiti da noi:" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "Seguiti da loro:" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "Bloccati da noi:" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Notes" +msgstr "Note" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "Nessuna nota" + +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Blocca" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "Tutti gli utenti di questa istanza saranno disattivati." + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "Sblocca" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "Tutti gli utenti di questa istanza saranno riattivati." + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "Importa lista blocchi" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "Completato!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "Bloccato con successo:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "Non riuscito:" + #: bookwyrm/templates/settings/federation/instance_list.html:32 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" @@ -3654,6 +3664,13 @@ msgstr "Impostazioni dell'istanza" msgid "Site Settings" msgstr "Impostazioni Sito" +#: bookwyrm/templates/settings/layout.html:91 +#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "Temi" + #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format msgid "Set display name for %(url)s" @@ -3779,22 +3796,17 @@ msgid "No reports found." msgstr "Nessun rapporto trovato." #: bookwyrm/templates/settings/site.html:10 -#: bookwyrm/templates/settings/site.html:39 +#: bookwyrm/templates/settings/site.html:44 msgid "Instance Info" msgstr "Informazioni istanza" -#: bookwyrm/templates/settings/site.html:11 -#: bookwyrm/templates/settings/site.html:72 -msgid "Images" -msgstr "Immagini" - #: bookwyrm/templates/settings/site.html:12 -#: bookwyrm/templates/settings/site.html:92 +#: bookwyrm/templates/settings/site.html:110 msgid "Footer Content" msgstr "Contenuto del footer" #: bookwyrm/templates/settings/site.html:13 -#: bookwyrm/templates/settings/site.html:116 +#: bookwyrm/templates/settings/site.html:134 msgid "Registration" msgstr "Registrazione" @@ -3806,86 +3818,152 @@ msgstr "Impostazioni salvate" msgid "Unable to save settings" msgstr "Impossibile salvare le impostazioni" -#: bookwyrm/templates/settings/site.html:42 +#: bookwyrm/templates/settings/site.html:47 msgid "Instance Name:" msgstr "Nome dell'istanza:" -#: bookwyrm/templates/settings/site.html:46 +#: bookwyrm/templates/settings/site.html:51 msgid "Tagline:" msgstr "Tagline:" -#: bookwyrm/templates/settings/site.html:50 +#: bookwyrm/templates/settings/site.html:55 msgid "Instance description:" msgstr "Descrizione dell'istanza:" -#: bookwyrm/templates/settings/site.html:54 +#: bookwyrm/templates/settings/site.html:59 msgid "Short description:" msgstr "Breve descrizione:" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:60 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." msgstr "Usato quando l'istanza è visualizzata in anteprima su joinbookwyrm.com. Non supporta HTML o Markdown." -#: bookwyrm/templates/settings/site.html:59 +#: bookwyrm/templates/settings/site.html:64 msgid "Code of conduct:" msgstr "Codice di comportamento:" -#: bookwyrm/templates/settings/site.html:63 +#: bookwyrm/templates/settings/site.html:68 msgid "Privacy Policy:" msgstr "Informativa sulla privacy:" -#: bookwyrm/templates/settings/site.html:75 +#: bookwyrm/templates/settings/site.html:79 +msgid "Images" +msgstr "Immagini" + +#: bookwyrm/templates/settings/site.html:82 msgid "Logo:" msgstr "Logo:" -#: bookwyrm/templates/settings/site.html:79 +#: bookwyrm/templates/settings/site.html:86 msgid "Logo small:" msgstr "Logo piccolo:" -#: bookwyrm/templates/settings/site.html:83 +#: bookwyrm/templates/settings/site.html:90 msgid "Favicon:" msgstr "Favicon:" -#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/site.html:98 +msgid "Default theme:" +msgstr "Tema predefinito:" + +#: bookwyrm/templates/settings/site.html:113 msgid "Support link:" msgstr "Link supporto:" -#: bookwyrm/templates/settings/site.html:99 +#: bookwyrm/templates/settings/site.html:117 msgid "Support title:" msgstr "Titolo supporto:" -#: bookwyrm/templates/settings/site.html:103 +#: bookwyrm/templates/settings/site.html:121 msgid "Admin email:" msgstr "Email amministratore:" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:125 msgid "Additional info:" msgstr "Informazioni aggiuntive:" -#: bookwyrm/templates/settings/site.html:121 +#: bookwyrm/templates/settings/site.html:139 msgid "Allow registration" msgstr "Consenti registrazioni" -#: bookwyrm/templates/settings/site.html:127 +#: bookwyrm/templates/settings/site.html:145 msgid "Allow invite requests" msgstr "Consenti richieste di invito" -#: bookwyrm/templates/settings/site.html:133 +#: bookwyrm/templates/settings/site.html:151 msgid "Require users to confirm email address" msgstr "Richiedi agli utenti per confermare l'indirizzo email" -#: bookwyrm/templates/settings/site.html:135 +#: bookwyrm/templates/settings/site.html:153 msgid "(Recommended if registration is open)" msgstr "(Raccomandato se la registrazione è aperta)" -#: bookwyrm/templates/settings/site.html:138 +#: bookwyrm/templates/settings/site.html:156 msgid "Registration closed text:" msgstr "Registrazioni chiuse:" -#: bookwyrm/templates/settings/site.html:142 +#: bookwyrm/templates/settings/site.html:160 msgid "Invite request text:" msgstr "Testo della richiesta di invito:" +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "Imposta il tema predefinito dell'istanza" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "Successfully added theme" +msgstr "Tema aggiunto con successo" + +#: bookwyrm/templates/settings/themes.html:26 +msgid "How to add a theme" +msgstr "Come aggiungere un tema" + +#: bookwyrm/templates/settings/themes.html:29 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "Copia il file del tema nella directory bookwyrm/static/css/themes sul tuo server dalla riga di comando." + +#: bookwyrm/templates/settings/themes.html:32 +msgid "Run ./bw-dev compilescss." +msgstr "Esegui ./bw-dev compilescss." + +#: bookwyrm/templates/settings/themes.html:35 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "Aggiungere il nome del file utilizzando il modulo sottostante per renderlo disponibile nell'interfaccia dell'applicazione." + +#: bookwyrm/templates/settings/themes.html:42 +#: bookwyrm/templates/settings/themes.html:101 +msgid "Add theme" +msgstr "Aggiungi tema" + +#: bookwyrm/templates/settings/themes.html:48 +msgid "Unable to save theme" +msgstr "Impossibile salvare il tema" + +#: bookwyrm/templates/settings/themes.html:61 +msgid "No available theme files detected" +msgstr "Nessun file di tema disponibile" + +#: bookwyrm/templates/settings/themes.html:69 +#: bookwyrm/templates/settings/themes.html:112 +msgid "Theme name" +msgstr "Nome tema" + +#: bookwyrm/templates/settings/themes.html:79 +msgid "Theme filename" +msgstr "Nome file del tema" + +#: bookwyrm/templates/settings/themes.html:107 +msgid "Available Themes" +msgstr "Temi disponibili" + +#: bookwyrm/templates/settings/themes.html:115 +msgid "File" +msgstr "File" + +#: bookwyrm/templates/settings/themes.html:130 +msgid "Remove theme" +msgstr "Rimuovi tema" + #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32 msgid "Permanently delete user" @@ -4077,10 +4155,6 @@ msgstr "Protocollo:" msgid "Using S3:" msgstr "Utilizzo S3:" -#: bookwyrm/templates/setup/config.html:91 -msgid "Display" -msgstr "Visualizzazione" - #: bookwyrm/templates/setup/config.html:95 msgid "Default interface language:" msgstr "Lingua predefinita dell'interfaccia:" @@ -4138,8 +4212,7 @@ msgid "User profile" msgstr "Profilo utente" #: bookwyrm/templates/shelf/shelf.html:39 -#: bookwyrm/templates/snippets/translated_shelf_name.html:3 -#: bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templatetags/shelf_tags.py:44 bookwyrm/views/shelf/shelf.py:53 msgid "All books" msgstr "Tutti i libri" @@ -4573,8 +4646,13 @@ msgstr "Inizia la lettura" msgid "Want to read" msgstr "Vuoi leggere" -#: bookwyrm/templates/snippets/shelf_selector.html:74 -#: bookwyrm/templates/snippets/shelf_selector.html:86 +#: bookwyrm/templates/snippets/shelf_selector.html:75 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 +#, python-format +msgid "Remove from %(name)s" +msgstr "Rimuovi da %(name)s" + +#: bookwyrm/templates/snippets/shelf_selector.html:88 msgid "Remove from" msgstr "Rimuovi da" @@ -4582,11 +4660,6 @@ msgstr "Rimuovi da" msgid "More shelves" msgstr "Altri scaffali" -#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 -#, python-format -msgid "Remove from %(name)s" -msgstr "Rimuovi da %(name)s" - #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:31 msgid "Finish reading" msgstr "Finito di leggere" @@ -4869,14 +4942,14 @@ msgstr[1] "%(counter)s followers" msgid "%(counter)s following" msgstr "%(counter)s seguiti" -#: bookwyrm/templates/user/user_preview.html:34 +#: bookwyrm/templates/user/user_preview.html:39 #, python-format msgid "%(mutuals_display)s follower you follow" msgid_plural "%(mutuals_display)s followers you follow" msgstr[0] "%(mutuals_display)s follower che segui" msgstr[1] "%(mutuals_display)s followers che segui" -#: bookwyrm/templates/user/user_preview.html:38 +#: bookwyrm/templates/user/user_preview.html:43 msgid "No followers you follow" msgstr "Nessun follower che segui" diff --git a/locale/lt_LT/LC_MESSAGES/django.mo b/locale/lt_LT/LC_MESSAGES/django.mo index b81c74c4d044ab32d8c3def2a582f2e5da0610d3..d05ea5af184fd779c03aaa8e5ecc5f100443d7eb 100644 GIT binary patch delta 21030 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 L+?$m@%SQqL-dg>E delta 21167 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 d4!2-fVrErJzCvDUaY\n" "Language-Team: Lithuanian\n" "Language: lt\n" @@ -21,70 +21,70 @@ msgstr "" msgid "User with this username already exists" msgstr "" -#: bookwyrm/forms.py:252 +#: bookwyrm/forms.py:254 msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "" -#: bookwyrm/forms.py:262 +#: bookwyrm/forms.py:264 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "" -#: bookwyrm/forms.py:401 +#: bookwyrm/forms.py:403 msgid "A user with this email already exists." msgstr "Vartotojas su šiuo el. pašto adresu jau yra." -#: bookwyrm/forms.py:415 +#: bookwyrm/forms.py:417 msgid "One Day" msgstr "Diena" -#: bookwyrm/forms.py:416 +#: bookwyrm/forms.py:418 msgid "One Week" msgstr "Savaitė" -#: bookwyrm/forms.py:417 +#: bookwyrm/forms.py:419 msgid "One Month" msgstr "Mėnuo" -#: bookwyrm/forms.py:418 +#: bookwyrm/forms.py:420 msgid "Does Not Expire" msgstr "Galiojimas nesibaigia" -#: bookwyrm/forms.py:422 +#: bookwyrm/forms.py:424 #, python-brace-format msgid "{i} uses" msgstr "{i} naudoja" -#: bookwyrm/forms.py:423 +#: bookwyrm/forms.py:425 msgid "Unlimited" msgstr "Neribota" -#: bookwyrm/forms.py:525 +#: bookwyrm/forms.py:543 msgid "List Order" msgstr "Kaip pridėta į sąrašą" -#: bookwyrm/forms.py:526 +#: bookwyrm/forms.py:544 msgid "Book Title" msgstr "Knygos antraštė" -#: bookwyrm/forms.py:527 bookwyrm/templates/shelf/shelf.html:155 +#: bookwyrm/forms.py:545 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Įvertinimas" -#: bookwyrm/forms.py:529 bookwyrm/templates/lists/list.html:175 +#: bookwyrm/forms.py:547 bookwyrm/templates/lists/list.html:185 msgid "Sort By" msgstr "Rūšiuoti pagal" -#: bookwyrm/forms.py:533 +#: bookwyrm/forms.py:551 msgid "Ascending" msgstr "Didėjančia tvarka" -#: bookwyrm/forms.py:534 +#: bookwyrm/forms.py:552 msgid "Descending" msgstr "Mažėjančia tvarka" -#: bookwyrm/forms.py:547 +#: bookwyrm/forms.py:565 msgid "Reading finish date cannot be before start date." msgstr "Skaitymo pabaigos data negali būti prieš skaitymo pradžios datą." @@ -97,27 +97,23 @@ msgid "Could not find a match for book" msgstr "Nepavyko rasti tokios knygos" #: bookwyrm/models/announcement.py:11 -msgid "None" -msgstr "" - -#: bookwyrm/models/announcement.py:12 msgid "Primary" msgstr "" -#: bookwyrm/models/announcement.py:13 +#: bookwyrm/models/announcement.py:12 msgid "Success" msgstr "" -#: bookwyrm/models/announcement.py:14 +#: bookwyrm/models/announcement.py:13 #: bookwyrm/templates/settings/invites/manage_invites.html:47 msgid "Link" msgstr "Nuoroda" -#: bookwyrm/models/announcement.py:15 +#: bookwyrm/models/announcement.py:14 msgid "Warning" msgstr "" -#: bookwyrm/models/announcement.py:16 +#: bookwyrm/models/announcement.py:15 msgid "Danger" msgstr "" @@ -168,13 +164,13 @@ msgid "Paperback" msgstr "Knyga minkštais viršeliais" #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "Susijungę" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 -#: bookwyrm/templates/settings/federation/edit_instance.html:44 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 @@ -470,7 +466,7 @@ msgid "Copy address" msgstr "Kopijuoti adresą" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:267 +#: bookwyrm/templates/lists/list.html:277 msgid "Copied!" msgstr "Nukopijuota" @@ -745,12 +741,12 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:124 +#: bookwyrm/templates/preferences/edit_user.html:136 #: bookwyrm/templates/readthrough/readthrough_modal.html:72 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 -#: bookwyrm/templates/settings/federation/edit_instance.html:82 -#: bookwyrm/templates/settings/federation/instance.html:87 -#: bookwyrm/templates/settings/site.html:151 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/site.html:169 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -771,7 +767,7 @@ msgstr "Išsaugoti" #: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/readthrough_modal.html:73 -#: bookwyrm/templates/settings/federation/instance.html:88 +#: bookwyrm/templates/settings/federation/instance.html:106 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Cancel" @@ -889,7 +885,7 @@ msgstr "Pridėti prie sąrašo" #: bookwyrm/templates/book/book.html:370 #: bookwyrm/templates/book/cover_add_modal.html:31 #: bookwyrm/templates/lists/add_item_modal.html:37 -#: bookwyrm/templates/lists/list.html:245 +#: bookwyrm/templates/lists/list.html:255 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -1188,8 +1184,9 @@ msgstr "Būsena" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 -#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/federation/instance.html:112 #: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:118 msgid "Actions" msgstr "Veiksmai" @@ -1680,16 +1677,14 @@ msgid "Add to your books" msgstr "Pridėti prie savo knygų" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:86 -#: bookwyrm/templates/snippets/translated_shelf_name.html:5 -#: bookwyrm/templates/user/user.html:33 +#: bookwyrm/templates/shelf/shelf.html:86 bookwyrm/templates/user/user.html:33 +#: bookwyrm/templatetags/shelf_tags.py:46 msgid "To Read" msgstr "Norimos perskaityti" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:87 -#: bookwyrm/templates/snippets/translated_shelf_name.html:7 -#: bookwyrm/templates/user/user.html:34 +#: bookwyrm/templates/shelf/shelf.html:87 bookwyrm/templates/user/user.html:34 +#: bookwyrm/templatetags/shelf_tags.py:48 msgid "Currently Reading" msgstr "Šiuo metu skaitomos" @@ -1698,8 +1693,7 @@ msgstr "Šiuo metu skaitomos" #: bookwyrm/templates/snippets/shelf_selector.html:47 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/snippets/translated_shelf_name.html:9 -#: bookwyrm/templates/user/user.html:35 +#: bookwyrm/templates/user/user.html:35 bookwyrm/templatetags/shelf_tags.py:50 msgid "Read" msgstr "Perskaitytos" @@ -1708,7 +1702,7 @@ msgid "What are you reading?" msgstr "Ką skaitome?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:203 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:213 msgid "Search for a book" msgstr "Ieškoti knygos" @@ -1728,7 +1722,7 @@ msgstr "Kai pradedate naudotis %(site_name)s, galite pridėti knygų." #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/members.html:15 #: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:54 -#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:207 +#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1744,7 +1738,7 @@ msgid "Popular on %(site_name)s" msgstr "%(site_name)s populiaru" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:220 +#: bookwyrm/templates/lists/list.html:230 msgid "No books found" msgstr "Knygų nerasta" @@ -1900,7 +1894,8 @@ msgstr "Išeiti iš grupės" #: bookwyrm/templates/groups/members.html:54 #: bookwyrm/templates/groups/suggested_users.html:35 #: bookwyrm/templates/snippets/suggested_users.html:31 -#: bookwyrm/templates/user/user_preview.html:36 +#: bookwyrm/templates/user/user_preview.html:33 +#: bookwyrm/templates/user/user_preview.html:41 msgid "Follows you" msgstr "Jus seka" @@ -1960,7 +1955,7 @@ msgid "Privacy setting for imported reviews:" msgstr "Privatumo nustatymai svarbiems atsiliepimams:" #: bookwyrm/templates/import/import.html:59 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:76 msgid "Import" msgstr "Importuoti" @@ -2325,7 +2320,7 @@ msgid "Suggest \"%(title)s\" for this list" msgstr "Siūlyti \"%(title)s\" į šį sąrašą" #: bookwyrm/templates/lists/add_item_modal.html:39 -#: bookwyrm/templates/lists/list.html:247 +#: bookwyrm/templates/lists/list.html:257 msgid "Suggest" msgstr "Siūlyti" @@ -2361,7 +2356,7 @@ msgid "You're all set!" msgstr "Viskas atlikta!" #: bookwyrm/templates/lists/curate.html:45 -#: bookwyrm/templates/lists/list.html:83 +#: bookwyrm/templates/lists/list.html:93 #, python-format msgid "%(username)s says:" msgstr "%(username)s sako:" @@ -2394,7 +2389,7 @@ msgid "on %(site_name)s" msgstr "per %(site_name)s" #: bookwyrm/templates/lists/embed-list.html:27 -#: bookwyrm/templates/lists/list.html:44 +#: bookwyrm/templates/lists/list.html:54 msgid "This list is currently empty" msgstr "Šiuo metu sąrašas tuščias" @@ -2456,7 +2451,7 @@ msgid "Delete list" msgstr "Ištrinti sąrašą" #: bookwyrm/templates/lists/item_notes_field.html:7 -#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 msgid "Notes:" msgstr "Užrašai:" @@ -2464,80 +2459,84 @@ msgstr "Užrašai:" msgid "An optional note that will be displayed with the book." msgstr "Papildomi užrašai, kurie rodomi kartu su knyga." -#: bookwyrm/templates/lists/list.html:36 +#: bookwyrm/templates/lists/list.html:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 msgid "You successfully suggested a book for this list!" msgstr "Sėkmingai pasiūlėte knygą šiam sąrašui!" -#: bookwyrm/templates/lists/list.html:38 +#: bookwyrm/templates/lists/list.html:47 msgid "You successfully added a book to this list!" msgstr "Sėkmingai pridėjote knygą į šį sąrašą!" -#: bookwyrm/templates/lists/list.html:94 +#: bookwyrm/templates/lists/list.html:104 msgid "Edit notes" msgstr "Redaguoti užrašus" -#: bookwyrm/templates/lists/list.html:109 +#: bookwyrm/templates/lists/list.html:119 msgid "Add notes" msgstr "Pridėti užrašus" -#: bookwyrm/templates/lists/list.html:121 +#: bookwyrm/templates/lists/list.html:131 #, python-format msgid "Added by %(username)s" msgstr "Pridėjo %(username)s" -#: bookwyrm/templates/lists/list.html:136 +#: bookwyrm/templates/lists/list.html:146 msgid "List position" msgstr "Sąrašo pozicija" -#: bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/lists/list.html:152 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21 msgid "Set" msgstr "Nustatyti" -#: bookwyrm/templates/lists/list.html:157 +#: bookwyrm/templates/lists/list.html:167 #: bookwyrm/templates/snippets/remove_from_group_button.html:20 msgid "Remove" msgstr "Pašalinti" -#: bookwyrm/templates/lists/list.html:171 -#: bookwyrm/templates/lists/list.html:188 +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 msgid "Sort List" msgstr "Rūšiuoti sąrašą" -#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:191 msgid "Direction" msgstr "Kryptis" -#: bookwyrm/templates/lists/list.html:195 +#: bookwyrm/templates/lists/list.html:205 msgid "Add Books" msgstr "Pridėti knygų" -#: bookwyrm/templates/lists/list.html:197 +#: bookwyrm/templates/lists/list.html:207 msgid "Suggest Books" msgstr "Siūlyti knygų" -#: bookwyrm/templates/lists/list.html:208 +#: bookwyrm/templates/lists/list.html:218 msgid "search" msgstr "paieška" -#: bookwyrm/templates/lists/list.html:214 +#: bookwyrm/templates/lists/list.html:224 msgid "Clear search" msgstr "Išvalyti paiešką" -#: bookwyrm/templates/lists/list.html:219 +#: bookwyrm/templates/lists/list.html:229 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "Pagal paiešką „%(query)s“ knygų nerasta" -#: bookwyrm/templates/lists/list.html:258 +#: bookwyrm/templates/lists/list.html:268 msgid "Embed this list on a website" msgstr "Įdėkite šį sąrašą į tinklalapį" -#: bookwyrm/templates/lists/list.html:266 +#: bookwyrm/templates/lists/list.html:276 msgid "Copy embed code" msgstr "Nukopijuokite kodą įterpimui" -#: bookwyrm/templates/lists/list.html:268 +#: bookwyrm/templates/lists/list.html:278 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s, sąrašą sudarė %(owner)s, per %(site_name)s" @@ -2892,11 +2891,14 @@ msgstr "Paskyra" #: bookwyrm/templates/preferences/edit_user.html:13 #: bookwyrm/templates/preferences/edit_user.html:64 -msgid "Display preferences" -msgstr "Vaizdo nustatymai" +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:77 +#: bookwyrm/templates/setup/config.html:91 +msgid "Display" +msgstr "" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:106 +#: bookwyrm/templates/preferences/edit_user.html:112 msgid "Privacy" msgstr "Privatumas" @@ -2921,11 +2923,19 @@ msgstr "Jūsų paskyra atsiras kataloge ir gali būti msgid "Preferred Timezone: " msgstr "Laiko juosta: " -#: bookwyrm/templates/preferences/edit_user.html:111 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:117 msgid "Manually approve followers" msgstr "Noriu tvirtinti sekėjus" -#: bookwyrm/templates/preferences/edit_user.html:116 +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:128 msgid "Default post privacy:" msgstr "Numatytasis įrašo privatumas:" @@ -3072,7 +3082,7 @@ msgid "Announcement" msgstr "Pranešimas" #: bookwyrm/templates/settings/announcements/announcement.html:16 -#: bookwyrm/templates/settings/federation/instance.html:75 +#: bookwyrm/templates/settings/federation/instance.html:93 #: bookwyrm/templates/snippets/status/status_options.html:25 msgid "Edit" msgstr "Redaguoti" @@ -3369,136 +3379,136 @@ msgstr "Šiuo metu neblokuojamas nė vienas el. pašto domenas" #: 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/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 #: bookwyrm/templates/settings/federation/instance_blocklist.html:3 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 #: bookwyrm/templates/settings/federation/instance_list.html:9 #: bookwyrm/templates/settings/federation/instance_list.html:10 msgid "Add instance" msgstr "Pridėti serverį" -#: bookwyrm/templates/settings/federation/edit_instance.html:7 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:7 -msgid "Back to instance list" -msgstr "Grįžti į serverių sąrašą" - -#: bookwyrm/templates/settings/federation/edit_instance.html:16 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:16 -msgid "Import block list" -msgstr "Importuoti blokuojamų sąrašą" - -#: bookwyrm/templates/settings/federation/edit_instance.html:31 -msgid "Instance:" -msgstr "Serveris:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:40 -#: bookwyrm/templates/settings/federation/instance.html:28 -#: bookwyrm/templates/settings/users/user_info.html:106 -msgid "Status:" -msgstr "Būsena:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:54 -#: bookwyrm/templates/settings/federation/instance.html:22 -#: bookwyrm/templates/settings/users/user_info.html:100 -msgid "Software:" -msgstr "Programinė įranga:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:64 -#: bookwyrm/templates/settings/federation/instance.html:25 -#: bookwyrm/templates/settings/users/user_info.html:103 -msgid "Version:" -msgstr "Versija:" - -#: bookwyrm/templates/settings/federation/instance.html:13 -msgid "Back to list" -msgstr "Atgal į sąrašą" - -#: bookwyrm/templates/settings/federation/instance.html:19 -msgid "Details" -msgstr "Išsami informacija" - -#: bookwyrm/templates/settings/federation/instance.html:35 -#: bookwyrm/templates/user/layout.html:67 -msgid "Activity" -msgstr "Veikla" - -#: bookwyrm/templates/settings/federation/instance.html:38 -msgid "Users:" -msgstr "Nariai:" - -#: bookwyrm/templates/settings/federation/instance.html:41 -#: bookwyrm/templates/settings/federation/instance.html:47 -msgid "View all" -msgstr "Žiūrėti viską" - -#: bookwyrm/templates/settings/federation/instance.html:44 -#: bookwyrm/templates/settings/users/user_info.html:56 -msgid "Reports:" -msgstr "Pranešimai:" - -#: bookwyrm/templates/settings/federation/instance.html:50 -msgid "Followed by us:" -msgstr "Sekame:" - -#: bookwyrm/templates/settings/federation/instance.html:55 -msgid "Followed by them:" -msgstr "Seka:" - -#: bookwyrm/templates/settings/federation/instance.html:60 -msgid "Blocked by us:" -msgstr "Blokuojame:" - -#: bookwyrm/templates/settings/federation/instance.html:72 -#: bookwyrm/templates/settings/users/user_info.html:110 -msgid "Notes" -msgstr "Užrašai" - -#: bookwyrm/templates/settings/federation/instance.html:79 -msgid "No notes" -msgstr "Užrašų nėra" - -#: bookwyrm/templates/settings/federation/instance.html:98 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Blokuoti" - -#: bookwyrm/templates/settings/federation/instance.html:99 -msgid "All users from this instance will be deactivated." -msgstr "Visi šio serverio nariai bus deaktyvuoti." - -#: bookwyrm/templates/settings/federation/instance.html:104 -#: bookwyrm/templates/snippets/block_button.html:10 -msgid "Un-block" -msgstr "Atblokuoti" - -#: bookwyrm/templates/settings/federation/instance.html:105 -msgid "All users from this instance will be re-activated." -msgstr "Visi šio serverio nariai bus vėl aktyvuoti." - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 -msgid "Import Blocklist" -msgstr "Importuoti blokuojamų sąrašą" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:26 -#: bookwyrm/templates/snippets/goal_progress.html:7 -msgid "Success!" -msgstr "Valio!" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:30 -msgid "Successfully blocked:" -msgstr "Sėkmingai užblokuota:" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 -msgid "Failed:" -msgstr "Nepavyko:" - +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 #: bookwyrm/templates/settings/federation/instance_list.html:3 #: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:47 msgid "Federated Instances" msgstr "Susijungę serveriai" +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "Importuoti blokuojamų sąrašą" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "Serveris:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "Būsena:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "Programinė įranga:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "Versija:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "Išsami informacija" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:67 +msgid "Activity" +msgstr "Veikla" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "Nariai:" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "Žiūrėti viską" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:56 +msgid "Reports:" +msgstr "Pranešimai:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "Sekame:" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "Seka:" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "Blokuojame:" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Notes" +msgstr "Užrašai" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "Užrašų nėra" + +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Blokuoti" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "Visi šio serverio nariai bus deaktyvuoti." + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "Atblokuoti" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "Visi šio serverio nariai bus vėl aktyvuoti." + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "Importuoti blokuojamų sąrašą" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "Valio!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "Sėkmingai užblokuota:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "Nepavyko:" + #: bookwyrm/templates/settings/federation/instance_list.html:32 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" @@ -3683,6 +3693,13 @@ msgstr "Serverio nustatymai" msgid "Site Settings" msgstr "Puslapio nustatymai" +#: bookwyrm/templates/settings/layout.html:91 +#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format msgid "Set display name for %(url)s" @@ -3808,22 +3825,17 @@ msgid "No reports found." msgstr "Pranešimų nerasta." #: bookwyrm/templates/settings/site.html:10 -#: bookwyrm/templates/settings/site.html:39 +#: bookwyrm/templates/settings/site.html:44 msgid "Instance Info" msgstr "Serverio informacija" -#: bookwyrm/templates/settings/site.html:11 -#: bookwyrm/templates/settings/site.html:72 -msgid "Images" -msgstr "Paveikslėliai" - #: bookwyrm/templates/settings/site.html:12 -#: bookwyrm/templates/settings/site.html:92 +#: bookwyrm/templates/settings/site.html:110 msgid "Footer Content" msgstr "Poraštės turinys" #: bookwyrm/templates/settings/site.html:13 -#: bookwyrm/templates/settings/site.html:116 +#: bookwyrm/templates/settings/site.html:134 msgid "Registration" msgstr "Registracija" @@ -3835,86 +3847,152 @@ msgstr "" msgid "Unable to save settings" msgstr "" -#: bookwyrm/templates/settings/site.html:42 +#: bookwyrm/templates/settings/site.html:47 msgid "Instance Name:" msgstr "Serverio pavadinimas:" -#: bookwyrm/templates/settings/site.html:46 +#: bookwyrm/templates/settings/site.html:51 msgid "Tagline:" msgstr "Žymos linija:" -#: bookwyrm/templates/settings/site.html:50 +#: bookwyrm/templates/settings/site.html:55 msgid "Instance description:" msgstr "Serverio aprašymas:" -#: bookwyrm/templates/settings/site.html:54 +#: bookwyrm/templates/settings/site.html:59 msgid "Short description:" msgstr "Trumpas aprašymas:" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:60 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." msgstr "Naudota, kai turinys buvo peržiūrimas per joinbookwyrm.com. Nepalaiko HTML arba „Markdown“." -#: bookwyrm/templates/settings/site.html:59 +#: bookwyrm/templates/settings/site.html:64 msgid "Code of conduct:" msgstr "Elgesio kodeksas:" -#: bookwyrm/templates/settings/site.html:63 +#: bookwyrm/templates/settings/site.html:68 msgid "Privacy Policy:" msgstr "Privatumo politika:" -#: bookwyrm/templates/settings/site.html:75 +#: bookwyrm/templates/settings/site.html:79 +msgid "Images" +msgstr "Paveikslėliai" + +#: bookwyrm/templates/settings/site.html:82 msgid "Logo:" msgstr "Logotipas:" -#: bookwyrm/templates/settings/site.html:79 +#: bookwyrm/templates/settings/site.html:86 msgid "Logo small:" msgstr "Mažas logotipas:" -#: bookwyrm/templates/settings/site.html:83 +#: bookwyrm/templates/settings/site.html:90 msgid "Favicon:" msgstr "Puslapio ikonėlė:" -#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/site.html:98 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:113 msgid "Support link:" msgstr "Paramos nuoroda:" -#: bookwyrm/templates/settings/site.html:99 +#: bookwyrm/templates/settings/site.html:117 msgid "Support title:" msgstr "Paramos pavadinimas:" -#: bookwyrm/templates/settings/site.html:103 +#: bookwyrm/templates/settings/site.html:121 msgid "Admin email:" msgstr "Administratoriaus el. paštas:" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:125 msgid "Additional info:" msgstr "Papildoma informacija:" -#: bookwyrm/templates/settings/site.html:121 +#: bookwyrm/templates/settings/site.html:139 msgid "Allow registration" msgstr "Leisti registruotis" -#: bookwyrm/templates/settings/site.html:127 +#: bookwyrm/templates/settings/site.html:145 msgid "Allow invite requests" msgstr "Leisti prašyti kvietimų" -#: bookwyrm/templates/settings/site.html:133 +#: bookwyrm/templates/settings/site.html:151 msgid "Require users to confirm email address" msgstr "Reikalauti el. pašto patvirtinimo" -#: bookwyrm/templates/settings/site.html:135 +#: bookwyrm/templates/settings/site.html:153 msgid "(Recommended if registration is open)" msgstr "(Rekomenduojama, jei leidžiama registruotis)" -#: bookwyrm/templates/settings/site.html:138 +#: bookwyrm/templates/settings/site.html:156 msgid "Registration closed text:" msgstr "Užrakintos registracijos tekstas:" -#: bookwyrm/templates/settings/site.html:142 +#: bookwyrm/templates/settings/site.html:160 msgid "Invite request text:" msgstr "Kvietimo prašymo tekstas:" +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:26 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:29 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:32 +msgid "Run ./bw-dev compilescss." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:42 +#: bookwyrm/templates/settings/themes.html:101 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:48 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:61 +msgid "No available theme files detected" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:69 +#: bookwyrm/templates/settings/themes.html:112 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:79 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:107 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:115 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:130 +msgid "Remove theme" +msgstr "" + #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32 msgid "Permanently delete user" @@ -4106,10 +4184,6 @@ msgstr "" msgid "Using S3:" msgstr "" -#: bookwyrm/templates/setup/config.html:91 -msgid "Display" -msgstr "" - #: bookwyrm/templates/setup/config.html:95 msgid "Default interface language:" msgstr "" @@ -4167,8 +4241,7 @@ msgid "User profile" msgstr "Nario paskyra" #: bookwyrm/templates/shelf/shelf.html:39 -#: bookwyrm/templates/snippets/translated_shelf_name.html:3 -#: bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templatetags/shelf_tags.py:44 bookwyrm/views/shelf/shelf.py:53 msgid "All books" msgstr "Visos knygos" @@ -4616,8 +4689,13 @@ msgstr "Pradėti skaityti" msgid "Want to read" msgstr "Noriu perskaityti" -#: bookwyrm/templates/snippets/shelf_selector.html:74 -#: bookwyrm/templates/snippets/shelf_selector.html:86 +#: bookwyrm/templates/snippets/shelf_selector.html:75 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 +#, python-format +msgid "Remove from %(name)s" +msgstr "Pašalinti iš %(name)s" + +#: bookwyrm/templates/snippets/shelf_selector.html:88 msgid "Remove from" msgstr "Panaikinti iš" @@ -4625,11 +4703,6 @@ msgstr "Panaikinti iš" msgid "More shelves" msgstr "Daugiau lentynų" -#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 -#, python-format -msgid "Remove from %(name)s" -msgstr "Pašalinti iš %(name)s" - #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:31 msgid "Finish reading" msgstr "Baigti skaityti" @@ -4914,7 +4987,7 @@ msgstr[3] "%(counter)s sekėjai" msgid "%(counter)s following" msgstr "%(counter)s seka" -#: bookwyrm/templates/user/user_preview.html:34 +#: bookwyrm/templates/user/user_preview.html:39 #, python-format msgid "%(mutuals_display)s follower you follow" msgid_plural "%(mutuals_display)s followers you follow" @@ -4923,7 +4996,7 @@ msgstr[1] "%(mutuals_display)s sekėjai, kuriuos sekate jūs" msgstr[2] "%(mutuals_display)s sekėjai, kuriuos sekate jūs" msgstr[3] "%(mutuals_display)s sekėjai, kuriuos sekate jūs" -#: bookwyrm/templates/user/user_preview.html:38 +#: bookwyrm/templates/user/user_preview.html:43 msgid "No followers you follow" msgstr "Jūs kartu nieko nesekate" diff --git a/locale/no_NO/LC_MESSAGES/django.mo b/locale/no_NO/LC_MESSAGES/django.mo index 79963592e1c75896e8619391813fe4c67cc8f15d..97e81d11d44590e10e50b3cefb248244ad231eb4 100644 GIT binary patch delta 21030 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 Jr@nIZ0{~0K8HNA= delta 21162 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 z\n" "Language-Team: Norwegian\n" "Language: no\n" @@ -21,70 +21,70 @@ msgstr "" msgid "User with this username already exists" msgstr "" -#: bookwyrm/forms.py:252 +#: bookwyrm/forms.py:254 msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "" -#: bookwyrm/forms.py:262 +#: bookwyrm/forms.py:264 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "" -#: bookwyrm/forms.py:401 +#: bookwyrm/forms.py:403 msgid "A user with this email already exists." msgstr "Den e-postadressen er allerede registrert." -#: bookwyrm/forms.py:415 +#: bookwyrm/forms.py:417 msgid "One Day" msgstr "Én dag" -#: bookwyrm/forms.py:416 +#: bookwyrm/forms.py:418 msgid "One Week" msgstr "Én uke" -#: bookwyrm/forms.py:417 +#: bookwyrm/forms.py:419 msgid "One Month" msgstr "Én måned" -#: bookwyrm/forms.py:418 +#: bookwyrm/forms.py:420 msgid "Does Not Expire" msgstr "Uendelig" -#: bookwyrm/forms.py:422 +#: bookwyrm/forms.py:424 #, python-brace-format msgid "{i} uses" msgstr "{i} ganger" -#: bookwyrm/forms.py:423 +#: bookwyrm/forms.py:425 msgid "Unlimited" msgstr "Ubegrenset" -#: bookwyrm/forms.py:525 +#: bookwyrm/forms.py:543 msgid "List Order" msgstr "Liste rekkefølge" -#: bookwyrm/forms.py:526 +#: bookwyrm/forms.py:544 msgid "Book Title" msgstr "Boktittel" -#: bookwyrm/forms.py:527 bookwyrm/templates/shelf/shelf.html:155 +#: bookwyrm/forms.py:545 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Vurdering" -#: bookwyrm/forms.py:529 bookwyrm/templates/lists/list.html:175 +#: bookwyrm/forms.py:547 bookwyrm/templates/lists/list.html:185 msgid "Sort By" msgstr "Sorter etter" -#: bookwyrm/forms.py:533 +#: bookwyrm/forms.py:551 msgid "Ascending" msgstr "Stigende" -#: bookwyrm/forms.py:534 +#: bookwyrm/forms.py:552 msgid "Descending" msgstr "Synkende" -#: bookwyrm/forms.py:547 +#: bookwyrm/forms.py:565 msgid "Reading finish date cannot be before start date." msgstr "Sluttdato kan ikke være før startdato." @@ -97,27 +97,23 @@ msgid "Could not find a match for book" msgstr "Fant ikke den boka" #: bookwyrm/models/announcement.py:11 -msgid "None" -msgstr "" - -#: bookwyrm/models/announcement.py:12 msgid "Primary" msgstr "" -#: bookwyrm/models/announcement.py:13 +#: bookwyrm/models/announcement.py:12 msgid "Success" msgstr "" -#: bookwyrm/models/announcement.py:14 +#: bookwyrm/models/announcement.py:13 #: bookwyrm/templates/settings/invites/manage_invites.html:47 msgid "Link" msgstr "Lenke" -#: bookwyrm/models/announcement.py:15 +#: bookwyrm/models/announcement.py:14 msgid "Warning" msgstr "" -#: bookwyrm/models/announcement.py:16 +#: bookwyrm/models/announcement.py:15 msgid "Danger" msgstr "" @@ -168,13 +164,13 @@ msgid "Paperback" msgstr "Paperback" #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "Føderert" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 -#: bookwyrm/templates/settings/federation/edit_instance.html:44 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 @@ -470,7 +466,7 @@ msgid "Copy address" msgstr "Kopiér adresse" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:267 +#: bookwyrm/templates/lists/list.html:277 msgid "Copied!" msgstr "Kopiert!" @@ -737,12 +733,12 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:124 +#: bookwyrm/templates/preferences/edit_user.html:136 #: bookwyrm/templates/readthrough/readthrough_modal.html:72 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 -#: bookwyrm/templates/settings/federation/edit_instance.html:82 -#: bookwyrm/templates/settings/federation/instance.html:87 -#: bookwyrm/templates/settings/site.html:151 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/site.html:169 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -763,7 +759,7 @@ msgstr "Lagre" #: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/readthrough_modal.html:73 -#: bookwyrm/templates/settings/federation/instance.html:88 +#: bookwyrm/templates/settings/federation/instance.html:106 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Cancel" @@ -879,7 +875,7 @@ msgstr "Legg til i liste" #: bookwyrm/templates/book/book.html:370 #: bookwyrm/templates/book/cover_add_modal.html:31 #: bookwyrm/templates/lists/add_item_modal.html:37 -#: bookwyrm/templates/lists/list.html:245 +#: bookwyrm/templates/lists/list.html:255 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -1179,8 +1175,9 @@ msgstr "Status" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 -#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/federation/instance.html:112 #: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:118 msgid "Actions" msgstr "Handlinger" @@ -1667,16 +1664,14 @@ msgid "Add to your books" msgstr "Legg til i bøkene dine" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:86 -#: bookwyrm/templates/snippets/translated_shelf_name.html:5 -#: bookwyrm/templates/user/user.html:33 +#: bookwyrm/templates/shelf/shelf.html:86 bookwyrm/templates/user/user.html:33 +#: bookwyrm/templatetags/shelf_tags.py:46 msgid "To Read" msgstr "Å lese" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:87 -#: bookwyrm/templates/snippets/translated_shelf_name.html:7 -#: bookwyrm/templates/user/user.html:34 +#: bookwyrm/templates/shelf/shelf.html:87 bookwyrm/templates/user/user.html:34 +#: bookwyrm/templatetags/shelf_tags.py:48 msgid "Currently Reading" msgstr "Leser nå" @@ -1685,8 +1680,7 @@ msgstr "Leser nå" #: bookwyrm/templates/snippets/shelf_selector.html:47 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/snippets/translated_shelf_name.html:9 -#: bookwyrm/templates/user/user.html:35 +#: bookwyrm/templates/user/user.html:35 bookwyrm/templatetags/shelf_tags.py:50 msgid "Read" msgstr "Lest" @@ -1695,7 +1689,7 @@ msgid "What are you reading?" msgstr "Hva er det du leser nå?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:203 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:213 msgid "Search for a book" msgstr "Søk etter en bok" @@ -1715,7 +1709,7 @@ msgstr "Du kan legge til bøker når du begynner å bruke %(site_name)s." #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/members.html:15 #: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:54 -#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:207 +#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1731,7 +1725,7 @@ msgid "Popular on %(site_name)s" msgstr "Populært på %(site_name)s" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:220 +#: bookwyrm/templates/lists/list.html:230 msgid "No books found" msgstr "Ingen bøker funnet" @@ -1887,7 +1881,8 @@ msgstr "Forlat gruppa" #: bookwyrm/templates/groups/members.html:54 #: bookwyrm/templates/groups/suggested_users.html:35 #: bookwyrm/templates/snippets/suggested_users.html:31 -#: bookwyrm/templates/user/user_preview.html:36 +#: bookwyrm/templates/user/user_preview.html:33 +#: bookwyrm/templates/user/user_preview.html:41 msgid "Follows you" msgstr "Følger deg" @@ -1943,7 +1938,7 @@ msgid "Privacy setting for imported reviews:" msgstr "Personverninnstilling for importerte anmeldelser:" #: bookwyrm/templates/import/import.html:59 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:76 msgid "Import" msgstr "Importér" @@ -2304,7 +2299,7 @@ msgid "Suggest \"%(title)s\" for this list" msgstr "Foreslå \"%(title)s\" for denne lista" #: bookwyrm/templates/lists/add_item_modal.html:39 -#: bookwyrm/templates/lists/list.html:247 +#: bookwyrm/templates/lists/list.html:257 msgid "Suggest" msgstr "Foreslå" @@ -2340,7 +2335,7 @@ msgid "You're all set!" msgstr "Nå er du klar!" #: bookwyrm/templates/lists/curate.html:45 -#: bookwyrm/templates/lists/list.html:83 +#: bookwyrm/templates/lists/list.html:93 #, python-format msgid "%(username)s says:" msgstr "%(username)s sier:" @@ -2373,7 +2368,7 @@ msgid "on %(site_name)s" msgstr "på %(site_name)s" #: bookwyrm/templates/lists/embed-list.html:27 -#: bookwyrm/templates/lists/list.html:44 +#: bookwyrm/templates/lists/list.html:54 msgid "This list is currently empty" msgstr "Denne lista er for tida tom" @@ -2435,7 +2430,7 @@ msgid "Delete list" msgstr "Slett liste" #: bookwyrm/templates/lists/item_notes_field.html:7 -#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 msgid "Notes:" msgstr "Notater:" @@ -2443,80 +2438,84 @@ msgstr "Notater:" msgid "An optional note that will be displayed with the book." msgstr "En valgfri merknad som vil vises sammen med boken." -#: bookwyrm/templates/lists/list.html:36 +#: bookwyrm/templates/lists/list.html:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 msgid "You successfully suggested a book for this list!" msgstr "Du har nå foreslått en bok for denne lista!" -#: bookwyrm/templates/lists/list.html:38 +#: bookwyrm/templates/lists/list.html:47 msgid "You successfully added a book to this list!" msgstr "Du har nå lagt til ei bok i denne lista!" -#: bookwyrm/templates/lists/list.html:94 +#: bookwyrm/templates/lists/list.html:104 msgid "Edit notes" msgstr "Rediger merknader" -#: bookwyrm/templates/lists/list.html:109 +#: bookwyrm/templates/lists/list.html:119 msgid "Add notes" msgstr "Legg til merknader" -#: bookwyrm/templates/lists/list.html:121 +#: bookwyrm/templates/lists/list.html:131 #, python-format msgid "Added by %(username)s" msgstr "Lagt til av %(username)s" -#: bookwyrm/templates/lists/list.html:136 +#: bookwyrm/templates/lists/list.html:146 msgid "List position" msgstr "Listeposisjon" -#: bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/lists/list.html:152 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21 msgid "Set" msgstr "Bruk" -#: bookwyrm/templates/lists/list.html:157 +#: bookwyrm/templates/lists/list.html:167 #: bookwyrm/templates/snippets/remove_from_group_button.html:20 msgid "Remove" msgstr "Fjern" -#: bookwyrm/templates/lists/list.html:171 -#: bookwyrm/templates/lists/list.html:188 +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 msgid "Sort List" msgstr "Sorter liste" -#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:191 msgid "Direction" msgstr "Retning" -#: bookwyrm/templates/lists/list.html:195 +#: bookwyrm/templates/lists/list.html:205 msgid "Add Books" msgstr "Legg til bøker" -#: bookwyrm/templates/lists/list.html:197 +#: bookwyrm/templates/lists/list.html:207 msgid "Suggest Books" msgstr "Foreslå bøker" -#: bookwyrm/templates/lists/list.html:208 +#: bookwyrm/templates/lists/list.html:218 msgid "search" msgstr "søk" -#: bookwyrm/templates/lists/list.html:214 +#: bookwyrm/templates/lists/list.html:224 msgid "Clear search" msgstr "Nullstill søk" -#: bookwyrm/templates/lists/list.html:219 +#: bookwyrm/templates/lists/list.html:229 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "Ingen bøker funnet for søket\"%(query)s\"" -#: bookwyrm/templates/lists/list.html:258 +#: bookwyrm/templates/lists/list.html:268 msgid "Embed this list on a website" msgstr "Legg denne lista inn på et nettsted" -#: bookwyrm/templates/lists/list.html:266 +#: bookwyrm/templates/lists/list.html:276 msgid "Copy embed code" msgstr "Kopier kode som legger inn lista" -#: bookwyrm/templates/lists/list.html:268 +#: bookwyrm/templates/lists/list.html:278 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s, en liste av %(owner)s på %(site_name)s" @@ -2871,11 +2870,14 @@ msgstr "Profil" #: bookwyrm/templates/preferences/edit_user.html:13 #: bookwyrm/templates/preferences/edit_user.html:64 -msgid "Display preferences" -msgstr "Visningsinstillinger" +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:77 +#: bookwyrm/templates/setup/config.html:91 +msgid "Display" +msgstr "" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:106 +#: bookwyrm/templates/preferences/edit_user.html:112 msgid "Privacy" msgstr "Personvern" @@ -2900,11 +2902,19 @@ msgstr "Kontoen din vil vises i e katalogen, og kan bli msgid "Preferred Timezone: " msgstr "Foretrukket tidssone: " -#: bookwyrm/templates/preferences/edit_user.html:111 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:117 msgid "Manually approve followers" msgstr "Godkjenn følgere manuelt" -#: bookwyrm/templates/preferences/edit_user.html:116 +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:128 msgid "Default post privacy:" msgstr "Standard tilgangsnivå på innlegg:" @@ -3051,7 +3061,7 @@ msgid "Announcement" msgstr "Kunngjøring" #: bookwyrm/templates/settings/announcements/announcement.html:16 -#: bookwyrm/templates/settings/federation/instance.html:75 +#: bookwyrm/templates/settings/federation/instance.html:93 #: bookwyrm/templates/snippets/status/status_options.html:25 msgid "Edit" msgstr "Rediger" @@ -3340,136 +3350,136 @@ msgstr "Ingen e-postdomener er for øyeblikket blokkert" #: 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/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 #: bookwyrm/templates/settings/federation/instance_blocklist.html:3 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 #: bookwyrm/templates/settings/federation/instance_list.html:9 #: bookwyrm/templates/settings/federation/instance_list.html:10 msgid "Add instance" msgstr "Legg til instans" -#: bookwyrm/templates/settings/federation/edit_instance.html:7 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:7 -msgid "Back to instance list" -msgstr "Tilbake til instanslista" - -#: bookwyrm/templates/settings/federation/edit_instance.html:16 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:16 -msgid "Import block list" -msgstr "Importér blokkeringsliste" - -#: bookwyrm/templates/settings/federation/edit_instance.html:31 -msgid "Instance:" -msgstr "Instans:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:40 -#: 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:54 -#: bookwyrm/templates/settings/federation/instance.html:22 -#: bookwyrm/templates/settings/users/user_info.html:100 -msgid "Software:" -msgstr "Programvare:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:64 -#: bookwyrm/templates/settings/federation/instance.html:25 -#: bookwyrm/templates/settings/users/user_info.html:103 -msgid "Version:" -msgstr "Versjon:" - -#: bookwyrm/templates/settings/federation/instance.html:13 -msgid "Back to list" -msgstr "Tilbake til lista" - -#: bookwyrm/templates/settings/federation/instance.html:19 -msgid "Details" -msgstr "Detaljer" - -#: bookwyrm/templates/settings/federation/instance.html:35 -#: bookwyrm/templates/user/layout.html:67 -msgid "Activity" -msgstr "Aktivitet" - -#: bookwyrm/templates/settings/federation/instance.html:38 -msgid "Users:" -msgstr "Medlemmer:" - -#: bookwyrm/templates/settings/federation/instance.html:41 -#: bookwyrm/templates/settings/federation/instance.html:47 -msgid "View all" -msgstr "Vis alle" - -#: bookwyrm/templates/settings/federation/instance.html:44 -#: bookwyrm/templates/settings/users/user_info.html:56 -msgid "Reports:" -msgstr "Rapporter:" - -#: bookwyrm/templates/settings/federation/instance.html:50 -msgid "Followed by us:" -msgstr "Fulgt av oss:" - -#: bookwyrm/templates/settings/federation/instance.html:55 -msgid "Followed by them:" -msgstr "Fulgt av dem:" - -#: bookwyrm/templates/settings/federation/instance.html:60 -msgid "Blocked by us:" -msgstr "Blokkert av oss:" - -#: bookwyrm/templates/settings/federation/instance.html:72 -#: bookwyrm/templates/settings/users/user_info.html:110 -msgid "Notes" -msgstr "Notater" - -#: bookwyrm/templates/settings/federation/instance.html:79 -msgid "No notes" -msgstr "Ingen notater" - -#: bookwyrm/templates/settings/federation/instance.html:98 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Blokkér" - -#: bookwyrm/templates/settings/federation/instance.html:99 -msgid "All users from this instance will be deactivated." -msgstr "Alle medlemmer fra denne instansen blir deaktivert." - -#: bookwyrm/templates/settings/federation/instance.html:104 -#: bookwyrm/templates/snippets/block_button.html:10 -msgid "Un-block" -msgstr "Fjern blokkering" - -#: bookwyrm/templates/settings/federation/instance.html:105 -msgid "All users from this instance will be re-activated." -msgstr "Alle medlemmer fra denne instansen blir reaktivert." - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 -msgid "Import Blocklist" -msgstr "Importér blokkeringsliste" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:26 -#: bookwyrm/templates/snippets/goal_progress.html:7 -msgid "Success!" -msgstr "Suksess!" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:30 -msgid "Successfully blocked:" -msgstr "Klarte å blokkere:" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 -msgid "Failed:" -msgstr "Mislyktes:" - +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 #: bookwyrm/templates/settings/federation/instance_list.html:3 #: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:47 msgid "Federated Instances" msgstr "Føderte instanser" +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "Importér blokkeringsliste" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "Instans:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "Status:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "Programvare:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "Versjon:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "Detaljer" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:67 +msgid "Activity" +msgstr "Aktivitet" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "Medlemmer:" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "Vis alle" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:56 +msgid "Reports:" +msgstr "Rapporter:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "Fulgt av oss:" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "Fulgt av dem:" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "Blokkert av oss:" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Notes" +msgstr "Notater" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "Ingen notater" + +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Blokkér" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "Alle medlemmer fra denne instansen blir deaktivert." + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "Fjern blokkering" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "Alle medlemmer fra denne instansen blir reaktivert." + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "Importér blokkeringsliste" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "Suksess!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "Klarte å blokkere:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "Mislyktes:" + #: bookwyrm/templates/settings/federation/instance_list.html:32 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" @@ -3654,6 +3664,13 @@ msgstr "Instansdetaljer" msgid "Site Settings" msgstr "Sideinnstillinger" +#: bookwyrm/templates/settings/layout.html:91 +#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format msgid "Set display name for %(url)s" @@ -3779,22 +3796,17 @@ msgid "No reports found." msgstr "Ingen rapporter funnet." #: bookwyrm/templates/settings/site.html:10 -#: bookwyrm/templates/settings/site.html:39 +#: bookwyrm/templates/settings/site.html:44 msgid "Instance Info" msgstr "Instansinformasjon" -#: bookwyrm/templates/settings/site.html:11 -#: bookwyrm/templates/settings/site.html:72 -msgid "Images" -msgstr "Bilder" - #: bookwyrm/templates/settings/site.html:12 -#: bookwyrm/templates/settings/site.html:92 +#: bookwyrm/templates/settings/site.html:110 msgid "Footer Content" msgstr "Bunntekst Innhold" #: bookwyrm/templates/settings/site.html:13 -#: bookwyrm/templates/settings/site.html:116 +#: bookwyrm/templates/settings/site.html:134 msgid "Registration" msgstr "Registrering" @@ -3806,86 +3818,152 @@ msgstr "" msgid "Unable to save settings" msgstr "" -#: bookwyrm/templates/settings/site.html:42 +#: bookwyrm/templates/settings/site.html:47 msgid "Instance Name:" msgstr "Instansnavn:" -#: bookwyrm/templates/settings/site.html:46 +#: bookwyrm/templates/settings/site.html:51 msgid "Tagline:" msgstr "Slagord:" -#: bookwyrm/templates/settings/site.html:50 +#: bookwyrm/templates/settings/site.html:55 msgid "Instance description:" msgstr "Instansbeskrivelse:" -#: bookwyrm/templates/settings/site.html:54 +#: bookwyrm/templates/settings/site.html:59 msgid "Short description:" msgstr "Kort beskrivelse:" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:60 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." msgstr "Brukes når instansen blir forhåndsvist på joinbookwyrm.com. Støtter ikke HTML eller Markdown." -#: bookwyrm/templates/settings/site.html:59 +#: bookwyrm/templates/settings/site.html:64 msgid "Code of conduct:" msgstr "Atferdsregler:" -#: bookwyrm/templates/settings/site.html:63 +#: bookwyrm/templates/settings/site.html:68 msgid "Privacy Policy:" msgstr "Personvernregler:" -#: bookwyrm/templates/settings/site.html:75 +#: bookwyrm/templates/settings/site.html:79 +msgid "Images" +msgstr "Bilder" + +#: bookwyrm/templates/settings/site.html:82 msgid "Logo:" msgstr "Logo:" -#: bookwyrm/templates/settings/site.html:79 +#: bookwyrm/templates/settings/site.html:86 msgid "Logo small:" msgstr "Logo liten:" -#: bookwyrm/templates/settings/site.html:83 +#: bookwyrm/templates/settings/site.html:90 msgid "Favicon:" msgstr "Favicon:" -#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/site.html:98 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:113 msgid "Support link:" msgstr "Lenke til brukerstøtte:" -#: bookwyrm/templates/settings/site.html:99 +#: bookwyrm/templates/settings/site.html:117 msgid "Support title:" msgstr "Tittel på brukerstøtte:" -#: bookwyrm/templates/settings/site.html:103 +#: bookwyrm/templates/settings/site.html:121 msgid "Admin email:" msgstr "Admin e-post:" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:125 msgid "Additional info:" msgstr "Ytterligere info:" -#: bookwyrm/templates/settings/site.html:121 +#: bookwyrm/templates/settings/site.html:139 msgid "Allow registration" msgstr "Tillat registrering" -#: bookwyrm/templates/settings/site.html:127 +#: bookwyrm/templates/settings/site.html:145 msgid "Allow invite requests" msgstr "Tillat invitasjonsforespørsler" -#: bookwyrm/templates/settings/site.html:133 +#: bookwyrm/templates/settings/site.html:151 msgid "Require users to confirm email address" msgstr "Medlemmer må bekrefte e-postadresse" -#: bookwyrm/templates/settings/site.html:135 +#: bookwyrm/templates/settings/site.html:153 msgid "(Recommended if registration is open)" msgstr "(anbefales for åpen registrering)" -#: bookwyrm/templates/settings/site.html:138 +#: bookwyrm/templates/settings/site.html:156 msgid "Registration closed text:" msgstr "Registrering lukket tekst:" -#: bookwyrm/templates/settings/site.html:142 +#: bookwyrm/templates/settings/site.html:160 msgid "Invite request text:" msgstr "Invitasjonsforespørsel tekst:" +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:26 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:29 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:32 +msgid "Run ./bw-dev compilescss." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:42 +#: bookwyrm/templates/settings/themes.html:101 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:48 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:61 +msgid "No available theme files detected" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:69 +#: bookwyrm/templates/settings/themes.html:112 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:79 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:107 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:115 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:130 +msgid "Remove theme" +msgstr "" + #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32 msgid "Permanently delete user" @@ -4077,10 +4155,6 @@ msgstr "" msgid "Using S3:" msgstr "" -#: bookwyrm/templates/setup/config.html:91 -msgid "Display" -msgstr "" - #: bookwyrm/templates/setup/config.html:95 msgid "Default interface language:" msgstr "" @@ -4138,8 +4212,7 @@ msgid "User profile" msgstr "Brukerprofil" #: bookwyrm/templates/shelf/shelf.html:39 -#: bookwyrm/templates/snippets/translated_shelf_name.html:3 -#: bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templatetags/shelf_tags.py:44 bookwyrm/views/shelf/shelf.py:53 msgid "All books" msgstr "Alle bøker" @@ -4573,8 +4646,13 @@ msgstr "Begynn å lese" msgid "Want to read" msgstr "Ønsker å lese" -#: bookwyrm/templates/snippets/shelf_selector.html:74 -#: bookwyrm/templates/snippets/shelf_selector.html:86 +#: bookwyrm/templates/snippets/shelf_selector.html:75 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 +#, python-format +msgid "Remove from %(name)s" +msgstr "Fjern fra %(name)s" + +#: bookwyrm/templates/snippets/shelf_selector.html:88 msgid "Remove from" msgstr "Fjern fra" @@ -4582,11 +4660,6 @@ msgstr "Fjern fra" msgid "More shelves" msgstr "Flere hyller" -#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 -#, python-format -msgid "Remove from %(name)s" -msgstr "Fjern fra %(name)s" - #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:31 msgid "Finish reading" msgstr "Fullfør lesing" @@ -4869,14 +4942,14 @@ msgstr[1] "%(counter)s følgere" msgid "%(counter)s following" msgstr "%(counter)s følger" -#: bookwyrm/templates/user/user_preview.html:34 +#: bookwyrm/templates/user/user_preview.html:39 #, python-format msgid "%(mutuals_display)s follower you follow" msgid_plural "%(mutuals_display)s followers you follow" msgstr[0] "%(mutuals_display)s følger du følger" msgstr[1] "%(mutuals_display)s følgere du følger" -#: bookwyrm/templates/user/user_preview.html:38 +#: bookwyrm/templates/user/user_preview.html:43 msgid "No followers you follow" msgstr "Ingen følgere du følger" diff --git a/locale/pt_BR/LC_MESSAGES/django.mo b/locale/pt_BR/LC_MESSAGES/django.mo index ea8ea0367851cfe6df554afcc50682acedce9d44..ef4929f88c44dedad938ff601db128dccc37a28d 100644 GIT binary patch delta 24190 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

FREb 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 YTntHK#fdp(iA4&KWU$@aijhqL0IbX*~BEuON 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\n" "Language-Team: Portuguese, Brazilian\n" "Language: pt\n" @@ -21,70 +21,70 @@ msgstr "" msgid "User with this username already exists" msgstr "Um usuário com este nome já existe" -#: bookwyrm/forms.py:252 +#: bookwyrm/forms.py:254 msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Este domínio está bloqueado. Entre em contato com a administração se você acha que isso é um engano." -#: bookwyrm/forms.py:262 +#: bookwyrm/forms.py:264 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Este link e tipo de arquivo já foram adicionados ao livro. Se não estiverem visíveis, o domínio ainda está em processo de análise." -#: bookwyrm/forms.py:401 +#: bookwyrm/forms.py:403 msgid "A user with this email already exists." msgstr "Já existe um usuário com este endereço de e-mail." -#: bookwyrm/forms.py:415 +#: bookwyrm/forms.py:417 msgid "One Day" msgstr "Um dia" -#: bookwyrm/forms.py:416 +#: bookwyrm/forms.py:418 msgid "One Week" msgstr "Uma semana" -#: bookwyrm/forms.py:417 +#: bookwyrm/forms.py:419 msgid "One Month" msgstr "Um mês" -#: bookwyrm/forms.py:418 +#: bookwyrm/forms.py:420 msgid "Does Not Expire" msgstr "Não expira" -#: bookwyrm/forms.py:422 +#: bookwyrm/forms.py:424 #, python-brace-format msgid "{i} uses" msgstr "{i} usos" -#: bookwyrm/forms.py:423 +#: bookwyrm/forms.py:425 msgid "Unlimited" msgstr "Ilimitado" -#: bookwyrm/forms.py:525 +#: bookwyrm/forms.py:543 msgid "List Order" msgstr "Ordem de inserção" -#: bookwyrm/forms.py:526 +#: bookwyrm/forms.py:544 msgid "Book Title" msgstr "Título do livro" -#: bookwyrm/forms.py:527 bookwyrm/templates/shelf/shelf.html:155 +#: bookwyrm/forms.py:545 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Avaliação" -#: bookwyrm/forms.py:529 bookwyrm/templates/lists/list.html:175 +#: bookwyrm/forms.py:547 bookwyrm/templates/lists/list.html:185 msgid "Sort By" msgstr "Organizar por" -#: bookwyrm/forms.py:533 +#: bookwyrm/forms.py:551 msgid "Ascending" msgstr "Crescente" -#: bookwyrm/forms.py:534 +#: bookwyrm/forms.py:552 msgid "Descending" msgstr "Decrescente" -#: bookwyrm/forms.py:547 +#: bookwyrm/forms.py:565 msgid "Reading finish date cannot be before start date." msgstr "A data de término da leitura não pode ser anterior a de início." @@ -97,27 +97,23 @@ msgid "Could not find a match for book" msgstr "Não foi possível encontrar o livro" #: bookwyrm/models/announcement.py:11 -msgid "None" -msgstr "Nenhum" - -#: bookwyrm/models/announcement.py:12 msgid "Primary" msgstr "Primário" -#: bookwyrm/models/announcement.py:13 +#: bookwyrm/models/announcement.py:12 msgid "Success" msgstr "Sucesso" -#: bookwyrm/models/announcement.py:14 +#: bookwyrm/models/announcement.py:13 #: bookwyrm/templates/settings/invites/manage_invites.html:47 msgid "Link" msgstr "Link" -#: bookwyrm/models/announcement.py:15 +#: bookwyrm/models/announcement.py:14 msgid "Warning" msgstr "Atenção" -#: bookwyrm/models/announcement.py:16 +#: bookwyrm/models/announcement.py:15 msgid "Danger" msgstr "Perigo" @@ -168,13 +164,13 @@ msgid "Paperback" msgstr "Capa mole" #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "Federado" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 -#: bookwyrm/templates/settings/federation/edit_instance.html:44 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 @@ -470,7 +466,7 @@ msgid "Copy address" msgstr "Copiar endereço" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:267 +#: bookwyrm/templates/lists/list.html:277 msgid "Copied!" msgstr "Copiado!" @@ -737,12 +733,12 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:124 +#: bookwyrm/templates/preferences/edit_user.html:136 #: bookwyrm/templates/readthrough/readthrough_modal.html:72 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 -#: bookwyrm/templates/settings/federation/edit_instance.html:82 -#: bookwyrm/templates/settings/federation/instance.html:87 -#: bookwyrm/templates/settings/site.html:151 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/site.html:169 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -763,7 +759,7 @@ msgstr "Salvar" #: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/readthrough_modal.html:73 -#: bookwyrm/templates/settings/federation/instance.html:88 +#: bookwyrm/templates/settings/federation/instance.html:106 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Cancel" @@ -879,7 +875,7 @@ msgstr "Adicionar à lista" #: bookwyrm/templates/book/book.html:370 #: bookwyrm/templates/book/cover_add_modal.html:31 #: bookwyrm/templates/lists/add_item_modal.html:37 -#: bookwyrm/templates/lists/list.html:245 +#: bookwyrm/templates/lists/list.html:255 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -1179,8 +1175,9 @@ msgstr "Publicação" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 -#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/federation/instance.html:112 #: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:118 msgid "Actions" msgstr "Ações" @@ -1667,16 +1664,14 @@ msgid "Add to your books" msgstr "Adicionar aos seus livros" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:86 -#: bookwyrm/templates/snippets/translated_shelf_name.html:5 -#: bookwyrm/templates/user/user.html:33 +#: bookwyrm/templates/shelf/shelf.html:86 bookwyrm/templates/user/user.html:33 +#: bookwyrm/templatetags/shelf_tags.py:46 msgid "To Read" msgstr "Quero ler" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:87 -#: bookwyrm/templates/snippets/translated_shelf_name.html:7 -#: bookwyrm/templates/user/user.html:34 +#: bookwyrm/templates/shelf/shelf.html:87 bookwyrm/templates/user/user.html:34 +#: bookwyrm/templatetags/shelf_tags.py:48 msgid "Currently Reading" msgstr "Lendo atualmente" @@ -1685,8 +1680,7 @@ msgstr "Lendo atualmente" #: bookwyrm/templates/snippets/shelf_selector.html:47 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/snippets/translated_shelf_name.html:9 -#: bookwyrm/templates/user/user.html:35 +#: bookwyrm/templates/user/user.html:35 bookwyrm/templatetags/shelf_tags.py:50 msgid "Read" msgstr "Lido" @@ -1695,7 +1689,7 @@ msgid "What are you reading?" msgstr "O que você está lendo?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:203 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:213 msgid "Search for a book" msgstr "Pesquisar livro" @@ -1715,7 +1709,7 @@ msgstr "Você pode adicionar livros quando começar a usar o %(site_name)s." #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/members.html:15 #: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:54 -#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:207 +#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1731,7 +1725,7 @@ msgid "Popular on %(site_name)s" msgstr "Popular em %(site_name)s" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:220 +#: bookwyrm/templates/lists/list.html:230 msgid "No books found" msgstr "Nenhum livro encontrado" @@ -1887,7 +1881,8 @@ msgstr "Sair do grupo" #: bookwyrm/templates/groups/members.html:54 #: bookwyrm/templates/groups/suggested_users.html:35 #: bookwyrm/templates/snippets/suggested_users.html:31 -#: bookwyrm/templates/user/user_preview.html:36 +#: bookwyrm/templates/user/user_preview.html:33 +#: bookwyrm/templates/user/user_preview.html:41 msgid "Follows you" msgstr "Segue você" @@ -1943,7 +1938,7 @@ msgid "Privacy setting for imported reviews:" msgstr "Configurações de privacidade para resenhas importadas:" #: bookwyrm/templates/import/import.html:59 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:76 msgid "Import" msgstr "Importar" @@ -2304,7 +2299,7 @@ msgid "Suggest \"%(title)s\" for this list" msgstr "Sugerir \"%(title)s\" para esta lista" #: bookwyrm/templates/lists/add_item_modal.html:39 -#: bookwyrm/templates/lists/list.html:247 +#: bookwyrm/templates/lists/list.html:257 msgid "Suggest" msgstr "Sugerir" @@ -2340,7 +2335,7 @@ msgid "You're all set!" msgstr "Tudo pronto!" #: bookwyrm/templates/lists/curate.html:45 -#: bookwyrm/templates/lists/list.html:83 +#: bookwyrm/templates/lists/list.html:93 #, python-format msgid "%(username)s says:" msgstr "%(username)s diz:" @@ -2373,7 +2368,7 @@ msgid "on %(site_name)s" msgstr "em %(site_name)s" #: bookwyrm/templates/lists/embed-list.html:27 -#: bookwyrm/templates/lists/list.html:44 +#: bookwyrm/templates/lists/list.html:54 msgid "This list is currently empty" msgstr "Esta lista está vazia" @@ -2435,7 +2430,7 @@ msgid "Delete list" msgstr "Excluir lista" #: bookwyrm/templates/lists/item_notes_field.html:7 -#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 msgid "Notes:" msgstr "Notas:" @@ -2443,80 +2438,84 @@ msgstr "Notas:" msgid "An optional note that will be displayed with the book." msgstr "Uma anotação opcional será mostrada com o livro." -#: bookwyrm/templates/lists/list.html:36 +#: bookwyrm/templates/lists/list.html:37 +msgid "That book is already on this list." +msgstr "O livro já está nesta lista." + +#: bookwyrm/templates/lists/list.html:45 msgid "You successfully suggested a book for this list!" msgstr "Você sugeriu um livro para esta lista com sucesso!" -#: bookwyrm/templates/lists/list.html:38 +#: bookwyrm/templates/lists/list.html:47 msgid "You successfully added a book to this list!" msgstr "Você adicionou um livro a esta lista com sucesso!" -#: bookwyrm/templates/lists/list.html:94 +#: bookwyrm/templates/lists/list.html:104 msgid "Edit notes" msgstr "Editar anotações" -#: bookwyrm/templates/lists/list.html:109 +#: bookwyrm/templates/lists/list.html:119 msgid "Add notes" msgstr "Adicionar anotações" -#: bookwyrm/templates/lists/list.html:121 +#: bookwyrm/templates/lists/list.html:131 #, python-format msgid "Added by %(username)s" msgstr "Adicionado por %(username)s" -#: bookwyrm/templates/lists/list.html:136 +#: bookwyrm/templates/lists/list.html:146 msgid "List position" msgstr "Posição na lista" -#: bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/lists/list.html:152 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21 msgid "Set" msgstr "Definir" -#: bookwyrm/templates/lists/list.html:157 +#: bookwyrm/templates/lists/list.html:167 #: bookwyrm/templates/snippets/remove_from_group_button.html:20 msgid "Remove" msgstr "Remover" -#: bookwyrm/templates/lists/list.html:171 -#: bookwyrm/templates/lists/list.html:188 +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 msgid "Sort List" msgstr "Ordenar lista" -#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:191 msgid "Direction" msgstr "Sentido" -#: bookwyrm/templates/lists/list.html:195 +#: bookwyrm/templates/lists/list.html:205 msgid "Add Books" msgstr "Adicionar livros" -#: bookwyrm/templates/lists/list.html:197 +#: bookwyrm/templates/lists/list.html:207 msgid "Suggest Books" msgstr "Sugerir livros" -#: bookwyrm/templates/lists/list.html:208 +#: bookwyrm/templates/lists/list.html:218 msgid "search" msgstr "pesquisar" -#: bookwyrm/templates/lists/list.html:214 +#: bookwyrm/templates/lists/list.html:224 msgid "Clear search" msgstr "Limpar pesquisa" -#: bookwyrm/templates/lists/list.html:219 +#: bookwyrm/templates/lists/list.html:229 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "Nenhum livro encontrado para \"%(query)s\"" -#: bookwyrm/templates/lists/list.html:258 +#: bookwyrm/templates/lists/list.html:268 msgid "Embed this list on a website" msgstr "Incorpore esta lista em um site" -#: bookwyrm/templates/lists/list.html:266 +#: bookwyrm/templates/lists/list.html:276 msgid "Copy embed code" msgstr "Copiar código de incorporação" -#: bookwyrm/templates/lists/list.html:268 +#: bookwyrm/templates/lists/list.html:278 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s, uma lista de %(owner)s em %(site_name)s" @@ -2871,11 +2870,14 @@ msgstr "Perfil" #: bookwyrm/templates/preferences/edit_user.html:13 #: bookwyrm/templates/preferences/edit_user.html:64 -msgid "Display preferences" -msgstr "Preferências da interface" +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:77 +#: bookwyrm/templates/setup/config.html:91 +msgid "Display" +msgstr "Exibir" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:106 +#: bookwyrm/templates/preferences/edit_user.html:112 msgid "Privacy" msgstr "Privacidade" @@ -2900,11 +2902,19 @@ msgstr "Sua conta aparecerá no diretório e poderá se msgid "Preferred Timezone: " msgstr "Fuso horário preferido: " -#: bookwyrm/templates/preferences/edit_user.html:111 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Theme:" +msgstr "Tema:" + +#: bookwyrm/templates/preferences/edit_user.html:117 msgid "Manually approve followers" msgstr "Aprovar seguidores manualmente" -#: bookwyrm/templates/preferences/edit_user.html:116 +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Hide followers and following on profile" +msgstr "Esconder quem sigo e seguidores no perfil" + +#: bookwyrm/templates/preferences/edit_user.html:128 msgid "Default post privacy:" msgstr "Privacidade padrão das publicações:" @@ -3051,7 +3061,7 @@ msgid "Announcement" msgstr "Aviso" #: bookwyrm/templates/settings/announcements/announcement.html:16 -#: bookwyrm/templates/settings/federation/instance.html:75 +#: bookwyrm/templates/settings/federation/instance.html:93 #: bookwyrm/templates/snippets/status/status_options.html:25 msgid "Edit" msgstr "Editar" @@ -3340,136 +3350,136 @@ msgstr "Nenhum domínio de e-mail bloqueado" #: 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/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 #: bookwyrm/templates/settings/federation/instance_blocklist.html:3 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 #: bookwyrm/templates/settings/federation/instance_list.html:9 #: bookwyrm/templates/settings/federation/instance_list.html:10 msgid "Add instance" msgstr "Adicionar instância" -#: bookwyrm/templates/settings/federation/edit_instance.html:7 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:7 -msgid "Back to instance list" -msgstr "Voltar à lista de instâncias" - -#: bookwyrm/templates/settings/federation/edit_instance.html:16 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:16 -msgid "Import block list" -msgstr "Importar lista de bloqueio" - -#: bookwyrm/templates/settings/federation/edit_instance.html:31 -msgid "Instance:" -msgstr "Instância:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:40 -#: 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:54 -#: 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:64 -#: bookwyrm/templates/settings/federation/instance.html:25 -#: bookwyrm/templates/settings/users/user_info.html:103 -msgid "Version:" -msgstr "Versão:" - -#: bookwyrm/templates/settings/federation/instance.html:13 -msgid "Back to list" -msgstr "Voltar à lista" - -#: bookwyrm/templates/settings/federation/instance.html:19 -msgid "Details" -msgstr "Detalhes" - -#: bookwyrm/templates/settings/federation/instance.html:35 -#: bookwyrm/templates/user/layout.html:67 -msgid "Activity" -msgstr "Atividade" - -#: bookwyrm/templates/settings/federation/instance.html:38 -msgid "Users:" -msgstr "Usuários:" - -#: bookwyrm/templates/settings/federation/instance.html:41 -#: bookwyrm/templates/settings/federation/instance.html:47 -msgid "View all" -msgstr "Ver todos" - -#: bookwyrm/templates/settings/federation/instance.html:44 -#: bookwyrm/templates/settings/users/user_info.html:56 -msgid "Reports:" -msgstr "Denúncias:" - -#: bookwyrm/templates/settings/federation/instance.html:50 -msgid "Followed by us:" -msgstr "Seguido por nós:" - -#: bookwyrm/templates/settings/federation/instance.html:55 -msgid "Followed by them:" -msgstr "Seguidos por eles:" - -#: bookwyrm/templates/settings/federation/instance.html:60 -msgid "Blocked by us:" -msgstr "Bloqueados por nós:" - -#: bookwyrm/templates/settings/federation/instance.html:72 -#: bookwyrm/templates/settings/users/user_info.html:110 -msgid "Notes" -msgstr "Notas" - -#: bookwyrm/templates/settings/federation/instance.html:79 -msgid "No notes" -msgstr "Sem notas" - -#: bookwyrm/templates/settings/federation/instance.html:98 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Bloquear" - -#: bookwyrm/templates/settings/federation/instance.html:99 -msgid "All users from this instance will be deactivated." -msgstr "Todos os usuários desta instância serão desativados." - -#: bookwyrm/templates/settings/federation/instance.html:104 -#: bookwyrm/templates/snippets/block_button.html:10 -msgid "Un-block" -msgstr "Desbloquear" - -#: bookwyrm/templates/settings/federation/instance.html:105 -msgid "All users from this instance will be re-activated." -msgstr "Todos os usuários desta instância serão reativados." - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 -msgid "Import Blocklist" -msgstr "Importar lista de bloqueio" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:26 -#: bookwyrm/templates/snippets/goal_progress.html:7 -msgid "Success!" -msgstr "Sucesso!" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:30 -msgid "Successfully blocked:" -msgstr "Bloqueada com sucesso:" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 -msgid "Failed:" -msgstr "Falhou:" - +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 #: bookwyrm/templates/settings/federation/instance_list.html:3 #: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:47 msgid "Federated Instances" msgstr "Instâncias federadas" +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "Importar lista de bloqueio" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "Instância:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "Status:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "Software:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "Versão:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "Atualizar informações" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "Detalhes" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:67 +msgid "Activity" +msgstr "Atividade" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "Usuários:" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "Ver todos" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:56 +msgid "Reports:" +msgstr "Denúncias:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "Seguido por nós:" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "Seguidos por eles:" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "Bloqueados por nós:" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Notes" +msgstr "Notas" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "Sem notas" + +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Bloquear" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "Todos os usuários desta instância serão desativados." + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "Desbloquear" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "Todos os usuários desta instância serão reativados." + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "Importar lista de bloqueio" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "Sucesso!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "Bloqueada com sucesso:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "Falhou:" + #: bookwyrm/templates/settings/federation/instance_list.html:32 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" @@ -3654,6 +3664,13 @@ msgstr "Configurações da instância" msgid "Site Settings" msgstr "Configurações do site" +#: bookwyrm/templates/settings/layout.html:91 +#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "Temas" + #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format msgid "Set display name for %(url)s" @@ -3779,22 +3796,17 @@ msgid "No reports found." msgstr "Nenhuma denúncia encontrada." #: bookwyrm/templates/settings/site.html:10 -#: bookwyrm/templates/settings/site.html:39 +#: bookwyrm/templates/settings/site.html:44 msgid "Instance Info" msgstr "Informações da instância" -#: bookwyrm/templates/settings/site.html:11 -#: bookwyrm/templates/settings/site.html:72 -msgid "Images" -msgstr "Imagens" - #: bookwyrm/templates/settings/site.html:12 -#: bookwyrm/templates/settings/site.html:92 +#: bookwyrm/templates/settings/site.html:110 msgid "Footer Content" msgstr "Conteúdo do rodapé" #: bookwyrm/templates/settings/site.html:13 -#: bookwyrm/templates/settings/site.html:116 +#: bookwyrm/templates/settings/site.html:134 msgid "Registration" msgstr "Cadastro" @@ -3806,86 +3818,152 @@ msgstr "Configurações salvas" msgid "Unable to save settings" msgstr "Configurações não salvas" -#: bookwyrm/templates/settings/site.html:42 +#: bookwyrm/templates/settings/site.html:47 msgid "Instance Name:" msgstr "Nome da instância:" -#: bookwyrm/templates/settings/site.html:46 +#: bookwyrm/templates/settings/site.html:51 msgid "Tagline:" msgstr "Subtítulo:" -#: bookwyrm/templates/settings/site.html:50 +#: bookwyrm/templates/settings/site.html:55 msgid "Instance description:" msgstr "Descrição da instância:" -#: bookwyrm/templates/settings/site.html:54 +#: bookwyrm/templates/settings/site.html:59 msgid "Short description:" msgstr "Descrição curta:" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:60 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." msgstr "Mostrado quando a instância é vista em joinbookwyrm.com. Não é compatível com HTML ou Markdown." -#: bookwyrm/templates/settings/site.html:59 +#: bookwyrm/templates/settings/site.html:64 msgid "Code of conduct:" msgstr "Código de conduta:" -#: bookwyrm/templates/settings/site.html:63 +#: bookwyrm/templates/settings/site.html:68 msgid "Privacy Policy:" msgstr "Política de privacidade:" -#: bookwyrm/templates/settings/site.html:75 +#: bookwyrm/templates/settings/site.html:79 +msgid "Images" +msgstr "Imagens" + +#: bookwyrm/templates/settings/site.html:82 msgid "Logo:" msgstr "Logo:" -#: bookwyrm/templates/settings/site.html:79 +#: bookwyrm/templates/settings/site.html:86 msgid "Logo small:" msgstr "Logo pequeno:" -#: bookwyrm/templates/settings/site.html:83 +#: bookwyrm/templates/settings/site.html:90 msgid "Favicon:" msgstr "Favicon:" -#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/site.html:98 +msgid "Default theme:" +msgstr "Tema padrão:" + +#: bookwyrm/templates/settings/site.html:113 msgid "Support link:" msgstr "Link de suporte:" -#: bookwyrm/templates/settings/site.html:99 +#: bookwyrm/templates/settings/site.html:117 msgid "Support title:" msgstr "Título de suporte:" -#: bookwyrm/templates/settings/site.html:103 +#: bookwyrm/templates/settings/site.html:121 msgid "Admin email:" msgstr "E-mail da administração:" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:125 msgid "Additional info:" msgstr "Informações adicionais:" -#: bookwyrm/templates/settings/site.html:121 +#: bookwyrm/templates/settings/site.html:139 msgid "Allow registration" msgstr "Permitir cadastro" -#: bookwyrm/templates/settings/site.html:127 +#: bookwyrm/templates/settings/site.html:145 msgid "Allow invite requests" msgstr "Permitir solicitação de convites" -#: bookwyrm/templates/settings/site.html:133 +#: bookwyrm/templates/settings/site.html:151 msgid "Require users to confirm email address" msgstr "Exigir que usuários confirmem o e-mail" -#: bookwyrm/templates/settings/site.html:135 +#: bookwyrm/templates/settings/site.html:153 msgid "(Recommended if registration is open)" msgstr "(Recomendado se o cadastro estiver aberto)" -#: bookwyrm/templates/settings/site.html:138 +#: bookwyrm/templates/settings/site.html:156 msgid "Registration closed text:" msgstr "Texto quando o cadastro está fechado:" -#: bookwyrm/templates/settings/site.html:142 +#: bookwyrm/templates/settings/site.html:160 msgid "Invite request text:" msgstr "Texto solicitação de convite:" +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "Definir tema padrão da instância" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "Successfully added theme" +msgstr "Tema adicionado com sucesso" + +#: bookwyrm/templates/settings/themes.html:26 +msgid "How to add a theme" +msgstr "Como adicionar um tema" + +#: bookwyrm/templates/settings/themes.html:29 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "Copie o arquivo do tema para a pasta bookwyrm/static/css/themes em seu servidor pela linha de comando." + +#: bookwyrm/templates/settings/themes.html:32 +msgid "Run ./bw-dev compilescss." +msgstr "Execute ./bw-dev compilescss." + +#: bookwyrm/templates/settings/themes.html:35 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "Adicione o nome do arquivo utilizando o formulário abaixo para deixá-lo disponível na interface do sistema." + +#: bookwyrm/templates/settings/themes.html:42 +#: bookwyrm/templates/settings/themes.html:101 +msgid "Add theme" +msgstr "Adicionar tema" + +#: bookwyrm/templates/settings/themes.html:48 +msgid "Unable to save theme" +msgstr "Não foi possível salvar o tema" + +#: bookwyrm/templates/settings/themes.html:61 +msgid "No available theme files detected" +msgstr "Nenhum arquivo de tema encontrado" + +#: bookwyrm/templates/settings/themes.html:69 +#: bookwyrm/templates/settings/themes.html:112 +msgid "Theme name" +msgstr "Nome do tema" + +#: bookwyrm/templates/settings/themes.html:79 +msgid "Theme filename" +msgstr "Arquivo do tema" + +#: bookwyrm/templates/settings/themes.html:107 +msgid "Available Themes" +msgstr "Temas disponíveis" + +#: bookwyrm/templates/settings/themes.html:115 +msgid "File" +msgstr "Arquivo" + +#: bookwyrm/templates/settings/themes.html:130 +msgid "Remove theme" +msgstr "Excluir tema" + #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32 msgid "Permanently delete user" @@ -4077,10 +4155,6 @@ msgstr "Protocolo:" msgid "Using S3:" msgstr "Usar S3:" -#: bookwyrm/templates/setup/config.html:91 -msgid "Display" -msgstr "Exibir" - #: bookwyrm/templates/setup/config.html:95 msgid "Default interface language:" msgstr "Idioma padrão da interface:" @@ -4138,8 +4212,7 @@ msgid "User profile" msgstr "Perfil do usuário" #: bookwyrm/templates/shelf/shelf.html:39 -#: bookwyrm/templates/snippets/translated_shelf_name.html:3 -#: bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templatetags/shelf_tags.py:44 bookwyrm/views/shelf/shelf.py:53 msgid "All books" msgstr "Todos os livros" @@ -4573,8 +4646,13 @@ msgstr "Começar a ler" msgid "Want to read" msgstr "Quero ler" -#: bookwyrm/templates/snippets/shelf_selector.html:74 -#: bookwyrm/templates/snippets/shelf_selector.html:86 +#: bookwyrm/templates/snippets/shelf_selector.html:75 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 +#, python-format +msgid "Remove from %(name)s" +msgstr "Remover de %(name)s" + +#: bookwyrm/templates/snippets/shelf_selector.html:88 msgid "Remove from" msgstr "Remover de" @@ -4582,11 +4660,6 @@ msgstr "Remover de" msgid "More shelves" msgstr "Mais estantes" -#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 -#, python-format -msgid "Remove from %(name)s" -msgstr "Remover de %(name)s" - #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:31 msgid "Finish reading" msgstr "Terminar de ler" @@ -4869,14 +4942,14 @@ msgstr[1] "%(counter)s seguidores" msgid "%(counter)s following" msgstr "%(counter)s seguindo" -#: bookwyrm/templates/user/user_preview.html:34 +#: bookwyrm/templates/user/user_preview.html:39 #, python-format msgid "%(mutuals_display)s follower you follow" msgid_plural "%(mutuals_display)s followers you follow" msgstr[0] "%(mutuals_display)s seguidor que você segue" msgstr[1] "%(mutuals_display)s seguidores que você segue" -#: bookwyrm/templates/user/user_preview.html:38 +#: bookwyrm/templates/user/user_preview.html:43 msgid "No followers you follow" msgstr "Nenhum seguidor que você segue" diff --git a/locale/pt_PT/LC_MESSAGES/django.mo b/locale/pt_PT/LC_MESSAGES/django.mo index 10f139a801aef2a82f93f8c611b44c78bbafaa0a..9c144cf8a16437303931924bed48443e9f8fb759 100644 GIT binary patch delta 19732 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 delta 19954 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 diff --git a/locale/pt_PT/LC_MESSAGES/django.po b/locale/pt_PT/LC_MESSAGES/django.po index 84189dd43..ff508e117 100644 --- a/locale/pt_PT/LC_MESSAGES/django.po +++ b/locale/pt_PT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-02-25 20:12+0000\n" -"PO-Revision-Date: 2022-02-26 12:42\n" +"POT-Creation-Date: 2022-03-01 19:48+0000\n" +"PO-Revision-Date: 2022-03-01 20:15\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Portuguese\n" "Language: pt\n" @@ -21,70 +21,70 @@ msgstr "" msgid "User with this username already exists" msgstr "" -#: bookwyrm/forms.py:252 +#: bookwyrm/forms.py:254 msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "" -#: bookwyrm/forms.py:262 +#: bookwyrm/forms.py:264 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "" -#: bookwyrm/forms.py:401 +#: bookwyrm/forms.py:403 msgid "A user with this email already exists." msgstr "Já existe um utilizador com este E-Mail." -#: bookwyrm/forms.py:415 +#: bookwyrm/forms.py:417 msgid "One Day" msgstr "Um Dia" -#: bookwyrm/forms.py:416 +#: bookwyrm/forms.py:418 msgid "One Week" msgstr "Uma Semana" -#: bookwyrm/forms.py:417 +#: bookwyrm/forms.py:419 msgid "One Month" msgstr "Um Mês" -#: bookwyrm/forms.py:418 +#: bookwyrm/forms.py:420 msgid "Does Not Expire" msgstr "Não Expira" -#: bookwyrm/forms.py:422 +#: bookwyrm/forms.py:424 #, python-brace-format msgid "{i} uses" msgstr "{i} utilizações" -#: bookwyrm/forms.py:423 +#: bookwyrm/forms.py:425 msgid "Unlimited" msgstr "Ilimitado" -#: bookwyrm/forms.py:525 +#: bookwyrm/forms.py:543 msgid "List Order" msgstr "Ordem da Lista" -#: bookwyrm/forms.py:526 +#: bookwyrm/forms.py:544 msgid "Book Title" msgstr "Título do livro" -#: bookwyrm/forms.py:527 bookwyrm/templates/shelf/shelf.html:155 +#: bookwyrm/forms.py:545 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Classificação" -#: bookwyrm/forms.py:529 bookwyrm/templates/lists/list.html:175 +#: bookwyrm/forms.py:547 bookwyrm/templates/lists/list.html:185 msgid "Sort By" msgstr "Ordenar Por" -#: bookwyrm/forms.py:533 +#: bookwyrm/forms.py:551 msgid "Ascending" msgstr "Ascendente" -#: bookwyrm/forms.py:534 +#: bookwyrm/forms.py:552 msgid "Descending" msgstr "Descendente" -#: bookwyrm/forms.py:547 +#: bookwyrm/forms.py:565 msgid "Reading finish date cannot be before start date." msgstr "" @@ -97,27 +97,23 @@ msgid "Could not find a match for book" msgstr "Não foi possível encontrar um resultado para o livro pedido" #: bookwyrm/models/announcement.py:11 -msgid "None" -msgstr "" - -#: bookwyrm/models/announcement.py:12 msgid "Primary" msgstr "" -#: bookwyrm/models/announcement.py:13 +#: bookwyrm/models/announcement.py:12 msgid "Success" msgstr "" -#: bookwyrm/models/announcement.py:14 +#: bookwyrm/models/announcement.py:13 #: bookwyrm/templates/settings/invites/manage_invites.html:47 msgid "Link" msgstr "Link" -#: bookwyrm/models/announcement.py:15 +#: bookwyrm/models/announcement.py:14 msgid "Warning" msgstr "" -#: bookwyrm/models/announcement.py:16 +#: bookwyrm/models/announcement.py:15 msgid "Danger" msgstr "" @@ -168,13 +164,13 @@ msgid "Paperback" msgstr "Capa mole" #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "Federado" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 -#: bookwyrm/templates/settings/federation/edit_instance.html:44 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 @@ -470,7 +466,7 @@ msgid "Copy address" msgstr "Copiar endereço" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:267 +#: bookwyrm/templates/lists/list.html:277 msgid "Copied!" msgstr "Copiado!" @@ -737,12 +733,12 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:124 +#: bookwyrm/templates/preferences/edit_user.html:136 #: bookwyrm/templates/readthrough/readthrough_modal.html:72 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 -#: bookwyrm/templates/settings/federation/edit_instance.html:82 -#: bookwyrm/templates/settings/federation/instance.html:87 -#: bookwyrm/templates/settings/site.html:151 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/site.html:169 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -763,7 +759,7 @@ msgstr "Salvar" #: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/readthrough_modal.html:73 -#: bookwyrm/templates/settings/federation/instance.html:88 +#: bookwyrm/templates/settings/federation/instance.html:106 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Cancel" @@ -879,7 +875,7 @@ msgstr "Adicionar à lista" #: bookwyrm/templates/book/book.html:370 #: bookwyrm/templates/book/cover_add_modal.html:31 #: bookwyrm/templates/lists/add_item_modal.html:37 -#: bookwyrm/templates/lists/list.html:245 +#: bookwyrm/templates/lists/list.html:255 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -1177,8 +1173,9 @@ msgstr "Estado" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 -#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/federation/instance.html:112 #: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:118 msgid "Actions" msgstr "Acções" @@ -1665,16 +1662,14 @@ msgid "Add to your books" msgstr "Adicionar aos teus livros" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:86 -#: bookwyrm/templates/snippets/translated_shelf_name.html:5 -#: bookwyrm/templates/user/user.html:33 +#: bookwyrm/templates/shelf/shelf.html:86 bookwyrm/templates/user/user.html:33 +#: bookwyrm/templatetags/shelf_tags.py:46 msgid "To Read" msgstr "Para Ler" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:87 -#: bookwyrm/templates/snippets/translated_shelf_name.html:7 -#: bookwyrm/templates/user/user.html:34 +#: bookwyrm/templates/shelf/shelf.html:87 bookwyrm/templates/user/user.html:34 +#: bookwyrm/templatetags/shelf_tags.py:48 msgid "Currently Reading" msgstr "Leituras atuais" @@ -1683,8 +1678,7 @@ msgstr "Leituras atuais" #: bookwyrm/templates/snippets/shelf_selector.html:47 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/snippets/translated_shelf_name.html:9 -#: bookwyrm/templates/user/user.html:35 +#: bookwyrm/templates/user/user.html:35 bookwyrm/templatetags/shelf_tags.py:50 msgid "Read" msgstr "Ler" @@ -1693,7 +1687,7 @@ msgid "What are you reading?" msgstr "O que andas a ler?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:203 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:213 msgid "Search for a book" msgstr "Pesquisar por um livro" @@ -1713,7 +1707,7 @@ msgstr "Podes adicionar livros quando começas a usar %(site_name)s." #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/members.html:15 #: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:54 -#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:207 +#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1729,7 +1723,7 @@ msgid "Popular on %(site_name)s" msgstr "Populares em %(site_name)s" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:220 +#: bookwyrm/templates/lists/list.html:230 msgid "No books found" msgstr "Nenhum livro encontrado" @@ -1885,7 +1879,8 @@ msgstr "Sair do grupo" #: bookwyrm/templates/groups/members.html:54 #: bookwyrm/templates/groups/suggested_users.html:35 #: bookwyrm/templates/snippets/suggested_users.html:31 -#: bookwyrm/templates/user/user_preview.html:36 +#: bookwyrm/templates/user/user_preview.html:33 +#: bookwyrm/templates/user/user_preview.html:41 msgid "Follows you" msgstr "Segue-te" @@ -1941,7 +1936,7 @@ msgid "Privacy setting for imported reviews:" msgstr "Configuração de privacidade para criticas importadas:" #: bookwyrm/templates/import/import.html:59 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:76 msgid "Import" msgstr "Importar" @@ -2302,7 +2297,7 @@ msgid "Suggest \"%(title)s\" for this list" msgstr "" #: bookwyrm/templates/lists/add_item_modal.html:39 -#: bookwyrm/templates/lists/list.html:247 +#: bookwyrm/templates/lists/list.html:257 msgid "Suggest" msgstr "Sugerir" @@ -2338,7 +2333,7 @@ msgid "You're all set!" msgstr "Está tudo pronto!" #: bookwyrm/templates/lists/curate.html:45 -#: bookwyrm/templates/lists/list.html:83 +#: bookwyrm/templates/lists/list.html:93 #, python-format msgid "%(username)s says:" msgstr "" @@ -2371,7 +2366,7 @@ msgid "on %(site_name)s" msgstr "em %(site_name)s" #: bookwyrm/templates/lists/embed-list.html:27 -#: bookwyrm/templates/lists/list.html:44 +#: bookwyrm/templates/lists/list.html:54 msgid "This list is currently empty" msgstr "Esta lista está vazia" @@ -2433,7 +2428,7 @@ msgid "Delete list" msgstr "Apagar lista" #: bookwyrm/templates/lists/item_notes_field.html:7 -#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 msgid "Notes:" msgstr "Notas:" @@ -2441,80 +2436,84 @@ msgstr "Notas:" msgid "An optional note that will be displayed with the book." msgstr "" -#: bookwyrm/templates/lists/list.html:36 +#: bookwyrm/templates/lists/list.html:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 msgid "You successfully suggested a book for this list!" msgstr "Sugeriste um livro para esta lista com sucesso!" -#: bookwyrm/templates/lists/list.html:38 +#: bookwyrm/templates/lists/list.html:47 msgid "You successfully added a book to this list!" msgstr "Adicionaste um livro a esta lista com sucesso!" -#: bookwyrm/templates/lists/list.html:94 +#: bookwyrm/templates/lists/list.html:104 msgid "Edit notes" msgstr "" -#: bookwyrm/templates/lists/list.html:109 +#: bookwyrm/templates/lists/list.html:119 msgid "Add notes" msgstr "" -#: bookwyrm/templates/lists/list.html:121 +#: bookwyrm/templates/lists/list.html:131 #, python-format msgid "Added by %(username)s" msgstr "Adicionado por %(username)s" -#: bookwyrm/templates/lists/list.html:136 +#: bookwyrm/templates/lists/list.html:146 msgid "List position" msgstr "Posição da lista" -#: bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/lists/list.html:152 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21 msgid "Set" msgstr "Definir" -#: bookwyrm/templates/lists/list.html:157 +#: bookwyrm/templates/lists/list.html:167 #: bookwyrm/templates/snippets/remove_from_group_button.html:20 msgid "Remove" msgstr "Remover" -#: bookwyrm/templates/lists/list.html:171 -#: bookwyrm/templates/lists/list.html:188 +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 msgid "Sort List" msgstr "Ordenar lista" -#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:191 msgid "Direction" msgstr "Direcção" -#: bookwyrm/templates/lists/list.html:195 +#: bookwyrm/templates/lists/list.html:205 msgid "Add Books" msgstr "Adicionar Livros" -#: bookwyrm/templates/lists/list.html:197 +#: bookwyrm/templates/lists/list.html:207 msgid "Suggest Books" msgstr "Sugerir Livros" -#: bookwyrm/templates/lists/list.html:208 +#: bookwyrm/templates/lists/list.html:218 msgid "search" msgstr "pesquisar" -#: bookwyrm/templates/lists/list.html:214 +#: bookwyrm/templates/lists/list.html:224 msgid "Clear search" msgstr "Limpar Pesquisa" -#: bookwyrm/templates/lists/list.html:219 +#: bookwyrm/templates/lists/list.html:229 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "Nenhum livro encontrado que corresponda à consulta \"%(query)s\"" -#: bookwyrm/templates/lists/list.html:258 +#: bookwyrm/templates/lists/list.html:268 msgid "Embed this list on a website" msgstr "Incorporar esta lista num website" -#: bookwyrm/templates/lists/list.html:266 +#: bookwyrm/templates/lists/list.html:276 msgid "Copy embed code" msgstr "Copiar código de incorporação" -#: bookwyrm/templates/lists/list.html:268 +#: bookwyrm/templates/lists/list.html:278 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s, uma lista de %(owner)s no %(site_name)s" @@ -2869,11 +2868,14 @@ msgstr "Perfil" #: bookwyrm/templates/preferences/edit_user.html:13 #: bookwyrm/templates/preferences/edit_user.html:64 -msgid "Display preferences" -msgstr "Preferências de visualização" +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:77 +#: bookwyrm/templates/setup/config.html:91 +msgid "Display" +msgstr "" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:106 +#: bookwyrm/templates/preferences/edit_user.html:112 msgid "Privacy" msgstr "Privacidade" @@ -2898,11 +2900,19 @@ msgstr "A tua conta aparecerá no diretório , e pode s msgid "Preferred Timezone: " msgstr "Fuso Horário Preferido: " -#: bookwyrm/templates/preferences/edit_user.html:111 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:117 msgid "Manually approve followers" msgstr "Aprovar manualmente os seguidores" -#: bookwyrm/templates/preferences/edit_user.html:116 +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:128 msgid "Default post privacy:" msgstr "Privacidade de publicação predefinida:" @@ -3049,7 +3059,7 @@ msgid "Announcement" msgstr "Comunicado" #: bookwyrm/templates/settings/announcements/announcement.html:16 -#: bookwyrm/templates/settings/federation/instance.html:75 +#: bookwyrm/templates/settings/federation/instance.html:93 #: bookwyrm/templates/snippets/status/status_options.html:25 msgid "Edit" msgstr "Editar" @@ -3338,136 +3348,136 @@ msgstr "Nenhum domínio de E-Mail bloqueado atualmente" #: 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/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 #: bookwyrm/templates/settings/federation/instance_blocklist.html:3 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 #: bookwyrm/templates/settings/federation/instance_list.html:9 #: bookwyrm/templates/settings/federation/instance_list.html:10 msgid "Add instance" msgstr "Adicionar domínio" -#: bookwyrm/templates/settings/federation/edit_instance.html:7 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:7 -msgid "Back to instance list" -msgstr "Voltar para a lista de domínios" - -#: bookwyrm/templates/settings/federation/edit_instance.html:16 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:16 -msgid "Import block list" -msgstr "Importar lista de bloqueios" - -#: bookwyrm/templates/settings/federation/edit_instance.html:31 -msgid "Instance:" -msgstr "Domínio:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:40 -#: bookwyrm/templates/settings/federation/instance.html:28 -#: bookwyrm/templates/settings/users/user_info.html:106 -msgid "Status:" -msgstr "Estado:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:54 -#: 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:64 -#: bookwyrm/templates/settings/federation/instance.html:25 -#: bookwyrm/templates/settings/users/user_info.html:103 -msgid "Version:" -msgstr "Versão:" - -#: bookwyrm/templates/settings/federation/instance.html:13 -msgid "Back to list" -msgstr "Voltar à lista" - -#: bookwyrm/templates/settings/federation/instance.html:19 -msgid "Details" -msgstr "Detalhes" - -#: bookwyrm/templates/settings/federation/instance.html:35 -#: bookwyrm/templates/user/layout.html:67 -msgid "Activity" -msgstr "Actividade" - -#: bookwyrm/templates/settings/federation/instance.html:38 -msgid "Users:" -msgstr "Utilizadores:" - -#: bookwyrm/templates/settings/federation/instance.html:41 -#: bookwyrm/templates/settings/federation/instance.html:47 -msgid "View all" -msgstr "Ver todos" - -#: bookwyrm/templates/settings/federation/instance.html:44 -#: bookwyrm/templates/settings/users/user_info.html:56 -msgid "Reports:" -msgstr "Denúncias:" - -#: bookwyrm/templates/settings/federation/instance.html:50 -msgid "Followed by us:" -msgstr "Seguido por nós:" - -#: bookwyrm/templates/settings/federation/instance.html:55 -msgid "Followed by them:" -msgstr "Seguido por outros:" - -#: bookwyrm/templates/settings/federation/instance.html:60 -msgid "Blocked by us:" -msgstr "Bloqueado por nós:" - -#: bookwyrm/templates/settings/federation/instance.html:72 -#: bookwyrm/templates/settings/users/user_info.html:110 -msgid "Notes" -msgstr "Notas" - -#: bookwyrm/templates/settings/federation/instance.html:79 -msgid "No notes" -msgstr "Sem notas" - -#: bookwyrm/templates/settings/federation/instance.html:98 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Bloquear" - -#: bookwyrm/templates/settings/federation/instance.html:99 -msgid "All users from this instance will be deactivated." -msgstr "Todos os utilizadores deste domínio serão desativados." - -#: bookwyrm/templates/settings/federation/instance.html:104 -#: bookwyrm/templates/snippets/block_button.html:10 -msgid "Un-block" -msgstr "Desbloquear" - -#: bookwyrm/templates/settings/federation/instance.html:105 -msgid "All users from this instance will be re-activated." -msgstr "Todos os utilizadores deste domínio serão re-ativados." - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 -msgid "Import Blocklist" -msgstr "Importar lista de bloqueios" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:26 -#: bookwyrm/templates/snippets/goal_progress.html:7 -msgid "Success!" -msgstr "Sucesso!" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:30 -msgid "Successfully blocked:" -msgstr "Bloqueado com sucesso:" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 -msgid "Failed:" -msgstr "Falha:" - +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 #: bookwyrm/templates/settings/federation/instance_list.html:3 #: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:47 msgid "Federated Instances" msgstr "Domínios Federados" +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "Importar lista de bloqueios" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "Domínio:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "Estado:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "Software:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "Versão:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "Detalhes" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:67 +msgid "Activity" +msgstr "Actividade" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "Utilizadores:" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "Ver todos" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:56 +msgid "Reports:" +msgstr "Denúncias:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "Seguido por nós:" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "Seguido por outros:" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "Bloqueado por nós:" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Notes" +msgstr "Notas" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "Sem notas" + +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Bloquear" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "Todos os utilizadores deste domínio serão desativados." + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "Desbloquear" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "Todos os utilizadores deste domínio serão re-ativados." + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "Importar lista de bloqueios" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "Sucesso!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "Bloqueado com sucesso:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "Falha:" + #: bookwyrm/templates/settings/federation/instance_list.html:32 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" @@ -3652,6 +3662,13 @@ msgstr "Configurações do domínio" msgid "Site Settings" msgstr "Configurações do site" +#: bookwyrm/templates/settings/layout.html:91 +#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format msgid "Set display name for %(url)s" @@ -3777,22 +3794,17 @@ msgid "No reports found." msgstr "Nenhuma denúncia encontrada." #: bookwyrm/templates/settings/site.html:10 -#: bookwyrm/templates/settings/site.html:39 +#: bookwyrm/templates/settings/site.html:44 msgid "Instance Info" msgstr "Informação do domínio" -#: bookwyrm/templates/settings/site.html:11 -#: bookwyrm/templates/settings/site.html:72 -msgid "Images" -msgstr "Imagens" - #: bookwyrm/templates/settings/site.html:12 -#: bookwyrm/templates/settings/site.html:92 +#: bookwyrm/templates/settings/site.html:110 msgid "Footer Content" msgstr "Conteúdo do Rodapé" #: bookwyrm/templates/settings/site.html:13 -#: bookwyrm/templates/settings/site.html:116 +#: bookwyrm/templates/settings/site.html:134 msgid "Registration" msgstr "Registo" @@ -3804,86 +3816,152 @@ msgstr "" msgid "Unable to save settings" msgstr "" -#: bookwyrm/templates/settings/site.html:42 +#: bookwyrm/templates/settings/site.html:47 msgid "Instance Name:" msgstr "Nome do domínio:" -#: bookwyrm/templates/settings/site.html:46 +#: bookwyrm/templates/settings/site.html:51 msgid "Tagline:" msgstr "Lema / Slogan:" -#: bookwyrm/templates/settings/site.html:50 +#: bookwyrm/templates/settings/site.html:55 msgid "Instance description:" msgstr "Descrição do domínio:" -#: bookwyrm/templates/settings/site.html:54 +#: bookwyrm/templates/settings/site.html:59 msgid "Short description:" msgstr "Breve descrição:" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:60 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." msgstr "Usado quando o domínio é pré-visualizado em joinbookwyrm.com. Não suporta HTML ou Markdown." -#: bookwyrm/templates/settings/site.html:59 +#: bookwyrm/templates/settings/site.html:64 msgid "Code of conduct:" msgstr "Código de Conduta:" -#: bookwyrm/templates/settings/site.html:63 +#: bookwyrm/templates/settings/site.html:68 msgid "Privacy Policy:" msgstr "Política de Privacidade:" -#: bookwyrm/templates/settings/site.html:75 +#: bookwyrm/templates/settings/site.html:79 +msgid "Images" +msgstr "Imagens" + +#: bookwyrm/templates/settings/site.html:82 msgid "Logo:" msgstr "Logotipo:" -#: bookwyrm/templates/settings/site.html:79 +#: bookwyrm/templates/settings/site.html:86 msgid "Logo small:" msgstr "Pequeno logótipo:" -#: bookwyrm/templates/settings/site.html:83 +#: bookwyrm/templates/settings/site.html:90 msgid "Favicon:" msgstr "Favicon:" -#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/site.html:98 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:113 msgid "Support link:" msgstr "Links de suporte:" -#: bookwyrm/templates/settings/site.html:99 +#: bookwyrm/templates/settings/site.html:117 msgid "Support title:" msgstr "Título de suporte:" -#: bookwyrm/templates/settings/site.html:103 +#: bookwyrm/templates/settings/site.html:121 msgid "Admin email:" msgstr "E-Mail da administração:" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:125 msgid "Additional info:" msgstr "Informação adicional:" -#: bookwyrm/templates/settings/site.html:121 +#: bookwyrm/templates/settings/site.html:139 msgid "Allow registration" msgstr "Permitir novos registos" -#: bookwyrm/templates/settings/site.html:127 +#: bookwyrm/templates/settings/site.html:145 msgid "Allow invite requests" msgstr "Permitir solicitações de convite" -#: bookwyrm/templates/settings/site.html:133 +#: bookwyrm/templates/settings/site.html:151 msgid "Require users to confirm email address" msgstr "Requir utilizadores confirmarem o E-Mail" -#: bookwyrm/templates/settings/site.html:135 +#: bookwyrm/templates/settings/site.html:153 msgid "(Recommended if registration is open)" msgstr "(Recomendado se o registo estiver aberto)" -#: bookwyrm/templates/settings/site.html:138 +#: bookwyrm/templates/settings/site.html:156 msgid "Registration closed text:" msgstr "Mensagem caso o registo esteja fechado:" -#: bookwyrm/templates/settings/site.html:142 +#: bookwyrm/templates/settings/site.html:160 msgid "Invite request text:" msgstr "Texto da solicitação de convite:" +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:26 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:29 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:32 +msgid "Run ./bw-dev compilescss." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:42 +#: bookwyrm/templates/settings/themes.html:101 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:48 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:61 +msgid "No available theme files detected" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:69 +#: bookwyrm/templates/settings/themes.html:112 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:79 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:107 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:115 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:130 +msgid "Remove theme" +msgstr "" + #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32 msgid "Permanently delete user" @@ -4075,10 +4153,6 @@ msgstr "" msgid "Using S3:" msgstr "" -#: bookwyrm/templates/setup/config.html:91 -msgid "Display" -msgstr "" - #: bookwyrm/templates/setup/config.html:95 msgid "Default interface language:" msgstr "" @@ -4136,8 +4210,7 @@ msgid "User profile" msgstr "" #: bookwyrm/templates/shelf/shelf.html:39 -#: bookwyrm/templates/snippets/translated_shelf_name.html:3 -#: bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templatetags/shelf_tags.py:44 bookwyrm/views/shelf/shelf.py:53 msgid "All books" msgstr "Todos os livros" @@ -4571,8 +4644,13 @@ msgstr "Começar a ler" msgid "Want to read" msgstr "Quero ler" -#: bookwyrm/templates/snippets/shelf_selector.html:74 -#: bookwyrm/templates/snippets/shelf_selector.html:86 +#: bookwyrm/templates/snippets/shelf_selector.html:75 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 +#, python-format +msgid "Remove from %(name)s" +msgstr "Remover de %(name)s" + +#: bookwyrm/templates/snippets/shelf_selector.html:88 msgid "Remove from" msgstr "Remover de" @@ -4580,11 +4658,6 @@ msgstr "Remover de" msgid "More shelves" msgstr "Mais prateleiras" -#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 -#, python-format -msgid "Remove from %(name)s" -msgstr "Remover de %(name)s" - #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:31 msgid "Finish reading" msgstr "Terminar leitura" @@ -4867,14 +4940,14 @@ msgstr[1] "%(counter)s seguidores" msgid "%(counter)s following" msgstr "%(counter)s a seguir" -#: bookwyrm/templates/user/user_preview.html:34 +#: bookwyrm/templates/user/user_preview.html:39 #, python-format msgid "%(mutuals_display)s follower you follow" msgid_plural "%(mutuals_display)s followers you follow" msgstr[0] "%(mutuals_display)s seguidor que tu segues" msgstr[1] "%(mutuals_display)s seguidores que tu segues" -#: bookwyrm/templates/user/user_preview.html:38 +#: bookwyrm/templates/user/user_preview.html:43 msgid "No followers you follow" msgstr "Não há seguidores que tu segues" diff --git a/locale/sv_SE/LC_MESSAGES/django.mo b/locale/sv_SE/LC_MESSAGES/django.mo index 85bc0b8eddd9c164c5c396dc91c4c906ecfe7fa1..4f1348791d606f2cc21d5ef40c9a0d0916f359d7 100644 GIT binary patch delta 22829 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 delta 22387 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 ed3%5gBMZy+1Pw-4*6n9?8QYn*M;S1xssjKB*0\n" "Language-Team: Swedish\n" "Language: sv\n" @@ -21,70 +21,70 @@ msgstr "" msgid "User with this username already exists" msgstr "En användare med det användarnamnet existerar redan" -#: bookwyrm/forms.py:252 +#: bookwyrm/forms.py:254 msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "Den här domänen är blockerad. Vänligen kontakta din administratör om du tror att det här är felaktigt." -#: bookwyrm/forms.py:262 +#: bookwyrm/forms.py:264 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "Denna länk med filtyp har redan lagts till för denna bok. Om den inte är synlig så är domänen fortfarande väntande." -#: bookwyrm/forms.py:401 +#: bookwyrm/forms.py:403 msgid "A user with this email already exists." msgstr "En användare med den här e-postadressen existerar redan." -#: bookwyrm/forms.py:415 +#: bookwyrm/forms.py:417 msgid "One Day" msgstr "En dag" -#: bookwyrm/forms.py:416 +#: bookwyrm/forms.py:418 msgid "One Week" msgstr "En vecka" -#: bookwyrm/forms.py:417 +#: bookwyrm/forms.py:419 msgid "One Month" msgstr "En månad" -#: bookwyrm/forms.py:418 +#: bookwyrm/forms.py:420 msgid "Does Not Expire" msgstr "Slutar inte gälla" -#: bookwyrm/forms.py:422 +#: bookwyrm/forms.py:424 #, python-brace-format msgid "{i} uses" msgstr "{i} använder" -#: bookwyrm/forms.py:423 +#: bookwyrm/forms.py:425 msgid "Unlimited" msgstr "Obegränsad" -#: bookwyrm/forms.py:525 +#: bookwyrm/forms.py:543 msgid "List Order" msgstr "Listordning" -#: bookwyrm/forms.py:526 +#: bookwyrm/forms.py:544 msgid "Book Title" msgstr "Bokens titel" -#: bookwyrm/forms.py:527 bookwyrm/templates/shelf/shelf.html:155 +#: bookwyrm/forms.py:545 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "Betyg" -#: bookwyrm/forms.py:529 bookwyrm/templates/lists/list.html:175 +#: bookwyrm/forms.py:547 bookwyrm/templates/lists/list.html:185 msgid "Sort By" msgstr "Sortera efter" -#: bookwyrm/forms.py:533 +#: bookwyrm/forms.py:551 msgid "Ascending" msgstr "Stigande" -#: bookwyrm/forms.py:534 +#: bookwyrm/forms.py:552 msgid "Descending" msgstr "Fallande" -#: bookwyrm/forms.py:547 +#: bookwyrm/forms.py:565 msgid "Reading finish date cannot be before start date." msgstr "Slutdatum för läsning kan inte vara före startdatum." @@ -97,33 +97,29 @@ msgid "Could not find a match for book" msgstr "Kunde inte hitta en träff för boken" #: bookwyrm/models/announcement.py:11 -msgid "None" -msgstr "Inget" - -#: bookwyrm/models/announcement.py:12 msgid "Primary" msgstr "Primär" -#: bookwyrm/models/announcement.py:13 +#: bookwyrm/models/announcement.py:12 msgid "Success" msgstr "Klart" -#: bookwyrm/models/announcement.py:14 +#: bookwyrm/models/announcement.py:13 #: bookwyrm/templates/settings/invites/manage_invites.html:47 msgid "Link" msgstr "Länk" -#: bookwyrm/models/announcement.py:15 +#: bookwyrm/models/announcement.py:14 msgid "Warning" msgstr "Varning" -#: bookwyrm/models/announcement.py:16 +#: bookwyrm/models/announcement.py:15 msgid "Danger" msgstr "Observera" #: bookwyrm/models/antispam.py:106 bookwyrm/models/antispam.py:140 msgid "Automatically generated report" -msgstr "" +msgstr "Automatiskt genererad rapport" #: bookwyrm/models/base_model.py:17 bookwyrm/models/link.py:72 #: bookwyrm/templates/import/import_status.html:200 @@ -168,13 +164,13 @@ msgid "Paperback" msgstr "Pocketbok" #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "Federerad" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 -#: bookwyrm/templates/settings/federation/edit_instance.html:44 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 @@ -470,7 +466,7 @@ msgid "Copy address" msgstr "Kopiera adress" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:267 +#: bookwyrm/templates/lists/list.html:277 msgid "Copied!" msgstr "Kopierades!" @@ -737,12 +733,12 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:124 +#: bookwyrm/templates/preferences/edit_user.html:136 #: bookwyrm/templates/readthrough/readthrough_modal.html:72 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 -#: bookwyrm/templates/settings/federation/edit_instance.html:82 -#: bookwyrm/templates/settings/federation/instance.html:87 -#: bookwyrm/templates/settings/site.html:151 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/site.html:169 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -763,7 +759,7 @@ msgstr "Spara" #: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/readthrough_modal.html:73 -#: bookwyrm/templates/settings/federation/instance.html:88 +#: bookwyrm/templates/settings/federation/instance.html:106 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Cancel" @@ -879,7 +875,7 @@ msgstr "Lägg till i listan" #: bookwyrm/templates/book/book.html:370 #: bookwyrm/templates/book/cover_add_modal.html:31 #: bookwyrm/templates/lists/add_item_modal.html:37 -#: bookwyrm/templates/lists/list.html:245 +#: bookwyrm/templates/lists/list.html:255 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -1179,8 +1175,9 @@ msgstr "Status" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 -#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/federation/instance.html:112 #: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:118 msgid "Actions" msgstr "Åtgärder" @@ -1667,16 +1664,14 @@ msgid "Add to your books" msgstr "Lägg till i dina böcker" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:86 -#: bookwyrm/templates/snippets/translated_shelf_name.html:5 -#: bookwyrm/templates/user/user.html:33 +#: bookwyrm/templates/shelf/shelf.html:86 bookwyrm/templates/user/user.html:33 +#: bookwyrm/templatetags/shelf_tags.py:46 msgid "To Read" msgstr "Att läsa" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:87 -#: bookwyrm/templates/snippets/translated_shelf_name.html:7 -#: bookwyrm/templates/user/user.html:34 +#: bookwyrm/templates/shelf/shelf.html:87 bookwyrm/templates/user/user.html:34 +#: bookwyrm/templatetags/shelf_tags.py:48 msgid "Currently Reading" msgstr "Läser just nu" @@ -1685,8 +1680,7 @@ msgstr "Läser just nu" #: bookwyrm/templates/snippets/shelf_selector.html:47 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/snippets/translated_shelf_name.html:9 -#: bookwyrm/templates/user/user.html:35 +#: bookwyrm/templates/user/user.html:35 bookwyrm/templatetags/shelf_tags.py:50 msgid "Read" msgstr "Lästa" @@ -1695,7 +1689,7 @@ msgid "What are you reading?" msgstr "Vad läser du?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:203 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:213 msgid "Search for a book" msgstr "Sök efter en bok" @@ -1715,7 +1709,7 @@ msgstr "Du kan lägga till böcker när du börjar använda %(site_name)s." #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/members.html:15 #: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:54 -#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:207 +#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1731,7 +1725,7 @@ msgid "Popular on %(site_name)s" msgstr "Populära i %(site_name)s" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:220 +#: bookwyrm/templates/lists/list.html:230 msgid "No books found" msgstr "Inga böcker hittades" @@ -1887,7 +1881,8 @@ msgstr "Lämna grupp" #: bookwyrm/templates/groups/members.html:54 #: bookwyrm/templates/groups/suggested_users.html:35 #: bookwyrm/templates/snippets/suggested_users.html:31 -#: bookwyrm/templates/user/user_preview.html:36 +#: bookwyrm/templates/user/user_preview.html:33 +#: bookwyrm/templates/user/user_preview.html:41 msgid "Follows you" msgstr "Följer dig" @@ -1943,7 +1938,7 @@ msgid "Privacy setting for imported reviews:" msgstr "Integritetsinställning för importerade recensioner:" #: bookwyrm/templates/import/import.html:59 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:76 msgid "Import" msgstr "Importera" @@ -2304,7 +2299,7 @@ msgid "Suggest \"%(title)s\" for this list" msgstr "Föreslå \"%(title)s\" för den här listan" #: bookwyrm/templates/lists/add_item_modal.html:39 -#: bookwyrm/templates/lists/list.html:247 +#: bookwyrm/templates/lists/list.html:257 msgid "Suggest" msgstr "Föreslå" @@ -2340,7 +2335,7 @@ msgid "You're all set!" msgstr "Nu är du klar!" #: bookwyrm/templates/lists/curate.html:45 -#: bookwyrm/templates/lists/list.html:83 +#: bookwyrm/templates/lists/list.html:93 #, python-format msgid "%(username)s says:" msgstr "%(username)s säger:" @@ -2373,7 +2368,7 @@ msgid "on %(site_name)s" msgstr "på %(site_name)s" #: bookwyrm/templates/lists/embed-list.html:27 -#: bookwyrm/templates/lists/list.html:44 +#: bookwyrm/templates/lists/list.html:54 msgid "This list is currently empty" msgstr "Den här listan är för närvarande tom" @@ -2435,7 +2430,7 @@ msgid "Delete list" msgstr "Ta bort lista" #: bookwyrm/templates/lists/item_notes_field.html:7 -#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 msgid "Notes:" msgstr "Anteckningar:" @@ -2443,80 +2438,84 @@ msgstr "Anteckningar:" msgid "An optional note that will be displayed with the book." msgstr "En valfri anteckning som kommer att visas med boken." -#: bookwyrm/templates/lists/list.html:36 +#: bookwyrm/templates/lists/list.html:37 +msgid "That book is already on this list." +msgstr "Den där finns redan i den här listan." + +#: bookwyrm/templates/lists/list.html:45 msgid "You successfully suggested a book for this list!" msgstr "Du föreslog framgångsrikt en bok för den här listan!" -#: bookwyrm/templates/lists/list.html:38 +#: bookwyrm/templates/lists/list.html:47 msgid "You successfully added a book to this list!" msgstr "Du lade framgångsrikt till en bok i här listan!" -#: bookwyrm/templates/lists/list.html:94 +#: bookwyrm/templates/lists/list.html:104 msgid "Edit notes" msgstr "Redigera anteckningar" -#: bookwyrm/templates/lists/list.html:109 +#: bookwyrm/templates/lists/list.html:119 msgid "Add notes" msgstr "Lägg till anteckningar" -#: bookwyrm/templates/lists/list.html:121 +#: bookwyrm/templates/lists/list.html:131 #, python-format msgid "Added by %(username)s" msgstr "Lades till av %(username)s" -#: bookwyrm/templates/lists/list.html:136 +#: bookwyrm/templates/lists/list.html:146 msgid "List position" msgstr "Listans plats" -#: bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/lists/list.html:152 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21 msgid "Set" msgstr "Ställ in" -#: bookwyrm/templates/lists/list.html:157 +#: bookwyrm/templates/lists/list.html:167 #: bookwyrm/templates/snippets/remove_from_group_button.html:20 msgid "Remove" msgstr "Ta bort" -#: bookwyrm/templates/lists/list.html:171 -#: bookwyrm/templates/lists/list.html:188 +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 msgid "Sort List" msgstr "Sortera lista" -#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:191 msgid "Direction" msgstr "Riktning" -#: bookwyrm/templates/lists/list.html:195 +#: bookwyrm/templates/lists/list.html:205 msgid "Add Books" msgstr "Lägg till böcker" -#: bookwyrm/templates/lists/list.html:197 +#: bookwyrm/templates/lists/list.html:207 msgid "Suggest Books" msgstr "Föreslå böcker" -#: bookwyrm/templates/lists/list.html:208 +#: bookwyrm/templates/lists/list.html:218 msgid "search" msgstr "sök" -#: bookwyrm/templates/lists/list.html:214 +#: bookwyrm/templates/lists/list.html:224 msgid "Clear search" msgstr "Rensa sökning" -#: bookwyrm/templates/lists/list.html:219 +#: bookwyrm/templates/lists/list.html:229 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "Inga böcker hittades som matchar frågan \"%(query)s\"" -#: bookwyrm/templates/lists/list.html:258 +#: bookwyrm/templates/lists/list.html:268 msgid "Embed this list on a website" msgstr "Bädda in den här listan på en hemsida" -#: bookwyrm/templates/lists/list.html:266 +#: bookwyrm/templates/lists/list.html:276 msgid "Copy embed code" msgstr "Kopiera inbäddad kod" -#: bookwyrm/templates/lists/list.html:268 +#: bookwyrm/templates/lists/list.html:278 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s, en lista av %(owner)s på %(site_name)s" @@ -2871,11 +2870,14 @@ msgstr "Profil" #: bookwyrm/templates/preferences/edit_user.html:13 #: bookwyrm/templates/preferences/edit_user.html:64 -msgid "Display preferences" -msgstr "Visa egenskaper" +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:77 +#: bookwyrm/templates/setup/config.html:91 +msgid "Display" +msgstr "Visa" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:106 +#: bookwyrm/templates/preferences/edit_user.html:112 msgid "Privacy" msgstr "Integritet" @@ -2900,11 +2902,19 @@ msgstr "Ditt konto kommer att dyka upp i mappen och ka msgid "Preferred Timezone: " msgstr "Föredragen tidszon: " -#: bookwyrm/templates/preferences/edit_user.html:111 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Theme:" +msgstr "Tema:" + +#: bookwyrm/templates/preferences/edit_user.html:117 msgid "Manually approve followers" msgstr "Godkänn följare manuellt" -#: bookwyrm/templates/preferences/edit_user.html:116 +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:128 msgid "Default post privacy:" msgstr "Standardsekretess för inlägg:" @@ -3051,7 +3061,7 @@ msgid "Announcement" msgstr "Tillkännagivande" #: bookwyrm/templates/settings/announcements/announcement.html:16 -#: bookwyrm/templates/settings/federation/instance.html:75 +#: bookwyrm/templates/settings/federation/instance.html:93 #: bookwyrm/templates/snippets/status/status_options.html:25 msgid "Edit" msgstr "Redigera" @@ -3171,7 +3181,7 @@ msgstr "" #: bookwyrm/templates/settings/automod/rules.html:23 msgid "Run scan" -msgstr "" +msgstr "Kör skanning" #: bookwyrm/templates/settings/automod/rules.html:31 msgid "Successfully added rule" @@ -3179,7 +3189,7 @@ msgstr "" #: bookwyrm/templates/settings/automod/rules.html:37 msgid "Add Rule" -msgstr "" +msgstr "Lägg till regel" #: bookwyrm/templates/settings/automod/rules.html:46 #: bookwyrm/templates/settings/automod/rules.html:90 @@ -3189,28 +3199,28 @@ msgstr "" #: bookwyrm/templates/settings/automod/rules.html:56 #: bookwyrm/templates/settings/automod/rules.html:93 msgid "Flag users" -msgstr "" +msgstr "Flagga användare" #: bookwyrm/templates/settings/automod/rules.html:63 #: bookwyrm/templates/settings/automod/rules.html:96 msgid "Flag statuses" -msgstr "" +msgstr "Flagga statusar" #: bookwyrm/templates/settings/automod/rules.html:70 msgid "Add rule" -msgstr "" +msgstr "Lägg till regel" #: bookwyrm/templates/settings/automod/rules.html:77 msgid "Current Rules" -msgstr "" +msgstr "Nuvarande regler" #: bookwyrm/templates/settings/automod/rules.html:81 msgid "Show rules" -msgstr "" +msgstr "Visa regler" #: bookwyrm/templates/settings/automod/rules.html:118 msgid "Remove rule" -msgstr "" +msgstr "Ta bort regel" #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 @@ -3340,136 +3350,136 @@ msgstr "Inga e-postdomäner är för närvarande blockerade" #: 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/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 #: bookwyrm/templates/settings/federation/instance_blocklist.html:3 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 #: bookwyrm/templates/settings/federation/instance_list.html:9 #: bookwyrm/templates/settings/federation/instance_list.html:10 msgid "Add instance" msgstr "Lägg till instans" -#: bookwyrm/templates/settings/federation/edit_instance.html:7 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:7 -msgid "Back to instance list" -msgstr "Bakåt till instans-lista" - -#: bookwyrm/templates/settings/federation/edit_instance.html:16 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:16 -msgid "Import block list" -msgstr "Importera blockeringslista" - -#: bookwyrm/templates/settings/federation/edit_instance.html:31 -msgid "Instance:" -msgstr "Instans:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:40 -#: 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:54 -#: bookwyrm/templates/settings/federation/instance.html:22 -#: bookwyrm/templates/settings/users/user_info.html:100 -msgid "Software:" -msgstr "Programvara:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:64 -#: bookwyrm/templates/settings/federation/instance.html:25 -#: bookwyrm/templates/settings/users/user_info.html:103 -msgid "Version:" -msgstr "Version:" - -#: bookwyrm/templates/settings/federation/instance.html:13 -msgid "Back to list" -msgstr "Tillbaka till listan" - -#: bookwyrm/templates/settings/federation/instance.html:19 -msgid "Details" -msgstr "Detaljer" - -#: bookwyrm/templates/settings/federation/instance.html:35 -#: bookwyrm/templates/user/layout.html:67 -msgid "Activity" -msgstr "Aktivitet" - -#: bookwyrm/templates/settings/federation/instance.html:38 -msgid "Users:" -msgstr "Användare:" - -#: bookwyrm/templates/settings/federation/instance.html:41 -#: bookwyrm/templates/settings/federation/instance.html:47 -msgid "View all" -msgstr "Visa alla" - -#: bookwyrm/templates/settings/federation/instance.html:44 -#: bookwyrm/templates/settings/users/user_info.html:56 -msgid "Reports:" -msgstr "Rapporter:" - -#: bookwyrm/templates/settings/federation/instance.html:50 -msgid "Followed by us:" -msgstr "Följs av oss:" - -#: bookwyrm/templates/settings/federation/instance.html:55 -msgid "Followed by them:" -msgstr "Följs av dem:" - -#: bookwyrm/templates/settings/federation/instance.html:60 -msgid "Blocked by us:" -msgstr "Blockerade av oss:" - -#: bookwyrm/templates/settings/federation/instance.html:72 -#: bookwyrm/templates/settings/users/user_info.html:110 -msgid "Notes" -msgstr "Anteckningar" - -#: bookwyrm/templates/settings/federation/instance.html:79 -msgid "No notes" -msgstr "Inga anteckningar" - -#: bookwyrm/templates/settings/federation/instance.html:98 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "Blockera" - -#: bookwyrm/templates/settings/federation/instance.html:99 -msgid "All users from this instance will be deactivated." -msgstr "Alla användare från den här instansen kommer att bli inaktiverade." - -#: bookwyrm/templates/settings/federation/instance.html:104 -#: bookwyrm/templates/snippets/block_button.html:10 -msgid "Un-block" -msgstr "Avblockera" - -#: bookwyrm/templates/settings/federation/instance.html:105 -msgid "All users from this instance will be re-activated." -msgstr "Alla användare från den här instansen kommer att återaktiveras." - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 -msgid "Import Blocklist" -msgstr "Importera blockeringslista" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:26 -#: bookwyrm/templates/snippets/goal_progress.html:7 -msgid "Success!" -msgstr "Lyckades!" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:30 -msgid "Successfully blocked:" -msgstr "Blockerades framgångsrikt:" - -#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 -msgid "Failed:" -msgstr "Misslyckades:" - +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 #: bookwyrm/templates/settings/federation/instance_list.html:3 #: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:47 msgid "Federated Instances" msgstr "Federerade instanser" +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "Importera blockeringslista" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "Instans:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "Status:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "Programvara:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "Version:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "Uppdatera data" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "Detaljer" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:67 +msgid "Activity" +msgstr "Aktivitet" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "Användare:" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "Visa alla" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:56 +msgid "Reports:" +msgstr "Rapporter:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "Följs av oss:" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "Följs av dem:" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "Blockerade av oss:" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Notes" +msgstr "Anteckningar" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "Inga anteckningar" + +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "Blockera" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "Alla användare från den här instansen kommer att bli inaktiverade." + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "Avblockera" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "Alla användare från den här instansen kommer att återaktiveras." + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "Importera blockeringslista" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "Lyckades!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "Blockerades framgångsrikt:" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "Misslyckades:" + #: bookwyrm/templates/settings/federation/instance_list.html:32 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" @@ -3654,6 +3664,13 @@ msgstr "Inställningar för instans" msgid "Site Settings" msgstr "Inställningar för sidan" +#: bookwyrm/templates/settings/layout.html:91 +#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format msgid "Set display name for %(url)s" @@ -3779,22 +3796,17 @@ msgid "No reports found." msgstr "Inga rapporter hittades." #: bookwyrm/templates/settings/site.html:10 -#: bookwyrm/templates/settings/site.html:39 +#: bookwyrm/templates/settings/site.html:44 msgid "Instance Info" msgstr "Info om instans" -#: bookwyrm/templates/settings/site.html:11 -#: bookwyrm/templates/settings/site.html:72 -msgid "Images" -msgstr "Bilder" - #: bookwyrm/templates/settings/site.html:12 -#: bookwyrm/templates/settings/site.html:92 +#: bookwyrm/templates/settings/site.html:110 msgid "Footer Content" msgstr "Sidfotens innehåll" #: bookwyrm/templates/settings/site.html:13 -#: bookwyrm/templates/settings/site.html:116 +#: bookwyrm/templates/settings/site.html:134 msgid "Registration" msgstr "Registrering" @@ -3806,86 +3818,152 @@ msgstr "Inställningarna sparades" msgid "Unable to save settings" msgstr "Det gick inte att spara inställningarna" -#: bookwyrm/templates/settings/site.html:42 +#: bookwyrm/templates/settings/site.html:47 msgid "Instance Name:" msgstr "Namn på instansen:" -#: bookwyrm/templates/settings/site.html:46 +#: bookwyrm/templates/settings/site.html:51 msgid "Tagline:" msgstr "Tagglinje:" -#: bookwyrm/templates/settings/site.html:50 +#: bookwyrm/templates/settings/site.html:55 msgid "Instance description:" msgstr "Beskrivning av instans:" -#: bookwyrm/templates/settings/site.html:54 +#: bookwyrm/templates/settings/site.html:59 msgid "Short description:" msgstr "Kort beskrivning:" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:60 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." msgstr "Används när instansen förhandsgranskas på joinbookwyrm.com. Stödjer inte HTML eller Markdown." -#: bookwyrm/templates/settings/site.html:59 +#: bookwyrm/templates/settings/site.html:64 msgid "Code of conduct:" msgstr "Uppförandekod:" -#: bookwyrm/templates/settings/site.html:63 +#: bookwyrm/templates/settings/site.html:68 msgid "Privacy Policy:" msgstr "Integritetspolicy:" -#: bookwyrm/templates/settings/site.html:75 +#: bookwyrm/templates/settings/site.html:79 +msgid "Images" +msgstr "Bilder" + +#: bookwyrm/templates/settings/site.html:82 msgid "Logo:" msgstr "Logga:" -#: bookwyrm/templates/settings/site.html:79 +#: bookwyrm/templates/settings/site.html:86 msgid "Logo small:" msgstr "Liten logga:" -#: bookwyrm/templates/settings/site.html:83 +#: bookwyrm/templates/settings/site.html:90 msgid "Favicon:" msgstr "Favikon:" -#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/site.html:98 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:113 msgid "Support link:" msgstr "Länk för support:" -#: bookwyrm/templates/settings/site.html:99 +#: bookwyrm/templates/settings/site.html:117 msgid "Support title:" msgstr "Supporttitel:" -#: bookwyrm/templates/settings/site.html:103 +#: bookwyrm/templates/settings/site.html:121 msgid "Admin email:" msgstr "Administratörens e-postadress:" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:125 msgid "Additional info:" msgstr "Ytterligare info:" -#: bookwyrm/templates/settings/site.html:121 +#: bookwyrm/templates/settings/site.html:139 msgid "Allow registration" msgstr "Tillåt registrering" -#: bookwyrm/templates/settings/site.html:127 +#: bookwyrm/templates/settings/site.html:145 msgid "Allow invite requests" msgstr "Tillåt inbjudningsförfrågningar" -#: bookwyrm/templates/settings/site.html:133 +#: bookwyrm/templates/settings/site.html:151 msgid "Require users to confirm email address" msgstr "Kräv att användarna ska bekräfta e-postadressen" -#: bookwyrm/templates/settings/site.html:135 +#: bookwyrm/templates/settings/site.html:153 msgid "(Recommended if registration is open)" msgstr "(Rekommenderas om registreringen är öppen)" -#: bookwyrm/templates/settings/site.html:138 +#: bookwyrm/templates/settings/site.html:156 msgid "Registration closed text:" msgstr "Text för stängd registrering:" -#: bookwyrm/templates/settings/site.html:142 +#: bookwyrm/templates/settings/site.html:160 msgid "Invite request text:" msgstr "Text för inbjudningsförfrågning:" +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:26 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:29 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:32 +msgid "Run ./bw-dev compilescss." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:42 +#: bookwyrm/templates/settings/themes.html:101 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:48 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:61 +msgid "No available theme files detected" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:69 +#: bookwyrm/templates/settings/themes.html:112 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:79 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:107 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:115 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:130 +msgid "Remove theme" +msgstr "" + #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32 msgid "Permanently delete user" @@ -4077,10 +4155,6 @@ msgstr "Protokoll:" msgid "Using S3:" msgstr "Användning av S3:" -#: bookwyrm/templates/setup/config.html:91 -msgid "Display" -msgstr "Visa" - #: bookwyrm/templates/setup/config.html:95 msgid "Default interface language:" msgstr "Standardspråk för gränssnittet:" @@ -4138,8 +4212,7 @@ msgid "User profile" msgstr "Användarprofil" #: bookwyrm/templates/shelf/shelf.html:39 -#: bookwyrm/templates/snippets/translated_shelf_name.html:3 -#: bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templatetags/shelf_tags.py:44 bookwyrm/views/shelf/shelf.py:53 msgid "All books" msgstr "Alla böcker" @@ -4573,8 +4646,13 @@ msgstr "Börja läsa" msgid "Want to read" msgstr "Vill läsa" -#: bookwyrm/templates/snippets/shelf_selector.html:74 -#: bookwyrm/templates/snippets/shelf_selector.html:86 +#: bookwyrm/templates/snippets/shelf_selector.html:75 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 +#, python-format +msgid "Remove from %(name)s" +msgstr "Ta bort från %(name)s" + +#: bookwyrm/templates/snippets/shelf_selector.html:88 msgid "Remove from" msgstr "Ta bort från" @@ -4582,11 +4660,6 @@ msgstr "Ta bort från" msgid "More shelves" msgstr "Mer hyllor" -#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 -#, python-format -msgid "Remove from %(name)s" -msgstr "Ta bort från %(name)s" - #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:31 msgid "Finish reading" msgstr "Sluta läs" @@ -4869,14 +4942,14 @@ msgstr[1] "%(counter)s följare" msgid "%(counter)s following" msgstr "%(counter)s följer" -#: bookwyrm/templates/user/user_preview.html:34 +#: bookwyrm/templates/user/user_preview.html:39 #, python-format msgid "%(mutuals_display)s follower you follow" msgid_plural "%(mutuals_display)s followers you follow" msgstr[0] "%(mutuals_display)s följare som du följer" msgstr[1] "%(mutuals_display)s följare som du följer" -#: bookwyrm/templates/user/user_preview.html:38 +#: bookwyrm/templates/user/user_preview.html:43 msgid "No followers you follow" msgstr "Inga följare som du följer" diff --git a/locale/zh_Hans/LC_MESSAGES/django.po b/locale/zh_Hans/LC_MESSAGES/django.po index d40254f06..ec1edda73 100644 --- a/locale/zh_Hans/LC_MESSAGES/django.po +++ b/locale/zh_Hans/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-02-25 20:12+0000\n" -"PO-Revision-Date: 2022-02-26 04:02\n" +"POT-Creation-Date: 2022-03-01 19:48+0000\n" +"PO-Revision-Date: 2022-03-04 15:46\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Chinese Simplified\n" "Language: zh\n" @@ -21,70 +21,70 @@ msgstr "" msgid "User with this username already exists" msgstr "使用此用户名的用户已存在" -#: bookwyrm/forms.py:252 +#: bookwyrm/forms.py:254 msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "此域名已被屏蔽。如果您认为这是一个错误,请联系您的管理员。" -#: bookwyrm/forms.py:262 +#: bookwyrm/forms.py:264 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "此文件类型的链接已经被添加到这本书。如果不可见,域名仍在等待处理中。" -#: bookwyrm/forms.py:401 +#: bookwyrm/forms.py:403 msgid "A user with this email already exists." msgstr "已经存在使用该邮箱的用户。" -#: bookwyrm/forms.py:415 +#: bookwyrm/forms.py:417 msgid "One Day" msgstr "一天" -#: bookwyrm/forms.py:416 +#: bookwyrm/forms.py:418 msgid "One Week" msgstr "一周" -#: bookwyrm/forms.py:417 +#: bookwyrm/forms.py:419 msgid "One Month" msgstr "一个月" -#: bookwyrm/forms.py:418 +#: bookwyrm/forms.py:420 msgid "Does Not Expire" msgstr "永不失效" -#: bookwyrm/forms.py:422 +#: bookwyrm/forms.py:424 #, python-brace-format msgid "{i} uses" msgstr "{i} 次使用" -#: bookwyrm/forms.py:423 +#: bookwyrm/forms.py:425 msgid "Unlimited" msgstr "不受限" -#: bookwyrm/forms.py:525 +#: bookwyrm/forms.py:543 msgid "List Order" msgstr "列表顺序" -#: bookwyrm/forms.py:526 +#: bookwyrm/forms.py:544 msgid "Book Title" msgstr "书名" -#: bookwyrm/forms.py:527 bookwyrm/templates/shelf/shelf.html:155 +#: bookwyrm/forms.py:545 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "评价" -#: bookwyrm/forms.py:529 bookwyrm/templates/lists/list.html:175 +#: bookwyrm/forms.py:547 bookwyrm/templates/lists/list.html:185 msgid "Sort By" msgstr "排序方式" -#: bookwyrm/forms.py:533 +#: bookwyrm/forms.py:551 msgid "Ascending" msgstr "升序" -#: bookwyrm/forms.py:534 +#: bookwyrm/forms.py:552 msgid "Descending" msgstr "降序" -#: bookwyrm/forms.py:547 +#: bookwyrm/forms.py:565 msgid "Reading finish date cannot be before start date." msgstr "阅读完成日期不能早于开始日期。" @@ -97,27 +97,23 @@ msgid "Could not find a match for book" msgstr "找不到匹配的书" #: bookwyrm/models/announcement.py:11 -msgid "None" -msgstr "暂无" - -#: bookwyrm/models/announcement.py:12 msgid "Primary" msgstr "初级" -#: bookwyrm/models/announcement.py:13 +#: bookwyrm/models/announcement.py:12 msgid "Success" msgstr "成功" -#: bookwyrm/models/announcement.py:14 +#: bookwyrm/models/announcement.py:13 #: bookwyrm/templates/settings/invites/manage_invites.html:47 msgid "Link" msgstr "链接" -#: bookwyrm/models/announcement.py:15 +#: bookwyrm/models/announcement.py:14 msgid "Warning" msgstr "警告" -#: bookwyrm/models/announcement.py:16 +#: bookwyrm/models/announcement.py:15 msgid "Danger" msgstr "危险" @@ -168,13 +164,13 @@ msgid "Paperback" msgstr "平装" #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "跨站" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 -#: bookwyrm/templates/settings/federation/edit_instance.html:44 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 @@ -470,7 +466,7 @@ msgid "Copy address" msgstr "复制地址" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:267 +#: bookwyrm/templates/lists/list.html:277 msgid "Copied!" msgstr "复制成功!" @@ -733,12 +729,12 @@ msgstr "ISNI:" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:124 +#: bookwyrm/templates/preferences/edit_user.html:136 #: bookwyrm/templates/readthrough/readthrough_modal.html:72 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 -#: bookwyrm/templates/settings/federation/edit_instance.html:82 -#: bookwyrm/templates/settings/federation/instance.html:87 -#: bookwyrm/templates/settings/site.html:151 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/site.html:169 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -759,7 +755,7 @@ msgstr "保存" #: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/readthrough_modal.html:73 -#: bookwyrm/templates/settings/federation/instance.html:88 +#: bookwyrm/templates/settings/federation/instance.html:106 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Cancel" @@ -874,7 +870,7 @@ msgstr "添加到列表" #: bookwyrm/templates/book/book.html:370 #: bookwyrm/templates/book/cover_add_modal.html:31 #: bookwyrm/templates/lists/add_item_modal.html:37 -#: bookwyrm/templates/lists/list.html:245 +#: bookwyrm/templates/lists/list.html:255 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -1174,8 +1170,9 @@ msgstr "状态" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 -#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/federation/instance.html:112 #: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:118 msgid "Actions" msgstr "动作" @@ -1660,16 +1657,14 @@ msgid "Add to your books" msgstr "添加到您的书籍中" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:86 -#: bookwyrm/templates/snippets/translated_shelf_name.html:5 -#: bookwyrm/templates/user/user.html:33 +#: bookwyrm/templates/shelf/shelf.html:86 bookwyrm/templates/user/user.html:33 +#: bookwyrm/templatetags/shelf_tags.py:46 msgid "To Read" msgstr "想读" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:87 -#: bookwyrm/templates/snippets/translated_shelf_name.html:7 -#: bookwyrm/templates/user/user.html:34 +#: bookwyrm/templates/shelf/shelf.html:87 bookwyrm/templates/user/user.html:34 +#: bookwyrm/templatetags/shelf_tags.py:48 msgid "Currently Reading" msgstr "在读" @@ -1678,8 +1673,7 @@ msgstr "在读" #: bookwyrm/templates/snippets/shelf_selector.html:47 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/snippets/translated_shelf_name.html:9 -#: bookwyrm/templates/user/user.html:35 +#: bookwyrm/templates/user/user.html:35 bookwyrm/templatetags/shelf_tags.py:50 msgid "Read" msgstr "读过" @@ -1688,7 +1682,7 @@ msgid "What are you reading?" msgstr "你在阅读什么?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:203 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:213 msgid "Search for a book" msgstr "搜索书目" @@ -1708,7 +1702,7 @@ msgstr "你可以在开始使用 %(site_name)s 后添加书目。" #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/members.html:15 #: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:54 -#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:207 +#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1724,7 +1718,7 @@ msgid "Popular on %(site_name)s" msgstr "%(site_name)s 上的热门" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:220 +#: bookwyrm/templates/lists/list.html:230 msgid "No books found" msgstr "没有找到书目" @@ -1880,7 +1874,8 @@ msgstr "退出群组" #: bookwyrm/templates/groups/members.html:54 #: bookwyrm/templates/groups/suggested_users.html:35 #: bookwyrm/templates/snippets/suggested_users.html:31 -#: bookwyrm/templates/user/user_preview.html:36 +#: bookwyrm/templates/user/user_preview.html:33 +#: bookwyrm/templates/user/user_preview.html:41 msgid "Follows you" msgstr "正在关注着你" @@ -1934,7 +1929,7 @@ msgid "Privacy setting for imported reviews:" msgstr "导入书评的隐私设定" #: bookwyrm/templates/import/import.html:59 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:76 msgid "Import" msgstr "导入" @@ -2293,7 +2288,7 @@ msgid "Suggest \"%(title)s\" for this list" msgstr "推荐 “%(title)s” 到这个列表" #: bookwyrm/templates/lists/add_item_modal.html:39 -#: bookwyrm/templates/lists/list.html:247 +#: bookwyrm/templates/lists/list.html:257 msgid "Suggest" msgstr "推荐" @@ -2329,7 +2324,7 @@ msgid "You're all set!" msgstr "都弄好了!" #: bookwyrm/templates/lists/curate.html:45 -#: bookwyrm/templates/lists/list.html:83 +#: bookwyrm/templates/lists/list.html:93 #, python-format msgid "%(username)s says:" msgstr "%(username)s 说:" @@ -2362,7 +2357,7 @@ msgid "on %(site_name)s" msgstr "在 %(site_name)s" #: bookwyrm/templates/lists/embed-list.html:27 -#: bookwyrm/templates/lists/list.html:44 +#: bookwyrm/templates/lists/list.html:54 msgid "This list is currently empty" msgstr "此列表当前是空的" @@ -2424,7 +2419,7 @@ msgid "Delete list" msgstr "删除列表" #: bookwyrm/templates/lists/item_notes_field.html:7 -#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 msgid "Notes:" msgstr "备注:" @@ -2432,80 +2427,84 @@ msgstr "备注:" msgid "An optional note that will be displayed with the book." msgstr "可选的与书一起显示的一条笔记。" -#: bookwyrm/templates/lists/list.html:36 +#: bookwyrm/templates/lists/list.html:37 +msgid "That book is already on this list." +msgstr "此书目已存在此专案。" + +#: bookwyrm/templates/lists/list.html:45 msgid "You successfully suggested a book for this list!" msgstr "你成功向该列表推荐了一本书!" -#: bookwyrm/templates/lists/list.html:38 +#: bookwyrm/templates/lists/list.html:47 msgid "You successfully added a book to this list!" msgstr "你成功向此列表添加了一本书!" -#: bookwyrm/templates/lists/list.html:94 +#: bookwyrm/templates/lists/list.html:104 msgid "Edit notes" msgstr "编辑笔记" -#: bookwyrm/templates/lists/list.html:109 +#: bookwyrm/templates/lists/list.html:119 msgid "Add notes" msgstr "添加笔记" -#: bookwyrm/templates/lists/list.html:121 +#: bookwyrm/templates/lists/list.html:131 #, python-format msgid "Added by %(username)s" msgstr "由 %(username)s 添加" -#: bookwyrm/templates/lists/list.html:136 +#: bookwyrm/templates/lists/list.html:146 msgid "List position" msgstr "列表位置:" -#: bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/lists/list.html:152 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21 msgid "Set" msgstr "设定" -#: bookwyrm/templates/lists/list.html:157 +#: bookwyrm/templates/lists/list.html:167 #: bookwyrm/templates/snippets/remove_from_group_button.html:20 msgid "Remove" msgstr "移除" -#: bookwyrm/templates/lists/list.html:171 -#: bookwyrm/templates/lists/list.html:188 +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 msgid "Sort List" msgstr "排序列表" -#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:191 msgid "Direction" msgstr "方向" -#: bookwyrm/templates/lists/list.html:195 +#: bookwyrm/templates/lists/list.html:205 msgid "Add Books" msgstr "添加书目" -#: bookwyrm/templates/lists/list.html:197 +#: bookwyrm/templates/lists/list.html:207 msgid "Suggest Books" msgstr "推荐书目" -#: bookwyrm/templates/lists/list.html:208 +#: bookwyrm/templates/lists/list.html:218 msgid "search" msgstr "搜索" -#: bookwyrm/templates/lists/list.html:214 +#: bookwyrm/templates/lists/list.html:224 msgid "Clear search" msgstr "清除搜索" -#: bookwyrm/templates/lists/list.html:219 +#: bookwyrm/templates/lists/list.html:229 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "没有符合 “%(query)s” 请求的书目" -#: bookwyrm/templates/lists/list.html:258 +#: bookwyrm/templates/lists/list.html:268 msgid "Embed this list on a website" msgstr "将此列表嵌入到网站" -#: bookwyrm/templates/lists/list.html:266 +#: bookwyrm/templates/lists/list.html:276 msgid "Copy embed code" msgstr "复制嵌入代码" -#: bookwyrm/templates/lists/list.html:268 +#: bookwyrm/templates/lists/list.html:278 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "%(list_name)s,%(owner)s 在 %(site_name)s 上的列表" @@ -2860,11 +2859,14 @@ msgstr "个人资料" #: bookwyrm/templates/preferences/edit_user.html:13 #: bookwyrm/templates/preferences/edit_user.html:64 -msgid "Display preferences" -msgstr "显示偏好" +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:77 +#: bookwyrm/templates/setup/config.html:91 +msgid "Display" +msgstr "显示" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:106 +#: bookwyrm/templates/preferences/edit_user.html:112 msgid "Privacy" msgstr "隐私" @@ -2889,11 +2891,19 @@ msgstr "你的帐号会显示在 目录 中,并可能 msgid "Preferred Timezone: " msgstr "偏好的时区:" -#: bookwyrm/templates/preferences/edit_user.html:111 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Theme:" +msgstr "主题:" + +#: bookwyrm/templates/preferences/edit_user.html:117 msgid "Manually approve followers" msgstr "手动批准关注者" -#: bookwyrm/templates/preferences/edit_user.html:116 +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Hide followers and following on profile" +msgstr "隐藏关注者并在个人资料中关注" + +#: bookwyrm/templates/preferences/edit_user.html:128 msgid "Default post privacy:" msgstr "默认发文隐私:" @@ -3040,7 +3050,7 @@ msgid "Announcement" msgstr "公告" #: bookwyrm/templates/settings/announcements/announcement.html:16 -#: bookwyrm/templates/settings/federation/instance.html:75 +#: bookwyrm/templates/settings/federation/instance.html:93 #: bookwyrm/templates/snippets/status/status_options.html:25 msgid "Edit" msgstr "编辑" @@ -3325,136 +3335,136 @@ 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/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 #: bookwyrm/templates/settings/federation/instance_blocklist.html:3 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 #: 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:31 -msgid "Instance:" -msgstr "实例:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:40 -#: 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:54 -#: 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:64 -#: bookwyrm/templates/settings/federation/instance.html:25 -#: bookwyrm/templates/settings/users/user_info.html:103 -msgid "Version:" -msgstr "版本:" - -#: bookwyrm/templates/settings/federation/instance.html:13 -msgid "Back to list" -msgstr "回到列表" - -#: bookwyrm/templates/settings/federation/instance.html:19 -msgid "Details" -msgstr "详细" - -#: bookwyrm/templates/settings/federation/instance.html:35 -#: bookwyrm/templates/user/layout.html:67 -msgid "Activity" -msgstr "活动" - -#: bookwyrm/templates/settings/federation/instance.html:38 -msgid "Users:" -msgstr "用户:" - -#: bookwyrm/templates/settings/federation/instance.html:41 -#: bookwyrm/templates/settings/federation/instance.html:47 -msgid "View all" -msgstr "查看全部" - -#: bookwyrm/templates/settings/federation/instance.html:44 -#: bookwyrm/templates/settings/users/user_info.html:56 -msgid "Reports:" -msgstr "报告:" - -#: bookwyrm/templates/settings/federation/instance.html:50 -msgid "Followed by us:" -msgstr "我们关注了的:" - -#: bookwyrm/templates/settings/federation/instance.html:55 -msgid "Followed by them:" -msgstr "TA 们关注了的:" - -#: bookwyrm/templates/settings/federation/instance.html:60 -msgid "Blocked by us:" -msgstr "我们所屏蔽的:" - -#: bookwyrm/templates/settings/federation/instance.html:72 -#: bookwyrm/templates/settings/users/user_info.html:110 -msgid "Notes" -msgstr "备注" - -#: bookwyrm/templates/settings/federation/instance.html:79 -msgid "No notes" -msgstr "没有备注" - -#: bookwyrm/templates/settings/federation/instance.html:98 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "屏蔽" - -#: bookwyrm/templates/settings/federation/instance.html:99 -msgid "All users from this instance will be deactivated." -msgstr "来自此实例的所有用户将会被停用。" - -#: bookwyrm/templates/settings/federation/instance.html:104 -#: bookwyrm/templates/snippets/block_button.html:10 -msgid "Un-block" -msgstr "取消屏蔽" - -#: bookwyrm/templates/settings/federation/instance.html:105 -msgid "All users from this instance will be re-activated." -msgstr "来自此实例的所有用户将会被重新启用。" - -#: 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/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 #: bookwyrm/templates/settings/federation/instance_list.html:3 #: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:47 msgid "Federated Instances" msgstr "互联实例" +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "导入屏蔽列表" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "实例:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "状态:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "软件:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "版本:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "刷新数据" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "详细" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:67 +msgid "Activity" +msgstr "活动" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "用户:" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "查看全部" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:56 +msgid "Reports:" +msgstr "报告:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "我们关注了的:" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "TA 们关注了的:" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "我们所屏蔽的:" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Notes" +msgstr "备注" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "没有备注" + +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "屏蔽" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "来自此实例的所有用户将会被停用。" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "取消屏蔽" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "来自此实例的所有用户将会被重新启用。" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "导入屏蔽列表" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "成功!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "成功屏蔽了" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "已失败:" + #: bookwyrm/templates/settings/federation/instance_list.html:32 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" @@ -3639,6 +3649,13 @@ msgstr "实例设置" msgid "Site Settings" msgstr "站点设置" +#: bookwyrm/templates/settings/layout.html:91 +#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "主题" + #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format msgid "Set display name for %(url)s" @@ -3764,22 +3781,17 @@ msgid "No reports found." msgstr "没有找到报告" #: bookwyrm/templates/settings/site.html:10 -#: bookwyrm/templates/settings/site.html:39 +#: bookwyrm/templates/settings/site.html:44 msgid "Instance Info" msgstr "实例信息" -#: bookwyrm/templates/settings/site.html:11 -#: bookwyrm/templates/settings/site.html:72 -msgid "Images" -msgstr "图像" - #: bookwyrm/templates/settings/site.html:12 -#: bookwyrm/templates/settings/site.html:92 +#: bookwyrm/templates/settings/site.html:110 msgid "Footer Content" msgstr "页脚内容" #: bookwyrm/templates/settings/site.html:13 -#: bookwyrm/templates/settings/site.html:116 +#: bookwyrm/templates/settings/site.html:134 msgid "Registration" msgstr "注册" @@ -3791,86 +3803,152 @@ msgstr "设置已保存" msgid "Unable to save settings" msgstr "无法保存设置" -#: bookwyrm/templates/settings/site.html:42 +#: bookwyrm/templates/settings/site.html:47 msgid "Instance Name:" msgstr "实例名称" -#: bookwyrm/templates/settings/site.html:46 +#: bookwyrm/templates/settings/site.html:51 msgid "Tagline:" msgstr "标语" -#: bookwyrm/templates/settings/site.html:50 +#: bookwyrm/templates/settings/site.html:55 msgid "Instance description:" msgstr "实例描述:" -#: bookwyrm/templates/settings/site.html:54 +#: bookwyrm/templates/settings/site.html:59 msgid "Short description:" msgstr "简要描述:" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:60 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." msgstr "在 joinbookwyrm.com 上预览实例时使用。不支持 HTML 或 Markdown。" -#: bookwyrm/templates/settings/site.html:59 +#: bookwyrm/templates/settings/site.html:64 msgid "Code of conduct:" msgstr "行为准则:" -#: bookwyrm/templates/settings/site.html:63 +#: bookwyrm/templates/settings/site.html:68 msgid "Privacy Policy:" msgstr "隐私政策:" -#: bookwyrm/templates/settings/site.html:75 +#: bookwyrm/templates/settings/site.html:79 +msgid "Images" +msgstr "图像" + +#: bookwyrm/templates/settings/site.html:82 msgid "Logo:" msgstr "图标:" -#: bookwyrm/templates/settings/site.html:79 +#: bookwyrm/templates/settings/site.html:86 msgid "Logo small:" msgstr "小号图标:" -#: bookwyrm/templates/settings/site.html:83 +#: bookwyrm/templates/settings/site.html:90 msgid "Favicon:" msgstr "Favicon:" -#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/site.html:98 +msgid "Default theme:" +msgstr "预设主题:" + +#: bookwyrm/templates/settings/site.html:113 msgid "Support link:" msgstr "支持链接:" -#: bookwyrm/templates/settings/site.html:99 +#: bookwyrm/templates/settings/site.html:117 msgid "Support title:" msgstr "支持标题:" -#: bookwyrm/templates/settings/site.html:103 +#: bookwyrm/templates/settings/site.html:121 msgid "Admin email:" msgstr "管理员邮件:" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:125 msgid "Additional info:" msgstr "附加信息:" -#: bookwyrm/templates/settings/site.html:121 +#: bookwyrm/templates/settings/site.html:139 msgid "Allow registration" msgstr "允许注册" -#: bookwyrm/templates/settings/site.html:127 +#: bookwyrm/templates/settings/site.html:145 msgid "Allow invite requests" msgstr "允许请求邀请" -#: bookwyrm/templates/settings/site.html:133 +#: bookwyrm/templates/settings/site.html:151 msgid "Require users to confirm email address" msgstr "要求用户确认邮箱地址" -#: bookwyrm/templates/settings/site.html:135 +#: bookwyrm/templates/settings/site.html:153 msgid "(Recommended if registration is open)" msgstr "(当开放注册时推荐)" -#: bookwyrm/templates/settings/site.html:138 +#: bookwyrm/templates/settings/site.html:156 msgid "Registration closed text:" msgstr "注册关闭文字:" -#: bookwyrm/templates/settings/site.html:142 +#: bookwyrm/templates/settings/site.html:160 msgid "Invite request text:" msgstr "邀请请求文本:" +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "设置实例默认主题" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "Successfully added theme" +msgstr "主题添加成功" + +#: bookwyrm/templates/settings/themes.html:26 +msgid "How to add a theme" +msgstr "如何添加一个主题" + +#: bookwyrm/templates/settings/themes.html:29 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "从命令行将主题文件复制到您服务器上的 bookwym/static/css/themes 目录。" + +#: bookwyrm/templates/settings/themes.html:32 +msgid "Run ./bw-dev compilescss." +msgstr "运行 ./bw-dev compilescsss。" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "使用下面的表格添加文件名以便在应用程序接口中可用。" + +#: bookwyrm/templates/settings/themes.html:42 +#: bookwyrm/templates/settings/themes.html:101 +msgid "Add theme" +msgstr "添加主题" + +#: bookwyrm/templates/settings/themes.html:48 +msgid "Unable to save theme" +msgstr "无法保存主题" + +#: bookwyrm/templates/settings/themes.html:61 +msgid "No available theme files detected" +msgstr "没有检测到可用的主题文件" + +#: bookwyrm/templates/settings/themes.html:69 +#: bookwyrm/templates/settings/themes.html:112 +msgid "Theme name" +msgstr "主题名称" + +#: bookwyrm/templates/settings/themes.html:79 +msgid "Theme filename" +msgstr "主题文件名" + +#: bookwyrm/templates/settings/themes.html:107 +msgid "Available Themes" +msgstr "可用的主题" + +#: bookwyrm/templates/settings/themes.html:115 +msgid "File" +msgstr "文件" + +#: bookwyrm/templates/settings/themes.html:130 +msgid "Remove theme" +msgstr "删除主题" + #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32 msgid "Permanently delete user" @@ -4062,10 +4140,6 @@ msgstr "协议:" msgid "Using S3:" msgstr "使用 S3:" -#: bookwyrm/templates/setup/config.html:91 -msgid "Display" -msgstr "显示" - #: bookwyrm/templates/setup/config.html:95 msgid "Default interface language:" msgstr "默认界面语言:" @@ -4123,8 +4197,7 @@ msgid "User profile" msgstr "用户个人资料" #: bookwyrm/templates/shelf/shelf.html:39 -#: bookwyrm/templates/snippets/translated_shelf_name.html:3 -#: bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templatetags/shelf_tags.py:44 bookwyrm/views/shelf/shelf.py:53 msgid "All books" msgstr "所有书目" @@ -4551,8 +4624,13 @@ msgstr "开始阅读" msgid "Want to read" msgstr "想要阅读" -#: bookwyrm/templates/snippets/shelf_selector.html:74 -#: bookwyrm/templates/snippets/shelf_selector.html:86 +#: bookwyrm/templates/snippets/shelf_selector.html:75 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 +#, python-format +msgid "Remove from %(name)s" +msgstr "从 %(name)s 移除" + +#: bookwyrm/templates/snippets/shelf_selector.html:88 msgid "Remove from" msgstr "移除自" @@ -4560,11 +4638,6 @@ msgstr "移除自" msgid "More shelves" msgstr "更多书架" -#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 -#, python-format -msgid "Remove from %(name)s" -msgstr "从 %(name)s 移除" - #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:31 msgid "Finish reading" msgstr "完成阅读" @@ -4846,13 +4919,13 @@ msgstr[0] "%(counter)s 个关注者" msgid "%(counter)s following" msgstr "关注着 %(counter)s 人" -#: bookwyrm/templates/user/user_preview.html:34 +#: bookwyrm/templates/user/user_preview.html:39 #, python-format msgid "%(mutuals_display)s follower you follow" msgid_plural "%(mutuals_display)s followers you follow" msgstr[0] "%(mutuals_display)s 个你也关注的关注者" -#: bookwyrm/templates/user/user_preview.html:38 +#: bookwyrm/templates/user/user_preview.html:43 msgid "No followers you follow" msgstr "没有你关注的关注者" diff --git a/locale/zh_Hant/LC_MESSAGES/django.po b/locale/zh_Hant/LC_MESSAGES/django.po index 3e2fcde5a..4222d2635 100644 --- a/locale/zh_Hant/LC_MESSAGES/django.po +++ b/locale/zh_Hant/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-02-25 20:12+0000\n" -"PO-Revision-Date: 2022-02-25 21:14\n" +"POT-Creation-Date: 2022-03-01 19:48+0000\n" +"PO-Revision-Date: 2022-03-01 20:15\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Chinese Traditional\n" "Language: zh\n" @@ -21,70 +21,70 @@ msgstr "" msgid "User with this username already exists" msgstr "" -#: bookwyrm/forms.py:252 +#: bookwyrm/forms.py:254 msgid "This domain is blocked. Please contact your administrator if you think this is an error." msgstr "" -#: bookwyrm/forms.py:262 +#: bookwyrm/forms.py:264 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." msgstr "" -#: bookwyrm/forms.py:401 +#: bookwyrm/forms.py:403 msgid "A user with this email already exists." msgstr "已經存在使用該郵箱的使用者。" -#: bookwyrm/forms.py:415 +#: bookwyrm/forms.py:417 msgid "One Day" msgstr "一天" -#: bookwyrm/forms.py:416 +#: bookwyrm/forms.py:418 msgid "One Week" msgstr "一週" -#: bookwyrm/forms.py:417 +#: bookwyrm/forms.py:419 msgid "One Month" msgstr "一個月" -#: bookwyrm/forms.py:418 +#: bookwyrm/forms.py:420 msgid "Does Not Expire" msgstr "永不失效" -#: bookwyrm/forms.py:422 +#: bookwyrm/forms.py:424 #, python-brace-format msgid "{i} uses" msgstr "" -#: bookwyrm/forms.py:423 +#: bookwyrm/forms.py:425 msgid "Unlimited" msgstr "不受限" -#: bookwyrm/forms.py:525 +#: bookwyrm/forms.py:543 msgid "List Order" msgstr "列表順序" -#: bookwyrm/forms.py:526 +#: bookwyrm/forms.py:544 msgid "Book Title" msgstr "書名" -#: bookwyrm/forms.py:527 bookwyrm/templates/shelf/shelf.html:155 +#: bookwyrm/forms.py:545 bookwyrm/templates/shelf/shelf.html:155 #: bookwyrm/templates/shelf/shelf.html:187 #: bookwyrm/templates/snippets/create_status/review.html:32 msgid "Rating" msgstr "評價" -#: bookwyrm/forms.py:529 bookwyrm/templates/lists/list.html:175 +#: bookwyrm/forms.py:547 bookwyrm/templates/lists/list.html:185 msgid "Sort By" msgstr "排序方式" -#: bookwyrm/forms.py:533 +#: bookwyrm/forms.py:551 msgid "Ascending" msgstr "升序" -#: bookwyrm/forms.py:534 +#: bookwyrm/forms.py:552 msgid "Descending" msgstr "降序" -#: bookwyrm/forms.py:547 +#: bookwyrm/forms.py:565 msgid "Reading finish date cannot be before start date." msgstr "" @@ -97,27 +97,23 @@ msgid "Could not find a match for book" msgstr "" #: bookwyrm/models/announcement.py:11 -msgid "None" -msgstr "" - -#: bookwyrm/models/announcement.py:12 msgid "Primary" msgstr "" -#: bookwyrm/models/announcement.py:13 +#: bookwyrm/models/announcement.py:12 msgid "Success" msgstr "" -#: bookwyrm/models/announcement.py:14 +#: bookwyrm/models/announcement.py:13 #: bookwyrm/templates/settings/invites/manage_invites.html:47 msgid "Link" msgstr "連結" -#: bookwyrm/models/announcement.py:15 +#: bookwyrm/models/announcement.py:14 msgid "Warning" msgstr "" -#: bookwyrm/models/announcement.py:16 +#: bookwyrm/models/announcement.py:15 msgid "Danger" msgstr "" @@ -168,13 +164,13 @@ msgid "Paperback" msgstr "" #: bookwyrm/models/federated_server.py:11 -#: bookwyrm/templates/settings/federation/edit_instance.html:43 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: bookwyrm/templates/settings/federation/instance_list.html:19 msgid "Federated" msgstr "跨站" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 -#: bookwyrm/templates/settings/federation/edit_instance.html:44 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 #: bookwyrm/templates/settings/federation/instance_list.html:23 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 @@ -470,7 +466,7 @@ msgid "Copy address" msgstr "" #: bookwyrm/templates/annual_summary/layout.html:68 -#: bookwyrm/templates/lists/list.html:267 +#: bookwyrm/templates/lists/list.html:277 msgid "Copied!" msgstr "" @@ -733,12 +729,12 @@ msgstr "" #: bookwyrm/templates/lists/bookmark_button.html:15 #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 -#: bookwyrm/templates/preferences/edit_user.html:124 +#: bookwyrm/templates/preferences/edit_user.html:136 #: bookwyrm/templates/readthrough/readthrough_modal.html:72 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 -#: bookwyrm/templates/settings/federation/edit_instance.html:82 -#: bookwyrm/templates/settings/federation/instance.html:87 -#: bookwyrm/templates/settings/site.html:151 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/site.html:169 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -759,7 +755,7 @@ msgstr "儲存" #: bookwyrm/templates/lists/delete_list_modal.html:18 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23 #: bookwyrm/templates/readthrough/readthrough_modal.html:73 -#: bookwyrm/templates/settings/federation/instance.html:88 +#: bookwyrm/templates/settings/federation/instance.html:106 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Cancel" @@ -874,7 +870,7 @@ msgstr "新增到列表" #: bookwyrm/templates/book/book.html:370 #: bookwyrm/templates/book/cover_add_modal.html:31 #: bookwyrm/templates/lists/add_item_modal.html:37 -#: bookwyrm/templates/lists/list.html:245 +#: bookwyrm/templates/lists/list.html:255 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 #: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 msgid "Add" @@ -1172,8 +1168,9 @@ msgstr "狀態" #: bookwyrm/templates/book/file_links/edit_links.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:41 -#: bookwyrm/templates/settings/federation/instance.html:94 +#: bookwyrm/templates/settings/federation/instance.html:112 #: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:118 msgid "Actions" msgstr "動作" @@ -1658,16 +1655,14 @@ msgid "Add to your books" msgstr "" #: bookwyrm/templates/get_started/book_preview.html:10 -#: bookwyrm/templates/shelf/shelf.html:86 -#: bookwyrm/templates/snippets/translated_shelf_name.html:5 -#: bookwyrm/templates/user/user.html:33 +#: bookwyrm/templates/shelf/shelf.html:86 bookwyrm/templates/user/user.html:33 +#: bookwyrm/templatetags/shelf_tags.py:46 msgid "To Read" msgstr "想讀" #: bookwyrm/templates/get_started/book_preview.html:11 -#: bookwyrm/templates/shelf/shelf.html:87 -#: bookwyrm/templates/snippets/translated_shelf_name.html:7 -#: bookwyrm/templates/user/user.html:34 +#: bookwyrm/templates/shelf/shelf.html:87 bookwyrm/templates/user/user.html:34 +#: bookwyrm/templatetags/shelf_tags.py:48 msgid "Currently Reading" msgstr "在讀" @@ -1676,8 +1671,7 @@ msgstr "在讀" #: bookwyrm/templates/snippets/shelf_selector.html:47 #: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 -#: bookwyrm/templates/snippets/translated_shelf_name.html:9 -#: bookwyrm/templates/user/user.html:35 +#: bookwyrm/templates/user/user.html:35 bookwyrm/templatetags/shelf_tags.py:50 msgid "Read" msgstr "讀過" @@ -1686,7 +1680,7 @@ msgid "What are you reading?" msgstr "你在閱讀什麼?" #: bookwyrm/templates/get_started/books.html:9 -#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:203 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:213 msgid "Search for a book" msgstr "搜尋書目" @@ -1706,7 +1700,7 @@ msgstr "你可以在開始使用 %(site_name)s 後新增書目。" #: bookwyrm/templates/get_started/users.html:19 #: bookwyrm/templates/groups/members.html:15 #: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:54 -#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:207 +#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:217 #: bookwyrm/templates/search/layout.html:4 #: bookwyrm/templates/search/layout.html:9 msgid "Search" @@ -1722,7 +1716,7 @@ msgid "Popular on %(site_name)s" msgstr "%(site_name)s 上的熱門" #: bookwyrm/templates/get_started/books.html:58 -#: bookwyrm/templates/lists/list.html:220 +#: bookwyrm/templates/lists/list.html:230 msgid "No books found" msgstr "沒有找到書目" @@ -1878,7 +1872,8 @@ msgstr "" #: bookwyrm/templates/groups/members.html:54 #: bookwyrm/templates/groups/suggested_users.html:35 #: bookwyrm/templates/snippets/suggested_users.html:31 -#: bookwyrm/templates/user/user_preview.html:36 +#: bookwyrm/templates/user/user_preview.html:33 +#: bookwyrm/templates/user/user_preview.html:41 msgid "Follows you" msgstr "" @@ -1932,7 +1927,7 @@ msgid "Privacy setting for imported reviews:" msgstr "匯入書評的隱私設定" #: bookwyrm/templates/import/import.html:59 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:64 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:76 msgid "Import" msgstr "匯入" @@ -2291,7 +2286,7 @@ msgid "Suggest \"%(title)s\" for this list" msgstr "" #: bookwyrm/templates/lists/add_item_modal.html:39 -#: bookwyrm/templates/lists/list.html:247 +#: bookwyrm/templates/lists/list.html:257 msgid "Suggest" msgstr "推薦" @@ -2327,7 +2322,7 @@ msgid "You're all set!" msgstr "都弄好了!" #: bookwyrm/templates/lists/curate.html:45 -#: bookwyrm/templates/lists/list.html:83 +#: bookwyrm/templates/lists/list.html:93 #, python-format msgid "%(username)s says:" msgstr "" @@ -2360,7 +2355,7 @@ msgid "on %(site_name)s" msgstr "" #: bookwyrm/templates/lists/embed-list.html:27 -#: bookwyrm/templates/lists/list.html:44 +#: bookwyrm/templates/lists/list.html:54 msgid "This list is currently empty" msgstr "此列表當前是空的" @@ -2422,7 +2417,7 @@ msgid "Delete list" msgstr "" #: bookwyrm/templates/lists/item_notes_field.html:7 -#: bookwyrm/templates/settings/federation/edit_instance.html:74 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 msgid "Notes:" msgstr "備註:" @@ -2430,80 +2425,84 @@ msgstr "備註:" msgid "An optional note that will be displayed with the book." msgstr "" -#: bookwyrm/templates/lists/list.html:36 +#: bookwyrm/templates/lists/list.html:37 +msgid "That book is already on this list." +msgstr "" + +#: bookwyrm/templates/lists/list.html:45 msgid "You successfully suggested a book for this list!" msgstr "你成功!向該列表推薦了一本書" -#: bookwyrm/templates/lists/list.html:38 +#: bookwyrm/templates/lists/list.html:47 msgid "You successfully added a book to this list!" msgstr "你成功在此列表新增了一本書!" -#: bookwyrm/templates/lists/list.html:94 +#: bookwyrm/templates/lists/list.html:104 msgid "Edit notes" msgstr "" -#: bookwyrm/templates/lists/list.html:109 +#: bookwyrm/templates/lists/list.html:119 msgid "Add notes" msgstr "" -#: bookwyrm/templates/lists/list.html:121 +#: bookwyrm/templates/lists/list.html:131 #, python-format msgid "Added by %(username)s" msgstr "由 %(username)s 新增" -#: bookwyrm/templates/lists/list.html:136 +#: bookwyrm/templates/lists/list.html:146 msgid "List position" msgstr "列表位置:" -#: bookwyrm/templates/lists/list.html:142 +#: bookwyrm/templates/lists/list.html:152 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21 msgid "Set" msgstr "設定" -#: bookwyrm/templates/lists/list.html:157 +#: bookwyrm/templates/lists/list.html:167 #: bookwyrm/templates/snippets/remove_from_group_button.html:20 msgid "Remove" msgstr "移除" -#: bookwyrm/templates/lists/list.html:171 -#: bookwyrm/templates/lists/list.html:188 +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 msgid "Sort List" msgstr "排序列表" -#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:191 msgid "Direction" msgstr "方向" -#: bookwyrm/templates/lists/list.html:195 +#: bookwyrm/templates/lists/list.html:205 msgid "Add Books" msgstr "新增書目" -#: bookwyrm/templates/lists/list.html:197 +#: bookwyrm/templates/lists/list.html:207 msgid "Suggest Books" msgstr "推薦書目" -#: bookwyrm/templates/lists/list.html:208 +#: bookwyrm/templates/lists/list.html:218 msgid "search" msgstr "搜尋" -#: bookwyrm/templates/lists/list.html:214 +#: bookwyrm/templates/lists/list.html:224 msgid "Clear search" msgstr "清除搜尋" -#: bookwyrm/templates/lists/list.html:219 +#: bookwyrm/templates/lists/list.html:229 #, python-format msgid "No books found matching the query \"%(query)s\"" msgstr "沒有符合 \"%(query)s\" 請求的書目" -#: bookwyrm/templates/lists/list.html:258 +#: bookwyrm/templates/lists/list.html:268 msgid "Embed this list on a website" msgstr "" -#: bookwyrm/templates/lists/list.html:266 +#: bookwyrm/templates/lists/list.html:276 msgid "Copy embed code" msgstr "" -#: bookwyrm/templates/lists/list.html:268 +#: bookwyrm/templates/lists/list.html:278 #, python-format msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" msgstr "" @@ -2858,11 +2857,14 @@ msgstr "使用者資料" #: bookwyrm/templates/preferences/edit_user.html:13 #: bookwyrm/templates/preferences/edit_user.html:64 -msgid "Display preferences" +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:77 +#: bookwyrm/templates/setup/config.html:91 +msgid "Display" msgstr "" #: bookwyrm/templates/preferences/edit_user.html:14 -#: bookwyrm/templates/preferences/edit_user.html:106 +#: bookwyrm/templates/preferences/edit_user.html:112 msgid "Privacy" msgstr "" @@ -2887,11 +2889,19 @@ msgstr "你的帳號會顯示在 目錄 中,並可能 msgid "Preferred Timezone: " msgstr "偏好時區:" -#: bookwyrm/templates/preferences/edit_user.html:111 +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Theme:" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:117 msgid "Manually approve followers" msgstr "" -#: bookwyrm/templates/preferences/edit_user.html:116 +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Hide followers and following on profile" +msgstr "" + +#: bookwyrm/templates/preferences/edit_user.html:128 msgid "Default post privacy:" msgstr "" @@ -3038,7 +3048,7 @@ msgid "Announcement" msgstr "公告" #: bookwyrm/templates/settings/announcements/announcement.html:16 -#: bookwyrm/templates/settings/federation/instance.html:75 +#: bookwyrm/templates/settings/federation/instance.html:93 #: bookwyrm/templates/snippets/status/status_options.html:25 msgid "Edit" msgstr "編輯" @@ -3323,136 +3333,136 @@ 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/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 #: bookwyrm/templates/settings/federation/instance_blocklist.html:3 -#: bookwyrm/templates/settings/federation/instance_blocklist.html:20 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 #: 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:31 -msgid "Instance:" -msgstr "實例:" - -#: bookwyrm/templates/settings/federation/edit_instance.html:40 -#: 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:54 -#: 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:64 -#: bookwyrm/templates/settings/federation/instance.html:25 -#: bookwyrm/templates/settings/users/user_info.html:103 -msgid "Version:" -msgstr "版本:" - -#: bookwyrm/templates/settings/federation/instance.html:13 -msgid "Back to list" -msgstr "回到列表" - -#: bookwyrm/templates/settings/federation/instance.html:19 -msgid "Details" -msgstr "詳細" - -#: bookwyrm/templates/settings/federation/instance.html:35 -#: bookwyrm/templates/user/layout.html:67 -msgid "Activity" -msgstr "活動" - -#: bookwyrm/templates/settings/federation/instance.html:38 -msgid "Users:" -msgstr "使用者:" - -#: bookwyrm/templates/settings/federation/instance.html:41 -#: bookwyrm/templates/settings/federation/instance.html:47 -msgid "View all" -msgstr "檢視全部" - -#: bookwyrm/templates/settings/federation/instance.html:44 -#: bookwyrm/templates/settings/users/user_info.html:56 -msgid "Reports:" -msgstr "舉報:" - -#: bookwyrm/templates/settings/federation/instance.html:50 -msgid "Followed by us:" -msgstr "我們關注了的:" - -#: bookwyrm/templates/settings/federation/instance.html:55 -msgid "Followed by them:" -msgstr "TA 們關注了的:" - -#: bookwyrm/templates/settings/federation/instance.html:60 -msgid "Blocked by us:" -msgstr "我們所封鎖的:" - -#: bookwyrm/templates/settings/federation/instance.html:72 -#: bookwyrm/templates/settings/users/user_info.html:110 -msgid "Notes" -msgstr "備註" - -#: bookwyrm/templates/settings/federation/instance.html:79 -msgid "No notes" -msgstr "" - -#: bookwyrm/templates/settings/federation/instance.html:98 -#: bookwyrm/templates/settings/link_domains/link_domains.html:87 -#: bookwyrm/templates/snippets/block_button.html:5 -msgid "Block" -msgstr "封鎖" - -#: bookwyrm/templates/settings/federation/instance.html:99 -msgid "All users from this instance will be deactivated." -msgstr "來自此實例的所有使用者將會被停用。" - -#: bookwyrm/templates/settings/federation/instance.html:104 -#: bookwyrm/templates/snippets/block_button.html:10 -msgid "Un-block" -msgstr "取消封鎖" - -#: bookwyrm/templates/settings/federation/instance.html:105 -msgid "All users from this instance will be re-activated." -msgstr "來自此實例的所有使用者將會被重新啟用。" - -#: 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/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 #: bookwyrm/templates/settings/federation/instance_list.html:3 #: bookwyrm/templates/settings/federation/instance_list.html:5 #: bookwyrm/templates/settings/layout.html:47 msgid "Federated Instances" msgstr "聯合實例" +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "匯入封鎖列表" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "實例:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "狀態:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "軟件:" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "版本:" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "詳細" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:67 +msgid "Activity" +msgstr "活動" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "使用者:" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "檢視全部" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:56 +msgid "Reports:" +msgstr "舉報:" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "我們關注了的:" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "TA 們關注了的:" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "我們所封鎖的:" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Notes" +msgstr "備註" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "封鎖" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "來自此實例的所有使用者將會被停用。" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "取消封鎖" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "來自此實例的所有使用者將會被重新啟用。" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "匯入封鎖列表" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgid "Success!" +msgstr "成功!" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "成功封鎖了" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "已失敗:" + #: bookwyrm/templates/settings/federation/instance_list.html:32 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" @@ -3637,6 +3647,13 @@ msgstr "實例設定" msgid "Site Settings" msgstr "網站設定" +#: bookwyrm/templates/settings/layout.html:91 +#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format msgid "Set display name for %(url)s" @@ -3762,22 +3779,17 @@ msgid "No reports found." msgstr "沒有找到舉報" #: bookwyrm/templates/settings/site.html:10 -#: bookwyrm/templates/settings/site.html:39 +#: bookwyrm/templates/settings/site.html:44 msgid "Instance Info" msgstr "實例資訊" -#: bookwyrm/templates/settings/site.html:11 -#: bookwyrm/templates/settings/site.html:72 -msgid "Images" -msgstr "圖片" - #: bookwyrm/templates/settings/site.html:12 -#: bookwyrm/templates/settings/site.html:92 +#: bookwyrm/templates/settings/site.html:110 msgid "Footer Content" msgstr "頁尾內容" #: bookwyrm/templates/settings/site.html:13 -#: bookwyrm/templates/settings/site.html:116 +#: bookwyrm/templates/settings/site.html:134 msgid "Registration" msgstr "註冊" @@ -3789,86 +3801,152 @@ msgstr "" msgid "Unable to save settings" msgstr "" -#: bookwyrm/templates/settings/site.html:42 +#: bookwyrm/templates/settings/site.html:47 msgid "Instance Name:" msgstr "實例名稱" -#: bookwyrm/templates/settings/site.html:46 +#: bookwyrm/templates/settings/site.html:51 msgid "Tagline:" msgstr "標語" -#: bookwyrm/templates/settings/site.html:50 +#: bookwyrm/templates/settings/site.html:55 msgid "Instance description:" msgstr "實例描述:" -#: bookwyrm/templates/settings/site.html:54 +#: bookwyrm/templates/settings/site.html:59 msgid "Short description:" msgstr "" -#: bookwyrm/templates/settings/site.html:55 +#: bookwyrm/templates/settings/site.html:60 msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." msgstr "" -#: bookwyrm/templates/settings/site.html:59 +#: bookwyrm/templates/settings/site.html:64 msgid "Code of conduct:" msgstr "行為準則:" -#: bookwyrm/templates/settings/site.html:63 +#: bookwyrm/templates/settings/site.html:68 msgid "Privacy Policy:" msgstr "隱私政策:" -#: bookwyrm/templates/settings/site.html:75 +#: bookwyrm/templates/settings/site.html:79 +msgid "Images" +msgstr "圖片" + +#: bookwyrm/templates/settings/site.html:82 msgid "Logo:" msgstr "圖示:" -#: bookwyrm/templates/settings/site.html:79 +#: bookwyrm/templates/settings/site.html:86 msgid "Logo small:" msgstr "小號圖示:" -#: bookwyrm/templates/settings/site.html:83 +#: bookwyrm/templates/settings/site.html:90 msgid "Favicon:" msgstr "Favicon:" -#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/site.html:98 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:113 msgid "Support link:" msgstr "支援連結:" -#: bookwyrm/templates/settings/site.html:99 +#: bookwyrm/templates/settings/site.html:117 msgid "Support title:" msgstr "支援標題:" -#: bookwyrm/templates/settings/site.html:103 +#: bookwyrm/templates/settings/site.html:121 msgid "Admin email:" msgstr "管理員郵件:" -#: bookwyrm/templates/settings/site.html:107 +#: bookwyrm/templates/settings/site.html:125 msgid "Additional info:" msgstr "附加資訊:" -#: bookwyrm/templates/settings/site.html:121 +#: bookwyrm/templates/settings/site.html:139 msgid "Allow registration" msgstr "" -#: bookwyrm/templates/settings/site.html:127 +#: bookwyrm/templates/settings/site.html:145 msgid "Allow invite requests" msgstr "" -#: bookwyrm/templates/settings/site.html:133 +#: bookwyrm/templates/settings/site.html:151 msgid "Require users to confirm email address" msgstr "" -#: bookwyrm/templates/settings/site.html:135 +#: bookwyrm/templates/settings/site.html:153 msgid "(Recommended if registration is open)" msgstr "" -#: bookwyrm/templates/settings/site.html:138 +#: bookwyrm/templates/settings/site.html:156 msgid "Registration closed text:" msgstr "註冊關閉文字:" -#: bookwyrm/templates/settings/site.html:142 +#: bookwyrm/templates/settings/site.html:160 msgid "Invite request text:" msgstr "" +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:26 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:29 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:32 +msgid "Run ./bw-dev compilescss." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:42 +#: bookwyrm/templates/settings/themes.html:101 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:48 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:61 +msgid "No available theme files detected" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:69 +#: bookwyrm/templates/settings/themes.html:112 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:79 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:107 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:115 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:130 +msgid "Remove theme" +msgstr "" + #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32 msgid "Permanently delete user" @@ -4060,10 +4138,6 @@ msgstr "" msgid "Using S3:" msgstr "" -#: bookwyrm/templates/setup/config.html:91 -msgid "Display" -msgstr "" - #: bookwyrm/templates/setup/config.html:95 msgid "Default interface language:" msgstr "" @@ -4121,8 +4195,7 @@ msgid "User profile" msgstr "" #: bookwyrm/templates/shelf/shelf.html:39 -#: bookwyrm/templates/snippets/translated_shelf_name.html:3 -#: bookwyrm/views/shelf/shelf.py:53 +#: bookwyrm/templatetags/shelf_tags.py:44 bookwyrm/views/shelf/shelf.py:53 msgid "All books" msgstr "所有書目" @@ -4549,8 +4622,13 @@ msgstr "開始閱讀" msgid "Want to read" msgstr "想要閱讀" -#: bookwyrm/templates/snippets/shelf_selector.html:74 -#: bookwyrm/templates/snippets/shelf_selector.html:86 +#: bookwyrm/templates/snippets/shelf_selector.html:75 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 +#, python-format +msgid "Remove from %(name)s" +msgstr "從 %(name)s 移除" + +#: bookwyrm/templates/snippets/shelf_selector.html:88 msgid "Remove from" msgstr "" @@ -4558,11 +4636,6 @@ msgstr "" msgid "More shelves" msgstr "更多書架" -#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 -#, python-format -msgid "Remove from %(name)s" -msgstr "從 %(name)s 移除" - #: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:31 msgid "Finish reading" msgstr "完成閱讀" @@ -4844,13 +4917,13 @@ msgstr[0] "%(counter)s 個關注者" msgid "%(counter)s following" msgstr "關注著 %(counter)s 人" -#: bookwyrm/templates/user/user_preview.html:34 +#: bookwyrm/templates/user/user_preview.html:39 #, python-format msgid "%(mutuals_display)s follower you follow" msgid_plural "%(mutuals_display)s followers you follow" msgstr[0] "%(mutuals_display)s 個你也關注的關注者" -#: bookwyrm/templates/user/user_preview.html:38 +#: bookwyrm/templates/user/user_preview.html:43 msgid "No followers you follow" msgstr "" From e2476d1ad36a1c55685703574461385454ac6b05 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 10 Mar 2022 08:38:06 -0800 Subject: [PATCH 04/17] Move content warning toggle out of post options block --- .../snippets/create_status/post_options_block.html | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/bookwyrm/templates/snippets/create_status/post_options_block.html b/bookwyrm/templates/snippets/create_status/post_options_block.html index 171315320..652f8adbd 100644 --- a/bookwyrm/templates/snippets/create_status/post_options_block.html +++ b/bookwyrm/templates/snippets/create_status/post_options_block.html @@ -1,8 +1,6 @@ {% load i18n %} -

-
- {% include "snippets/create_status/content_warning_toggle.html" %} -
+
+
{% if type == 'direct' %} @@ -13,13 +11,11 @@ {% include 'snippets/privacy_select.html' with current=reply_parent.privacy %} {% endif %} {% endif %} -
-
+
- From a922b8fd04b6f7188e58153fc15f1a9ea8f72536 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 10 Mar 2022 09:03:24 -0800 Subject: [PATCH 05/17] Uses details to show/hide content warning field --- .../create_status/content_warning_field.html | 49 ++++++++++++------- .../create_status/content_warning_toggle.html | 17 ------- .../snippets/create_status/layout.html | 4 +- 3 files changed, 32 insertions(+), 38 deletions(-) delete mode 100644 bookwyrm/templates/snippets/create_status/content_warning_toggle.html diff --git a/bookwyrm/templates/snippets/create_status/content_warning_field.html b/bookwyrm/templates/snippets/create_status/content_warning_field.html index 14428f30d..2a2161f71 100644 --- a/bookwyrm/templates/snippets/create_status/content_warning_field.html +++ b/bookwyrm/templates/snippets/create_status/content_warning_field.html @@ -1,22 +1,33 @@ {% load i18n %} -
- - +
+ + + + {% trans "Include spoiler alert" %} + + + + + +
+ +
+
diff --git a/bookwyrm/templates/snippets/create_status/content_warning_toggle.html b/bookwyrm/templates/snippets/create_status/content_warning_toggle.html deleted file mode 100644 index a5c41cbcb..000000000 --- a/bookwyrm/templates/snippets/create_status/content_warning_toggle.html +++ /dev/null @@ -1,17 +0,0 @@ -{% load i18n %} - -
- - {% trans "Include spoiler alert" as button_text %} - {% firstof draft.content_warning status.content_warning as pressed %} - {% firstof local_uuid '' as local_uuid %} - {% include 'snippets/toggle/toggle_button.html' with text=button_text icon="warning is-size-4" controls_text="spoilers" controls_uid=uuid|add:local_uuid focus="id_content_warning" checkbox="id_show_spoilers" class="toggle-button" pressed=pressed %} -
diff --git a/bookwyrm/templates/snippets/create_status/layout.html b/bookwyrm/templates/snippets/create_status/layout.html index 0585638d9..915e5114b 100644 --- a/bookwyrm/templates/snippets/create_status/layout.html +++ b/bookwyrm/templates/snippets/create_status/layout.html @@ -37,8 +37,6 @@ reply_parent: the Status object this post will be in reply to, if applicable {% endif %} {% endblock %} - {% include "snippets/create_status/content_warning_field.html" %} - {# fields that go between the content warnings and the content field (ie, quote) #} {% block pre_content_additions %}{% endblock %} @@ -55,6 +53,8 @@ reply_parent: the Status object this post will be in reply to, if applicable {# additional fields that go after the content block (ie, progress) #} {% block post_content_additions %}{% endblock %} + {% include "snippets/create_status/content_warning_field.html" %} + {% block options_block %} {# cw, post privacy, and submit button #} {% include "snippets/create_status/post_options_block.html" %} From bcd83ee802970ce092364c41c48dfcaa311b2da7 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 10 Mar 2022 09:16:44 -0800 Subject: [PATCH 06/17] Fixes list notes icon --- bookwyrm/templates/lists/list.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/templates/lists/list.html b/bookwyrm/templates/lists/list.html index 1d5abd89e..2e01bfb17 100644 --- a/bookwyrm/templates/lists/list.html +++ b/bookwyrm/templates/lists/list.html @@ -117,7 +117,7 @@ {% trans "Add notes" %} - + {% include "lists/edit_item_form.html" with book=item.book %} From cc2b774fb579d248537dd9deaa0ae63833524c2c Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 10 Mar 2022 09:16:50 -0800 Subject: [PATCH 07/17] Updates wording on content warning field --- .../snippets/create_status/content_warning_field.html | 4 ++-- bookwyrm/views/status.py | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/bookwyrm/templates/snippets/create_status/content_warning_field.html b/bookwyrm/templates/snippets/create_status/content_warning_field.html index 2a2161f71..2c34136ce 100644 --- a/bookwyrm/templates/snippets/create_status/content_warning_field.html +++ b/bookwyrm/templates/snippets/create_status/content_warning_field.html @@ -8,14 +8,14 @@ {% trans "Include spoiler alert" %} - +
Date: Thu, 10 Mar 2022 09:30:39 -0800 Subject: [PATCH 08/17] Updates verification modal button positions --- .../templates/book/file_links/verification_modal.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bookwyrm/templates/book/file_links/verification_modal.html b/bookwyrm/templates/book/file_links/verification_modal.html index 81685da0f..01f17f965 100644 --- a/bookwyrm/templates/book/file_links/verification_modal.html +++ b/bookwyrm/templates/book/file_links/verification_modal.html @@ -17,13 +17,13 @@ Is that where you'd like to go? {% block modal-footer %} -{% trans "Continue" %} - - {% if request.user.is_authenticated %} -
+ + + +{% trans "Continue" %} {% endif %} {% endblock %} From d7eb118a071de95ccd0475b59aa6abbbfa3fbf62 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 10 Mar 2022 09:35:05 -0800 Subject: [PATCH 09/17] Updates readthrough modal --- bookwyrm/templates/readthrough/readthrough_modal.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bookwyrm/templates/readthrough/readthrough_modal.html b/bookwyrm/templates/readthrough/readthrough_modal.html index 73f445f61..0f03d9386 100644 --- a/bookwyrm/templates/readthrough/readthrough_modal.html +++ b/bookwyrm/templates/readthrough/readthrough_modal.html @@ -69,8 +69,10 @@ {% endblock %} {% block modal-footer %} - - +
+ + +
{% endblock %} {% block modal-form-close %} From 672eee9c9c382e4af1c6d0b82ea82b0091b36c6d Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 10 Mar 2022 09:41:32 -0800 Subject: [PATCH 10/17] Updates add file link modal --- bookwyrm/templates/book/file_links/add_link_modal.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/bookwyrm/templates/book/file_links/add_link_modal.html b/bookwyrm/templates/book/file_links/add_link_modal.html index d5b3fcd0d..67b437bd7 100644 --- a/bookwyrm/templates/book/file_links/add_link_modal.html +++ b/bookwyrm/templates/book/file_links/add_link_modal.html @@ -55,8 +55,10 @@ {% endblock %} {% block modal-footer %} - - - +
+ + +
{% endblock %} + {% block modal-form-close %}{% endblock %} From cbcd5c7a5749b539f390925c0f84379baed001c0 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 10 Mar 2022 09:49:17 -0800 Subject: [PATCH 11/17] Adds elided page range to editions --- bookwyrm/views/books/editions.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bookwyrm/views/books/editions.py b/bookwyrm/views/books/editions.py index 81d073224..865f54805 100644 --- a/bookwyrm/views/books/editions.py +++ b/bookwyrm/views/books/editions.py @@ -58,8 +58,12 @@ class Editions(View): ) paginated = Paginator(editions, PAGE_LENGTH) + page = paginated.get_page(request.GET.get("page")) data = { - "editions": paginated.get_page(request.GET.get("page")), + "editions": page, + "page_range": paginated.get_elided_page_range( + page.number, on_each_side=2, on_ends=1 + ), "work": work, "languages": languages, "formats": set( From 8b4c9483ea57bfb181e2364f6c8f752a6fbbe4a7 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 10 Mar 2022 09:49:27 -0800 Subject: [PATCH 12/17] Udates sync modals --- bookwyrm/templates/author/sync_modal.html | 6 ++++-- bookwyrm/templates/book/sync_modal.html | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/bookwyrm/templates/author/sync_modal.html b/bookwyrm/templates/author/sync_modal.html index a6e032cbf..44b85ef4e 100644 --- a/bookwyrm/templates/author/sync_modal.html +++ b/bookwyrm/templates/author/sync_modal.html @@ -19,8 +19,10 @@ {% endblock %} {% block modal-footer %} - - +
+ + +
{% endblock %} {% block modal-form-close %}{% endblock %} diff --git a/bookwyrm/templates/book/sync_modal.html b/bookwyrm/templates/book/sync_modal.html index 6e5df0c0f..81ad8db92 100644 --- a/bookwyrm/templates/book/sync_modal.html +++ b/bookwyrm/templates/book/sync_modal.html @@ -19,8 +19,10 @@ {% endblock %} {% block modal-footer %} - - +
+ + +
{% endblock %} {% block modal-form-close %}{% endblock %} From 20453a997744606f2ff1f0761bf20e3f60e8af8f Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 10 Mar 2022 09:57:55 -0800 Subject: [PATCH 13/17] Delete readthrough and add cover modals --- bookwyrm/templates/book/cover_add_modal.html | 6 ++++-- .../readthrough/delete_readthrough_modal.html | 18 +++++++++++++----- 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/bookwyrm/templates/book/cover_add_modal.html b/bookwyrm/templates/book/cover_add_modal.html index e8207ff44..8ca5bf2a8 100644 --- a/bookwyrm/templates/book/cover_add_modal.html +++ b/bookwyrm/templates/book/cover_add_modal.html @@ -28,8 +28,10 @@ {% endblock %} {% block modal-footer %} - - +
+ + +
{% endblock %} {% block modal-form-close %}{% endblock %} diff --git a/bookwyrm/templates/readthrough/delete_readthrough_modal.html b/bookwyrm/templates/readthrough/delete_readthrough_modal.html index 5b3a74cc5..88ebf53c2 100644 --- a/bookwyrm/templates/readthrough/delete_readthrough_modal.html +++ b/bookwyrm/templates/readthrough/delete_readthrough_modal.html @@ -14,12 +14,20 @@ {% endblock %} {% block modal-footer %} -
+ {% csrf_token %} - - + +
+ + +
{% endblock %} From d4be0ca58be99cc4187b87b928dd718998957252 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 10 Mar 2022 10:02:18 -0800 Subject: [PATCH 14/17] Report modal --- bookwyrm/templates/snippets/report_modal.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bookwyrm/templates/snippets/report_modal.html b/bookwyrm/templates/snippets/report_modal.html index 64e0c298c..e80dd1f5e 100644 --- a/bookwyrm/templates/snippets/report_modal.html +++ b/bookwyrm/templates/snippets/report_modal.html @@ -48,10 +48,10 @@ {% block modal-footer %} - - - - +
+ + +
{% endblock %} {% block modal-form-close %}{% endblock %} From 9977b33a8d9262b94516d49479df0a79bc113d89 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 10 Mar 2022 10:49:33 -0800 Subject: [PATCH 15/17] Group, list, and shelve form buttons --- bookwyrm/templates/groups/create_form.html | 2 +- .../templates/groups/delete_group_modal.html | 12 +++++++----- bookwyrm/templates/groups/form.html | 17 ++++++++++------- bookwyrm/templates/lists/add_item_modal.html | 18 ++++++++++-------- .../templates/lists/delete_list_modal.html | 16 +++++++++------- bookwyrm/templates/lists/form.html | 2 +- .../link_domains/edit_domain_modal.html | 6 ++++-- .../templates/shelf/create_shelf_form.html | 2 +- bookwyrm/templates/shelf/form.html | 2 +- 9 files changed, 44 insertions(+), 33 deletions(-) diff --git a/bookwyrm/templates/groups/create_form.html b/bookwyrm/templates/groups/create_form.html index dbb8ad88b..5aace9d1d 100644 --- a/bookwyrm/templates/groups/create_form.html +++ b/bookwyrm/templates/groups/create_form.html @@ -2,7 +2,7 @@ {% load i18n %} {% block header %} -{% trans "Create Group" %} +{% trans "Create group" %} {% endblock %} {% block form %} diff --git a/bookwyrm/templates/groups/delete_group_modal.html b/bookwyrm/templates/groups/delete_group_modal.html index 592a861fd..f166eec21 100644 --- a/bookwyrm/templates/groups/delete_group_modal.html +++ b/bookwyrm/templates/groups/delete_group_modal.html @@ -8,13 +8,15 @@ {% endblock %} {% block modal-footer %} -
+ {% csrf_token %} - - +
+ + +
{% endblock %} diff --git a/bookwyrm/templates/groups/form.html b/bookwyrm/templates/groups/form.html index 6767d1b10..a0d057582 100644 --- a/bookwyrm/templates/groups/form.html +++ b/bookwyrm/templates/groups/form.html @@ -16,18 +16,21 @@
{% if group.id %} -
+
{% endif %} -
-
- {% include 'snippets/privacy_select_no_followers.html' with current=group.privacy %} -
-
- + +
+
+
+ {% include 'snippets/privacy_select_no_followers.html' with current=group.privacy %} +
+
+ +
diff --git a/bookwyrm/templates/lists/add_item_modal.html b/bookwyrm/templates/lists/add_item_modal.html index 5c210d462..2c586b308 100644 --- a/bookwyrm/templates/lists/add_item_modal.html +++ b/bookwyrm/templates/lists/add_item_modal.html @@ -32,14 +32,16 @@ {% endblock %} {% block modal-footer %} - - +
+ + +
{% endblock %} {% block modal-form-close %}{% endblock %} diff --git a/bookwyrm/templates/lists/delete_list_modal.html b/bookwyrm/templates/lists/delete_list_modal.html index aad879529..88e04423c 100644 --- a/bookwyrm/templates/lists/delete_list_modal.html +++ b/bookwyrm/templates/lists/delete_list_modal.html @@ -8,15 +8,17 @@ {% endblock %} {% block modal-footer %} -
+ {% csrf_token %} - - +
+ + +
{% endblock %} diff --git a/bookwyrm/templates/lists/form.html b/bookwyrm/templates/lists/form.html index c8383d9c8..3558d8cc0 100644 --- a/bookwyrm/templates/lists/form.html +++ b/bookwyrm/templates/lists/form.html @@ -114,7 +114,7 @@
-
+
{% if list.id %}
- +
+ + +
{% endblock %} {% block modal-form-close %}{% endblock %} diff --git a/bookwyrm/templates/shelf/create_shelf_form.html b/bookwyrm/templates/shelf/create_shelf_form.html index c3d2b5faa..3bf171998 100644 --- a/bookwyrm/templates/shelf/create_shelf_form.html +++ b/bookwyrm/templates/shelf/create_shelf_form.html @@ -2,7 +2,7 @@ {% load i18n %} {% block header %} -{% trans "Create Shelf" %} +{% trans "Create shelf" %} {% endblock %} {% block form %} diff --git a/bookwyrm/templates/shelf/form.html b/bookwyrm/templates/shelf/form.html index ff7f8b5ee..a25330109 100644 --- a/bookwyrm/templates/shelf/form.html +++ b/bookwyrm/templates/shelf/form.html @@ -17,7 +17,7 @@
-
+
{% include 'snippets/privacy_select.html' with current=privacy %}
From dbf925f17664b593efdb141e53f4321a6e01840c Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 10 Mar 2022 10:52:39 -0800 Subject: [PATCH 16/17] Removes trailing whitespace --- bookwyrm/templates/snippets/register_form.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bookwyrm/templates/snippets/register_form.html b/bookwyrm/templates/snippets/register_form.html index dd8cff3a8..214e514c1 100644 --- a/bookwyrm/templates/snippets/register_form.html +++ b/bookwyrm/templates/snippets/register_form.html @@ -53,12 +53,12 @@ id="id_password_register" aria-describedby="desc_password_register" > - + {% include 'snippets/form_errors.html' with errors_list=register_form.password.errors id="desc_password_register" %}
-
+