mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +00:00
Merge branch 'main' into production
This commit is contained in:
commit
4a0e1bdd46
23 changed files with 1571 additions and 1112 deletions
|
@ -1,7 +1,6 @@
|
||||||
""" the good people stuff! the authors! """
|
""" the good people stuff! the authors! """
|
||||||
from django.contrib.auth.decorators import login_required, permission_required
|
from django.contrib.auth.decorators import login_required, permission_required
|
||||||
from django.core.paginator import Paginator
|
from django.core.paginator import Paginator
|
||||||
from django.db.models import Q
|
|
||||||
from django.shortcuts import get_object_or_404, redirect
|
from django.shortcuts import get_object_or_404, redirect
|
||||||
from django.template.response import TemplateResponse
|
from django.template.response import TemplateResponse
|
||||||
from django.utils.decorators import method_decorator
|
from django.utils.decorators import method_decorator
|
||||||
|
@ -27,7 +26,7 @@ class Author(View):
|
||||||
return ActivitypubResponse(author.to_activity())
|
return ActivitypubResponse(author.to_activity())
|
||||||
|
|
||||||
books = (
|
books = (
|
||||||
models.Work.objects.filter(Q(authors=author) | Q(editions__authors=author))
|
models.Work.objects.filter(editions__authors=author)
|
||||||
.order_by("created_date")
|
.order_by("created_date")
|
||||||
.distinct()
|
.distinct()
|
||||||
)
|
)
|
||||||
|
|
|
@ -13,6 +13,7 @@ CELERY_BROKER_URL = f"redis://:{REDIS_BROKER_PASSWORD}@{REDIS_BROKER_HOST}:{REDI
|
||||||
CELERY_RESULT_BACKEND = f"redis://:{REDIS_BROKER_PASSWORD}@{REDIS_BROKER_HOST}:{REDIS_BROKER_PORT}/{REDIS_BROKER_DB_INDEX}"
|
CELERY_RESULT_BACKEND = f"redis://:{REDIS_BROKER_PASSWORD}@{REDIS_BROKER_HOST}:{REDIS_BROKER_PORT}/{REDIS_BROKER_DB_INDEX}"
|
||||||
|
|
||||||
CELERY_DEFAULT_QUEUE = "low_priority"
|
CELERY_DEFAULT_QUEUE = "low_priority"
|
||||||
|
CELERY_CREATE_MISSING_QUEUES = True
|
||||||
|
|
||||||
CELERY_ACCEPT_CONTENT = ["json"]
|
CELERY_ACCEPT_CONTENT = ["json"]
|
||||||
CELERY_TASK_SERIALIZER = "json"
|
CELERY_TASK_SERIALIZER = "json"
|
||||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-03-14 19:30+0000\n"
|
"POT-Creation-Date: 2022-03-16 23:12+0000\n"
|
||||||
"PO-Revision-Date: 2022-03-14 20:18\n"
|
"PO-Revision-Date: 2022-03-16 23:34\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
|
@ -17,28 +17,28 @@ msgstr ""
|
||||||
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
||||||
"X-Crowdin-File-ID: 1553\n"
|
"X-Crowdin-File-ID: 1553\n"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:40
|
#: bookwyrm/forms/admin.py:41
|
||||||
msgid "One Day"
|
msgid "One Day"
|
||||||
msgstr "Ein Tag"
|
msgstr "Ein Tag"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:41
|
#: bookwyrm/forms/admin.py:42
|
||||||
msgid "One Week"
|
msgid "One Week"
|
||||||
msgstr "Eine Woche"
|
msgstr "Eine Woche"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:42
|
#: bookwyrm/forms/admin.py:43
|
||||||
msgid "One Month"
|
msgid "One Month"
|
||||||
msgstr "Ein Monat"
|
msgstr "Ein Monat"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:43
|
#: bookwyrm/forms/admin.py:44
|
||||||
msgid "Does Not Expire"
|
msgid "Does Not Expire"
|
||||||
msgstr "Läuft nicht ab"
|
msgstr "Läuft nicht ab"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:47
|
#: bookwyrm/forms/admin.py:48
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{i} uses"
|
msgid "{i} uses"
|
||||||
msgstr "{i}-mal verwendbar"
|
msgstr "{i}-mal verwendbar"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:48
|
#: bookwyrm/forms/admin.py:49
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Unbegrenzt"
|
msgstr "Unbegrenzt"
|
||||||
|
|
||||||
|
@ -261,73 +261,73 @@ msgstr "Zitate"
|
||||||
msgid "Everything else"
|
msgid "Everything else"
|
||||||
msgstr "Alles andere"
|
msgstr "Alles andere"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home Timeline"
|
msgid "Home Timeline"
|
||||||
msgstr "Start-Zeitleiste"
|
msgstr "Start-Zeitleiste"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "Startseite"
|
msgstr "Startseite"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209
|
#: bookwyrm/settings.py:210
|
||||||
msgid "Books Timeline"
|
msgid "Books Timeline"
|
||||||
msgstr "Bücher-Zeitleiste"
|
msgstr "Bücher-Zeitleiste"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209 bookwyrm/templates/search/layout.html:21
|
#: bookwyrm/settings.py:210 bookwyrm/templates/search/layout.html:21
|
||||||
#: bookwyrm/templates/search/layout.html:42
|
#: bookwyrm/templates/search/layout.html:42
|
||||||
#: bookwyrm/templates/user/layout.html:91
|
#: bookwyrm/templates/user/layout.html:91
|
||||||
msgid "Books"
|
msgid "Books"
|
||||||
msgstr "Bücher"
|
msgstr "Bücher"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:281
|
#: bookwyrm/settings.py:282
|
||||||
msgid "English"
|
msgid "English"
|
||||||
msgstr "English (Englisch)"
|
msgstr "English (Englisch)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:282
|
#: bookwyrm/settings.py:283
|
||||||
msgid "Deutsch (German)"
|
msgid "Deutsch (German)"
|
||||||
msgstr "Deutsch"
|
msgstr "Deutsch"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:283
|
#: bookwyrm/settings.py:284
|
||||||
msgid "Español (Spanish)"
|
msgid "Español (Spanish)"
|
||||||
msgstr "Español (Spanisch)"
|
msgstr "Español (Spanisch)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:284
|
#: bookwyrm/settings.py:285
|
||||||
msgid "Galego (Galician)"
|
msgid "Galego (Galician)"
|
||||||
msgstr "Galego (Galizisch)"
|
msgstr "Galego (Galizisch)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:285
|
#: bookwyrm/settings.py:286
|
||||||
msgid "Italiano (Italian)"
|
msgid "Italiano (Italian)"
|
||||||
msgstr "Italiano (Italienisch)"
|
msgstr "Italiano (Italienisch)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:286
|
#: bookwyrm/settings.py:287
|
||||||
msgid "Français (French)"
|
msgid "Français (French)"
|
||||||
msgstr "Français (Französisch)"
|
msgstr "Français (Französisch)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:287
|
#: bookwyrm/settings.py:288
|
||||||
msgid "Lietuvių (Lithuanian)"
|
msgid "Lietuvių (Lithuanian)"
|
||||||
msgstr "Lietuvių (Litauisch)"
|
msgstr "Lietuvių (Litauisch)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:288
|
#: bookwyrm/settings.py:289
|
||||||
msgid "Norsk (Norwegian)"
|
msgid "Norsk (Norwegian)"
|
||||||
msgstr "Norsk (Norwegisch)"
|
msgstr "Norsk (Norwegisch)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:289
|
#: bookwyrm/settings.py:290
|
||||||
msgid "Português do Brasil (Brazilian Portuguese)"
|
msgid "Português do Brasil (Brazilian Portuguese)"
|
||||||
msgstr "Português do Brasil (brasilianisches Portugiesisch)"
|
msgstr "Português do Brasil (brasilianisches Portugiesisch)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:290
|
#: bookwyrm/settings.py:291
|
||||||
msgid "Português Europeu (European Portuguese)"
|
msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Portugiesisch)"
|
msgstr "Português Europeu (Portugiesisch)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:291
|
#: bookwyrm/settings.py:292
|
||||||
msgid "Svenska (Swedish)"
|
msgid "Svenska (Swedish)"
|
||||||
msgstr "Svenska (Schwedisch)"
|
msgstr "Svenska (Schwedisch)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:292
|
#: bookwyrm/settings.py:293
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (vereinfachtes Chinesisch)"
|
msgstr "简体中文 (vereinfachtes Chinesisch)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:293
|
#: bookwyrm/settings.py:294
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Chinesisch, traditionell)"
|
msgstr "繁體中文 (Chinesisch, traditionell)"
|
||||||
|
|
||||||
|
@ -679,8 +679,7 @@ msgstr "Name:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:44
|
#: bookwyrm/templates/author/edit_author.html:44
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
#: bookwyrm/templates/book/edit/edit_book_form.html:146
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:107
|
|
||||||
msgid "Separate multiple values with commas."
|
msgid "Separate multiple values with commas."
|
||||||
msgstr "Mehrere Werte durch Kommas getrennt eingeben."
|
msgstr "Mehrere Werte durch Kommas getrennt eingeben."
|
||||||
|
|
||||||
|
@ -709,7 +708,7 @@ msgid "Openlibrary key:"
|
||||||
msgstr "Openlibrary-Schlüssel:"
|
msgstr "Openlibrary-Schlüssel:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:84
|
#: bookwyrm/templates/author/edit_author.html:84
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:278
|
#: bookwyrm/templates/book/edit/edit_book_form.html:322
|
||||||
msgid "Inventaire ID:"
|
msgid "Inventaire ID:"
|
||||||
msgstr "Inventaire-ID:"
|
msgstr "Inventaire-ID:"
|
||||||
|
|
||||||
|
@ -892,12 +891,12 @@ msgid "ISBN:"
|
||||||
msgstr "ISBN:"
|
msgstr "ISBN:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:15
|
#: bookwyrm/templates/book/book_identifiers.html:15
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:287
|
#: bookwyrm/templates/book/edit/edit_book_form.html:331
|
||||||
msgid "OCLC Number:"
|
msgid "OCLC Number:"
|
||||||
msgstr "OCLC-Nummer:"
|
msgstr "OCLC-Nummer:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:22
|
#: bookwyrm/templates/book/book_identifiers.html:22
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:296
|
#: bookwyrm/templates/book/edit/edit_book_form.html:340
|
||||||
msgid "ASIN:"
|
msgid "ASIN:"
|
||||||
msgstr "ASIN:"
|
msgstr "ASIN:"
|
||||||
|
|
||||||
|
@ -906,12 +905,12 @@ msgid "Add cover"
|
||||||
msgstr "Titelbild hinzufügen"
|
msgstr "Titelbild hinzufügen"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:17
|
#: bookwyrm/templates/book/cover_add_modal.html:17
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
#: bookwyrm/templates/book/edit/edit_book_form.html:230
|
||||||
msgid "Upload cover:"
|
msgid "Upload cover:"
|
||||||
msgstr "Titelbild hochladen:"
|
msgstr "Titelbild hochladen:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:23
|
#: bookwyrm/templates/book/cover_add_modal.html:23
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:192
|
#: bookwyrm/templates/book/edit/edit_book_form.html:236
|
||||||
msgid "Load cover from url:"
|
msgid "Load cover from url:"
|
||||||
msgstr "Titelbild von URL laden:"
|
msgstr "Titelbild von URL laden:"
|
||||||
|
|
||||||
|
@ -1006,89 +1005,101 @@ msgstr "Sprachen:"
|
||||||
msgid "Subjects:"
|
msgid "Subjects:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:98
|
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
||||||
|
msgid "Add subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:106
|
||||||
|
msgid "Remove subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:129
|
||||||
|
msgid "Add Another Subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:137
|
||||||
msgid "Publication"
|
msgid "Publication"
|
||||||
msgstr "Veröffentlichung"
|
msgstr "Veröffentlichung"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:103
|
#: bookwyrm/templates/book/edit/edit_book_form.html:142
|
||||||
msgid "Publisher:"
|
msgid "Publisher:"
|
||||||
msgstr "Verlag:"
|
msgstr "Verlag:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:115
|
#: bookwyrm/templates/book/edit/edit_book_form.html:154
|
||||||
msgid "First published date:"
|
msgid "First published date:"
|
||||||
msgstr "Erstveröffentlichungsdatum:"
|
msgstr "Erstveröffentlichungsdatum:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:124
|
#: bookwyrm/templates/book/edit/edit_book_form.html:163
|
||||||
msgid "Published date:"
|
msgid "Published date:"
|
||||||
msgstr "Veröffentlichungsdatum:"
|
msgstr "Veröffentlichungsdatum:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:135
|
#: bookwyrm/templates/book/edit/edit_book_form.html:174
|
||||||
msgid "Authors"
|
msgid "Authors"
|
||||||
msgstr "Autor*innen"
|
msgstr "Autor*innen"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:144
|
#: bookwyrm/templates/book/edit/edit_book_form.html:183
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Remove %(name)s"
|
msgid "Remove %(name)s"
|
||||||
msgstr "%(name)s entfernen"
|
msgstr "%(name)s entfernen"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:147
|
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Author page for %(name)s"
|
msgid "Author page for %(name)s"
|
||||||
msgstr "Autor*inseite für %(name)s"
|
msgstr "Autor*inseite für %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:155
|
#: bookwyrm/templates/book/edit/edit_book_form.html:194
|
||||||
msgid "Add Authors:"
|
msgid "Add Authors:"
|
||||||
msgstr "Autor*innen hinzufügen:"
|
msgstr "Autor*innen hinzufügen:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:158
|
#: bookwyrm/templates/book/edit/edit_book_form.html:197
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:161
|
#: bookwyrm/templates/book/edit/edit_book_form.html:200
|
||||||
msgid "Add Author"
|
msgid "Add Author"
|
||||||
msgstr "Autor*in hinzufügen"
|
msgstr "Autor*in hinzufügen"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:159
|
#: bookwyrm/templates/book/edit/edit_book_form.html:198
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:162
|
#: bookwyrm/templates/book/edit/edit_book_form.html:201
|
||||||
msgid "Jane Doe"
|
msgid "Jane Doe"
|
||||||
msgstr "Lisa Musterfrau"
|
msgstr "Lisa Musterfrau"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:165
|
#: bookwyrm/templates/book/edit/edit_book_form.html:207
|
||||||
msgid "Add Another Author"
|
msgid "Add Another Author"
|
||||||
msgstr "Weitere*n Autor*in hinzufügen"
|
msgstr "Weitere*n Autor*in hinzufügen"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:173
|
#: bookwyrm/templates/book/edit/edit_book_form.html:217
|
||||||
#: bookwyrm/templates/shelf/shelf.html:146
|
#: bookwyrm/templates/shelf/shelf.html:146
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Titelbild"
|
msgstr "Titelbild"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:205
|
#: bookwyrm/templates/book/edit/edit_book_form.html:249
|
||||||
msgid "Physical Properties"
|
msgid "Physical Properties"
|
||||||
msgstr "Physikalische Eigenschaften"
|
msgstr "Physikalische Eigenschaften"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:212
|
#: bookwyrm/templates/book/edit/edit_book_form.html:256
|
||||||
#: bookwyrm/templates/book/editions/format_filter.html:6
|
#: bookwyrm/templates/book/editions/format_filter.html:6
|
||||||
msgid "Format:"
|
msgid "Format:"
|
||||||
msgstr "Format:"
|
msgstr "Format:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:224
|
#: bookwyrm/templates/book/edit/edit_book_form.html:268
|
||||||
msgid "Format details:"
|
msgid "Format details:"
|
||||||
msgstr "Formatdetails:"
|
msgstr "Formatdetails:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:235
|
#: bookwyrm/templates/book/edit/edit_book_form.html:279
|
||||||
msgid "Pages:"
|
msgid "Pages:"
|
||||||
msgstr "Seiten:"
|
msgstr "Seiten:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:246
|
#: bookwyrm/templates/book/edit/edit_book_form.html:290
|
||||||
msgid "Book Identifiers"
|
msgid "Book Identifiers"
|
||||||
msgstr "Buch-Identifikatoren"
|
msgstr "Buch-Identifikatoren"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:251
|
#: bookwyrm/templates/book/edit/edit_book_form.html:295
|
||||||
msgid "ISBN 13:"
|
msgid "ISBN 13:"
|
||||||
msgstr "ISBN 13:"
|
msgstr "ISBN 13:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:260
|
#: bookwyrm/templates/book/edit/edit_book_form.html:304
|
||||||
msgid "ISBN 10:"
|
msgid "ISBN 10:"
|
||||||
msgstr "ISBN 10:"
|
msgstr "ISBN 10:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:269
|
#: bookwyrm/templates/book/edit/edit_book_form.html:313
|
||||||
msgid "Openlibrary ID:"
|
msgid "Openlibrary ID:"
|
||||||
msgstr "OpenLibrary-ID:"
|
msgstr "OpenLibrary-ID:"
|
||||||
|
|
||||||
|
@ -1144,12 +1155,8 @@ msgstr "Links bearbeiten"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "\n"
|
msgid "Links for \"<em>%(title)s</em>\""
|
||||||
" Links for \"<em>%(title)s</em>\"\n"
|
msgstr ""
|
||||||
" "
|
|
||||||
msgstr "\n"
|
|
||||||
" Links für „<em>%(title)s</em>“\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
||||||
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
||||||
|
@ -3216,64 +3223,89 @@ msgstr "Anzeigeeinstellungen"
|
||||||
msgid "Color:"
|
msgid "Color:"
|
||||||
msgstr "Farbe:"
|
msgstr "Farbe:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:6
|
#: bookwyrm/templates/settings/automod/rules.html:7
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:10
|
#: bookwyrm/templates/settings/automod/rules.html:11
|
||||||
#: bookwyrm/templates/settings/layout.html:61
|
#: bookwyrm/templates/settings/layout.html:61
|
||||||
msgid "Auto-moderation rules"
|
msgid "Auto-moderation rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:17
|
#: bookwyrm/templates/settings/automod/rules.html:18
|
||||||
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:18
|
#: bookwyrm/templates/settings/automod/rules.html:19
|
||||||
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:19
|
#: bookwyrm/templates/settings/automod/rules.html:26
|
||||||
msgid "At this time, reports are <em>not</em> being generated automatically, and you must manually trigger a scan."
|
msgid "Schedule:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:23
|
#: bookwyrm/templates/settings/automod/rules.html:33
|
||||||
msgid "Run scan"
|
msgid "Last run:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:31
|
#: bookwyrm/templates/settings/automod/rules.html:40
|
||||||
msgid "Successfully added rule"
|
msgid "Total run count:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:37
|
#: bookwyrm/templates/settings/automod/rules.html:47
|
||||||
msgid "Add Rule"
|
msgid "Enabled:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:46
|
#: bookwyrm/templates/settings/automod/rules.html:59
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:90
|
msgid "Delete schedule"
|
||||||
msgid "String match"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:56
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:93
|
|
||||||
msgid "Flag users"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:63
|
#: bookwyrm/templates/settings/automod/rules.html:63
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:96
|
msgid "Run now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:64
|
||||||
|
msgid "Last run date will not be updated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:69
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:92
|
||||||
|
msgid "Schedule scan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:101
|
||||||
|
msgid "Successfully added rule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:107
|
||||||
|
msgid "Add Rule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:116
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:160
|
||||||
|
msgid "String match"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:126
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:163
|
||||||
|
msgid "Flag users"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:133
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:166
|
||||||
msgid "Flag statuses"
|
msgid "Flag statuses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:70
|
#: bookwyrm/templates/settings/automod/rules.html:140
|
||||||
msgid "Add rule"
|
msgid "Add rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:77
|
#: bookwyrm/templates/settings/automod/rules.html:147
|
||||||
msgid "Current Rules"
|
msgid "Current Rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:81
|
#: bookwyrm/templates/settings/automod/rules.html:151
|
||||||
msgid "Show rules"
|
msgid "Show rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:118
|
#: bookwyrm/templates/settings/automod/rules.html:188
|
||||||
msgid "Remove rule"
|
msgid "Remove rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3523,7 +3555,6 @@ msgid "Import Blocklist"
|
||||||
msgstr "Sperrliste importieren"
|
msgstr "Sperrliste importieren"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:7
|
|
||||||
msgid "Success!"
|
msgid "Success!"
|
||||||
msgstr "Hat funktioniert!"
|
msgstr "Hat funktioniert!"
|
||||||
|
|
||||||
|
@ -4565,6 +4596,11 @@ msgstr "Im Feed veröffentlichen"
|
||||||
msgid "Set goal"
|
msgid "Set goal"
|
||||||
msgstr "Ziel setzen"
|
msgstr "Ziel setzen"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/snippets/goal_progress.html:7
|
||||||
|
msgctxt "Goal successfully completed"
|
||||||
|
msgid "Success!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:9
|
#: bookwyrm/templates/snippets/goal_progress.html:9
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(percent)s%% complete!"
|
msgid "%(percent)s%% complete!"
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 0.0.1\n"
|
"Project-Id-Version: 0.0.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-03-16 23:12+0000\n"
|
"POT-Creation-Date: 2022-03-17 16:15+0000\n"
|
||||||
"PO-Revision-Date: 2021-02-28 17:19-0800\n"
|
"PO-Revision-Date: 2021-02-28 17:19-0800\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: English <LL@li.org>\n"
|
"Language-Team: English <LL@li.org>\n"
|
||||||
|
@ -246,7 +246,7 @@ msgstr ""
|
||||||
msgid "Approved"
|
msgid "Approved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:281
|
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:289
|
||||||
msgid "Reviews"
|
msgid "Reviews"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -652,22 +652,22 @@ msgid "Edit Author:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:13
|
#: bookwyrm/templates/author/edit_author.html:13
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:19
|
#: bookwyrm/templates/book/edit/edit_book.html:25
|
||||||
msgid "Added:"
|
msgid "Added:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:14
|
#: bookwyrm/templates/author/edit_author.html:14
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:22
|
#: bookwyrm/templates/book/edit/edit_book.html:28
|
||||||
msgid "Updated:"
|
msgid "Updated:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:16
|
#: bookwyrm/templates/author/edit_author.html:16
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:26
|
#: bookwyrm/templates/book/edit/edit_book.html:32
|
||||||
msgid "Last edited by:"
|
msgid "Last edited by:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:33
|
#: bookwyrm/templates/author/edit_author.html:33
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:17
|
#: bookwyrm/templates/book/edit/edit_book_form.html:19
|
||||||
msgid "Metadata"
|
msgid "Metadata"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -679,8 +679,8 @@ msgid "Name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:44
|
#: bookwyrm/templates/author/edit_author.html:44
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
#: bookwyrm/templates/book/edit/edit_book_form.html:78
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:146
|
#: bookwyrm/templates/book/edit/edit_book_form.html:148
|
||||||
msgid "Separate multiple values with commas."
|
msgid "Separate multiple values with commas."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -709,7 +709,7 @@ msgid "Openlibrary key:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:84
|
#: bookwyrm/templates/author/edit_author.html:84
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:322
|
#: bookwyrm/templates/book/edit/edit_book_form.html:326
|
||||||
msgid "Inventaire ID:"
|
msgid "Inventaire ID:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -727,7 +727,7 @@ msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:115
|
#: bookwyrm/templates/author/edit_author.html:115
|
||||||
#: bookwyrm/templates/book/book.html:202
|
#: bookwyrm/templates/book/book.html:202
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:121
|
#: bookwyrm/templates/book/edit/edit_book.html:127
|
||||||
#: bookwyrm/templates/book/file_links/add_link_modal.html:60
|
#: bookwyrm/templates/book/file_links/add_link_modal.html:60
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
||||||
#: bookwyrm/templates/groups/form.html:32
|
#: bookwyrm/templates/groups/form.html:32
|
||||||
|
@ -739,7 +739,7 @@ msgstr ""
|
||||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:120
|
#: bookwyrm/templates/settings/announcements/edit_announcement.html:120
|
||||||
#: bookwyrm/templates/settings/federation/edit_instance.html:98
|
#: bookwyrm/templates/settings/federation/edit_instance.html:98
|
||||||
#: bookwyrm/templates/settings/federation/instance.html:105
|
#: bookwyrm/templates/settings/federation/instance.html:105
|
||||||
#: bookwyrm/templates/settings/site.html:169
|
#: bookwyrm/templates/settings/site.html:181
|
||||||
#: bookwyrm/templates/settings/users/user_moderation_actions.html:69
|
#: bookwyrm/templates/settings/users/user_moderation_actions.html:69
|
||||||
#: bookwyrm/templates/shelf/form.html:25
|
#: bookwyrm/templates/shelf/form.html:25
|
||||||
#: bookwyrm/templates/snippets/reading_modals/layout.html:18
|
#: bookwyrm/templates/snippets/reading_modals/layout.html:18
|
||||||
|
@ -750,8 +750,8 @@ msgstr ""
|
||||||
#: bookwyrm/templates/author/sync_modal.html:23
|
#: bookwyrm/templates/author/sync_modal.html:23
|
||||||
#: bookwyrm/templates/book/book.html:203
|
#: bookwyrm/templates/book/book.html:203
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:33
|
#: bookwyrm/templates/book/cover_add_modal.html:33
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:123
|
#: bookwyrm/templates/book/edit/edit_book.html:129
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:126
|
#: bookwyrm/templates/book/edit/edit_book.html:132
|
||||||
#: bookwyrm/templates/book/file_links/add_link_modal.html:59
|
#: bookwyrm/templates/book/file_links/add_link_modal.html:59
|
||||||
#: bookwyrm/templates/book/file_links/verification_modal.html:25
|
#: bookwyrm/templates/book/file_links/verification_modal.html:25
|
||||||
#: bookwyrm/templates/book/sync_modal.html:23
|
#: bookwyrm/templates/book/sync_modal.html:23
|
||||||
|
@ -773,7 +773,7 @@ msgid "Loading data will connect to <strong>%(source_name)s</strong> and check f
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/author/sync_modal.html:24
|
#: bookwyrm/templates/author/sync_modal.html:24
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:108
|
#: bookwyrm/templates/book/edit/edit_book.html:114
|
||||||
#: bookwyrm/templates/book/sync_modal.html:24
|
#: bookwyrm/templates/book/sync_modal.html:24
|
||||||
#: bookwyrm/templates/groups/members.html:29
|
#: bookwyrm/templates/groups/members.html:29
|
||||||
#: bookwyrm/templates/landing/password_reset.html:42
|
#: bookwyrm/templates/landing/password_reset.html:42
|
||||||
|
@ -813,58 +813,60 @@ msgid "Add Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:198
|
#: bookwyrm/templates/book/book.html:198
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:40
|
#: bookwyrm/templates/book/edit/edit_book_form.html:42
|
||||||
#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17
|
#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17
|
||||||
msgid "Description:"
|
msgid "Description:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:212
|
#: bookwyrm/templates/book/book.html:214
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "<a href=\"%(path)s/editions\">%(count)s editions</a>"
|
msgid "%(count)s edition"
|
||||||
msgstr ""
|
msgid_plural "%(count)s editions"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:220
|
#: bookwyrm/templates/book/book.html:228
|
||||||
msgid "You have shelved this edition in:"
|
msgid "You have shelved this edition in:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:235
|
#: bookwyrm/templates/book/book.html:243
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "A <a href=\"%(book_path)s\">different edition</a> of this book is on your <a href=\"%(shelf_path)s\">%(shelf_name)s</a> shelf."
|
msgid "A <a href=\"%(book_path)s\">different edition</a> of this book is on your <a href=\"%(shelf_path)s\">%(shelf_name)s</a> shelf."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:246
|
#: bookwyrm/templates/book/book.html:254
|
||||||
msgid "Your reading activity"
|
msgid "Your reading activity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:252
|
#: bookwyrm/templates/book/book.html:260
|
||||||
msgid "Add read dates"
|
msgid "Add read dates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:260
|
#: bookwyrm/templates/book/book.html:268
|
||||||
msgid "You don't have any reading activity for this book."
|
msgid "You don't have any reading activity for this book."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:286
|
#: bookwyrm/templates/book/book.html:294
|
||||||
msgid "Your reviews"
|
msgid "Your reviews"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:292
|
#: bookwyrm/templates/book/book.html:300
|
||||||
msgid "Your comments"
|
msgid "Your comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:298
|
#: bookwyrm/templates/book/book.html:306
|
||||||
msgid "Your quotes"
|
msgid "Your quotes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:334
|
#: bookwyrm/templates/book/book.html:342
|
||||||
msgid "Subjects"
|
msgid "Subjects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:346
|
#: bookwyrm/templates/book/book.html:354
|
||||||
msgid "Places"
|
msgid "Places"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:357
|
#: bookwyrm/templates/book/book.html:365
|
||||||
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83
|
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83
|
||||||
#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12
|
#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12
|
||||||
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
||||||
|
@ -874,11 +876,11 @@ msgstr ""
|
||||||
msgid "Lists"
|
msgid "Lists"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:369
|
#: bookwyrm/templates/book/book.html:377
|
||||||
msgid "Add to list"
|
msgid "Add to list"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:379
|
#: bookwyrm/templates/book/book.html:387
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:32
|
#: bookwyrm/templates/book/cover_add_modal.html:32
|
||||||
#: bookwyrm/templates/lists/add_item_modal.html:39
|
#: bookwyrm/templates/lists/add_item_modal.html:39
|
||||||
#: bookwyrm/templates/lists/list.html:255
|
#: bookwyrm/templates/lists/list.html:255
|
||||||
|
@ -892,12 +894,12 @@ msgid "ISBN:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:15
|
#: bookwyrm/templates/book/book_identifiers.html:15
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:331
|
#: bookwyrm/templates/book/edit/edit_book_form.html:335
|
||||||
msgid "OCLC Number:"
|
msgid "OCLC Number:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:22
|
#: bookwyrm/templates/book/book_identifiers.html:22
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:340
|
#: bookwyrm/templates/book/edit/edit_book_form.html:344
|
||||||
msgid "ASIN:"
|
msgid "ASIN:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -906,12 +908,12 @@ msgid "Add cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:17
|
#: bookwyrm/templates/book/cover_add_modal.html:17
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:230
|
#: bookwyrm/templates/book/edit/edit_book_form.html:234
|
||||||
msgid "Upload cover:"
|
msgid "Upload cover:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:23
|
#: bookwyrm/templates/book/cover_add_modal.html:23
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:236
|
#: bookwyrm/templates/book/edit/edit_book_form.html:240
|
||||||
msgid "Load cover from url:"
|
msgid "Load cover from url:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -930,177 +932,177 @@ msgstr ""
|
||||||
msgid "Close"
|
msgid "Close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:6
|
#: bookwyrm/templates/book/edit/edit_book.html:8
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:12
|
#: bookwyrm/templates/book/edit/edit_book.html:18
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Edit \"%(book_title)s\""
|
msgid "Edit \"%(book_title)s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:6
|
#: bookwyrm/templates/book/edit/edit_book.html:10
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:14
|
#: bookwyrm/templates/book/edit/edit_book.html:20
|
||||||
msgid "Add Book"
|
msgid "Add Book"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:48
|
#: bookwyrm/templates/book/edit/edit_book.html:54
|
||||||
msgid "Confirm Book Info"
|
msgid "Confirm Book Info"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:56
|
#: bookwyrm/templates/book/edit/edit_book.html:62
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Is \"%(name)s\" one of these authors?"
|
msgid "Is \"%(name)s\" one of these authors?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:67
|
#: bookwyrm/templates/book/edit/edit_book.html:73
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:69
|
#: bookwyrm/templates/book/edit/edit_book.html:75
|
||||||
msgid "Author of "
|
msgid "Author of "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:69
|
#: bookwyrm/templates/book/edit/edit_book.html:75
|
||||||
msgid "Find more information at isni.org"
|
msgid "Find more information at isni.org"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:79
|
#: bookwyrm/templates/book/edit/edit_book.html:85
|
||||||
msgid "This is a new author"
|
msgid "This is a new author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:86
|
#: bookwyrm/templates/book/edit/edit_book.html:92
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Creating a new author: %(name)s"
|
msgid "Creating a new author: %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:93
|
#: bookwyrm/templates/book/edit/edit_book.html:99
|
||||||
msgid "Is this an edition of an existing work?"
|
msgid "Is this an edition of an existing work?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:101
|
#: bookwyrm/templates/book/edit/edit_book.html:107
|
||||||
msgid "This is a new work"
|
msgid "This is a new work"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book.html:110
|
#: bookwyrm/templates/book/edit/edit_book.html:116
|
||||||
#: bookwyrm/templates/feed/status.html:21
|
#: bookwyrm/templates/feed/status.html:21
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:22
|
#: bookwyrm/templates/book/edit/edit_book_form.html:24
|
||||||
#: bookwyrm/templates/snippets/create_status/review.html:15
|
#: bookwyrm/templates/snippets/create_status/review.html:15
|
||||||
msgid "Title:"
|
msgid "Title:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:31
|
#: bookwyrm/templates/book/edit/edit_book_form.html:33
|
||||||
msgid "Subtitle:"
|
msgid "Subtitle:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:51
|
#: bookwyrm/templates/book/edit/edit_book_form.html:53
|
||||||
msgid "Series:"
|
msgid "Series:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:61
|
#: bookwyrm/templates/book/edit/edit_book_form.html:63
|
||||||
msgid "Series number:"
|
msgid "Series number:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:72
|
#: bookwyrm/templates/book/edit/edit_book_form.html:74
|
||||||
msgid "Languages:"
|
msgid "Languages:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:84
|
#: bookwyrm/templates/book/edit/edit_book_form.html:86
|
||||||
msgid "Subjects:"
|
msgid "Subjects:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
#: bookwyrm/templates/book/edit/edit_book_form.html:90
|
||||||
msgid "Add subject"
|
msgid "Add subject"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:106
|
#: bookwyrm/templates/book/edit/edit_book_form.html:108
|
||||||
msgid "Remove subject"
|
msgid "Remove subject"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:129
|
#: bookwyrm/templates/book/edit/edit_book_form.html:131
|
||||||
msgid "Add Another Subject"
|
msgid "Add Another Subject"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:137
|
#: bookwyrm/templates/book/edit/edit_book_form.html:139
|
||||||
msgid "Publication"
|
msgid "Publication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:142
|
#: bookwyrm/templates/book/edit/edit_book_form.html:144
|
||||||
msgid "Publisher:"
|
msgid "Publisher:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:154
|
#: bookwyrm/templates/book/edit/edit_book_form.html:156
|
||||||
msgid "First published date:"
|
msgid "First published date:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:163
|
#: bookwyrm/templates/book/edit/edit_book_form.html:165
|
||||||
msgid "Published date:"
|
msgid "Published date:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:174
|
#: bookwyrm/templates/book/edit/edit_book_form.html:176
|
||||||
msgid "Authors"
|
msgid "Authors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:183
|
#: bookwyrm/templates/book/edit/edit_book_form.html:187
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Remove %(name)s"
|
msgid "Remove %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
#: bookwyrm/templates/book/edit/edit_book_form.html:190
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Author page for %(name)s"
|
msgid "Author page for %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:194
|
#: bookwyrm/templates/book/edit/edit_book_form.html:198
|
||||||
msgid "Add Authors:"
|
msgid "Add Authors:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:197
|
#: bookwyrm/templates/book/edit/edit_book_form.html:201
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:200
|
#: bookwyrm/templates/book/edit/edit_book_form.html:204
|
||||||
msgid "Add Author"
|
msgid "Add Author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:198
|
#: bookwyrm/templates/book/edit/edit_book_form.html:202
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:201
|
#: bookwyrm/templates/book/edit/edit_book_form.html:205
|
||||||
msgid "Jane Doe"
|
msgid "Jane Doe"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:207
|
#: bookwyrm/templates/book/edit/edit_book_form.html:211
|
||||||
msgid "Add Another Author"
|
msgid "Add Another Author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:217
|
#: bookwyrm/templates/book/edit/edit_book_form.html:221
|
||||||
#: bookwyrm/templates/shelf/shelf.html:146
|
#: bookwyrm/templates/shelf/shelf.html:146
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:249
|
#: bookwyrm/templates/book/edit/edit_book_form.html:253
|
||||||
msgid "Physical Properties"
|
msgid "Physical Properties"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:256
|
#: bookwyrm/templates/book/edit/edit_book_form.html:260
|
||||||
#: bookwyrm/templates/book/editions/format_filter.html:6
|
#: bookwyrm/templates/book/editions/format_filter.html:6
|
||||||
msgid "Format:"
|
msgid "Format:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:268
|
#: bookwyrm/templates/book/edit/edit_book_form.html:272
|
||||||
msgid "Format details:"
|
msgid "Format details:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:279
|
#: bookwyrm/templates/book/edit/edit_book_form.html:283
|
||||||
msgid "Pages:"
|
msgid "Pages:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:290
|
#: bookwyrm/templates/book/edit/edit_book_form.html:294
|
||||||
msgid "Book Identifiers"
|
msgid "Book Identifiers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:295
|
#: bookwyrm/templates/book/edit/edit_book_form.html:299
|
||||||
msgid "ISBN 13:"
|
msgid "ISBN 13:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:304
|
#: bookwyrm/templates/book/edit/edit_book_form.html:308
|
||||||
msgid "ISBN 10:"
|
msgid "ISBN 10:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:313
|
#: bookwyrm/templates/book/edit/edit_book_form.html:317
|
||||||
msgid "Openlibrary ID:"
|
msgid "Openlibrary ID:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1114,6 +1116,14 @@ msgstr ""
|
||||||
msgid "Editions of <a href=\"%(work_path)s\">\"%(work_title)s\"</a>"
|
msgid "Editions of <a href=\"%(work_path)s\">\"%(work_title)s\"</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/editions/editions.html:55
|
||||||
|
msgid "Can't find the edition you're looking for?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/editions/editions.html:75
|
||||||
|
msgid "Add another edition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/editions/format_filter.html:9
|
#: bookwyrm/templates/book/editions/format_filter.html:9
|
||||||
#: bookwyrm/templates/book/editions/language_filter.html:9
|
#: bookwyrm/templates/book/editions/language_filter.html:9
|
||||||
msgid "Any"
|
msgid "Any"
|
||||||
|
@ -1184,7 +1194,7 @@ msgstr ""
|
||||||
#: bookwyrm/templates/import/import_status.html:127
|
#: bookwyrm/templates/import/import_status.html:127
|
||||||
#: bookwyrm/templates/settings/announcements/announcements.html:37
|
#: bookwyrm/templates/settings/announcements/announcements.html:37
|
||||||
#: bookwyrm/templates/settings/federation/instance_list.html:46
|
#: bookwyrm/templates/settings/federation/instance_list.html:46
|
||||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44
|
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47
|
||||||
#: bookwyrm/templates/settings/invites/status_filter.html:5
|
#: bookwyrm/templates/settings/invites/status_filter.html:5
|
||||||
#: bookwyrm/templates/settings/users/user_admin.html:52
|
#: bookwyrm/templates/settings/users/user_admin.html:52
|
||||||
#: bookwyrm/templates/settings/users/user_info.html:20
|
#: bookwyrm/templates/settings/users/user_info.html:20
|
||||||
|
@ -1308,7 +1318,7 @@ msgid "Confirmation code:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/confirm_email/confirm_email.html:25
|
#: bookwyrm/templates/confirm_email/confirm_email.html:25
|
||||||
#: bookwyrm/templates/landing/layout.html:73
|
#: bookwyrm/templates/landing/layout.html:81
|
||||||
#: bookwyrm/templates/settings/dashboard/dashboard.html:116
|
#: bookwyrm/templates/settings/dashboard/dashboard.html:116
|
||||||
#: bookwyrm/templates/snippets/report_modal.html:53
|
#: bookwyrm/templates/snippets/report_modal.html:53
|
||||||
msgid "Submit"
|
msgid "Submit"
|
||||||
|
@ -2187,7 +2197,7 @@ msgstr ""
|
||||||
msgid "Thank you! Your request has been received."
|
msgid "Thank you! Your request has been received."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/landing/layout.html:82
|
#: bookwyrm/templates/landing/layout.html:90
|
||||||
msgid "Your Account"
|
msgid "Your Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3605,50 +3615,54 @@ msgstr ""
|
||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47
|
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44
|
||||||
msgid "Action"
|
msgid "Answer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50
|
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50
|
||||||
|
msgid "Action"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:53
|
||||||
msgid "No requests"
|
msgid "No requests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59
|
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:65
|
||||||
#: bookwyrm/templates/settings/invites/status_filter.html:16
|
#: bookwyrm/templates/settings/invites/status_filter.html:16
|
||||||
msgid "Accepted"
|
msgid "Accepted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61
|
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:67
|
||||||
#: bookwyrm/templates/settings/invites/status_filter.html:12
|
#: bookwyrm/templates/settings/invites/status_filter.html:12
|
||||||
msgid "Sent"
|
msgid "Sent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63
|
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:69
|
||||||
#: bookwyrm/templates/settings/invites/status_filter.html:8
|
#: bookwyrm/templates/settings/invites/status_filter.html:8
|
||||||
msgid "Requested"
|
msgid "Requested"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73
|
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:79
|
||||||
msgid "Send invite"
|
msgid "Send invite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75
|
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:81
|
||||||
msgid "Re-send invite"
|
msgid "Re-send invite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95
|
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:101
|
||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97
|
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:103
|
||||||
msgid "Un-ignore"
|
msgid "Un-ignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108
|
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:114
|
||||||
msgid "Back to pending requests"
|
msgid "Back to pending requests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110
|
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116
|
||||||
msgid "View ignored requests"
|
msgid "View ignored requests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3980,18 +3994,26 @@ msgid "Allow invite requests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/site.html:151
|
#: bookwyrm/templates/settings/site.html:151
|
||||||
msgid "Require users to confirm email address"
|
msgid "Set a question for invite requests"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/site.html:153
|
|
||||||
msgid "(Recommended if registration is open)"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/site.html:156
|
#: bookwyrm/templates/settings/site.html:156
|
||||||
|
msgid "Question:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/site.html:163
|
||||||
|
msgid "Require users to confirm email address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/site.html:165
|
||||||
|
msgid "(Recommended if registration is open)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/site.html:168
|
||||||
msgid "Registration closed text:"
|
msgid "Registration closed text:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/site.html:160
|
#: bookwyrm/templates/settings/site.html:172
|
||||||
msgid "Invite request text:"
|
msgid "Invite request text:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-03-14 19:30+0000\n"
|
"POT-Creation-Date: 2022-03-16 23:12+0000\n"
|
||||||
"PO-Revision-Date: 2022-03-14 20:18\n"
|
"PO-Revision-Date: 2022-03-16 23:34\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Spanish\n"
|
"Language-Team: Spanish\n"
|
||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
|
@ -17,28 +17,28 @@ msgstr ""
|
||||||
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
||||||
"X-Crowdin-File-ID: 1553\n"
|
"X-Crowdin-File-ID: 1553\n"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:40
|
#: bookwyrm/forms/admin.py:41
|
||||||
msgid "One Day"
|
msgid "One Day"
|
||||||
msgstr "Un día"
|
msgstr "Un día"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:41
|
#: bookwyrm/forms/admin.py:42
|
||||||
msgid "One Week"
|
msgid "One Week"
|
||||||
msgstr "Una semana"
|
msgstr "Una semana"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:42
|
#: bookwyrm/forms/admin.py:43
|
||||||
msgid "One Month"
|
msgid "One Month"
|
||||||
msgstr "Un mes"
|
msgstr "Un mes"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:43
|
#: bookwyrm/forms/admin.py:44
|
||||||
msgid "Does Not Expire"
|
msgid "Does Not Expire"
|
||||||
msgstr "No expira"
|
msgstr "No expira"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:47
|
#: bookwyrm/forms/admin.py:48
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{i} uses"
|
msgid "{i} uses"
|
||||||
msgstr "{i} usos"
|
msgstr "{i} usos"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:48
|
#: bookwyrm/forms/admin.py:49
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Sin límite"
|
msgstr "Sin límite"
|
||||||
|
|
||||||
|
@ -261,73 +261,73 @@ msgstr "Citas"
|
||||||
msgid "Everything else"
|
msgid "Everything else"
|
||||||
msgstr "Todo lo demás"
|
msgstr "Todo lo demás"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home Timeline"
|
msgid "Home Timeline"
|
||||||
msgstr "Línea de tiempo principal"
|
msgstr "Línea de tiempo principal"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "Inicio"
|
msgstr "Inicio"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209
|
#: bookwyrm/settings.py:210
|
||||||
msgid "Books Timeline"
|
msgid "Books Timeline"
|
||||||
msgstr "Línea temporal de libros"
|
msgstr "Línea temporal de libros"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209 bookwyrm/templates/search/layout.html:21
|
#: bookwyrm/settings.py:210 bookwyrm/templates/search/layout.html:21
|
||||||
#: bookwyrm/templates/search/layout.html:42
|
#: bookwyrm/templates/search/layout.html:42
|
||||||
#: bookwyrm/templates/user/layout.html:91
|
#: bookwyrm/templates/user/layout.html:91
|
||||||
msgid "Books"
|
msgid "Books"
|
||||||
msgstr "Libros"
|
msgstr "Libros"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:281
|
#: bookwyrm/settings.py:282
|
||||||
msgid "English"
|
msgid "English"
|
||||||
msgstr "English (Inglés)"
|
msgstr "English (Inglés)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:282
|
#: bookwyrm/settings.py:283
|
||||||
msgid "Deutsch (German)"
|
msgid "Deutsch (German)"
|
||||||
msgstr "Deutsch (Alemán)"
|
msgstr "Deutsch (Alemán)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:283
|
#: bookwyrm/settings.py:284
|
||||||
msgid "Español (Spanish)"
|
msgid "Español (Spanish)"
|
||||||
msgstr "Español"
|
msgstr "Español"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:284
|
#: bookwyrm/settings.py:285
|
||||||
msgid "Galego (Galician)"
|
msgid "Galego (Galician)"
|
||||||
msgstr "Galego (Gallego)"
|
msgstr "Galego (Gallego)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:285
|
#: bookwyrm/settings.py:286
|
||||||
msgid "Italiano (Italian)"
|
msgid "Italiano (Italian)"
|
||||||
msgstr "Italiano"
|
msgstr "Italiano"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:286
|
#: bookwyrm/settings.py:287
|
||||||
msgid "Français (French)"
|
msgid "Français (French)"
|
||||||
msgstr "Français (Francés)"
|
msgstr "Français (Francés)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:287
|
#: bookwyrm/settings.py:288
|
||||||
msgid "Lietuvių (Lithuanian)"
|
msgid "Lietuvių (Lithuanian)"
|
||||||
msgstr "Lietuvių (Lituano)"
|
msgstr "Lietuvių (Lituano)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:288
|
#: bookwyrm/settings.py:289
|
||||||
msgid "Norsk (Norwegian)"
|
msgid "Norsk (Norwegian)"
|
||||||
msgstr "Norsk (Noruego)"
|
msgstr "Norsk (Noruego)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:289
|
#: bookwyrm/settings.py:290
|
||||||
msgid "Português do Brasil (Brazilian Portuguese)"
|
msgid "Português do Brasil (Brazilian Portuguese)"
|
||||||
msgstr "Português do Brasil (Portugués brasileño)"
|
msgstr "Português do Brasil (Portugués brasileño)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:290
|
#: bookwyrm/settings.py:291
|
||||||
msgid "Português Europeu (European Portuguese)"
|
msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Portugués europeo)"
|
msgstr "Português Europeu (Portugués europeo)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:291
|
#: bookwyrm/settings.py:292
|
||||||
msgid "Svenska (Swedish)"
|
msgid "Svenska (Swedish)"
|
||||||
msgstr "Svenska (Sueco)"
|
msgstr "Svenska (Sueco)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:292
|
#: bookwyrm/settings.py:293
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Chino simplificado)"
|
msgstr "简体中文 (Chino simplificado)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:293
|
#: bookwyrm/settings.py:294
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Chino tradicional)"
|
msgstr "繁體中文 (Chino tradicional)"
|
||||||
|
|
||||||
|
@ -679,8 +679,7 @@ msgstr "Nombre:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:44
|
#: bookwyrm/templates/author/edit_author.html:44
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
#: bookwyrm/templates/book/edit/edit_book_form.html:146
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:107
|
|
||||||
msgid "Separate multiple values with commas."
|
msgid "Separate multiple values with commas."
|
||||||
msgstr "Separar varios valores con comas."
|
msgstr "Separar varios valores con comas."
|
||||||
|
|
||||||
|
@ -709,7 +708,7 @@ msgid "Openlibrary key:"
|
||||||
msgstr "Clave OpenLibrary:"
|
msgstr "Clave OpenLibrary:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:84
|
#: bookwyrm/templates/author/edit_author.html:84
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:278
|
#: bookwyrm/templates/book/edit/edit_book_form.html:322
|
||||||
msgid "Inventaire ID:"
|
msgid "Inventaire ID:"
|
||||||
msgstr "ID Inventaire:"
|
msgstr "ID Inventaire:"
|
||||||
|
|
||||||
|
@ -892,12 +891,12 @@ msgid "ISBN:"
|
||||||
msgstr "ISBN:"
|
msgstr "ISBN:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:15
|
#: bookwyrm/templates/book/book_identifiers.html:15
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:287
|
#: bookwyrm/templates/book/edit/edit_book_form.html:331
|
||||||
msgid "OCLC Number:"
|
msgid "OCLC Number:"
|
||||||
msgstr "Número OCLC:"
|
msgstr "Número OCLC:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:22
|
#: bookwyrm/templates/book/book_identifiers.html:22
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:296
|
#: bookwyrm/templates/book/edit/edit_book_form.html:340
|
||||||
msgid "ASIN:"
|
msgid "ASIN:"
|
||||||
msgstr "ASIN:"
|
msgstr "ASIN:"
|
||||||
|
|
||||||
|
@ -906,12 +905,12 @@ msgid "Add cover"
|
||||||
msgstr "Agregar portada"
|
msgstr "Agregar portada"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:17
|
#: bookwyrm/templates/book/cover_add_modal.html:17
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
#: bookwyrm/templates/book/edit/edit_book_form.html:230
|
||||||
msgid "Upload cover:"
|
msgid "Upload cover:"
|
||||||
msgstr "Subir portada:"
|
msgstr "Subir portada:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:23
|
#: bookwyrm/templates/book/cover_add_modal.html:23
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:192
|
#: bookwyrm/templates/book/edit/edit_book_form.html:236
|
||||||
msgid "Load cover from url:"
|
msgid "Load cover from url:"
|
||||||
msgstr "Agregar portada de url:"
|
msgstr "Agregar portada de url:"
|
||||||
|
|
||||||
|
@ -1006,89 +1005,101 @@ msgstr "Idiomas:"
|
||||||
msgid "Subjects:"
|
msgid "Subjects:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:98
|
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
||||||
|
msgid "Add subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:106
|
||||||
|
msgid "Remove subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:129
|
||||||
|
msgid "Add Another Subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:137
|
||||||
msgid "Publication"
|
msgid "Publication"
|
||||||
msgstr "Publicación"
|
msgstr "Publicación"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:103
|
#: bookwyrm/templates/book/edit/edit_book_form.html:142
|
||||||
msgid "Publisher:"
|
msgid "Publisher:"
|
||||||
msgstr "Editorial:"
|
msgstr "Editorial:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:115
|
#: bookwyrm/templates/book/edit/edit_book_form.html:154
|
||||||
msgid "First published date:"
|
msgid "First published date:"
|
||||||
msgstr "Fecha de primera publicación:"
|
msgstr "Fecha de primera publicación:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:124
|
#: bookwyrm/templates/book/edit/edit_book_form.html:163
|
||||||
msgid "Published date:"
|
msgid "Published date:"
|
||||||
msgstr "Fecha de publicación:"
|
msgstr "Fecha de publicación:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:135
|
#: bookwyrm/templates/book/edit/edit_book_form.html:174
|
||||||
msgid "Authors"
|
msgid "Authors"
|
||||||
msgstr "Autores"
|
msgstr "Autores"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:144
|
#: bookwyrm/templates/book/edit/edit_book_form.html:183
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Remove %(name)s"
|
msgid "Remove %(name)s"
|
||||||
msgstr "Quitar %(name)s"
|
msgstr "Quitar %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:147
|
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Author page for %(name)s"
|
msgid "Author page for %(name)s"
|
||||||
msgstr "Página de autor por %(name)s"
|
msgstr "Página de autor por %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:155
|
#: bookwyrm/templates/book/edit/edit_book_form.html:194
|
||||||
msgid "Add Authors:"
|
msgid "Add Authors:"
|
||||||
msgstr "Agregar Autores:"
|
msgstr "Agregar Autores:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:158
|
#: bookwyrm/templates/book/edit/edit_book_form.html:197
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:161
|
#: bookwyrm/templates/book/edit/edit_book_form.html:200
|
||||||
msgid "Add Author"
|
msgid "Add Author"
|
||||||
msgstr "Añadir Autor"
|
msgstr "Añadir Autor"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:159
|
#: bookwyrm/templates/book/edit/edit_book_form.html:198
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:162
|
#: bookwyrm/templates/book/edit/edit_book_form.html:201
|
||||||
msgid "Jane Doe"
|
msgid "Jane Doe"
|
||||||
msgstr "María López García"
|
msgstr "María López García"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:165
|
#: bookwyrm/templates/book/edit/edit_book_form.html:207
|
||||||
msgid "Add Another Author"
|
msgid "Add Another Author"
|
||||||
msgstr "Añadir Otro Autor"
|
msgstr "Añadir Otro Autor"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:173
|
#: bookwyrm/templates/book/edit/edit_book_form.html:217
|
||||||
#: bookwyrm/templates/shelf/shelf.html:146
|
#: bookwyrm/templates/shelf/shelf.html:146
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Portada"
|
msgstr "Portada"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:205
|
#: bookwyrm/templates/book/edit/edit_book_form.html:249
|
||||||
msgid "Physical Properties"
|
msgid "Physical Properties"
|
||||||
msgstr "Propiedades físicas"
|
msgstr "Propiedades físicas"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:212
|
#: bookwyrm/templates/book/edit/edit_book_form.html:256
|
||||||
#: bookwyrm/templates/book/editions/format_filter.html:6
|
#: bookwyrm/templates/book/editions/format_filter.html:6
|
||||||
msgid "Format:"
|
msgid "Format:"
|
||||||
msgstr "Formato:"
|
msgstr "Formato:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:224
|
#: bookwyrm/templates/book/edit/edit_book_form.html:268
|
||||||
msgid "Format details:"
|
msgid "Format details:"
|
||||||
msgstr "Detalles del formato:"
|
msgstr "Detalles del formato:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:235
|
#: bookwyrm/templates/book/edit/edit_book_form.html:279
|
||||||
msgid "Pages:"
|
msgid "Pages:"
|
||||||
msgstr "Páginas:"
|
msgstr "Páginas:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:246
|
#: bookwyrm/templates/book/edit/edit_book_form.html:290
|
||||||
msgid "Book Identifiers"
|
msgid "Book Identifiers"
|
||||||
msgstr "Identificadores de libro"
|
msgstr "Identificadores de libro"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:251
|
#: bookwyrm/templates/book/edit/edit_book_form.html:295
|
||||||
msgid "ISBN 13:"
|
msgid "ISBN 13:"
|
||||||
msgstr "ISBN 13:"
|
msgstr "ISBN 13:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:260
|
#: bookwyrm/templates/book/edit/edit_book_form.html:304
|
||||||
msgid "ISBN 10:"
|
msgid "ISBN 10:"
|
||||||
msgstr "ISBN 10:"
|
msgstr "ISBN 10:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:269
|
#: bookwyrm/templates/book/edit/edit_book_form.html:313
|
||||||
msgid "Openlibrary ID:"
|
msgid "Openlibrary ID:"
|
||||||
msgstr "ID OpenLibrary:"
|
msgstr "ID OpenLibrary:"
|
||||||
|
|
||||||
|
@ -1144,12 +1155,8 @@ msgstr "Editar enlaces"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "\n"
|
msgid "Links for \"<em>%(title)s</em>\""
|
||||||
" Links for \"<em>%(title)s</em>\"\n"
|
msgstr ""
|
||||||
" "
|
|
||||||
msgstr "\n"
|
|
||||||
" Enlaces de \"<em>%(title)s</em>\"\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
||||||
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
||||||
|
@ -3216,64 +3223,89 @@ msgstr ""
|
||||||
msgid "Color:"
|
msgid "Color:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:6
|
#: bookwyrm/templates/settings/automod/rules.html:7
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:10
|
#: bookwyrm/templates/settings/automod/rules.html:11
|
||||||
#: bookwyrm/templates/settings/layout.html:61
|
#: bookwyrm/templates/settings/layout.html:61
|
||||||
msgid "Auto-moderation rules"
|
msgid "Auto-moderation rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:17
|
#: bookwyrm/templates/settings/automod/rules.html:18
|
||||||
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:18
|
#: bookwyrm/templates/settings/automod/rules.html:19
|
||||||
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:19
|
#: bookwyrm/templates/settings/automod/rules.html:26
|
||||||
msgid "At this time, reports are <em>not</em> being generated automatically, and you must manually trigger a scan."
|
msgid "Schedule:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:23
|
#: bookwyrm/templates/settings/automod/rules.html:33
|
||||||
msgid "Run scan"
|
msgid "Last run:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:31
|
#: bookwyrm/templates/settings/automod/rules.html:40
|
||||||
msgid "Successfully added rule"
|
msgid "Total run count:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:37
|
#: bookwyrm/templates/settings/automod/rules.html:47
|
||||||
msgid "Add Rule"
|
msgid "Enabled:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:46
|
#: bookwyrm/templates/settings/automod/rules.html:59
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:90
|
msgid "Delete schedule"
|
||||||
msgid "String match"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:56
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:93
|
|
||||||
msgid "Flag users"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:63
|
#: bookwyrm/templates/settings/automod/rules.html:63
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:96
|
msgid "Run now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:64
|
||||||
|
msgid "Last run date will not be updated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:69
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:92
|
||||||
|
msgid "Schedule scan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:101
|
||||||
|
msgid "Successfully added rule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:107
|
||||||
|
msgid "Add Rule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:116
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:160
|
||||||
|
msgid "String match"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:126
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:163
|
||||||
|
msgid "Flag users"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:133
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:166
|
||||||
msgid "Flag statuses"
|
msgid "Flag statuses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:70
|
#: bookwyrm/templates/settings/automod/rules.html:140
|
||||||
msgid "Add rule"
|
msgid "Add rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:77
|
#: bookwyrm/templates/settings/automod/rules.html:147
|
||||||
msgid "Current Rules"
|
msgid "Current Rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:81
|
#: bookwyrm/templates/settings/automod/rules.html:151
|
||||||
msgid "Show rules"
|
msgid "Show rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:118
|
#: bookwyrm/templates/settings/automod/rules.html:188
|
||||||
msgid "Remove rule"
|
msgid "Remove rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3523,7 +3555,6 @@ msgid "Import Blocklist"
|
||||||
msgstr "Importar lista de bloqueo"
|
msgstr "Importar lista de bloqueo"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:7
|
|
||||||
msgid "Success!"
|
msgid "Success!"
|
||||||
msgstr "¡Listo!"
|
msgstr "¡Listo!"
|
||||||
|
|
||||||
|
@ -4565,6 +4596,11 @@ msgstr "Publicar en el feed"
|
||||||
msgid "Set goal"
|
msgid "Set goal"
|
||||||
msgstr "Establecer meta"
|
msgstr "Establecer meta"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/snippets/goal_progress.html:7
|
||||||
|
msgctxt "Goal successfully completed"
|
||||||
|
msgid "Success!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:9
|
#: bookwyrm/templates/snippets/goal_progress.html:9
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(percent)s%% complete!"
|
msgid "%(percent)s%% complete!"
|
||||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-03-14 19:30+0000\n"
|
"POT-Creation-Date: 2022-03-16 23:12+0000\n"
|
||||||
"PO-Revision-Date: 2022-03-16 14:14\n"
|
"PO-Revision-Date: 2022-03-16 23:34\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: French\n"
|
"Language-Team: French\n"
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
|
@ -17,28 +17,28 @@ msgstr ""
|
||||||
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
||||||
"X-Crowdin-File-ID: 1553\n"
|
"X-Crowdin-File-ID: 1553\n"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:40
|
#: bookwyrm/forms/admin.py:41
|
||||||
msgid "One Day"
|
msgid "One Day"
|
||||||
msgstr "Un jour"
|
msgstr "Un jour"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:41
|
#: bookwyrm/forms/admin.py:42
|
||||||
msgid "One Week"
|
msgid "One Week"
|
||||||
msgstr "Une semaine"
|
msgstr "Une semaine"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:42
|
#: bookwyrm/forms/admin.py:43
|
||||||
msgid "One Month"
|
msgid "One Month"
|
||||||
msgstr "Un mois"
|
msgstr "Un mois"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:43
|
#: bookwyrm/forms/admin.py:44
|
||||||
msgid "Does Not Expire"
|
msgid "Does Not Expire"
|
||||||
msgstr "Sans expiration"
|
msgstr "Sans expiration"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:47
|
#: bookwyrm/forms/admin.py:48
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{i} uses"
|
msgid "{i} uses"
|
||||||
msgstr "{i} utilisations"
|
msgstr "{i} utilisations"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:48
|
#: bookwyrm/forms/admin.py:49
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Sans limite"
|
msgstr "Sans limite"
|
||||||
|
|
||||||
|
@ -261,73 +261,73 @@ msgstr "Citations"
|
||||||
msgid "Everything else"
|
msgid "Everything else"
|
||||||
msgstr "Tout le reste"
|
msgstr "Tout le reste"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home Timeline"
|
msgid "Home Timeline"
|
||||||
msgstr "Mon fil d’actualité"
|
msgstr "Mon fil d’actualité"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "Accueil"
|
msgstr "Accueil"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209
|
#: bookwyrm/settings.py:210
|
||||||
msgid "Books Timeline"
|
msgid "Books Timeline"
|
||||||
msgstr "Actualité de mes livres"
|
msgstr "Actualité de mes livres"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209 bookwyrm/templates/search/layout.html:21
|
#: bookwyrm/settings.py:210 bookwyrm/templates/search/layout.html:21
|
||||||
#: bookwyrm/templates/search/layout.html:42
|
#: bookwyrm/templates/search/layout.html:42
|
||||||
#: bookwyrm/templates/user/layout.html:91
|
#: bookwyrm/templates/user/layout.html:91
|
||||||
msgid "Books"
|
msgid "Books"
|
||||||
msgstr "Livres"
|
msgstr "Livres"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:281
|
#: bookwyrm/settings.py:282
|
||||||
msgid "English"
|
msgid "English"
|
||||||
msgstr "English"
|
msgstr "English"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:282
|
#: bookwyrm/settings.py:283
|
||||||
msgid "Deutsch (German)"
|
msgid "Deutsch (German)"
|
||||||
msgstr "Deutsch"
|
msgstr "Deutsch"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:283
|
#: bookwyrm/settings.py:284
|
||||||
msgid "Español (Spanish)"
|
msgid "Español (Spanish)"
|
||||||
msgstr "Español"
|
msgstr "Español"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:284
|
#: bookwyrm/settings.py:285
|
||||||
msgid "Galego (Galician)"
|
msgid "Galego (Galician)"
|
||||||
msgstr "Galego (Galicien)"
|
msgstr "Galego (Galicien)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:285
|
#: bookwyrm/settings.py:286
|
||||||
msgid "Italiano (Italian)"
|
msgid "Italiano (Italian)"
|
||||||
msgstr "Italiano (italien)"
|
msgstr "Italiano (italien)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:286
|
#: bookwyrm/settings.py:287
|
||||||
msgid "Français (French)"
|
msgid "Français (French)"
|
||||||
msgstr "Français"
|
msgstr "Français"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:287
|
#: bookwyrm/settings.py:288
|
||||||
msgid "Lietuvių (Lithuanian)"
|
msgid "Lietuvių (Lithuanian)"
|
||||||
msgstr "Lietuvių (Lituanien)"
|
msgstr "Lietuvių (Lituanien)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:288
|
#: bookwyrm/settings.py:289
|
||||||
msgid "Norsk (Norwegian)"
|
msgid "Norsk (Norwegian)"
|
||||||
msgstr "Norsk (norvégien)"
|
msgstr "Norsk (norvégien)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:289
|
#: bookwyrm/settings.py:290
|
||||||
msgid "Português do Brasil (Brazilian Portuguese)"
|
msgid "Português do Brasil (Brazilian Portuguese)"
|
||||||
msgstr "Português do Brasil (Portugais brésilien)"
|
msgstr "Português do Brasil (Portugais brésilien)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:290
|
#: bookwyrm/settings.py:291
|
||||||
msgid "Português Europeu (European Portuguese)"
|
msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Portugais européen)"
|
msgstr "Português Europeu (Portugais européen)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:291
|
#: bookwyrm/settings.py:292
|
||||||
msgid "Svenska (Swedish)"
|
msgid "Svenska (Swedish)"
|
||||||
msgstr "Svenska (Suédois)"
|
msgstr "Svenska (Suédois)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:292
|
#: bookwyrm/settings.py:293
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简化字"
|
msgstr "简化字"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:293
|
#: bookwyrm/settings.py:294
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "Infos supplémentaires :"
|
msgstr "Infos supplémentaires :"
|
||||||
|
|
||||||
|
@ -679,8 +679,7 @@ msgstr "Nom :"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:44
|
#: bookwyrm/templates/author/edit_author.html:44
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
#: bookwyrm/templates/book/edit/edit_book_form.html:146
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:107
|
|
||||||
msgid "Separate multiple values with commas."
|
msgid "Separate multiple values with commas."
|
||||||
msgstr "Séparez plusieurs valeurs par une virgule."
|
msgstr "Séparez plusieurs valeurs par une virgule."
|
||||||
|
|
||||||
|
@ -709,7 +708,7 @@ msgid "Openlibrary key:"
|
||||||
msgstr "Clé Openlibrary :"
|
msgstr "Clé Openlibrary :"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:84
|
#: bookwyrm/templates/author/edit_author.html:84
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:278
|
#: bookwyrm/templates/book/edit/edit_book_form.html:322
|
||||||
msgid "Inventaire ID:"
|
msgid "Inventaire ID:"
|
||||||
msgstr "Identifiant Inventaire :"
|
msgstr "Identifiant Inventaire :"
|
||||||
|
|
||||||
|
@ -892,12 +891,12 @@ msgid "ISBN:"
|
||||||
msgstr "ISBN :"
|
msgstr "ISBN :"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:15
|
#: bookwyrm/templates/book/book_identifiers.html:15
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:287
|
#: bookwyrm/templates/book/edit/edit_book_form.html:331
|
||||||
msgid "OCLC Number:"
|
msgid "OCLC Number:"
|
||||||
msgstr "Numéro OCLC :"
|
msgstr "Numéro OCLC :"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:22
|
#: bookwyrm/templates/book/book_identifiers.html:22
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:296
|
#: bookwyrm/templates/book/edit/edit_book_form.html:340
|
||||||
msgid "ASIN:"
|
msgid "ASIN:"
|
||||||
msgstr "ASIN :"
|
msgstr "ASIN :"
|
||||||
|
|
||||||
|
@ -906,12 +905,12 @@ msgid "Add cover"
|
||||||
msgstr "Ajouter une couverture"
|
msgstr "Ajouter une couverture"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:17
|
#: bookwyrm/templates/book/cover_add_modal.html:17
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
#: bookwyrm/templates/book/edit/edit_book_form.html:230
|
||||||
msgid "Upload cover:"
|
msgid "Upload cover:"
|
||||||
msgstr "Charger une couverture :"
|
msgstr "Charger une couverture :"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:23
|
#: bookwyrm/templates/book/cover_add_modal.html:23
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:192
|
#: bookwyrm/templates/book/edit/edit_book_form.html:236
|
||||||
msgid "Load cover from url:"
|
msgid "Load cover from url:"
|
||||||
msgstr "Charger la couverture depuis une URL :"
|
msgstr "Charger la couverture depuis une URL :"
|
||||||
|
|
||||||
|
@ -1006,89 +1005,101 @@ msgstr "Langues :"
|
||||||
msgid "Subjects:"
|
msgid "Subjects:"
|
||||||
msgstr "Sujets :"
|
msgstr "Sujets :"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:98
|
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
||||||
|
msgid "Add subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:106
|
||||||
|
msgid "Remove subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:129
|
||||||
|
msgid "Add Another Subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:137
|
||||||
msgid "Publication"
|
msgid "Publication"
|
||||||
msgstr "Publication"
|
msgstr "Publication"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:103
|
#: bookwyrm/templates/book/edit/edit_book_form.html:142
|
||||||
msgid "Publisher:"
|
msgid "Publisher:"
|
||||||
msgstr "Éditeur :"
|
msgstr "Éditeur :"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:115
|
#: bookwyrm/templates/book/edit/edit_book_form.html:154
|
||||||
msgid "First published date:"
|
msgid "First published date:"
|
||||||
msgstr "Première date de parution :"
|
msgstr "Première date de parution :"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:124
|
#: bookwyrm/templates/book/edit/edit_book_form.html:163
|
||||||
msgid "Published date:"
|
msgid "Published date:"
|
||||||
msgstr "Date de parution :"
|
msgstr "Date de parution :"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:135
|
#: bookwyrm/templates/book/edit/edit_book_form.html:174
|
||||||
msgid "Authors"
|
msgid "Authors"
|
||||||
msgstr "Auteurs ou autrices"
|
msgstr "Auteurs ou autrices"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:144
|
#: bookwyrm/templates/book/edit/edit_book_form.html:183
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Remove %(name)s"
|
msgid "Remove %(name)s"
|
||||||
msgstr "Retirer %(name)s"
|
msgstr "Retirer %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:147
|
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Author page for %(name)s"
|
msgid "Author page for %(name)s"
|
||||||
msgstr "Page de %(name)s"
|
msgstr "Page de %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:155
|
#: bookwyrm/templates/book/edit/edit_book_form.html:194
|
||||||
msgid "Add Authors:"
|
msgid "Add Authors:"
|
||||||
msgstr "Ajouter des auteurs ou autrices :"
|
msgstr "Ajouter des auteurs ou autrices :"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:158
|
#: bookwyrm/templates/book/edit/edit_book_form.html:197
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:161
|
#: bookwyrm/templates/book/edit/edit_book_form.html:200
|
||||||
msgid "Add Author"
|
msgid "Add Author"
|
||||||
msgstr "Ajouter un auteur ou une autrice"
|
msgstr "Ajouter un auteur ou une autrice"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:159
|
#: bookwyrm/templates/book/edit/edit_book_form.html:198
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:162
|
#: bookwyrm/templates/book/edit/edit_book_form.html:201
|
||||||
msgid "Jane Doe"
|
msgid "Jane Doe"
|
||||||
msgstr "Camille Dupont"
|
msgstr "Camille Dupont"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:165
|
#: bookwyrm/templates/book/edit/edit_book_form.html:207
|
||||||
msgid "Add Another Author"
|
msgid "Add Another Author"
|
||||||
msgstr "Ajouter un autre auteur ou autrice"
|
msgstr "Ajouter un autre auteur ou autrice"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:173
|
#: bookwyrm/templates/book/edit/edit_book_form.html:217
|
||||||
#: bookwyrm/templates/shelf/shelf.html:146
|
#: bookwyrm/templates/shelf/shelf.html:146
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Couverture"
|
msgstr "Couverture"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:205
|
#: bookwyrm/templates/book/edit/edit_book_form.html:249
|
||||||
msgid "Physical Properties"
|
msgid "Physical Properties"
|
||||||
msgstr "Propriétés physiques"
|
msgstr "Propriétés physiques"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:212
|
#: bookwyrm/templates/book/edit/edit_book_form.html:256
|
||||||
#: bookwyrm/templates/book/editions/format_filter.html:6
|
#: bookwyrm/templates/book/editions/format_filter.html:6
|
||||||
msgid "Format:"
|
msgid "Format:"
|
||||||
msgstr "Format :"
|
msgstr "Format :"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:224
|
#: bookwyrm/templates/book/edit/edit_book_form.html:268
|
||||||
msgid "Format details:"
|
msgid "Format details:"
|
||||||
msgstr "Détails du format :"
|
msgstr "Détails du format :"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:235
|
#: bookwyrm/templates/book/edit/edit_book_form.html:279
|
||||||
msgid "Pages:"
|
msgid "Pages:"
|
||||||
msgstr "Pages :"
|
msgstr "Pages :"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:246
|
#: bookwyrm/templates/book/edit/edit_book_form.html:290
|
||||||
msgid "Book Identifiers"
|
msgid "Book Identifiers"
|
||||||
msgstr "Identifiants du livre"
|
msgstr "Identifiants du livre"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:251
|
#: bookwyrm/templates/book/edit/edit_book_form.html:295
|
||||||
msgid "ISBN 13:"
|
msgid "ISBN 13:"
|
||||||
msgstr "ISBN 13 :"
|
msgstr "ISBN 13 :"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:260
|
#: bookwyrm/templates/book/edit/edit_book_form.html:304
|
||||||
msgid "ISBN 10:"
|
msgid "ISBN 10:"
|
||||||
msgstr "ISBN 10 :"
|
msgstr "ISBN 10 :"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:269
|
#: bookwyrm/templates/book/edit/edit_book_form.html:313
|
||||||
msgid "Openlibrary ID:"
|
msgid "Openlibrary ID:"
|
||||||
msgstr "Identifiant Openlibrary :"
|
msgstr "Identifiant Openlibrary :"
|
||||||
|
|
||||||
|
@ -1144,12 +1155,8 @@ msgstr "Modifier les liens"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "\n"
|
msgid "Links for \"<em>%(title)s</em>\""
|
||||||
" Links for \"<em>%(title)s</em>\"\n"
|
msgstr ""
|
||||||
" "
|
|
||||||
msgstr "\n"
|
|
||||||
" Liens pour \"<em>%(title)s</em>\"\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
||||||
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
||||||
|
@ -3218,64 +3225,89 @@ msgstr "Paramètres d’affichage"
|
||||||
msgid "Color:"
|
msgid "Color:"
|
||||||
msgstr "Couleur :"
|
msgstr "Couleur :"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:6
|
#: bookwyrm/templates/settings/automod/rules.html:7
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:10
|
#: bookwyrm/templates/settings/automod/rules.html:11
|
||||||
#: bookwyrm/templates/settings/layout.html:61
|
#: bookwyrm/templates/settings/layout.html:61
|
||||||
msgid "Auto-moderation rules"
|
msgid "Auto-moderation rules"
|
||||||
msgstr "Règles de modération auto"
|
msgstr "Règles de modération auto"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:17
|
#: bookwyrm/templates/settings/automod/rules.html:18
|
||||||
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
||||||
msgstr "Les règles de modération automatique créeront des rapports pour tout compte ou statut local avec des champs correspondant à la chaîne fournie."
|
msgstr "Les règles de modération automatique créeront des rapports pour tout compte ou statut local avec des champs correspondant à la chaîne fournie."
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:18
|
#: bookwyrm/templates/settings/automod/rules.html:19
|
||||||
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
||||||
msgstr "Les comptes ou statuts qui ont déjà été signalés (que le rapport ait été résolu ou non) ne seront pas marqués."
|
msgstr "Les comptes ou statuts qui ont déjà été signalés (que le rapport ait été résolu ou non) ne seront pas marqués."
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:19
|
#: bookwyrm/templates/settings/automod/rules.html:26
|
||||||
msgid "At this time, reports are <em>not</em> being generated automatically, and you must manually trigger a scan."
|
msgid "Schedule:"
|
||||||
msgstr "À ce stade, les rapports ne sont <em>pas</em> générés automatiquement, et vous devez déclencher manuellement une analyse."
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:23
|
#: bookwyrm/templates/settings/automod/rules.html:33
|
||||||
msgid "Run scan"
|
msgid "Last run:"
|
||||||
msgstr "Exécuter l'analyse"
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:31
|
#: bookwyrm/templates/settings/automod/rules.html:40
|
||||||
|
msgid "Total run count:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:47
|
||||||
|
msgid "Enabled:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:59
|
||||||
|
msgid "Delete schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:63
|
||||||
|
msgid "Run now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:64
|
||||||
|
msgid "Last run date will not be updated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:69
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:92
|
||||||
|
msgid "Schedule scan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:101
|
||||||
msgid "Successfully added rule"
|
msgid "Successfully added rule"
|
||||||
msgstr "Règle ajoutée avec succès"
|
msgstr "Règle ajoutée avec succès"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:37
|
#: bookwyrm/templates/settings/automod/rules.html:107
|
||||||
msgid "Add Rule"
|
msgid "Add Rule"
|
||||||
msgstr "Ajouter une règle"
|
msgstr "Ajouter une règle"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:46
|
#: bookwyrm/templates/settings/automod/rules.html:116
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:90
|
#: bookwyrm/templates/settings/automod/rules.html:160
|
||||||
msgid "String match"
|
msgid "String match"
|
||||||
msgstr "Correspondance de chaîne"
|
msgstr "Correspondance de chaîne"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:56
|
#: bookwyrm/templates/settings/automod/rules.html:126
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:93
|
#: bookwyrm/templates/settings/automod/rules.html:163
|
||||||
msgid "Flag users"
|
msgid "Flag users"
|
||||||
msgstr "Signaler des comptes"
|
msgstr "Signaler des comptes"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:63
|
#: bookwyrm/templates/settings/automod/rules.html:133
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:96
|
#: bookwyrm/templates/settings/automod/rules.html:166
|
||||||
msgid "Flag statuses"
|
msgid "Flag statuses"
|
||||||
msgstr "Signaler les statuts"
|
msgstr "Signaler les statuts"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:70
|
#: bookwyrm/templates/settings/automod/rules.html:140
|
||||||
msgid "Add rule"
|
msgid "Add rule"
|
||||||
msgstr "Ajouter une règle"
|
msgstr "Ajouter une règle"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:77
|
#: bookwyrm/templates/settings/automod/rules.html:147
|
||||||
msgid "Current Rules"
|
msgid "Current Rules"
|
||||||
msgstr "Règles actuelles"
|
msgstr "Règles actuelles"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:81
|
#: bookwyrm/templates/settings/automod/rules.html:151
|
||||||
msgid "Show rules"
|
msgid "Show rules"
|
||||||
msgstr "Afficher les règles"
|
msgstr "Afficher les règles"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:118
|
#: bookwyrm/templates/settings/automod/rules.html:188
|
||||||
msgid "Remove rule"
|
msgid "Remove rule"
|
||||||
msgstr "Supprimer la règle"
|
msgstr "Supprimer la règle"
|
||||||
|
|
||||||
|
@ -3525,7 +3557,6 @@ msgid "Import Blocklist"
|
||||||
msgstr "Importer une liste de blocage"
|
msgstr "Importer une liste de blocage"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:7
|
|
||||||
msgid "Success!"
|
msgid "Success!"
|
||||||
msgstr "Bravo !"
|
msgstr "Bravo !"
|
||||||
|
|
||||||
|
@ -4567,6 +4598,11 @@ msgstr "Publier sur le fil d’actualité"
|
||||||
msgid "Set goal"
|
msgid "Set goal"
|
||||||
msgstr "Valider ce défi"
|
msgstr "Valider ce défi"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/snippets/goal_progress.html:7
|
||||||
|
msgctxt "Goal successfully completed"
|
||||||
|
msgid "Success!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:9
|
#: bookwyrm/templates/snippets/goal_progress.html:9
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(percent)s%% complete!"
|
msgid "%(percent)s%% complete!"
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-03-14 19:30+0000\n"
|
"POT-Creation-Date: 2022-03-16 23:12+0000\n"
|
||||||
"PO-Revision-Date: 2022-03-16 14:14\n"
|
"PO-Revision-Date: 2022-03-17 04:57\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Galician\n"
|
"Language-Team: Galician\n"
|
||||||
"Language: gl\n"
|
"Language: gl\n"
|
||||||
|
@ -17,28 +17,28 @@ msgstr ""
|
||||||
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
||||||
"X-Crowdin-File-ID: 1553\n"
|
"X-Crowdin-File-ID: 1553\n"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:40
|
#: bookwyrm/forms/admin.py:41
|
||||||
msgid "One Day"
|
msgid "One Day"
|
||||||
msgstr "Un día"
|
msgstr "Un día"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:41
|
#: bookwyrm/forms/admin.py:42
|
||||||
msgid "One Week"
|
msgid "One Week"
|
||||||
msgstr "Unha semana"
|
msgstr "Unha semana"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:42
|
#: bookwyrm/forms/admin.py:43
|
||||||
msgid "One Month"
|
msgid "One Month"
|
||||||
msgstr "Un mes"
|
msgstr "Un mes"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:43
|
#: bookwyrm/forms/admin.py:44
|
||||||
msgid "Does Not Expire"
|
msgid "Does Not Expire"
|
||||||
msgstr "Non caduca"
|
msgstr "Non caduca"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:47
|
#: bookwyrm/forms/admin.py:48
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{i} uses"
|
msgid "{i} uses"
|
||||||
msgstr "{i} usos"
|
msgstr "{i} usos"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:48
|
#: bookwyrm/forms/admin.py:49
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Sen límite"
|
msgstr "Sen límite"
|
||||||
|
|
||||||
|
@ -261,73 +261,73 @@ msgstr "Citas"
|
||||||
msgid "Everything else"
|
msgid "Everything else"
|
||||||
msgstr "As outras cousas"
|
msgstr "As outras cousas"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home Timeline"
|
msgid "Home Timeline"
|
||||||
msgstr "Cronoloxía de Inicio"
|
msgstr "Cronoloxía de Inicio"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "Inicio"
|
msgstr "Inicio"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209
|
#: bookwyrm/settings.py:210
|
||||||
msgid "Books Timeline"
|
msgid "Books Timeline"
|
||||||
msgstr "Cronoloxía de libros"
|
msgstr "Cronoloxía de libros"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209 bookwyrm/templates/search/layout.html:21
|
#: bookwyrm/settings.py:210 bookwyrm/templates/search/layout.html:21
|
||||||
#: bookwyrm/templates/search/layout.html:42
|
#: bookwyrm/templates/search/layout.html:42
|
||||||
#: bookwyrm/templates/user/layout.html:91
|
#: bookwyrm/templates/user/layout.html:91
|
||||||
msgid "Books"
|
msgid "Books"
|
||||||
msgstr "Libros"
|
msgstr "Libros"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:281
|
#: bookwyrm/settings.py:282
|
||||||
msgid "English"
|
msgid "English"
|
||||||
msgstr "English (Inglés)"
|
msgstr "English (Inglés)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:282
|
#: bookwyrm/settings.py:283
|
||||||
msgid "Deutsch (German)"
|
msgid "Deutsch (German)"
|
||||||
msgstr "Alemán (Alemaña)"
|
msgstr "Alemán (Alemaña)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:283
|
#: bookwyrm/settings.py:284
|
||||||
msgid "Español (Spanish)"
|
msgid "Español (Spanish)"
|
||||||
msgstr "Español (España)"
|
msgstr "Español (España)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:284
|
#: bookwyrm/settings.py:285
|
||||||
msgid "Galego (Galician)"
|
msgid "Galego (Galician)"
|
||||||
msgstr "Galego (Galician)"
|
msgstr "Galego (Galician)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:285
|
#: bookwyrm/settings.py:286
|
||||||
msgid "Italiano (Italian)"
|
msgid "Italiano (Italian)"
|
||||||
msgstr "Italiano (Italian)"
|
msgstr "Italiano (Italian)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:286
|
#: bookwyrm/settings.py:287
|
||||||
msgid "Français (French)"
|
msgid "Français (French)"
|
||||||
msgstr "Francés (Francia)"
|
msgstr "Francés (Francia)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:287
|
#: bookwyrm/settings.py:288
|
||||||
msgid "Lietuvių (Lithuanian)"
|
msgid "Lietuvių (Lithuanian)"
|
||||||
msgstr "Lietuvių (Lithuanian)"
|
msgstr "Lietuvių (Lithuanian)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:288
|
#: bookwyrm/settings.py:289
|
||||||
msgid "Norsk (Norwegian)"
|
msgid "Norsk (Norwegian)"
|
||||||
msgstr "Noruegués (Norwegian)"
|
msgstr "Noruegués (Norwegian)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:289
|
#: bookwyrm/settings.py:290
|
||||||
msgid "Português do Brasil (Brazilian Portuguese)"
|
msgid "Português do Brasil (Brazilian Portuguese)"
|
||||||
msgstr "Português do Brasil (Portugués brasileiro)"
|
msgstr "Português do Brasil (Portugués brasileiro)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:290
|
#: bookwyrm/settings.py:291
|
||||||
msgid "Português Europeu (European Portuguese)"
|
msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Portugués europeo)"
|
msgstr "Português Europeu (Portugués europeo)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:291
|
#: bookwyrm/settings.py:292
|
||||||
msgid "Svenska (Swedish)"
|
msgid "Svenska (Swedish)"
|
||||||
msgstr "Sueco (Swedish)"
|
msgstr "Sueco (Swedish)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:292
|
#: bookwyrm/settings.py:293
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Chinés simplificado)"
|
msgstr "简体中文 (Chinés simplificado)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:293
|
#: bookwyrm/settings.py:294
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Chinés tradicional)"
|
msgstr "繁體中文 (Chinés tradicional)"
|
||||||
|
|
||||||
|
@ -679,8 +679,7 @@ msgstr "Nome:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:44
|
#: bookwyrm/templates/author/edit_author.html:44
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
#: bookwyrm/templates/book/edit/edit_book_form.html:146
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:107
|
|
||||||
msgid "Separate multiple values with commas."
|
msgid "Separate multiple values with commas."
|
||||||
msgstr "Separa múltiples valores con vírgulas."
|
msgstr "Separa múltiples valores con vírgulas."
|
||||||
|
|
||||||
|
@ -709,7 +708,7 @@ msgid "Openlibrary key:"
|
||||||
msgstr "Chave en Openlibrary:"
|
msgstr "Chave en Openlibrary:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:84
|
#: bookwyrm/templates/author/edit_author.html:84
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:278
|
#: bookwyrm/templates/book/edit/edit_book_form.html:322
|
||||||
msgid "Inventaire ID:"
|
msgid "Inventaire ID:"
|
||||||
msgstr "ID en Inventaire:"
|
msgstr "ID en Inventaire:"
|
||||||
|
|
||||||
|
@ -892,12 +891,12 @@ msgid "ISBN:"
|
||||||
msgstr "ISBN:"
|
msgstr "ISBN:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:15
|
#: bookwyrm/templates/book/book_identifiers.html:15
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:287
|
#: bookwyrm/templates/book/edit/edit_book_form.html:331
|
||||||
msgid "OCLC Number:"
|
msgid "OCLC Number:"
|
||||||
msgstr "Número OCLC:"
|
msgstr "Número OCLC:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:22
|
#: bookwyrm/templates/book/book_identifiers.html:22
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:296
|
#: bookwyrm/templates/book/edit/edit_book_form.html:340
|
||||||
msgid "ASIN:"
|
msgid "ASIN:"
|
||||||
msgstr "ASIN:"
|
msgstr "ASIN:"
|
||||||
|
|
||||||
|
@ -906,12 +905,12 @@ msgid "Add cover"
|
||||||
msgstr "Engadir portada"
|
msgstr "Engadir portada"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:17
|
#: bookwyrm/templates/book/cover_add_modal.html:17
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
#: bookwyrm/templates/book/edit/edit_book_form.html:230
|
||||||
msgid "Upload cover:"
|
msgid "Upload cover:"
|
||||||
msgstr "Subir portada:"
|
msgstr "Subir portada:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:23
|
#: bookwyrm/templates/book/cover_add_modal.html:23
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:192
|
#: bookwyrm/templates/book/edit/edit_book_form.html:236
|
||||||
msgid "Load cover from url:"
|
msgid "Load cover from url:"
|
||||||
msgstr "Cargar portada desde url:"
|
msgstr "Cargar portada desde url:"
|
||||||
|
|
||||||
|
@ -1006,89 +1005,101 @@ msgstr "Idiomas:"
|
||||||
msgid "Subjects:"
|
msgid "Subjects:"
|
||||||
msgstr "Temas:"
|
msgstr "Temas:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:98
|
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
||||||
|
msgid "Add subject"
|
||||||
|
msgstr "Engadir tema"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:106
|
||||||
|
msgid "Remove subject"
|
||||||
|
msgstr "Eliminar tema"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:129
|
||||||
|
msgid "Add Another Subject"
|
||||||
|
msgstr "Engadir outro tema"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:137
|
||||||
msgid "Publication"
|
msgid "Publication"
|
||||||
msgstr "Publicación"
|
msgstr "Publicación"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:103
|
#: bookwyrm/templates/book/edit/edit_book_form.html:142
|
||||||
msgid "Publisher:"
|
msgid "Publisher:"
|
||||||
msgstr "Editorial:"
|
msgstr "Editorial:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:115
|
#: bookwyrm/templates/book/edit/edit_book_form.html:154
|
||||||
msgid "First published date:"
|
msgid "First published date:"
|
||||||
msgstr "Data da primeira edición:"
|
msgstr "Data da primeira edición:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:124
|
#: bookwyrm/templates/book/edit/edit_book_form.html:163
|
||||||
msgid "Published date:"
|
msgid "Published date:"
|
||||||
msgstr "Data de publicación:"
|
msgstr "Data de publicación:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:135
|
#: bookwyrm/templates/book/edit/edit_book_form.html:174
|
||||||
msgid "Authors"
|
msgid "Authors"
|
||||||
msgstr "Autoras"
|
msgstr "Autoras"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:144
|
#: bookwyrm/templates/book/edit/edit_book_form.html:183
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Remove %(name)s"
|
msgid "Remove %(name)s"
|
||||||
msgstr "Eliminar %(name)s"
|
msgstr "Eliminar %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:147
|
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Author page for %(name)s"
|
msgid "Author page for %(name)s"
|
||||||
msgstr "Páxina de autora para %(name)s"
|
msgstr "Páxina de autora para %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:155
|
#: bookwyrm/templates/book/edit/edit_book_form.html:194
|
||||||
msgid "Add Authors:"
|
msgid "Add Authors:"
|
||||||
msgstr "Engadir autoras:"
|
msgstr "Engadir autoras:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:158
|
#: bookwyrm/templates/book/edit/edit_book_form.html:197
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:161
|
#: bookwyrm/templates/book/edit/edit_book_form.html:200
|
||||||
msgid "Add Author"
|
msgid "Add Author"
|
||||||
msgstr "Engadir Autora"
|
msgstr "Engadir Autora"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:159
|
#: bookwyrm/templates/book/edit/edit_book_form.html:198
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:162
|
#: bookwyrm/templates/book/edit/edit_book_form.html:201
|
||||||
msgid "Jane Doe"
|
msgid "Jane Doe"
|
||||||
msgstr "Xoana Pedre"
|
msgstr "Xoana Pedre"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:165
|
#: bookwyrm/templates/book/edit/edit_book_form.html:207
|
||||||
msgid "Add Another Author"
|
msgid "Add Another Author"
|
||||||
msgstr "Engade outra Autora"
|
msgstr "Engade outra Autora"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:173
|
#: bookwyrm/templates/book/edit/edit_book_form.html:217
|
||||||
#: bookwyrm/templates/shelf/shelf.html:146
|
#: bookwyrm/templates/shelf/shelf.html:146
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Portada"
|
msgstr "Portada"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:205
|
#: bookwyrm/templates/book/edit/edit_book_form.html:249
|
||||||
msgid "Physical Properties"
|
msgid "Physical Properties"
|
||||||
msgstr "Propiedades físicas"
|
msgstr "Propiedades físicas"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:212
|
#: bookwyrm/templates/book/edit/edit_book_form.html:256
|
||||||
#: bookwyrm/templates/book/editions/format_filter.html:6
|
#: bookwyrm/templates/book/editions/format_filter.html:6
|
||||||
msgid "Format:"
|
msgid "Format:"
|
||||||
msgstr "Formato:"
|
msgstr "Formato:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:224
|
#: bookwyrm/templates/book/edit/edit_book_form.html:268
|
||||||
msgid "Format details:"
|
msgid "Format details:"
|
||||||
msgstr "Detalles do formato:"
|
msgstr "Detalles do formato:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:235
|
#: bookwyrm/templates/book/edit/edit_book_form.html:279
|
||||||
msgid "Pages:"
|
msgid "Pages:"
|
||||||
msgstr "Páxinas:"
|
msgstr "Páxinas:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:246
|
#: bookwyrm/templates/book/edit/edit_book_form.html:290
|
||||||
msgid "Book Identifiers"
|
msgid "Book Identifiers"
|
||||||
msgstr "Identificadores do libro"
|
msgstr "Identificadores do libro"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:251
|
#: bookwyrm/templates/book/edit/edit_book_form.html:295
|
||||||
msgid "ISBN 13:"
|
msgid "ISBN 13:"
|
||||||
msgstr "ISBN 13:"
|
msgstr "ISBN 13:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:260
|
#: bookwyrm/templates/book/edit/edit_book_form.html:304
|
||||||
msgid "ISBN 10:"
|
msgid "ISBN 10:"
|
||||||
msgstr "ISBN 10:"
|
msgstr "ISBN 10:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:269
|
#: bookwyrm/templates/book/edit/edit_book_form.html:313
|
||||||
msgid "Openlibrary ID:"
|
msgid "Openlibrary ID:"
|
||||||
msgstr "ID en Openlibrary:"
|
msgstr "ID en Openlibrary:"
|
||||||
|
|
||||||
|
@ -1144,12 +1155,8 @@ msgstr "Editar ligazóns"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "\n"
|
msgid "Links for \"<em>%(title)s</em>\""
|
||||||
" Links for \"<em>%(title)s</em>\"\n"
|
msgstr "Ligazóns para \"<em>%(title)s</em>\""
|
||||||
" "
|
|
||||||
msgstr "\n"
|
|
||||||
"Ligazóns para \"<em>%(title)s</em>\"\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
||||||
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
||||||
|
@ -3218,64 +3225,89 @@ msgstr "Axustes da pantalla"
|
||||||
msgid "Color:"
|
msgid "Color:"
|
||||||
msgstr "Cor:"
|
msgstr "Cor:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:6
|
#: bookwyrm/templates/settings/automod/rules.html:7
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:10
|
#: bookwyrm/templates/settings/automod/rules.html:11
|
||||||
#: bookwyrm/templates/settings/layout.html:61
|
#: bookwyrm/templates/settings/layout.html:61
|
||||||
msgid "Auto-moderation rules"
|
msgid "Auto-moderation rules"
|
||||||
msgstr "Regras de auto-moderación"
|
msgstr "Regras de auto-moderación"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:17
|
#: bookwyrm/templates/settings/automod/rules.html:18
|
||||||
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
||||||
msgstr "As regras de auto-moderación crearán denuncias para calquera usuaria ou estado locais campos que concorden co texto proporcionado."
|
msgstr "As regras de auto-moderación crearán denuncias para calquera usuaria ou estado locais campos que concorden co texto proporcionado."
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:18
|
#: bookwyrm/templates/settings/automod/rules.html:19
|
||||||
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
||||||
msgstr "Usuarias e estados que xa foron denunciados (independentemente de se xa foi resolta a denuncia) non serán marcados."
|
msgstr "Usuarias e estados que xa foron denunciados (independentemente de se xa foi resolta a denuncia) non serán marcados."
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:19
|
#: bookwyrm/templates/settings/automod/rules.html:26
|
||||||
msgid "At this time, reports are <em>not</em> being generated automatically, and you must manually trigger a scan."
|
msgid "Schedule:"
|
||||||
msgstr "Neste momento, as denuncias <em>non</em> se están a crear automáticamente, tes que executar manualmente o escaneado."
|
msgstr "Programar:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:23
|
#: bookwyrm/templates/settings/automod/rules.html:33
|
||||||
msgid "Run scan"
|
msgid "Last run:"
|
||||||
msgstr "Escanear"
|
msgstr "Última execución:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:31
|
#: bookwyrm/templates/settings/automod/rules.html:40
|
||||||
|
msgid "Total run count:"
|
||||||
|
msgstr "Veces executado:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:47
|
||||||
|
msgid "Enabled:"
|
||||||
|
msgstr "Activado:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:59
|
||||||
|
msgid "Delete schedule"
|
||||||
|
msgstr "Eliminar programación"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:63
|
||||||
|
msgid "Run now"
|
||||||
|
msgstr "Executar agora"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:64
|
||||||
|
msgid "Last run date will not be updated"
|
||||||
|
msgstr "Non se actualizará a data da última execución"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:69
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:92
|
||||||
|
msgid "Schedule scan"
|
||||||
|
msgstr "Programar escaneo"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:101
|
||||||
msgid "Successfully added rule"
|
msgid "Successfully added rule"
|
||||||
msgstr "Regra engadida correctamente"
|
msgstr "Regra engadida correctamente"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:37
|
#: bookwyrm/templates/settings/automod/rules.html:107
|
||||||
msgid "Add Rule"
|
msgid "Add Rule"
|
||||||
msgstr "Engadir regra"
|
msgstr "Engadir regra"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:46
|
#: bookwyrm/templates/settings/automod/rules.html:116
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:90
|
#: bookwyrm/templates/settings/automod/rules.html:160
|
||||||
msgid "String match"
|
msgid "String match"
|
||||||
msgstr "Texto coincidente"
|
msgstr "Texto coincidente"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:56
|
#: bookwyrm/templates/settings/automod/rules.html:126
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:93
|
#: bookwyrm/templates/settings/automod/rules.html:163
|
||||||
msgid "Flag users"
|
msgid "Flag users"
|
||||||
msgstr "Marcar usuarias"
|
msgstr "Marcar usuarias"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:63
|
#: bookwyrm/templates/settings/automod/rules.html:133
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:96
|
#: bookwyrm/templates/settings/automod/rules.html:166
|
||||||
msgid "Flag statuses"
|
msgid "Flag statuses"
|
||||||
msgstr "Marcar estados"
|
msgstr "Marcar estados"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:70
|
#: bookwyrm/templates/settings/automod/rules.html:140
|
||||||
msgid "Add rule"
|
msgid "Add rule"
|
||||||
msgstr "Engadir regra"
|
msgstr "Engadir regra"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:77
|
#: bookwyrm/templates/settings/automod/rules.html:147
|
||||||
msgid "Current Rules"
|
msgid "Current Rules"
|
||||||
msgstr "Regras actuais"
|
msgstr "Regras actuais"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:81
|
#: bookwyrm/templates/settings/automod/rules.html:151
|
||||||
msgid "Show rules"
|
msgid "Show rules"
|
||||||
msgstr "Mostrar regras"
|
msgstr "Mostrar regras"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:118
|
#: bookwyrm/templates/settings/automod/rules.html:188
|
||||||
msgid "Remove rule"
|
msgid "Remove rule"
|
||||||
msgstr "Eliminar regra"
|
msgstr "Eliminar regra"
|
||||||
|
|
||||||
|
@ -3525,7 +3557,6 @@ msgid "Import Blocklist"
|
||||||
msgstr "Importar Lista de Bloqueo"
|
msgstr "Importar Lista de Bloqueo"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:7
|
|
||||||
msgid "Success!"
|
msgid "Success!"
|
||||||
msgstr "Feito!"
|
msgstr "Feito!"
|
||||||
|
|
||||||
|
@ -4567,6 +4598,11 @@ msgstr "Publicar na cronoloxía"
|
||||||
msgid "Set goal"
|
msgid "Set goal"
|
||||||
msgstr "Establecer obxectivo"
|
msgstr "Establecer obxectivo"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/snippets/goal_progress.html:7
|
||||||
|
msgctxt "Goal successfully completed"
|
||||||
|
msgid "Success!"
|
||||||
|
msgstr "Feito!"
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:9
|
#: bookwyrm/templates/snippets/goal_progress.html:9
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(percent)s%% complete!"
|
msgid "%(percent)s%% complete!"
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-03-14 19:30+0000\n"
|
"POT-Creation-Date: 2022-03-16 23:12+0000\n"
|
||||||
"PO-Revision-Date: 2022-03-16 19:30\n"
|
"PO-Revision-Date: 2022-03-17 00:48\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Italian\n"
|
"Language-Team: Italian\n"
|
||||||
"Language: it\n"
|
"Language: it\n"
|
||||||
|
@ -17,28 +17,28 @@ msgstr ""
|
||||||
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
||||||
"X-Crowdin-File-ID: 1553\n"
|
"X-Crowdin-File-ID: 1553\n"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:40
|
#: bookwyrm/forms/admin.py:41
|
||||||
msgid "One Day"
|
msgid "One Day"
|
||||||
msgstr "Un giorno"
|
msgstr "Un giorno"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:41
|
#: bookwyrm/forms/admin.py:42
|
||||||
msgid "One Week"
|
msgid "One Week"
|
||||||
msgstr "Una settimana"
|
msgstr "Una settimana"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:42
|
#: bookwyrm/forms/admin.py:43
|
||||||
msgid "One Month"
|
msgid "One Month"
|
||||||
msgstr "Un mese"
|
msgstr "Un mese"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:43
|
#: bookwyrm/forms/admin.py:44
|
||||||
msgid "Does Not Expire"
|
msgid "Does Not Expire"
|
||||||
msgstr "Non scade"
|
msgstr "Non scade"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:47
|
#: bookwyrm/forms/admin.py:48
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{i} uses"
|
msgid "{i} uses"
|
||||||
msgstr "{i} usi"
|
msgstr "{i} usi"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:48
|
#: bookwyrm/forms/admin.py:49
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Illimitato"
|
msgstr "Illimitato"
|
||||||
|
|
||||||
|
@ -261,73 +261,73 @@ msgstr "Citazioni"
|
||||||
msgid "Everything else"
|
msgid "Everything else"
|
||||||
msgstr "Tutto il resto"
|
msgstr "Tutto il resto"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home Timeline"
|
msgid "Home Timeline"
|
||||||
msgstr "La tua timeline"
|
msgstr "La tua timeline"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "Home"
|
msgstr "Home"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209
|
#: bookwyrm/settings.py:210
|
||||||
msgid "Books Timeline"
|
msgid "Books Timeline"
|
||||||
msgstr "Timeline dei libri"
|
msgstr "Timeline dei libri"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209 bookwyrm/templates/search/layout.html:21
|
#: bookwyrm/settings.py:210 bookwyrm/templates/search/layout.html:21
|
||||||
#: bookwyrm/templates/search/layout.html:42
|
#: bookwyrm/templates/search/layout.html:42
|
||||||
#: bookwyrm/templates/user/layout.html:91
|
#: bookwyrm/templates/user/layout.html:91
|
||||||
msgid "Books"
|
msgid "Books"
|
||||||
msgstr "Libri"
|
msgstr "Libri"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:281
|
#: bookwyrm/settings.py:282
|
||||||
msgid "English"
|
msgid "English"
|
||||||
msgstr "English (Inglese)"
|
msgstr "English (Inglese)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:282
|
#: bookwyrm/settings.py:283
|
||||||
msgid "Deutsch (German)"
|
msgid "Deutsch (German)"
|
||||||
msgstr "Deutsch (Tedesco)"
|
msgstr "Deutsch (Tedesco)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:283
|
#: bookwyrm/settings.py:284
|
||||||
msgid "Español (Spanish)"
|
msgid "Español (Spanish)"
|
||||||
msgstr "Español (Spagnolo)"
|
msgstr "Español (Spagnolo)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:284
|
#: bookwyrm/settings.py:285
|
||||||
msgid "Galego (Galician)"
|
msgid "Galego (Galician)"
|
||||||
msgstr "Galego (Galiziano)"
|
msgstr "Galego (Galiziano)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:285
|
#: bookwyrm/settings.py:286
|
||||||
msgid "Italiano (Italian)"
|
msgid "Italiano (Italian)"
|
||||||
msgstr "Italiano (Italiano)"
|
msgstr "Italiano (Italiano)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:286
|
#: bookwyrm/settings.py:287
|
||||||
msgid "Français (French)"
|
msgid "Français (French)"
|
||||||
msgstr "Français (Francese)"
|
msgstr "Français (Francese)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:287
|
#: bookwyrm/settings.py:288
|
||||||
msgid "Lietuvių (Lithuanian)"
|
msgid "Lietuvių (Lithuanian)"
|
||||||
msgstr "Lietuvių (Lituano)"
|
msgstr "Lietuvių (Lituano)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:288
|
#: bookwyrm/settings.py:289
|
||||||
msgid "Norsk (Norwegian)"
|
msgid "Norsk (Norwegian)"
|
||||||
msgstr "Norsk (Norvegese)"
|
msgstr "Norsk (Norvegese)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:289
|
#: bookwyrm/settings.py:290
|
||||||
msgid "Português do Brasil (Brazilian Portuguese)"
|
msgid "Português do Brasil (Brazilian Portuguese)"
|
||||||
msgstr "Português do Brasil (Portoghese Brasiliano)"
|
msgstr "Português do Brasil (Portoghese Brasiliano)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:290
|
#: bookwyrm/settings.py:291
|
||||||
msgid "Português Europeu (European Portuguese)"
|
msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Portoghese europeo)"
|
msgstr "Português Europeu (Portoghese europeo)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:291
|
#: bookwyrm/settings.py:292
|
||||||
msgid "Svenska (Swedish)"
|
msgid "Svenska (Swedish)"
|
||||||
msgstr "Svenska (Svedese)"
|
msgstr "Svenska (Svedese)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:292
|
#: bookwyrm/settings.py:293
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Cinese Semplificato)"
|
msgstr "简体中文 (Cinese Semplificato)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:293
|
#: bookwyrm/settings.py:294
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Cinese Tradizionale)"
|
msgstr "繁體中文 (Cinese Tradizionale)"
|
||||||
|
|
||||||
|
@ -679,8 +679,7 @@ msgstr "Nome:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:44
|
#: bookwyrm/templates/author/edit_author.html:44
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
#: bookwyrm/templates/book/edit/edit_book_form.html:146
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:107
|
|
||||||
msgid "Separate multiple values with commas."
|
msgid "Separate multiple values with commas."
|
||||||
msgstr "Separa valori multipli con la virgola (,)"
|
msgstr "Separa valori multipli con la virgola (,)"
|
||||||
|
|
||||||
|
@ -709,7 +708,7 @@ msgid "Openlibrary key:"
|
||||||
msgstr "Chiave OpenLibrary:"
|
msgstr "Chiave OpenLibrary:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:84
|
#: bookwyrm/templates/author/edit_author.html:84
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:278
|
#: bookwyrm/templates/book/edit/edit_book_form.html:322
|
||||||
msgid "Inventaire ID:"
|
msgid "Inventaire ID:"
|
||||||
msgstr "Inventaire ID:"
|
msgstr "Inventaire ID:"
|
||||||
|
|
||||||
|
@ -892,12 +891,12 @@ msgid "ISBN:"
|
||||||
msgstr "ISBN:"
|
msgstr "ISBN:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:15
|
#: bookwyrm/templates/book/book_identifiers.html:15
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:287
|
#: bookwyrm/templates/book/edit/edit_book_form.html:331
|
||||||
msgid "OCLC Number:"
|
msgid "OCLC Number:"
|
||||||
msgstr "Numero OCLC:"
|
msgstr "Numero OCLC:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:22
|
#: bookwyrm/templates/book/book_identifiers.html:22
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:296
|
#: bookwyrm/templates/book/edit/edit_book_form.html:340
|
||||||
msgid "ASIN:"
|
msgid "ASIN:"
|
||||||
msgstr "ASIN:"
|
msgstr "ASIN:"
|
||||||
|
|
||||||
|
@ -906,12 +905,12 @@ msgid "Add cover"
|
||||||
msgstr "Aggiungi copertina"
|
msgstr "Aggiungi copertina"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:17
|
#: bookwyrm/templates/book/cover_add_modal.html:17
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
#: bookwyrm/templates/book/edit/edit_book_form.html:230
|
||||||
msgid "Upload cover:"
|
msgid "Upload cover:"
|
||||||
msgstr "Carica la copertina:"
|
msgstr "Carica la copertina:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:23
|
#: bookwyrm/templates/book/cover_add_modal.html:23
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:192
|
#: bookwyrm/templates/book/edit/edit_book_form.html:236
|
||||||
msgid "Load cover from url:"
|
msgid "Load cover from url:"
|
||||||
msgstr "Carica la copertina dall'url:"
|
msgstr "Carica la copertina dall'url:"
|
||||||
|
|
||||||
|
@ -1006,89 +1005,101 @@ msgstr "Lingue:"
|
||||||
msgid "Subjects:"
|
msgid "Subjects:"
|
||||||
msgstr "Argomenti:"
|
msgstr "Argomenti:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:98
|
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
||||||
|
msgid "Add subject"
|
||||||
|
msgstr "Aggiungi argomento"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:106
|
||||||
|
msgid "Remove subject"
|
||||||
|
msgstr "Rimuovi argomento"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:129
|
||||||
|
msgid "Add Another Subject"
|
||||||
|
msgstr "Aggiungi argomento"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:137
|
||||||
msgid "Publication"
|
msgid "Publication"
|
||||||
msgstr "Data di pubblicazione"
|
msgstr "Data di pubblicazione"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:103
|
#: bookwyrm/templates/book/edit/edit_book_form.html:142
|
||||||
msgid "Publisher:"
|
msgid "Publisher:"
|
||||||
msgstr "Editore:"
|
msgstr "Editore:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:115
|
#: bookwyrm/templates/book/edit/edit_book_form.html:154
|
||||||
msgid "First published date:"
|
msgid "First published date:"
|
||||||
msgstr "Prima data di pubblicazione:"
|
msgstr "Prima data di pubblicazione:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:124
|
#: bookwyrm/templates/book/edit/edit_book_form.html:163
|
||||||
msgid "Published date:"
|
msgid "Published date:"
|
||||||
msgstr "Data di pubblicazione:"
|
msgstr "Data di pubblicazione:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:135
|
#: bookwyrm/templates/book/edit/edit_book_form.html:174
|
||||||
msgid "Authors"
|
msgid "Authors"
|
||||||
msgstr "Autori"
|
msgstr "Autori"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:144
|
#: bookwyrm/templates/book/edit/edit_book_form.html:183
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Remove %(name)s"
|
msgid "Remove %(name)s"
|
||||||
msgstr "Rimuovi %(name)s"
|
msgstr "Rimuovi %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:147
|
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Author page for %(name)s"
|
msgid "Author page for %(name)s"
|
||||||
msgstr "Pagina autore per %(name)s"
|
msgstr "Pagina autore per %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:155
|
#: bookwyrm/templates/book/edit/edit_book_form.html:194
|
||||||
msgid "Add Authors:"
|
msgid "Add Authors:"
|
||||||
msgstr "Aggiungi Autori:"
|
msgstr "Aggiungi Autori:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:158
|
#: bookwyrm/templates/book/edit/edit_book_form.html:197
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:161
|
#: bookwyrm/templates/book/edit/edit_book_form.html:200
|
||||||
msgid "Add Author"
|
msgid "Add Author"
|
||||||
msgstr "Aggiungi Autore"
|
msgstr "Aggiungi Autore"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:159
|
#: bookwyrm/templates/book/edit/edit_book_form.html:198
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:162
|
#: bookwyrm/templates/book/edit/edit_book_form.html:201
|
||||||
msgid "Jane Doe"
|
msgid "Jane Doe"
|
||||||
msgstr "Jane Doe"
|
msgstr "Jane Doe"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:165
|
#: bookwyrm/templates/book/edit/edit_book_form.html:207
|
||||||
msgid "Add Another Author"
|
msgid "Add Another Author"
|
||||||
msgstr "Aggiungi un altro autore"
|
msgstr "Aggiungi un altro autore"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:173
|
#: bookwyrm/templates/book/edit/edit_book_form.html:217
|
||||||
#: bookwyrm/templates/shelf/shelf.html:146
|
#: bookwyrm/templates/shelf/shelf.html:146
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Copertina"
|
msgstr "Copertina"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:205
|
#: bookwyrm/templates/book/edit/edit_book_form.html:249
|
||||||
msgid "Physical Properties"
|
msgid "Physical Properties"
|
||||||
msgstr "Caratteristiche"
|
msgstr "Caratteristiche"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:212
|
#: bookwyrm/templates/book/edit/edit_book_form.html:256
|
||||||
#: bookwyrm/templates/book/editions/format_filter.html:6
|
#: bookwyrm/templates/book/editions/format_filter.html:6
|
||||||
msgid "Format:"
|
msgid "Format:"
|
||||||
msgstr "Formato:"
|
msgstr "Formato:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:224
|
#: bookwyrm/templates/book/edit/edit_book_form.html:268
|
||||||
msgid "Format details:"
|
msgid "Format details:"
|
||||||
msgstr "Dettagli del formato:"
|
msgstr "Dettagli del formato:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:235
|
#: bookwyrm/templates/book/edit/edit_book_form.html:279
|
||||||
msgid "Pages:"
|
msgid "Pages:"
|
||||||
msgstr "Pagine:"
|
msgstr "Pagine:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:246
|
#: bookwyrm/templates/book/edit/edit_book_form.html:290
|
||||||
msgid "Book Identifiers"
|
msgid "Book Identifiers"
|
||||||
msgstr "Identificativi del Libro"
|
msgstr "Identificativi del Libro"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:251
|
#: bookwyrm/templates/book/edit/edit_book_form.html:295
|
||||||
msgid "ISBN 13:"
|
msgid "ISBN 13:"
|
||||||
msgstr "ISBN 13:"
|
msgstr "ISBN 13:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:260
|
#: bookwyrm/templates/book/edit/edit_book_form.html:304
|
||||||
msgid "ISBN 10:"
|
msgid "ISBN 10:"
|
||||||
msgstr "ISBN 10:"
|
msgstr "ISBN 10:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:269
|
#: bookwyrm/templates/book/edit/edit_book_form.html:313
|
||||||
msgid "Openlibrary ID:"
|
msgid "Openlibrary ID:"
|
||||||
msgstr "OpenLibrary ID:"
|
msgstr "OpenLibrary ID:"
|
||||||
|
|
||||||
|
@ -1144,12 +1155,8 @@ msgstr "Modifica collegamenti"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "\n"
|
msgid "Links for \"<em>%(title)s</em>\""
|
||||||
" Links for \"<em>%(title)s</em>\"\n"
|
msgstr "Collegamenti per \"<em>%(title)s</em>\""
|
||||||
" "
|
|
||||||
msgstr "\n"
|
|
||||||
" Link per \"<em>%(title)s</em>\"\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
||||||
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
||||||
|
@ -3218,64 +3225,89 @@ msgstr "Impostazioni di visualizzazione"
|
||||||
msgid "Color:"
|
msgid "Color:"
|
||||||
msgstr "Colore:"
|
msgstr "Colore:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:6
|
#: bookwyrm/templates/settings/automod/rules.html:7
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:10
|
#: bookwyrm/templates/settings/automod/rules.html:11
|
||||||
#: bookwyrm/templates/settings/layout.html:61
|
#: bookwyrm/templates/settings/layout.html:61
|
||||||
msgid "Auto-moderation rules"
|
msgid "Auto-moderation rules"
|
||||||
msgstr "Regole di moderazione automatica"
|
msgstr "Regole di moderazione automatica"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:17
|
#: bookwyrm/templates/settings/automod/rules.html:18
|
||||||
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
||||||
msgstr "Le regole di auto-moderazione creeranno report per qualsiasi utente locale o stato con campi corrispondenti alla stringa fornita."
|
msgstr "Le regole di auto-moderazione creeranno report per qualsiasi utente locale o stato con campi corrispondenti alla stringa fornita."
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:18
|
#: bookwyrm/templates/settings/automod/rules.html:19
|
||||||
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
||||||
msgstr "Gli utenti o gli stati che sono già stati segnalati (a prescindere dal fatto che il report sia stato risolto) non verranno contrassegnati."
|
msgstr "Gli utenti o gli stati che sono già stati segnalati (a prescindere dal fatto che il report sia stato risolto) non verranno contrassegnati."
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:19
|
#: bookwyrm/templates/settings/automod/rules.html:26
|
||||||
msgid "At this time, reports are <em>not</em> being generated automatically, and you must manually trigger a scan."
|
msgid "Schedule:"
|
||||||
msgstr "In questo momento, i report <em>non</em> vengono generati automaticamente; devi attivare manualmente una scansione."
|
msgstr "Pianificazione:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:23
|
#: bookwyrm/templates/settings/automod/rules.html:33
|
||||||
msgid "Run scan"
|
msgid "Last run:"
|
||||||
msgstr "Avvia scansione"
|
msgstr "Ultima esecuzione:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:31
|
#: bookwyrm/templates/settings/automod/rules.html:40
|
||||||
|
msgid "Total run count:"
|
||||||
|
msgstr "Numero di esecuzioni totali:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:47
|
||||||
|
msgid "Enabled:"
|
||||||
|
msgstr "Attivato:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:59
|
||||||
|
msgid "Delete schedule"
|
||||||
|
msgstr "Elimina pianificazione"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:63
|
||||||
|
msgid "Run now"
|
||||||
|
msgstr "Esegui ora"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:64
|
||||||
|
msgid "Last run date will not be updated"
|
||||||
|
msgstr "L'ultima data di esecuzione non sarà aggiornata"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:69
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:92
|
||||||
|
msgid "Schedule scan"
|
||||||
|
msgstr "Pianifica una scansione"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:101
|
||||||
msgid "Successfully added rule"
|
msgid "Successfully added rule"
|
||||||
msgstr "Regola aggiunta con successo"
|
msgstr "Regola aggiunta con successo"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:37
|
#: bookwyrm/templates/settings/automod/rules.html:107
|
||||||
msgid "Add Rule"
|
msgid "Add Rule"
|
||||||
msgstr "Aggiungi regola"
|
msgstr "Aggiungi regola"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:46
|
#: bookwyrm/templates/settings/automod/rules.html:116
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:90
|
#: bookwyrm/templates/settings/automod/rules.html:160
|
||||||
msgid "String match"
|
msgid "String match"
|
||||||
msgstr "Corrispondenza stringa"
|
msgstr "Corrispondenza stringa"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:56
|
#: bookwyrm/templates/settings/automod/rules.html:126
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:93
|
#: bookwyrm/templates/settings/automod/rules.html:163
|
||||||
msgid "Flag users"
|
msgid "Flag users"
|
||||||
msgstr "Contrassegna utenti"
|
msgstr "Contrassegna utenti"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:63
|
#: bookwyrm/templates/settings/automod/rules.html:133
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:96
|
#: bookwyrm/templates/settings/automod/rules.html:166
|
||||||
msgid "Flag statuses"
|
msgid "Flag statuses"
|
||||||
msgstr "Segnala stati"
|
msgstr "Segnala stati"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:70
|
#: bookwyrm/templates/settings/automod/rules.html:140
|
||||||
msgid "Add rule"
|
msgid "Add rule"
|
||||||
msgstr "Aggiungi regola"
|
msgstr "Aggiungi regola"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:77
|
#: bookwyrm/templates/settings/automod/rules.html:147
|
||||||
msgid "Current Rules"
|
msgid "Current Rules"
|
||||||
msgstr "Regole Attuali"
|
msgstr "Regole Attuali"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:81
|
#: bookwyrm/templates/settings/automod/rules.html:151
|
||||||
msgid "Show rules"
|
msgid "Show rules"
|
||||||
msgstr "Mostra regole"
|
msgstr "Mostra regole"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:118
|
#: bookwyrm/templates/settings/automod/rules.html:188
|
||||||
msgid "Remove rule"
|
msgid "Remove rule"
|
||||||
msgstr "Rimuovi regola"
|
msgstr "Rimuovi regola"
|
||||||
|
|
||||||
|
@ -3525,7 +3557,6 @@ msgid "Import Blocklist"
|
||||||
msgstr "Importa lista blocchi"
|
msgstr "Importa lista blocchi"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:7
|
|
||||||
msgid "Success!"
|
msgid "Success!"
|
||||||
msgstr "Completato!"
|
msgstr "Completato!"
|
||||||
|
|
||||||
|
@ -4567,6 +4598,11 @@ msgstr "Posta sul feed"
|
||||||
msgid "Set goal"
|
msgid "Set goal"
|
||||||
msgstr "Imposta obiettivo"
|
msgstr "Imposta obiettivo"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/snippets/goal_progress.html:7
|
||||||
|
msgctxt "Goal successfully completed"
|
||||||
|
msgid "Success!"
|
||||||
|
msgstr "Completato!"
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:9
|
#: bookwyrm/templates/snippets/goal_progress.html:9
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(percent)s%% complete!"
|
msgid "%(percent)s%% complete!"
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-03-14 19:30+0000\n"
|
"POT-Creation-Date: 2022-03-16 23:12+0000\n"
|
||||||
"PO-Revision-Date: 2022-03-14 20:17\n"
|
"PO-Revision-Date: 2022-03-16 23:33\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Lithuanian\n"
|
"Language-Team: Lithuanian\n"
|
||||||
"Language: lt\n"
|
"Language: lt\n"
|
||||||
|
@ -17,28 +17,28 @@ msgstr ""
|
||||||
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
||||||
"X-Crowdin-File-ID: 1553\n"
|
"X-Crowdin-File-ID: 1553\n"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:40
|
#: bookwyrm/forms/admin.py:41
|
||||||
msgid "One Day"
|
msgid "One Day"
|
||||||
msgstr "Diena"
|
msgstr "Diena"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:41
|
#: bookwyrm/forms/admin.py:42
|
||||||
msgid "One Week"
|
msgid "One Week"
|
||||||
msgstr "Savaitė"
|
msgstr "Savaitė"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:42
|
#: bookwyrm/forms/admin.py:43
|
||||||
msgid "One Month"
|
msgid "One Month"
|
||||||
msgstr "Mėnuo"
|
msgstr "Mėnuo"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:43
|
#: bookwyrm/forms/admin.py:44
|
||||||
msgid "Does Not Expire"
|
msgid "Does Not Expire"
|
||||||
msgstr "Galiojimas nesibaigia"
|
msgstr "Galiojimas nesibaigia"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:47
|
#: bookwyrm/forms/admin.py:48
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{i} uses"
|
msgid "{i} uses"
|
||||||
msgstr "{i} naudoja"
|
msgstr "{i} naudoja"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:48
|
#: bookwyrm/forms/admin.py:49
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Neribota"
|
msgstr "Neribota"
|
||||||
|
|
||||||
|
@ -261,73 +261,73 @@ msgstr "Citatos"
|
||||||
msgid "Everything else"
|
msgid "Everything else"
|
||||||
msgstr "Visa kita"
|
msgstr "Visa kita"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home Timeline"
|
msgid "Home Timeline"
|
||||||
msgstr "Pagrindinė siena"
|
msgstr "Pagrindinė siena"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "Pagrindinis"
|
msgstr "Pagrindinis"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209
|
#: bookwyrm/settings.py:210
|
||||||
msgid "Books Timeline"
|
msgid "Books Timeline"
|
||||||
msgstr "Knygų siena"
|
msgstr "Knygų siena"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209 bookwyrm/templates/search/layout.html:21
|
#: bookwyrm/settings.py:210 bookwyrm/templates/search/layout.html:21
|
||||||
#: bookwyrm/templates/search/layout.html:42
|
#: bookwyrm/templates/search/layout.html:42
|
||||||
#: bookwyrm/templates/user/layout.html:91
|
#: bookwyrm/templates/user/layout.html:91
|
||||||
msgid "Books"
|
msgid "Books"
|
||||||
msgstr "Knygos"
|
msgstr "Knygos"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:281
|
#: bookwyrm/settings.py:282
|
||||||
msgid "English"
|
msgid "English"
|
||||||
msgstr "English (Anglų)"
|
msgstr "English (Anglų)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:282
|
#: bookwyrm/settings.py:283
|
||||||
msgid "Deutsch (German)"
|
msgid "Deutsch (German)"
|
||||||
msgstr "Deutsch (Vokiečių)"
|
msgstr "Deutsch (Vokiečių)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:283
|
#: bookwyrm/settings.py:284
|
||||||
msgid "Español (Spanish)"
|
msgid "Español (Spanish)"
|
||||||
msgstr "Español (Ispanų)"
|
msgstr "Español (Ispanų)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:284
|
#: bookwyrm/settings.py:285
|
||||||
msgid "Galego (Galician)"
|
msgid "Galego (Galician)"
|
||||||
msgstr "Galego (galisų)"
|
msgstr "Galego (galisų)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:285
|
#: bookwyrm/settings.py:286
|
||||||
msgid "Italiano (Italian)"
|
msgid "Italiano (Italian)"
|
||||||
msgstr "Italų (Italian)"
|
msgstr "Italų (Italian)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:286
|
#: bookwyrm/settings.py:287
|
||||||
msgid "Français (French)"
|
msgid "Français (French)"
|
||||||
msgstr "Français (Prancūzų)"
|
msgstr "Français (Prancūzų)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:287
|
#: bookwyrm/settings.py:288
|
||||||
msgid "Lietuvių (Lithuanian)"
|
msgid "Lietuvių (Lithuanian)"
|
||||||
msgstr "Lietuvių"
|
msgstr "Lietuvių"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:288
|
#: bookwyrm/settings.py:289
|
||||||
msgid "Norsk (Norwegian)"
|
msgid "Norsk (Norwegian)"
|
||||||
msgstr "Norvegų (Norwegian)"
|
msgstr "Norvegų (Norwegian)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:289
|
#: bookwyrm/settings.py:290
|
||||||
msgid "Português do Brasil (Brazilian Portuguese)"
|
msgid "Português do Brasil (Brazilian Portuguese)"
|
||||||
msgstr "Português brasileiro (Brazilijos portugalų)"
|
msgstr "Português brasileiro (Brazilijos portugalų)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:290
|
#: bookwyrm/settings.py:291
|
||||||
msgid "Português Europeu (European Portuguese)"
|
msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Europos portugalų)"
|
msgstr "Português Europeu (Europos portugalų)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:291
|
#: bookwyrm/settings.py:292
|
||||||
msgid "Svenska (Swedish)"
|
msgid "Svenska (Swedish)"
|
||||||
msgstr "Svenska (Švedų)"
|
msgstr "Svenska (Švedų)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:292
|
#: bookwyrm/settings.py:293
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Supaprastinta kinų)"
|
msgstr "简体中文 (Supaprastinta kinų)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:293
|
#: bookwyrm/settings.py:294
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Tradicinė kinų)"
|
msgstr "繁體中文 (Tradicinė kinų)"
|
||||||
|
|
||||||
|
@ -687,8 +687,7 @@ msgstr "Vardas:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:44
|
#: bookwyrm/templates/author/edit_author.html:44
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
#: bookwyrm/templates/book/edit/edit_book_form.html:146
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:107
|
|
||||||
msgid "Separate multiple values with commas."
|
msgid "Separate multiple values with commas."
|
||||||
msgstr "Reikšmes atskirkite kableliais."
|
msgstr "Reikšmes atskirkite kableliais."
|
||||||
|
|
||||||
|
@ -717,7 +716,7 @@ msgid "Openlibrary key:"
|
||||||
msgstr "„Openlibrary“ raktas:"
|
msgstr "„Openlibrary“ raktas:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:84
|
#: bookwyrm/templates/author/edit_author.html:84
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:278
|
#: bookwyrm/templates/book/edit/edit_book_form.html:322
|
||||||
msgid "Inventaire ID:"
|
msgid "Inventaire ID:"
|
||||||
msgstr "„Inventaire“ ID:"
|
msgstr "„Inventaire“ ID:"
|
||||||
|
|
||||||
|
@ -902,12 +901,12 @@ msgid "ISBN:"
|
||||||
msgstr "ISBN:"
|
msgstr "ISBN:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:15
|
#: bookwyrm/templates/book/book_identifiers.html:15
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:287
|
#: bookwyrm/templates/book/edit/edit_book_form.html:331
|
||||||
msgid "OCLC Number:"
|
msgid "OCLC Number:"
|
||||||
msgstr "OCLC numeris:"
|
msgstr "OCLC numeris:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:22
|
#: bookwyrm/templates/book/book_identifiers.html:22
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:296
|
#: bookwyrm/templates/book/edit/edit_book_form.html:340
|
||||||
msgid "ASIN:"
|
msgid "ASIN:"
|
||||||
msgstr "ASIN:"
|
msgstr "ASIN:"
|
||||||
|
|
||||||
|
@ -916,12 +915,12 @@ msgid "Add cover"
|
||||||
msgstr "Pridėti viršelį"
|
msgstr "Pridėti viršelį"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:17
|
#: bookwyrm/templates/book/cover_add_modal.html:17
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
#: bookwyrm/templates/book/edit/edit_book_form.html:230
|
||||||
msgid "Upload cover:"
|
msgid "Upload cover:"
|
||||||
msgstr "Įkelti viršelį:"
|
msgstr "Įkelti viršelį:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:23
|
#: bookwyrm/templates/book/cover_add_modal.html:23
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:192
|
#: bookwyrm/templates/book/edit/edit_book_form.html:236
|
||||||
msgid "Load cover from url:"
|
msgid "Load cover from url:"
|
||||||
msgstr "Įkelti viršelį iš url:"
|
msgstr "Įkelti viršelį iš url:"
|
||||||
|
|
||||||
|
@ -1016,89 +1015,101 @@ msgstr "Kalbos:"
|
||||||
msgid "Subjects:"
|
msgid "Subjects:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:98
|
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
||||||
|
msgid "Add subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:106
|
||||||
|
msgid "Remove subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:129
|
||||||
|
msgid "Add Another Subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:137
|
||||||
msgid "Publication"
|
msgid "Publication"
|
||||||
msgstr "Leidimas"
|
msgstr "Leidimas"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:103
|
#: bookwyrm/templates/book/edit/edit_book_form.html:142
|
||||||
msgid "Publisher:"
|
msgid "Publisher:"
|
||||||
msgstr "Leidėjas:"
|
msgstr "Leidėjas:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:115
|
#: bookwyrm/templates/book/edit/edit_book_form.html:154
|
||||||
msgid "First published date:"
|
msgid "First published date:"
|
||||||
msgstr "Pirmoji publikavimo data:"
|
msgstr "Pirmoji publikavimo data:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:124
|
#: bookwyrm/templates/book/edit/edit_book_form.html:163
|
||||||
msgid "Published date:"
|
msgid "Published date:"
|
||||||
msgstr "Publikavimo data:"
|
msgstr "Publikavimo data:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:135
|
#: bookwyrm/templates/book/edit/edit_book_form.html:174
|
||||||
msgid "Authors"
|
msgid "Authors"
|
||||||
msgstr "Autoriai"
|
msgstr "Autoriai"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:144
|
#: bookwyrm/templates/book/edit/edit_book_form.html:183
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Remove %(name)s"
|
msgid "Remove %(name)s"
|
||||||
msgstr "Pašalinti %(name)s"
|
msgstr "Pašalinti %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:147
|
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Author page for %(name)s"
|
msgid "Author page for %(name)s"
|
||||||
msgstr "Autoriaus puslapis %(name)s"
|
msgstr "Autoriaus puslapis %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:155
|
#: bookwyrm/templates/book/edit/edit_book_form.html:194
|
||||||
msgid "Add Authors:"
|
msgid "Add Authors:"
|
||||||
msgstr "Pridėti autorius:"
|
msgstr "Pridėti autorius:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:158
|
#: bookwyrm/templates/book/edit/edit_book_form.html:197
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:161
|
#: bookwyrm/templates/book/edit/edit_book_form.html:200
|
||||||
msgid "Add Author"
|
msgid "Add Author"
|
||||||
msgstr "Pridėti autorių"
|
msgstr "Pridėti autorių"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:159
|
#: bookwyrm/templates/book/edit/edit_book_form.html:198
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:162
|
#: bookwyrm/templates/book/edit/edit_book_form.html:201
|
||||||
msgid "Jane Doe"
|
msgid "Jane Doe"
|
||||||
msgstr "Jonas Jonaitė"
|
msgstr "Jonas Jonaitė"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:165
|
#: bookwyrm/templates/book/edit/edit_book_form.html:207
|
||||||
msgid "Add Another Author"
|
msgid "Add Another Author"
|
||||||
msgstr "Pridėti dar vieną autorių"
|
msgstr "Pridėti dar vieną autorių"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:173
|
#: bookwyrm/templates/book/edit/edit_book_form.html:217
|
||||||
#: bookwyrm/templates/shelf/shelf.html:146
|
#: bookwyrm/templates/shelf/shelf.html:146
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Viršelis"
|
msgstr "Viršelis"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:205
|
#: bookwyrm/templates/book/edit/edit_book_form.html:249
|
||||||
msgid "Physical Properties"
|
msgid "Physical Properties"
|
||||||
msgstr "Fizinės savybės"
|
msgstr "Fizinės savybės"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:212
|
#: bookwyrm/templates/book/edit/edit_book_form.html:256
|
||||||
#: bookwyrm/templates/book/editions/format_filter.html:6
|
#: bookwyrm/templates/book/editions/format_filter.html:6
|
||||||
msgid "Format:"
|
msgid "Format:"
|
||||||
msgstr "Formatas:"
|
msgstr "Formatas:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:224
|
#: bookwyrm/templates/book/edit/edit_book_form.html:268
|
||||||
msgid "Format details:"
|
msgid "Format details:"
|
||||||
msgstr "Informacija apie formatą:"
|
msgstr "Informacija apie formatą:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:235
|
#: bookwyrm/templates/book/edit/edit_book_form.html:279
|
||||||
msgid "Pages:"
|
msgid "Pages:"
|
||||||
msgstr "Puslapiai:"
|
msgstr "Puslapiai:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:246
|
#: bookwyrm/templates/book/edit/edit_book_form.html:290
|
||||||
msgid "Book Identifiers"
|
msgid "Book Identifiers"
|
||||||
msgstr "Knygos identifikatoriai"
|
msgstr "Knygos identifikatoriai"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:251
|
#: bookwyrm/templates/book/edit/edit_book_form.html:295
|
||||||
msgid "ISBN 13:"
|
msgid "ISBN 13:"
|
||||||
msgstr "ISBN 13:"
|
msgstr "ISBN 13:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:260
|
#: bookwyrm/templates/book/edit/edit_book_form.html:304
|
||||||
msgid "ISBN 10:"
|
msgid "ISBN 10:"
|
||||||
msgstr "ISBN 10:"
|
msgstr "ISBN 10:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:269
|
#: bookwyrm/templates/book/edit/edit_book_form.html:313
|
||||||
msgid "Openlibrary ID:"
|
msgid "Openlibrary ID:"
|
||||||
msgstr "„Openlibrary“ ID:"
|
msgstr "„Openlibrary“ ID:"
|
||||||
|
|
||||||
|
@ -1154,11 +1165,8 @@ msgstr "Redaguoti nuorodas"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "\n"
|
msgid "Links for \"<em>%(title)s</em>\""
|
||||||
" Links for \"<em>%(title)s</em>\"\n"
|
msgstr ""
|
||||||
" "
|
|
||||||
msgstr "\"<em>%(title)s</em>\" nuorodos\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
||||||
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
||||||
|
@ -3237,64 +3245,89 @@ msgstr ""
|
||||||
msgid "Color:"
|
msgid "Color:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:6
|
#: bookwyrm/templates/settings/automod/rules.html:7
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:10
|
#: bookwyrm/templates/settings/automod/rules.html:11
|
||||||
#: bookwyrm/templates/settings/layout.html:61
|
#: bookwyrm/templates/settings/layout.html:61
|
||||||
msgid "Auto-moderation rules"
|
msgid "Auto-moderation rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:17
|
#: bookwyrm/templates/settings/automod/rules.html:18
|
||||||
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:18
|
#: bookwyrm/templates/settings/automod/rules.html:19
|
||||||
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:19
|
#: bookwyrm/templates/settings/automod/rules.html:26
|
||||||
msgid "At this time, reports are <em>not</em> being generated automatically, and you must manually trigger a scan."
|
msgid "Schedule:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:23
|
#: bookwyrm/templates/settings/automod/rules.html:33
|
||||||
msgid "Run scan"
|
msgid "Last run:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:31
|
#: bookwyrm/templates/settings/automod/rules.html:40
|
||||||
msgid "Successfully added rule"
|
msgid "Total run count:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:37
|
#: bookwyrm/templates/settings/automod/rules.html:47
|
||||||
msgid "Add Rule"
|
msgid "Enabled:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:46
|
#: bookwyrm/templates/settings/automod/rules.html:59
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:90
|
msgid "Delete schedule"
|
||||||
msgid "String match"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:56
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:93
|
|
||||||
msgid "Flag users"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:63
|
#: bookwyrm/templates/settings/automod/rules.html:63
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:96
|
msgid "Run now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:64
|
||||||
|
msgid "Last run date will not be updated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:69
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:92
|
||||||
|
msgid "Schedule scan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:101
|
||||||
|
msgid "Successfully added rule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:107
|
||||||
|
msgid "Add Rule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:116
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:160
|
||||||
|
msgid "String match"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:126
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:163
|
||||||
|
msgid "Flag users"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:133
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:166
|
||||||
msgid "Flag statuses"
|
msgid "Flag statuses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:70
|
#: bookwyrm/templates/settings/automod/rules.html:140
|
||||||
msgid "Add rule"
|
msgid "Add rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:77
|
#: bookwyrm/templates/settings/automod/rules.html:147
|
||||||
msgid "Current Rules"
|
msgid "Current Rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:81
|
#: bookwyrm/templates/settings/automod/rules.html:151
|
||||||
msgid "Show rules"
|
msgid "Show rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:118
|
#: bookwyrm/templates/settings/automod/rules.html:188
|
||||||
msgid "Remove rule"
|
msgid "Remove rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3552,7 +3585,6 @@ msgid "Import Blocklist"
|
||||||
msgstr "Importuoti blokuojamų sąrašą"
|
msgstr "Importuoti blokuojamų sąrašą"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:7
|
|
||||||
msgid "Success!"
|
msgid "Success!"
|
||||||
msgstr "Valio!"
|
msgstr "Valio!"
|
||||||
|
|
||||||
|
@ -4608,6 +4640,11 @@ msgstr "Skelbti"
|
||||||
msgid "Set goal"
|
msgid "Set goal"
|
||||||
msgstr "Nustatyti tikslą"
|
msgstr "Nustatyti tikslą"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/snippets/goal_progress.html:7
|
||||||
|
msgctxt "Goal successfully completed"
|
||||||
|
msgid "Success!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:9
|
#: bookwyrm/templates/snippets/goal_progress.html:9
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(percent)s%% complete!"
|
msgid "%(percent)s%% complete!"
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-03-14 19:30+0000\n"
|
"POT-Creation-Date: 2022-03-16 23:12+0000\n"
|
||||||
"PO-Revision-Date: 2022-03-14 20:18\n"
|
"PO-Revision-Date: 2022-03-16 23:34\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Norwegian\n"
|
"Language-Team: Norwegian\n"
|
||||||
"Language: no\n"
|
"Language: no\n"
|
||||||
|
@ -17,28 +17,28 @@ msgstr ""
|
||||||
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
||||||
"X-Crowdin-File-ID: 1553\n"
|
"X-Crowdin-File-ID: 1553\n"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:40
|
#: bookwyrm/forms/admin.py:41
|
||||||
msgid "One Day"
|
msgid "One Day"
|
||||||
msgstr "Én dag"
|
msgstr "Én dag"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:41
|
#: bookwyrm/forms/admin.py:42
|
||||||
msgid "One Week"
|
msgid "One Week"
|
||||||
msgstr "Én uke"
|
msgstr "Én uke"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:42
|
#: bookwyrm/forms/admin.py:43
|
||||||
msgid "One Month"
|
msgid "One Month"
|
||||||
msgstr "Én måned"
|
msgstr "Én måned"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:43
|
#: bookwyrm/forms/admin.py:44
|
||||||
msgid "Does Not Expire"
|
msgid "Does Not Expire"
|
||||||
msgstr "Uendelig"
|
msgstr "Uendelig"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:47
|
#: bookwyrm/forms/admin.py:48
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{i} uses"
|
msgid "{i} uses"
|
||||||
msgstr "{i} ganger"
|
msgstr "{i} ganger"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:48
|
#: bookwyrm/forms/admin.py:49
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Ubegrenset"
|
msgstr "Ubegrenset"
|
||||||
|
|
||||||
|
@ -261,73 +261,73 @@ msgstr "Sitater"
|
||||||
msgid "Everything else"
|
msgid "Everything else"
|
||||||
msgstr "Andre ting"
|
msgstr "Andre ting"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home Timeline"
|
msgid "Home Timeline"
|
||||||
msgstr "Lokal tidslinje"
|
msgstr "Lokal tidslinje"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "Hjem"
|
msgstr "Hjem"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209
|
#: bookwyrm/settings.py:210
|
||||||
msgid "Books Timeline"
|
msgid "Books Timeline"
|
||||||
msgstr "Boktidslinja"
|
msgstr "Boktidslinja"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209 bookwyrm/templates/search/layout.html:21
|
#: bookwyrm/settings.py:210 bookwyrm/templates/search/layout.html:21
|
||||||
#: bookwyrm/templates/search/layout.html:42
|
#: bookwyrm/templates/search/layout.html:42
|
||||||
#: bookwyrm/templates/user/layout.html:91
|
#: bookwyrm/templates/user/layout.html:91
|
||||||
msgid "Books"
|
msgid "Books"
|
||||||
msgstr "Bøker"
|
msgstr "Bøker"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:281
|
#: bookwyrm/settings.py:282
|
||||||
msgid "English"
|
msgid "English"
|
||||||
msgstr "English (Engelsk)"
|
msgstr "English (Engelsk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:282
|
#: bookwyrm/settings.py:283
|
||||||
msgid "Deutsch (German)"
|
msgid "Deutsch (German)"
|
||||||
msgstr "Deutsch (Tysk)"
|
msgstr "Deutsch (Tysk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:283
|
#: bookwyrm/settings.py:284
|
||||||
msgid "Español (Spanish)"
|
msgid "Español (Spanish)"
|
||||||
msgstr "Español (Spansk)"
|
msgstr "Español (Spansk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:284
|
#: bookwyrm/settings.py:285
|
||||||
msgid "Galego (Galician)"
|
msgid "Galego (Galician)"
|
||||||
msgstr "Galego (Gallisk)"
|
msgstr "Galego (Gallisk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:285
|
#: bookwyrm/settings.py:286
|
||||||
msgid "Italiano (Italian)"
|
msgid "Italiano (Italian)"
|
||||||
msgstr "Italiano (Italiensk)"
|
msgstr "Italiano (Italiensk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:286
|
#: bookwyrm/settings.py:287
|
||||||
msgid "Français (French)"
|
msgid "Français (French)"
|
||||||
msgstr "Français (Fransk)"
|
msgstr "Français (Fransk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:287
|
#: bookwyrm/settings.py:288
|
||||||
msgid "Lietuvių (Lithuanian)"
|
msgid "Lietuvių (Lithuanian)"
|
||||||
msgstr "Lietuvių (Litauisk)"
|
msgstr "Lietuvių (Litauisk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:288
|
#: bookwyrm/settings.py:289
|
||||||
msgid "Norsk (Norwegian)"
|
msgid "Norsk (Norwegian)"
|
||||||
msgstr "Norsk (Norsk)"
|
msgstr "Norsk (Norsk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:289
|
#: bookwyrm/settings.py:290
|
||||||
msgid "Português do Brasil (Brazilian Portuguese)"
|
msgid "Português do Brasil (Brazilian Portuguese)"
|
||||||
msgstr "Português - Brasil (Brasiliansk portugisisk)"
|
msgstr "Português - Brasil (Brasiliansk portugisisk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:290
|
#: bookwyrm/settings.py:291
|
||||||
msgid "Português Europeu (European Portuguese)"
|
msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Europeisk Portugisisk)"
|
msgstr "Português Europeu (Europeisk Portugisisk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:291
|
#: bookwyrm/settings.py:292
|
||||||
msgid "Svenska (Swedish)"
|
msgid "Svenska (Swedish)"
|
||||||
msgstr "Svenska (Svensk)"
|
msgstr "Svenska (Svensk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:292
|
#: bookwyrm/settings.py:293
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Forenklet kinesisk)"
|
msgstr "简体中文 (Forenklet kinesisk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:293
|
#: bookwyrm/settings.py:294
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Tradisjonelt kinesisk)"
|
msgstr "繁體中文 (Tradisjonelt kinesisk)"
|
||||||
|
|
||||||
|
@ -679,8 +679,7 @@ msgstr "Navn:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:44
|
#: bookwyrm/templates/author/edit_author.html:44
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
#: bookwyrm/templates/book/edit/edit_book_form.html:146
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:107
|
|
||||||
msgid "Separate multiple values with commas."
|
msgid "Separate multiple values with commas."
|
||||||
msgstr "Adskill flere verdier med komma."
|
msgstr "Adskill flere verdier med komma."
|
||||||
|
|
||||||
|
@ -709,7 +708,7 @@ msgid "Openlibrary key:"
|
||||||
msgstr "Openlibrary nøkkel:"
|
msgstr "Openlibrary nøkkel:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:84
|
#: bookwyrm/templates/author/edit_author.html:84
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:278
|
#: bookwyrm/templates/book/edit/edit_book_form.html:322
|
||||||
msgid "Inventaire ID:"
|
msgid "Inventaire ID:"
|
||||||
msgstr "Inventaire ID:"
|
msgstr "Inventaire ID:"
|
||||||
|
|
||||||
|
@ -892,12 +891,12 @@ msgid "ISBN:"
|
||||||
msgstr "ISBN:"
|
msgstr "ISBN:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:15
|
#: bookwyrm/templates/book/book_identifiers.html:15
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:287
|
#: bookwyrm/templates/book/edit/edit_book_form.html:331
|
||||||
msgid "OCLC Number:"
|
msgid "OCLC Number:"
|
||||||
msgstr "OCLC Nummer:"
|
msgstr "OCLC Nummer:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:22
|
#: bookwyrm/templates/book/book_identifiers.html:22
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:296
|
#: bookwyrm/templates/book/edit/edit_book_form.html:340
|
||||||
msgid "ASIN:"
|
msgid "ASIN:"
|
||||||
msgstr "ASIN:"
|
msgstr "ASIN:"
|
||||||
|
|
||||||
|
@ -906,12 +905,12 @@ msgid "Add cover"
|
||||||
msgstr "Legg til et omslag"
|
msgstr "Legg til et omslag"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:17
|
#: bookwyrm/templates/book/cover_add_modal.html:17
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
#: bookwyrm/templates/book/edit/edit_book_form.html:230
|
||||||
msgid "Upload cover:"
|
msgid "Upload cover:"
|
||||||
msgstr "Last opp omslag:"
|
msgstr "Last opp omslag:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:23
|
#: bookwyrm/templates/book/cover_add_modal.html:23
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:192
|
#: bookwyrm/templates/book/edit/edit_book_form.html:236
|
||||||
msgid "Load cover from url:"
|
msgid "Load cover from url:"
|
||||||
msgstr "Last bilde av omslag fra nettadresse:"
|
msgstr "Last bilde av omslag fra nettadresse:"
|
||||||
|
|
||||||
|
@ -1006,89 +1005,101 @@ msgstr "Språk:"
|
||||||
msgid "Subjects:"
|
msgid "Subjects:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:98
|
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
||||||
|
msgid "Add subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:106
|
||||||
|
msgid "Remove subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:129
|
||||||
|
msgid "Add Another Subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:137
|
||||||
msgid "Publication"
|
msgid "Publication"
|
||||||
msgstr "Publikasjon"
|
msgstr "Publikasjon"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:103
|
#: bookwyrm/templates/book/edit/edit_book_form.html:142
|
||||||
msgid "Publisher:"
|
msgid "Publisher:"
|
||||||
msgstr "Forlag:"
|
msgstr "Forlag:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:115
|
#: bookwyrm/templates/book/edit/edit_book_form.html:154
|
||||||
msgid "First published date:"
|
msgid "First published date:"
|
||||||
msgstr "Først utgitt:"
|
msgstr "Først utgitt:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:124
|
#: bookwyrm/templates/book/edit/edit_book_form.html:163
|
||||||
msgid "Published date:"
|
msgid "Published date:"
|
||||||
msgstr "Publiseringsdato:"
|
msgstr "Publiseringsdato:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:135
|
#: bookwyrm/templates/book/edit/edit_book_form.html:174
|
||||||
msgid "Authors"
|
msgid "Authors"
|
||||||
msgstr "Forfattere"
|
msgstr "Forfattere"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:144
|
#: bookwyrm/templates/book/edit/edit_book_form.html:183
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Remove %(name)s"
|
msgid "Remove %(name)s"
|
||||||
msgstr "Fjern %(name)s"
|
msgstr "Fjern %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:147
|
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Author page for %(name)s"
|
msgid "Author page for %(name)s"
|
||||||
msgstr "Forfatterside for %(name)s"
|
msgstr "Forfatterside for %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:155
|
#: bookwyrm/templates/book/edit/edit_book_form.html:194
|
||||||
msgid "Add Authors:"
|
msgid "Add Authors:"
|
||||||
msgstr "Legg til forfattere:"
|
msgstr "Legg til forfattere:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:158
|
#: bookwyrm/templates/book/edit/edit_book_form.html:197
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:161
|
#: bookwyrm/templates/book/edit/edit_book_form.html:200
|
||||||
msgid "Add Author"
|
msgid "Add Author"
|
||||||
msgstr "Legg til forfatter"
|
msgstr "Legg til forfatter"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:159
|
#: bookwyrm/templates/book/edit/edit_book_form.html:198
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:162
|
#: bookwyrm/templates/book/edit/edit_book_form.html:201
|
||||||
msgid "Jane Doe"
|
msgid "Jane Doe"
|
||||||
msgstr "Kari Nordmann"
|
msgstr "Kari Nordmann"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:165
|
#: bookwyrm/templates/book/edit/edit_book_form.html:207
|
||||||
msgid "Add Another Author"
|
msgid "Add Another Author"
|
||||||
msgstr "Legg til enda en forfatter"
|
msgstr "Legg til enda en forfatter"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:173
|
#: bookwyrm/templates/book/edit/edit_book_form.html:217
|
||||||
#: bookwyrm/templates/shelf/shelf.html:146
|
#: bookwyrm/templates/shelf/shelf.html:146
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Omslag"
|
msgstr "Omslag"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:205
|
#: bookwyrm/templates/book/edit/edit_book_form.html:249
|
||||||
msgid "Physical Properties"
|
msgid "Physical Properties"
|
||||||
msgstr "Fysiske egenskaper"
|
msgstr "Fysiske egenskaper"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:212
|
#: bookwyrm/templates/book/edit/edit_book_form.html:256
|
||||||
#: bookwyrm/templates/book/editions/format_filter.html:6
|
#: bookwyrm/templates/book/editions/format_filter.html:6
|
||||||
msgid "Format:"
|
msgid "Format:"
|
||||||
msgstr "Format:"
|
msgstr "Format:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:224
|
#: bookwyrm/templates/book/edit/edit_book_form.html:268
|
||||||
msgid "Format details:"
|
msgid "Format details:"
|
||||||
msgstr "Formatdetaljer:"
|
msgstr "Formatdetaljer:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:235
|
#: bookwyrm/templates/book/edit/edit_book_form.html:279
|
||||||
msgid "Pages:"
|
msgid "Pages:"
|
||||||
msgstr "Sider:"
|
msgstr "Sider:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:246
|
#: bookwyrm/templates/book/edit/edit_book_form.html:290
|
||||||
msgid "Book Identifiers"
|
msgid "Book Identifiers"
|
||||||
msgstr "Boknøkler"
|
msgstr "Boknøkler"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:251
|
#: bookwyrm/templates/book/edit/edit_book_form.html:295
|
||||||
msgid "ISBN 13:"
|
msgid "ISBN 13:"
|
||||||
msgstr "ISBN 13:"
|
msgstr "ISBN 13:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:260
|
#: bookwyrm/templates/book/edit/edit_book_form.html:304
|
||||||
msgid "ISBN 10:"
|
msgid "ISBN 10:"
|
||||||
msgstr "ISBN 10:"
|
msgstr "ISBN 10:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:269
|
#: bookwyrm/templates/book/edit/edit_book_form.html:313
|
||||||
msgid "Openlibrary ID:"
|
msgid "Openlibrary ID:"
|
||||||
msgstr "Openlibrary nøkkel:"
|
msgstr "Openlibrary nøkkel:"
|
||||||
|
|
||||||
|
@ -1144,12 +1155,8 @@ msgstr "Rediger lenker"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "\n"
|
msgid "Links for \"<em>%(title)s</em>\""
|
||||||
" Links for \"<em>%(title)s</em>\"\n"
|
msgstr ""
|
||||||
" "
|
|
||||||
msgstr "\n"
|
|
||||||
" Lenker for \"<em>%(title)s</em>\"\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
||||||
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
||||||
|
@ -3216,64 +3223,89 @@ msgstr ""
|
||||||
msgid "Color:"
|
msgid "Color:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:6
|
#: bookwyrm/templates/settings/automod/rules.html:7
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:10
|
#: bookwyrm/templates/settings/automod/rules.html:11
|
||||||
#: bookwyrm/templates/settings/layout.html:61
|
#: bookwyrm/templates/settings/layout.html:61
|
||||||
msgid "Auto-moderation rules"
|
msgid "Auto-moderation rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:17
|
#: bookwyrm/templates/settings/automod/rules.html:18
|
||||||
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:18
|
#: bookwyrm/templates/settings/automod/rules.html:19
|
||||||
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:19
|
#: bookwyrm/templates/settings/automod/rules.html:26
|
||||||
msgid "At this time, reports are <em>not</em> being generated automatically, and you must manually trigger a scan."
|
msgid "Schedule:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:23
|
#: bookwyrm/templates/settings/automod/rules.html:33
|
||||||
msgid "Run scan"
|
msgid "Last run:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:31
|
#: bookwyrm/templates/settings/automod/rules.html:40
|
||||||
msgid "Successfully added rule"
|
msgid "Total run count:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:37
|
#: bookwyrm/templates/settings/automod/rules.html:47
|
||||||
msgid "Add Rule"
|
msgid "Enabled:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:46
|
#: bookwyrm/templates/settings/automod/rules.html:59
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:90
|
msgid "Delete schedule"
|
||||||
msgid "String match"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:56
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:93
|
|
||||||
msgid "Flag users"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:63
|
#: bookwyrm/templates/settings/automod/rules.html:63
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:96
|
msgid "Run now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:64
|
||||||
|
msgid "Last run date will not be updated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:69
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:92
|
||||||
|
msgid "Schedule scan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:101
|
||||||
|
msgid "Successfully added rule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:107
|
||||||
|
msgid "Add Rule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:116
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:160
|
||||||
|
msgid "String match"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:126
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:163
|
||||||
|
msgid "Flag users"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:133
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:166
|
||||||
msgid "Flag statuses"
|
msgid "Flag statuses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:70
|
#: bookwyrm/templates/settings/automod/rules.html:140
|
||||||
msgid "Add rule"
|
msgid "Add rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:77
|
#: bookwyrm/templates/settings/automod/rules.html:147
|
||||||
msgid "Current Rules"
|
msgid "Current Rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:81
|
#: bookwyrm/templates/settings/automod/rules.html:151
|
||||||
msgid "Show rules"
|
msgid "Show rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:118
|
#: bookwyrm/templates/settings/automod/rules.html:188
|
||||||
msgid "Remove rule"
|
msgid "Remove rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3523,7 +3555,6 @@ msgid "Import Blocklist"
|
||||||
msgstr "Importér blokkeringsliste"
|
msgstr "Importér blokkeringsliste"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:7
|
|
||||||
msgid "Success!"
|
msgid "Success!"
|
||||||
msgstr "Suksess!"
|
msgstr "Suksess!"
|
||||||
|
|
||||||
|
@ -4565,6 +4596,11 @@ msgstr "Send til strøm"
|
||||||
msgid "Set goal"
|
msgid "Set goal"
|
||||||
msgstr "Sett mål"
|
msgstr "Sett mål"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/snippets/goal_progress.html:7
|
||||||
|
msgctxt "Goal successfully completed"
|
||||||
|
msgid "Success!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:9
|
#: bookwyrm/templates/snippets/goal_progress.html:9
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(percent)s%% complete!"
|
msgid "%(percent)s%% complete!"
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-03-14 19:30+0000\n"
|
"POT-Creation-Date: 2022-03-16 23:12+0000\n"
|
||||||
"PO-Revision-Date: 2022-03-14 21:18\n"
|
"PO-Revision-Date: 2022-03-17 00:48\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Portuguese, Brazilian\n"
|
"Language-Team: Portuguese, Brazilian\n"
|
||||||
"Language: pt\n"
|
"Language: pt\n"
|
||||||
|
@ -17,28 +17,28 @@ msgstr ""
|
||||||
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
||||||
"X-Crowdin-File-ID: 1553\n"
|
"X-Crowdin-File-ID: 1553\n"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:40
|
#: bookwyrm/forms/admin.py:41
|
||||||
msgid "One Day"
|
msgid "One Day"
|
||||||
msgstr "Um dia"
|
msgstr "Um dia"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:41
|
#: bookwyrm/forms/admin.py:42
|
||||||
msgid "One Week"
|
msgid "One Week"
|
||||||
msgstr "Uma semana"
|
msgstr "Uma semana"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:42
|
#: bookwyrm/forms/admin.py:43
|
||||||
msgid "One Month"
|
msgid "One Month"
|
||||||
msgstr "Um mês"
|
msgstr "Um mês"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:43
|
#: bookwyrm/forms/admin.py:44
|
||||||
msgid "Does Not Expire"
|
msgid "Does Not Expire"
|
||||||
msgstr "Não expira"
|
msgstr "Não expira"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:47
|
#: bookwyrm/forms/admin.py:48
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{i} uses"
|
msgid "{i} uses"
|
||||||
msgstr "{i} usos"
|
msgstr "{i} usos"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:48
|
#: bookwyrm/forms/admin.py:49
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Ilimitado"
|
msgstr "Ilimitado"
|
||||||
|
|
||||||
|
@ -261,73 +261,73 @@ msgstr "Citações"
|
||||||
msgid "Everything else"
|
msgid "Everything else"
|
||||||
msgstr "Todo o resto"
|
msgstr "Todo o resto"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home Timeline"
|
msgid "Home Timeline"
|
||||||
msgstr "Linha do tempo"
|
msgstr "Linha do tempo"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "Página inicial"
|
msgstr "Página inicial"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209
|
#: bookwyrm/settings.py:210
|
||||||
msgid "Books Timeline"
|
msgid "Books Timeline"
|
||||||
msgstr "Linha do tempo dos livros"
|
msgstr "Linha do tempo dos livros"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209 bookwyrm/templates/search/layout.html:21
|
#: bookwyrm/settings.py:210 bookwyrm/templates/search/layout.html:21
|
||||||
#: bookwyrm/templates/search/layout.html:42
|
#: bookwyrm/templates/search/layout.html:42
|
||||||
#: bookwyrm/templates/user/layout.html:91
|
#: bookwyrm/templates/user/layout.html:91
|
||||||
msgid "Books"
|
msgid "Books"
|
||||||
msgstr "Livros"
|
msgstr "Livros"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:281
|
#: bookwyrm/settings.py:282
|
||||||
msgid "English"
|
msgid "English"
|
||||||
msgstr "English (Inglês)"
|
msgstr "English (Inglês)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:282
|
#: bookwyrm/settings.py:283
|
||||||
msgid "Deutsch (German)"
|
msgid "Deutsch (German)"
|
||||||
msgstr "Deutsch (Alemão)"
|
msgstr "Deutsch (Alemão)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:283
|
#: bookwyrm/settings.py:284
|
||||||
msgid "Español (Spanish)"
|
msgid "Español (Spanish)"
|
||||||
msgstr "Español (Espanhol)"
|
msgstr "Español (Espanhol)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:284
|
#: bookwyrm/settings.py:285
|
||||||
msgid "Galego (Galician)"
|
msgid "Galego (Galician)"
|
||||||
msgstr "Galego (Galego)"
|
msgstr "Galego (Galego)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:285
|
#: bookwyrm/settings.py:286
|
||||||
msgid "Italiano (Italian)"
|
msgid "Italiano (Italian)"
|
||||||
msgstr "Italiano (Italiano)"
|
msgstr "Italiano (Italiano)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:286
|
#: bookwyrm/settings.py:287
|
||||||
msgid "Français (French)"
|
msgid "Français (French)"
|
||||||
msgstr "Français (Francês)"
|
msgstr "Français (Francês)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:287
|
#: bookwyrm/settings.py:288
|
||||||
msgid "Lietuvių (Lithuanian)"
|
msgid "Lietuvių (Lithuanian)"
|
||||||
msgstr "Lietuvių (Lituano)"
|
msgstr "Lietuvių (Lituano)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:288
|
#: bookwyrm/settings.py:289
|
||||||
msgid "Norsk (Norwegian)"
|
msgid "Norsk (Norwegian)"
|
||||||
msgstr "Norsk (Norueguês)"
|
msgstr "Norsk (Norueguês)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:289
|
#: bookwyrm/settings.py:290
|
||||||
msgid "Português do Brasil (Brazilian Portuguese)"
|
msgid "Português do Brasil (Brazilian Portuguese)"
|
||||||
msgstr "Português do Brasil (Português do Brasil)"
|
msgstr "Português do Brasil (Português do Brasil)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:290
|
#: bookwyrm/settings.py:291
|
||||||
msgid "Português Europeu (European Portuguese)"
|
msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Português Europeu)"
|
msgstr "Português Europeu (Português Europeu)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:291
|
#: bookwyrm/settings.py:292
|
||||||
msgid "Svenska (Swedish)"
|
msgid "Svenska (Swedish)"
|
||||||
msgstr "Svenska (Sueco)"
|
msgstr "Svenska (Sueco)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:292
|
#: bookwyrm/settings.py:293
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Chinês simplificado)"
|
msgstr "简体中文 (Chinês simplificado)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:293
|
#: bookwyrm/settings.py:294
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Chinês tradicional)"
|
msgstr "繁體中文 (Chinês tradicional)"
|
||||||
|
|
||||||
|
@ -679,8 +679,7 @@ msgstr "Nome:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:44
|
#: bookwyrm/templates/author/edit_author.html:44
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
#: bookwyrm/templates/book/edit/edit_book_form.html:146
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:107
|
|
||||||
msgid "Separate multiple values with commas."
|
msgid "Separate multiple values with commas."
|
||||||
msgstr "Separe com vírgulas."
|
msgstr "Separe com vírgulas."
|
||||||
|
|
||||||
|
@ -709,7 +708,7 @@ msgid "Openlibrary key:"
|
||||||
msgstr "Chave Openlibrary:"
|
msgstr "Chave Openlibrary:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:84
|
#: bookwyrm/templates/author/edit_author.html:84
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:278
|
#: bookwyrm/templates/book/edit/edit_book_form.html:322
|
||||||
msgid "Inventaire ID:"
|
msgid "Inventaire ID:"
|
||||||
msgstr "ID Inventaire:"
|
msgstr "ID Inventaire:"
|
||||||
|
|
||||||
|
@ -892,12 +891,12 @@ msgid "ISBN:"
|
||||||
msgstr "ISBN:"
|
msgstr "ISBN:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:15
|
#: bookwyrm/templates/book/book_identifiers.html:15
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:287
|
#: bookwyrm/templates/book/edit/edit_book_form.html:331
|
||||||
msgid "OCLC Number:"
|
msgid "OCLC Number:"
|
||||||
msgstr "Número OCLC:"
|
msgstr "Número OCLC:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:22
|
#: bookwyrm/templates/book/book_identifiers.html:22
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:296
|
#: bookwyrm/templates/book/edit/edit_book_form.html:340
|
||||||
msgid "ASIN:"
|
msgid "ASIN:"
|
||||||
msgstr "ASIN:"
|
msgstr "ASIN:"
|
||||||
|
|
||||||
|
@ -906,12 +905,12 @@ msgid "Add cover"
|
||||||
msgstr "Adicionar capa"
|
msgstr "Adicionar capa"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:17
|
#: bookwyrm/templates/book/cover_add_modal.html:17
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
#: bookwyrm/templates/book/edit/edit_book_form.html:230
|
||||||
msgid "Upload cover:"
|
msgid "Upload cover:"
|
||||||
msgstr "Enviar capa:"
|
msgstr "Enviar capa:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:23
|
#: bookwyrm/templates/book/cover_add_modal.html:23
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:192
|
#: bookwyrm/templates/book/edit/edit_book_form.html:236
|
||||||
msgid "Load cover from url:"
|
msgid "Load cover from url:"
|
||||||
msgstr "Carregar capa do endereço:"
|
msgstr "Carregar capa do endereço:"
|
||||||
|
|
||||||
|
@ -1006,89 +1005,101 @@ msgstr "Idiomas:"
|
||||||
msgid "Subjects:"
|
msgid "Subjects:"
|
||||||
msgstr "Assuntos:"
|
msgstr "Assuntos:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:98
|
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
||||||
|
msgid "Add subject"
|
||||||
|
msgstr "Adicionar assunto"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:106
|
||||||
|
msgid "Remove subject"
|
||||||
|
msgstr "Excluir assunto"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:129
|
||||||
|
msgid "Add Another Subject"
|
||||||
|
msgstr "Adicionar outro assunto"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:137
|
||||||
msgid "Publication"
|
msgid "Publication"
|
||||||
msgstr "Publicação"
|
msgstr "Publicação"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:103
|
#: bookwyrm/templates/book/edit/edit_book_form.html:142
|
||||||
msgid "Publisher:"
|
msgid "Publisher:"
|
||||||
msgstr "Editora:"
|
msgstr "Editora:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:115
|
#: bookwyrm/templates/book/edit/edit_book_form.html:154
|
||||||
msgid "First published date:"
|
msgid "First published date:"
|
||||||
msgstr "Data da primeira publicação:"
|
msgstr "Data da primeira publicação:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:124
|
#: bookwyrm/templates/book/edit/edit_book_form.html:163
|
||||||
msgid "Published date:"
|
msgid "Published date:"
|
||||||
msgstr "Data de publicação:"
|
msgstr "Data de publicação:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:135
|
#: bookwyrm/templates/book/edit/edit_book_form.html:174
|
||||||
msgid "Authors"
|
msgid "Authors"
|
||||||
msgstr "Autores/as"
|
msgstr "Autores/as"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:144
|
#: bookwyrm/templates/book/edit/edit_book_form.html:183
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Remove %(name)s"
|
msgid "Remove %(name)s"
|
||||||
msgstr "Remover %(name)s"
|
msgstr "Remover %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:147
|
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Author page for %(name)s"
|
msgid "Author page for %(name)s"
|
||||||
msgstr "Página de autor/a de %(name)s"
|
msgstr "Página de autor/a de %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:155
|
#: bookwyrm/templates/book/edit/edit_book_form.html:194
|
||||||
msgid "Add Authors:"
|
msgid "Add Authors:"
|
||||||
msgstr "Adicionar autores/as:"
|
msgstr "Adicionar autores/as:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:158
|
#: bookwyrm/templates/book/edit/edit_book_form.html:197
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:161
|
#: bookwyrm/templates/book/edit/edit_book_form.html:200
|
||||||
msgid "Add Author"
|
msgid "Add Author"
|
||||||
msgstr "Adicionar autor/a"
|
msgstr "Adicionar autor/a"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:159
|
#: bookwyrm/templates/book/edit/edit_book_form.html:198
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:162
|
#: bookwyrm/templates/book/edit/edit_book_form.html:201
|
||||||
msgid "Jane Doe"
|
msgid "Jane Doe"
|
||||||
msgstr "Fulana"
|
msgstr "Fulana"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:165
|
#: bookwyrm/templates/book/edit/edit_book_form.html:207
|
||||||
msgid "Add Another Author"
|
msgid "Add Another Author"
|
||||||
msgstr "Adicionar outro/a autor/a"
|
msgstr "Adicionar outro/a autor/a"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:173
|
#: bookwyrm/templates/book/edit/edit_book_form.html:217
|
||||||
#: bookwyrm/templates/shelf/shelf.html:146
|
#: bookwyrm/templates/shelf/shelf.html:146
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Capa"
|
msgstr "Capa"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:205
|
#: bookwyrm/templates/book/edit/edit_book_form.html:249
|
||||||
msgid "Physical Properties"
|
msgid "Physical Properties"
|
||||||
msgstr "Propriedades físicas"
|
msgstr "Propriedades físicas"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:212
|
#: bookwyrm/templates/book/edit/edit_book_form.html:256
|
||||||
#: bookwyrm/templates/book/editions/format_filter.html:6
|
#: bookwyrm/templates/book/editions/format_filter.html:6
|
||||||
msgid "Format:"
|
msgid "Format:"
|
||||||
msgstr "Formato:"
|
msgstr "Formato:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:224
|
#: bookwyrm/templates/book/edit/edit_book_form.html:268
|
||||||
msgid "Format details:"
|
msgid "Format details:"
|
||||||
msgstr "Detalhes do formato:"
|
msgstr "Detalhes do formato:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:235
|
#: bookwyrm/templates/book/edit/edit_book_form.html:279
|
||||||
msgid "Pages:"
|
msgid "Pages:"
|
||||||
msgstr "Páginas:"
|
msgstr "Páginas:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:246
|
#: bookwyrm/templates/book/edit/edit_book_form.html:290
|
||||||
msgid "Book Identifiers"
|
msgid "Book Identifiers"
|
||||||
msgstr "Identificadores do livro"
|
msgstr "Identificadores do livro"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:251
|
#: bookwyrm/templates/book/edit/edit_book_form.html:295
|
||||||
msgid "ISBN 13:"
|
msgid "ISBN 13:"
|
||||||
msgstr "ISBN 13:"
|
msgstr "ISBN 13:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:260
|
#: bookwyrm/templates/book/edit/edit_book_form.html:304
|
||||||
msgid "ISBN 10:"
|
msgid "ISBN 10:"
|
||||||
msgstr "ISBN 10:"
|
msgstr "ISBN 10:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:269
|
#: bookwyrm/templates/book/edit/edit_book_form.html:313
|
||||||
msgid "Openlibrary ID:"
|
msgid "Openlibrary ID:"
|
||||||
msgstr "Openlibrary ID:"
|
msgstr "Openlibrary ID:"
|
||||||
|
|
||||||
|
@ -1144,12 +1155,8 @@ msgstr "Editar links"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "\n"
|
msgid "Links for \"<em>%(title)s</em>\""
|
||||||
" Links for \"<em>%(title)s</em>\"\n"
|
msgstr "Links para \"<em>%(title)s</em>\""
|
||||||
" "
|
|
||||||
msgstr "\n"
|
|
||||||
" Links de \"<em>%(title)s</em>\"\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
||||||
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
||||||
|
@ -3218,64 +3225,89 @@ msgstr "Configurações de exibição"
|
||||||
msgid "Color:"
|
msgid "Color:"
|
||||||
msgstr "Cor:"
|
msgstr "Cor:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:6
|
#: bookwyrm/templates/settings/automod/rules.html:7
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:10
|
#: bookwyrm/templates/settings/automod/rules.html:11
|
||||||
#: bookwyrm/templates/settings/layout.html:61
|
#: bookwyrm/templates/settings/layout.html:61
|
||||||
msgid "Auto-moderation rules"
|
msgid "Auto-moderation rules"
|
||||||
msgstr "Regras de moderação automática"
|
msgstr "Regras de moderação automática"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:17
|
#: bookwyrm/templates/settings/automod/rules.html:18
|
||||||
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
||||||
msgstr "As regras de moderação automática produzirão relatórios para qualquer usuário local ou publicação com textos idênticos ao fornecido."
|
msgstr "As regras de moderação automática produzirão relatórios para qualquer usuário local ou publicação com textos idênticos ao fornecido."
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:18
|
#: bookwyrm/templates/settings/automod/rules.html:19
|
||||||
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
||||||
msgstr "Usuários ou publicações já denunciados (independente de terem ou não sido solucionados) não serão sinalizados."
|
msgstr "Usuários ou publicações já denunciados (independente de terem ou não sido solucionados) não serão sinalizados."
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:19
|
#: bookwyrm/templates/settings/automod/rules.html:26
|
||||||
msgid "At this time, reports are <em>not</em> being generated automatically, and you must manually trigger a scan."
|
msgid "Schedule:"
|
||||||
msgstr "Neste momento os relatórios <em>não</em> estão sendo gerados automaticamente; você deve iniciar manualmente uma verificação."
|
msgstr "Agendamento:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:23
|
#: bookwyrm/templates/settings/automod/rules.html:33
|
||||||
msgid "Run scan"
|
msgid "Last run:"
|
||||||
msgstr "Iniciar verificação"
|
msgstr "Última execução:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:31
|
#: bookwyrm/templates/settings/automod/rules.html:40
|
||||||
|
msgid "Total run count:"
|
||||||
|
msgstr "Número total de execuções:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:47
|
||||||
|
msgid "Enabled:"
|
||||||
|
msgstr "Habilitado:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:59
|
||||||
|
msgid "Delete schedule"
|
||||||
|
msgstr "Excluir agendamento"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:63
|
||||||
|
msgid "Run now"
|
||||||
|
msgstr "Executar agora"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:64
|
||||||
|
msgid "Last run date will not be updated"
|
||||||
|
msgstr "A data da última execução não será atualizada"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:69
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:92
|
||||||
|
msgid "Schedule scan"
|
||||||
|
msgstr "Agendar verificação"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:101
|
||||||
msgid "Successfully added rule"
|
msgid "Successfully added rule"
|
||||||
msgstr "Regra adicionada com sucesso"
|
msgstr "Regra adicionada com sucesso"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:37
|
#: bookwyrm/templates/settings/automod/rules.html:107
|
||||||
msgid "Add Rule"
|
msgid "Add Rule"
|
||||||
msgstr "Adicionar regra"
|
msgstr "Adicionar regra"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:46
|
#: bookwyrm/templates/settings/automod/rules.html:116
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:90
|
#: bookwyrm/templates/settings/automod/rules.html:160
|
||||||
msgid "String match"
|
msgid "String match"
|
||||||
msgstr "Texto correspondente"
|
msgstr "Texto correspondente"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:56
|
#: bookwyrm/templates/settings/automod/rules.html:126
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:93
|
#: bookwyrm/templates/settings/automod/rules.html:163
|
||||||
msgid "Flag users"
|
msgid "Flag users"
|
||||||
msgstr "Sinalizar usuários"
|
msgstr "Sinalizar usuários"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:63
|
#: bookwyrm/templates/settings/automod/rules.html:133
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:96
|
#: bookwyrm/templates/settings/automod/rules.html:166
|
||||||
msgid "Flag statuses"
|
msgid "Flag statuses"
|
||||||
msgstr "Sinalizar publicações"
|
msgstr "Sinalizar publicações"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:70
|
#: bookwyrm/templates/settings/automod/rules.html:140
|
||||||
msgid "Add rule"
|
msgid "Add rule"
|
||||||
msgstr "Adicionar regra"
|
msgstr "Adicionar regra"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:77
|
#: bookwyrm/templates/settings/automod/rules.html:147
|
||||||
msgid "Current Rules"
|
msgid "Current Rules"
|
||||||
msgstr "Regras atuais"
|
msgstr "Regras atuais"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:81
|
#: bookwyrm/templates/settings/automod/rules.html:151
|
||||||
msgid "Show rules"
|
msgid "Show rules"
|
||||||
msgstr "Mostrar regras"
|
msgstr "Mostrar regras"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:118
|
#: bookwyrm/templates/settings/automod/rules.html:188
|
||||||
msgid "Remove rule"
|
msgid "Remove rule"
|
||||||
msgstr "Excluir regra"
|
msgstr "Excluir regra"
|
||||||
|
|
||||||
|
@ -3525,7 +3557,6 @@ msgid "Import Blocklist"
|
||||||
msgstr "Importar lista de bloqueio"
|
msgstr "Importar lista de bloqueio"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:7
|
|
||||||
msgid "Success!"
|
msgid "Success!"
|
||||||
msgstr "Sucesso!"
|
msgstr "Sucesso!"
|
||||||
|
|
||||||
|
@ -4567,6 +4598,11 @@ msgstr "Publicar"
|
||||||
msgid "Set goal"
|
msgid "Set goal"
|
||||||
msgstr "Definir meta"
|
msgstr "Definir meta"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/snippets/goal_progress.html:7
|
||||||
|
msgctxt "Goal successfully completed"
|
||||||
|
msgid "Success!"
|
||||||
|
msgstr "Sucesso!"
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:9
|
#: bookwyrm/templates/snippets/goal_progress.html:9
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(percent)s%% complete!"
|
msgid "%(percent)s%% complete!"
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-03-14 19:30+0000\n"
|
"POT-Creation-Date: 2022-03-16 23:12+0000\n"
|
||||||
"PO-Revision-Date: 2022-03-14 20:18\n"
|
"PO-Revision-Date: 2022-03-16 23:34\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Portuguese\n"
|
"Language-Team: Portuguese\n"
|
||||||
"Language: pt\n"
|
"Language: pt\n"
|
||||||
|
@ -17,28 +17,28 @@ msgstr ""
|
||||||
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
||||||
"X-Crowdin-File-ID: 1553\n"
|
"X-Crowdin-File-ID: 1553\n"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:40
|
#: bookwyrm/forms/admin.py:41
|
||||||
msgid "One Day"
|
msgid "One Day"
|
||||||
msgstr "Um Dia"
|
msgstr "Um Dia"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:41
|
#: bookwyrm/forms/admin.py:42
|
||||||
msgid "One Week"
|
msgid "One Week"
|
||||||
msgstr "Uma Semana"
|
msgstr "Uma Semana"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:42
|
#: bookwyrm/forms/admin.py:43
|
||||||
msgid "One Month"
|
msgid "One Month"
|
||||||
msgstr "Um Mês"
|
msgstr "Um Mês"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:43
|
#: bookwyrm/forms/admin.py:44
|
||||||
msgid "Does Not Expire"
|
msgid "Does Not Expire"
|
||||||
msgstr "Não Expira"
|
msgstr "Não Expira"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:47
|
#: bookwyrm/forms/admin.py:48
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{i} uses"
|
msgid "{i} uses"
|
||||||
msgstr "{i} utilizações"
|
msgstr "{i} utilizações"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:48
|
#: bookwyrm/forms/admin.py:49
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Ilimitado"
|
msgstr "Ilimitado"
|
||||||
|
|
||||||
|
@ -261,73 +261,73 @@ msgstr "Citações"
|
||||||
msgid "Everything else"
|
msgid "Everything else"
|
||||||
msgstr "Tudo o resto"
|
msgstr "Tudo o resto"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home Timeline"
|
msgid "Home Timeline"
|
||||||
msgstr "Cronograma Inicial"
|
msgstr "Cronograma Inicial"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "Início"
|
msgstr "Início"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209
|
#: bookwyrm/settings.py:210
|
||||||
msgid "Books Timeline"
|
msgid "Books Timeline"
|
||||||
msgstr "Cronograma de Livros"
|
msgstr "Cronograma de Livros"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209 bookwyrm/templates/search/layout.html:21
|
#: bookwyrm/settings.py:210 bookwyrm/templates/search/layout.html:21
|
||||||
#: bookwyrm/templates/search/layout.html:42
|
#: bookwyrm/templates/search/layout.html:42
|
||||||
#: bookwyrm/templates/user/layout.html:91
|
#: bookwyrm/templates/user/layout.html:91
|
||||||
msgid "Books"
|
msgid "Books"
|
||||||
msgstr "Livros"
|
msgstr "Livros"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:281
|
#: bookwyrm/settings.py:282
|
||||||
msgid "English"
|
msgid "English"
|
||||||
msgstr "Inglês"
|
msgstr "Inglês"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:282
|
#: bookwyrm/settings.py:283
|
||||||
msgid "Deutsch (German)"
|
msgid "Deutsch (German)"
|
||||||
msgstr "Deutsch (Alemão)"
|
msgstr "Deutsch (Alemão)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:283
|
#: bookwyrm/settings.py:284
|
||||||
msgid "Español (Spanish)"
|
msgid "Español (Spanish)"
|
||||||
msgstr "Español (Espanhol)"
|
msgstr "Español (Espanhol)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:284
|
#: bookwyrm/settings.py:285
|
||||||
msgid "Galego (Galician)"
|
msgid "Galego (Galician)"
|
||||||
msgstr "Galego (Galician)"
|
msgstr "Galego (Galician)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:285
|
#: bookwyrm/settings.py:286
|
||||||
msgid "Italiano (Italian)"
|
msgid "Italiano (Italian)"
|
||||||
msgstr "Italiano (Italiano)"
|
msgstr "Italiano (Italiano)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:286
|
#: bookwyrm/settings.py:287
|
||||||
msgid "Français (French)"
|
msgid "Français (French)"
|
||||||
msgstr "Français (Francês)"
|
msgstr "Français (Francês)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:287
|
#: bookwyrm/settings.py:288
|
||||||
msgid "Lietuvių (Lithuanian)"
|
msgid "Lietuvių (Lithuanian)"
|
||||||
msgstr "Lietuvių (lituano)"
|
msgstr "Lietuvių (lituano)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:288
|
#: bookwyrm/settings.py:289
|
||||||
msgid "Norsk (Norwegian)"
|
msgid "Norsk (Norwegian)"
|
||||||
msgstr "Norsk (Norueguês)"
|
msgstr "Norsk (Norueguês)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:289
|
#: bookwyrm/settings.py:290
|
||||||
msgid "Português do Brasil (Brazilian Portuguese)"
|
msgid "Português do Brasil (Brazilian Portuguese)"
|
||||||
msgstr "Português do Brasil (Português brasileiro)"
|
msgstr "Português do Brasil (Português brasileiro)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:290
|
#: bookwyrm/settings.py:291
|
||||||
msgid "Português Europeu (European Portuguese)"
|
msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português (Português Europeu)"
|
msgstr "Português (Português Europeu)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:291
|
#: bookwyrm/settings.py:292
|
||||||
msgid "Svenska (Swedish)"
|
msgid "Svenska (Swedish)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/settings.py:292
|
#: bookwyrm/settings.py:293
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Chinês simplificado)"
|
msgstr "简体中文 (Chinês simplificado)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:293
|
#: bookwyrm/settings.py:294
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Chinês tradicional)"
|
msgstr "繁體中文 (Chinês tradicional)"
|
||||||
|
|
||||||
|
@ -679,8 +679,7 @@ msgstr "Nome:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:44
|
#: bookwyrm/templates/author/edit_author.html:44
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
#: bookwyrm/templates/book/edit/edit_book_form.html:146
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:107
|
|
||||||
msgid "Separate multiple values with commas."
|
msgid "Separate multiple values with commas."
|
||||||
msgstr "Separe vários valores com vírgulas."
|
msgstr "Separe vários valores com vírgulas."
|
||||||
|
|
||||||
|
@ -709,7 +708,7 @@ msgid "Openlibrary key:"
|
||||||
msgstr "Chave da Openlibrary:"
|
msgstr "Chave da Openlibrary:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:84
|
#: bookwyrm/templates/author/edit_author.html:84
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:278
|
#: bookwyrm/templates/book/edit/edit_book_form.html:322
|
||||||
msgid "Inventaire ID:"
|
msgid "Inventaire ID:"
|
||||||
msgstr "ID do Inventaire:"
|
msgstr "ID do Inventaire:"
|
||||||
|
|
||||||
|
@ -892,12 +891,12 @@ msgid "ISBN:"
|
||||||
msgstr "ISBN:"
|
msgstr "ISBN:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:15
|
#: bookwyrm/templates/book/book_identifiers.html:15
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:287
|
#: bookwyrm/templates/book/edit/edit_book_form.html:331
|
||||||
msgid "OCLC Number:"
|
msgid "OCLC Number:"
|
||||||
msgstr "Número OCLC:"
|
msgstr "Número OCLC:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:22
|
#: bookwyrm/templates/book/book_identifiers.html:22
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:296
|
#: bookwyrm/templates/book/edit/edit_book_form.html:340
|
||||||
msgid "ASIN:"
|
msgid "ASIN:"
|
||||||
msgstr "ASIN:"
|
msgstr "ASIN:"
|
||||||
|
|
||||||
|
@ -906,12 +905,12 @@ msgid "Add cover"
|
||||||
msgstr "Adicionar uma capa"
|
msgstr "Adicionar uma capa"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:17
|
#: bookwyrm/templates/book/cover_add_modal.html:17
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
#: bookwyrm/templates/book/edit/edit_book_form.html:230
|
||||||
msgid "Upload cover:"
|
msgid "Upload cover:"
|
||||||
msgstr "Carregar uma capa:"
|
msgstr "Carregar uma capa:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:23
|
#: bookwyrm/templates/book/cover_add_modal.html:23
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:192
|
#: bookwyrm/templates/book/edit/edit_book_form.html:236
|
||||||
msgid "Load cover from url:"
|
msgid "Load cover from url:"
|
||||||
msgstr "Carregar capa através de um Url:"
|
msgstr "Carregar capa através de um Url:"
|
||||||
|
|
||||||
|
@ -1006,89 +1005,101 @@ msgstr "Idiomas:"
|
||||||
msgid "Subjects:"
|
msgid "Subjects:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:98
|
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
||||||
|
msgid "Add subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:106
|
||||||
|
msgid "Remove subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:129
|
||||||
|
msgid "Add Another Subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:137
|
||||||
msgid "Publication"
|
msgid "Publication"
|
||||||
msgstr "Publicação"
|
msgstr "Publicação"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:103
|
#: bookwyrm/templates/book/edit/edit_book_form.html:142
|
||||||
msgid "Publisher:"
|
msgid "Publisher:"
|
||||||
msgstr "Editora:"
|
msgstr "Editora:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:115
|
#: bookwyrm/templates/book/edit/edit_book_form.html:154
|
||||||
msgid "First published date:"
|
msgid "First published date:"
|
||||||
msgstr "Primeira data de publicação:"
|
msgstr "Primeira data de publicação:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:124
|
#: bookwyrm/templates/book/edit/edit_book_form.html:163
|
||||||
msgid "Published date:"
|
msgid "Published date:"
|
||||||
msgstr "Data de publicação:"
|
msgstr "Data de publicação:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:135
|
#: bookwyrm/templates/book/edit/edit_book_form.html:174
|
||||||
msgid "Authors"
|
msgid "Authors"
|
||||||
msgstr "Autor(es/as)"
|
msgstr "Autor(es/as)"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:144
|
#: bookwyrm/templates/book/edit/edit_book_form.html:183
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Remove %(name)s"
|
msgid "Remove %(name)s"
|
||||||
msgstr "Remover %(name)s"
|
msgstr "Remover %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:147
|
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Author page for %(name)s"
|
msgid "Author page for %(name)s"
|
||||||
msgstr "Página de autor do %(name)s"
|
msgstr "Página de autor do %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:155
|
#: bookwyrm/templates/book/edit/edit_book_form.html:194
|
||||||
msgid "Add Authors:"
|
msgid "Add Authors:"
|
||||||
msgstr "Adicionar Autor(es/as):"
|
msgstr "Adicionar Autor(es/as):"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:158
|
#: bookwyrm/templates/book/edit/edit_book_form.html:197
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:161
|
#: bookwyrm/templates/book/edit/edit_book_form.html:200
|
||||||
msgid "Add Author"
|
msgid "Add Author"
|
||||||
msgstr "Adicionar Autor(a)"
|
msgstr "Adicionar Autor(a)"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:159
|
#: bookwyrm/templates/book/edit/edit_book_form.html:198
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:162
|
#: bookwyrm/templates/book/edit/edit_book_form.html:201
|
||||||
msgid "Jane Doe"
|
msgid "Jane Doe"
|
||||||
msgstr "Joana Sem-nome"
|
msgstr "Joana Sem-nome"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:165
|
#: bookwyrm/templates/book/edit/edit_book_form.html:207
|
||||||
msgid "Add Another Author"
|
msgid "Add Another Author"
|
||||||
msgstr "Adicionar outro autor(a)"
|
msgstr "Adicionar outro autor(a)"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:173
|
#: bookwyrm/templates/book/edit/edit_book_form.html:217
|
||||||
#: bookwyrm/templates/shelf/shelf.html:146
|
#: bookwyrm/templates/shelf/shelf.html:146
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Capa"
|
msgstr "Capa"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:205
|
#: bookwyrm/templates/book/edit/edit_book_form.html:249
|
||||||
msgid "Physical Properties"
|
msgid "Physical Properties"
|
||||||
msgstr "Propriedades físicas"
|
msgstr "Propriedades físicas"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:212
|
#: bookwyrm/templates/book/edit/edit_book_form.html:256
|
||||||
#: bookwyrm/templates/book/editions/format_filter.html:6
|
#: bookwyrm/templates/book/editions/format_filter.html:6
|
||||||
msgid "Format:"
|
msgid "Format:"
|
||||||
msgstr "Formato:"
|
msgstr "Formato:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:224
|
#: bookwyrm/templates/book/edit/edit_book_form.html:268
|
||||||
msgid "Format details:"
|
msgid "Format details:"
|
||||||
msgstr "Detalhes do formato:"
|
msgstr "Detalhes do formato:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:235
|
#: bookwyrm/templates/book/edit/edit_book_form.html:279
|
||||||
msgid "Pages:"
|
msgid "Pages:"
|
||||||
msgstr "Páginas:"
|
msgstr "Páginas:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:246
|
#: bookwyrm/templates/book/edit/edit_book_form.html:290
|
||||||
msgid "Book Identifiers"
|
msgid "Book Identifiers"
|
||||||
msgstr "Identificadores de Livros"
|
msgstr "Identificadores de Livros"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:251
|
#: bookwyrm/templates/book/edit/edit_book_form.html:295
|
||||||
msgid "ISBN 13:"
|
msgid "ISBN 13:"
|
||||||
msgstr "ISBN 13:"
|
msgstr "ISBN 13:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:260
|
#: bookwyrm/templates/book/edit/edit_book_form.html:304
|
||||||
msgid "ISBN 10:"
|
msgid "ISBN 10:"
|
||||||
msgstr "ISBN 10:"
|
msgstr "ISBN 10:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:269
|
#: bookwyrm/templates/book/edit/edit_book_form.html:313
|
||||||
msgid "Openlibrary ID:"
|
msgid "Openlibrary ID:"
|
||||||
msgstr "ID da Openlibrary:"
|
msgstr "ID da Openlibrary:"
|
||||||
|
|
||||||
|
@ -1144,9 +1155,7 @@ msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "\n"
|
msgid "Links for \"<em>%(title)s</em>\""
|
||||||
" Links for \"<em>%(title)s</em>\"\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
||||||
|
@ -3214,64 +3223,89 @@ msgstr ""
|
||||||
msgid "Color:"
|
msgid "Color:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:6
|
#: bookwyrm/templates/settings/automod/rules.html:7
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:10
|
#: bookwyrm/templates/settings/automod/rules.html:11
|
||||||
#: bookwyrm/templates/settings/layout.html:61
|
#: bookwyrm/templates/settings/layout.html:61
|
||||||
msgid "Auto-moderation rules"
|
msgid "Auto-moderation rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:17
|
#: bookwyrm/templates/settings/automod/rules.html:18
|
||||||
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:18
|
#: bookwyrm/templates/settings/automod/rules.html:19
|
||||||
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:19
|
#: bookwyrm/templates/settings/automod/rules.html:26
|
||||||
msgid "At this time, reports are <em>not</em> being generated automatically, and you must manually trigger a scan."
|
msgid "Schedule:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:23
|
#: bookwyrm/templates/settings/automod/rules.html:33
|
||||||
msgid "Run scan"
|
msgid "Last run:"
|
||||||
msgstr "Executar scan"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:31
|
|
||||||
msgid "Successfully added rule"
|
|
||||||
msgstr "Regra adicionada com sucesso"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:37
|
|
||||||
msgid "Add Rule"
|
|
||||||
msgstr "Adicionar regra"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:46
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:90
|
|
||||||
msgid "String match"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:56
|
#: bookwyrm/templates/settings/automod/rules.html:40
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:93
|
msgid "Total run count:"
|
||||||
msgid "Flag users"
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:47
|
||||||
|
msgid "Enabled:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:59
|
||||||
|
msgid "Delete schedule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:63
|
#: bookwyrm/templates/settings/automod/rules.html:63
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:96
|
msgid "Run now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:64
|
||||||
|
msgid "Last run date will not be updated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:69
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:92
|
||||||
|
msgid "Schedule scan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:101
|
||||||
|
msgid "Successfully added rule"
|
||||||
|
msgstr "Regra adicionada com sucesso"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:107
|
||||||
|
msgid "Add Rule"
|
||||||
|
msgstr "Adicionar regra"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:116
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:160
|
||||||
|
msgid "String match"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:126
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:163
|
||||||
|
msgid "Flag users"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:133
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:166
|
||||||
msgid "Flag statuses"
|
msgid "Flag statuses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:70
|
#: bookwyrm/templates/settings/automod/rules.html:140
|
||||||
msgid "Add rule"
|
msgid "Add rule"
|
||||||
msgstr "Adicionar regra"
|
msgstr "Adicionar regra"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:77
|
#: bookwyrm/templates/settings/automod/rules.html:147
|
||||||
msgid "Current Rules"
|
msgid "Current Rules"
|
||||||
msgstr "Regras atuais"
|
msgstr "Regras atuais"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:81
|
#: bookwyrm/templates/settings/automod/rules.html:151
|
||||||
msgid "Show rules"
|
msgid "Show rules"
|
||||||
msgstr "Mostrar as regras"
|
msgstr "Mostrar as regras"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:118
|
#: bookwyrm/templates/settings/automod/rules.html:188
|
||||||
msgid "Remove rule"
|
msgid "Remove rule"
|
||||||
msgstr "Remover regra"
|
msgstr "Remover regra"
|
||||||
|
|
||||||
|
@ -3521,7 +3555,6 @@ msgid "Import Blocklist"
|
||||||
msgstr "Importar lista de bloqueios"
|
msgstr "Importar lista de bloqueios"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:7
|
|
||||||
msgid "Success!"
|
msgid "Success!"
|
||||||
msgstr "Sucesso!"
|
msgstr "Sucesso!"
|
||||||
|
|
||||||
|
@ -4563,6 +4596,11 @@ msgstr "Publicar para o feed"
|
||||||
msgid "Set goal"
|
msgid "Set goal"
|
||||||
msgstr "Definir uma meta"
|
msgstr "Definir uma meta"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/snippets/goal_progress.html:7
|
||||||
|
msgctxt "Goal successfully completed"
|
||||||
|
msgid "Success!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:9
|
#: bookwyrm/templates/snippets/goal_progress.html:9
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(percent)s%% complete!"
|
msgid "%(percent)s%% complete!"
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-03-14 19:30+0000\n"
|
"POT-Creation-Date: 2022-03-16 23:12+0000\n"
|
||||||
"PO-Revision-Date: 2022-03-14 20:17\n"
|
"PO-Revision-Date: 2022-03-16 23:34\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Swedish\n"
|
"Language-Team: Swedish\n"
|
||||||
"Language: sv\n"
|
"Language: sv\n"
|
||||||
|
@ -17,28 +17,28 @@ msgstr ""
|
||||||
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
||||||
"X-Crowdin-File-ID: 1553\n"
|
"X-Crowdin-File-ID: 1553\n"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:40
|
#: bookwyrm/forms/admin.py:41
|
||||||
msgid "One Day"
|
msgid "One Day"
|
||||||
msgstr "En dag"
|
msgstr "En dag"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:41
|
#: bookwyrm/forms/admin.py:42
|
||||||
msgid "One Week"
|
msgid "One Week"
|
||||||
msgstr "En vecka"
|
msgstr "En vecka"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:42
|
#: bookwyrm/forms/admin.py:43
|
||||||
msgid "One Month"
|
msgid "One Month"
|
||||||
msgstr "En månad"
|
msgstr "En månad"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:43
|
#: bookwyrm/forms/admin.py:44
|
||||||
msgid "Does Not Expire"
|
msgid "Does Not Expire"
|
||||||
msgstr "Slutar inte gälla"
|
msgstr "Slutar inte gälla"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:47
|
#: bookwyrm/forms/admin.py:48
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{i} uses"
|
msgid "{i} uses"
|
||||||
msgstr "{i} använder"
|
msgstr "{i} använder"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:48
|
#: bookwyrm/forms/admin.py:49
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Obegränsad"
|
msgstr "Obegränsad"
|
||||||
|
|
||||||
|
@ -261,73 +261,73 @@ msgstr "Citationer"
|
||||||
msgid "Everything else"
|
msgid "Everything else"
|
||||||
msgstr "Allt annat"
|
msgstr "Allt annat"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home Timeline"
|
msgid "Home Timeline"
|
||||||
msgstr "Tidslinje för Hem"
|
msgstr "Tidslinje för Hem"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "Hem"
|
msgstr "Hem"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209
|
#: bookwyrm/settings.py:210
|
||||||
msgid "Books Timeline"
|
msgid "Books Timeline"
|
||||||
msgstr "Tidslinjer för böcker"
|
msgstr "Tidslinjer för böcker"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209 bookwyrm/templates/search/layout.html:21
|
#: bookwyrm/settings.py:210 bookwyrm/templates/search/layout.html:21
|
||||||
#: bookwyrm/templates/search/layout.html:42
|
#: bookwyrm/templates/search/layout.html:42
|
||||||
#: bookwyrm/templates/user/layout.html:91
|
#: bookwyrm/templates/user/layout.html:91
|
||||||
msgid "Books"
|
msgid "Books"
|
||||||
msgstr "Böcker"
|
msgstr "Böcker"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:281
|
#: bookwyrm/settings.py:282
|
||||||
msgid "English"
|
msgid "English"
|
||||||
msgstr "Engelska"
|
msgstr "Engelska"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:282
|
#: bookwyrm/settings.py:283
|
||||||
msgid "Deutsch (German)"
|
msgid "Deutsch (German)"
|
||||||
msgstr "Tyska (Tysk)"
|
msgstr "Tyska (Tysk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:283
|
#: bookwyrm/settings.py:284
|
||||||
msgid "Español (Spanish)"
|
msgid "Español (Spanish)"
|
||||||
msgstr "Spanska (Spansk)"
|
msgstr "Spanska (Spansk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:284
|
#: bookwyrm/settings.py:285
|
||||||
msgid "Galego (Galician)"
|
msgid "Galego (Galician)"
|
||||||
msgstr "Galego (Gallisk)"
|
msgstr "Galego (Gallisk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:285
|
#: bookwyrm/settings.py:286
|
||||||
msgid "Italiano (Italian)"
|
msgid "Italiano (Italian)"
|
||||||
msgstr "Italienska (Italiensk)"
|
msgstr "Italienska (Italiensk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:286
|
#: bookwyrm/settings.py:287
|
||||||
msgid "Français (French)"
|
msgid "Français (French)"
|
||||||
msgstr "Franska (Fransk)"
|
msgstr "Franska (Fransk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:287
|
#: bookwyrm/settings.py:288
|
||||||
msgid "Lietuvių (Lithuanian)"
|
msgid "Lietuvių (Lithuanian)"
|
||||||
msgstr "Litauiska (Litauisk)"
|
msgstr "Litauiska (Litauisk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:288
|
#: bookwyrm/settings.py:289
|
||||||
msgid "Norsk (Norwegian)"
|
msgid "Norsk (Norwegian)"
|
||||||
msgstr "Norska (Norska)"
|
msgstr "Norska (Norska)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:289
|
#: bookwyrm/settings.py:290
|
||||||
msgid "Português do Brasil (Brazilian Portuguese)"
|
msgid "Português do Brasil (Brazilian Portuguese)"
|
||||||
msgstr "Português d Brasil (Brasiliansk Portugisiska)"
|
msgstr "Português d Brasil (Brasiliansk Portugisiska)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:290
|
#: bookwyrm/settings.py:291
|
||||||
msgid "Português Europeu (European Portuguese)"
|
msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Europeisk Portugisiska)"
|
msgstr "Português Europeu (Europeisk Portugisiska)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:291
|
#: bookwyrm/settings.py:292
|
||||||
msgid "Svenska (Swedish)"
|
msgid "Svenska (Swedish)"
|
||||||
msgstr "Svenska (Svenska)"
|
msgstr "Svenska (Svenska)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:292
|
#: bookwyrm/settings.py:293
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Förenklad Kinesiska)"
|
msgstr "简体中文 (Förenklad Kinesiska)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:293
|
#: bookwyrm/settings.py:294
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Traditionell Kinesiska)"
|
msgstr "繁體中文 (Traditionell Kinesiska)"
|
||||||
|
|
||||||
|
@ -679,8 +679,7 @@ msgstr "Namn:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:44
|
#: bookwyrm/templates/author/edit_author.html:44
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
#: bookwyrm/templates/book/edit/edit_book_form.html:146
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:107
|
|
||||||
msgid "Separate multiple values with commas."
|
msgid "Separate multiple values with commas."
|
||||||
msgstr "Separera flertalet värden med kommatecken."
|
msgstr "Separera flertalet värden med kommatecken."
|
||||||
|
|
||||||
|
@ -709,7 +708,7 @@ msgid "Openlibrary key:"
|
||||||
msgstr "Nyckel för Openlibrary:"
|
msgstr "Nyckel för Openlibrary:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:84
|
#: bookwyrm/templates/author/edit_author.html:84
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:278
|
#: bookwyrm/templates/book/edit/edit_book_form.html:322
|
||||||
msgid "Inventaire ID:"
|
msgid "Inventaire ID:"
|
||||||
msgstr "Inventarie-ID:"
|
msgstr "Inventarie-ID:"
|
||||||
|
|
||||||
|
@ -892,12 +891,12 @@ msgid "ISBN:"
|
||||||
msgstr "ISBN:"
|
msgstr "ISBN:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:15
|
#: bookwyrm/templates/book/book_identifiers.html:15
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:287
|
#: bookwyrm/templates/book/edit/edit_book_form.html:331
|
||||||
msgid "OCLC Number:"
|
msgid "OCLC Number:"
|
||||||
msgstr "OCLC-nummer:"
|
msgstr "OCLC-nummer:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:22
|
#: bookwyrm/templates/book/book_identifiers.html:22
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:296
|
#: bookwyrm/templates/book/edit/edit_book_form.html:340
|
||||||
msgid "ASIN:"
|
msgid "ASIN:"
|
||||||
msgstr "ASIN:"
|
msgstr "ASIN:"
|
||||||
|
|
||||||
|
@ -906,12 +905,12 @@ msgid "Add cover"
|
||||||
msgstr "Lägg till omslag"
|
msgstr "Lägg till omslag"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:17
|
#: bookwyrm/templates/book/cover_add_modal.html:17
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
#: bookwyrm/templates/book/edit/edit_book_form.html:230
|
||||||
msgid "Upload cover:"
|
msgid "Upload cover:"
|
||||||
msgstr "Ladda upp omslag:"
|
msgstr "Ladda upp omslag:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:23
|
#: bookwyrm/templates/book/cover_add_modal.html:23
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:192
|
#: bookwyrm/templates/book/edit/edit_book_form.html:236
|
||||||
msgid "Load cover from url:"
|
msgid "Load cover from url:"
|
||||||
msgstr "Ladda omslag från url:"
|
msgstr "Ladda omslag från url:"
|
||||||
|
|
||||||
|
@ -1006,89 +1005,101 @@ msgstr "Språk:"
|
||||||
msgid "Subjects:"
|
msgid "Subjects:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:98
|
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
||||||
|
msgid "Add subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:106
|
||||||
|
msgid "Remove subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:129
|
||||||
|
msgid "Add Another Subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:137
|
||||||
msgid "Publication"
|
msgid "Publication"
|
||||||
msgstr "Publicering"
|
msgstr "Publicering"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:103
|
#: bookwyrm/templates/book/edit/edit_book_form.html:142
|
||||||
msgid "Publisher:"
|
msgid "Publisher:"
|
||||||
msgstr "Utgivare:"
|
msgstr "Utgivare:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:115
|
#: bookwyrm/templates/book/edit/edit_book_form.html:154
|
||||||
msgid "First published date:"
|
msgid "First published date:"
|
||||||
msgstr "Första publiceringsdatum:"
|
msgstr "Första publiceringsdatum:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:124
|
#: bookwyrm/templates/book/edit/edit_book_form.html:163
|
||||||
msgid "Published date:"
|
msgid "Published date:"
|
||||||
msgstr "Publiceringsdatum:"
|
msgstr "Publiceringsdatum:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:135
|
#: bookwyrm/templates/book/edit/edit_book_form.html:174
|
||||||
msgid "Authors"
|
msgid "Authors"
|
||||||
msgstr "Författare"
|
msgstr "Författare"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:144
|
#: bookwyrm/templates/book/edit/edit_book_form.html:183
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Remove %(name)s"
|
msgid "Remove %(name)s"
|
||||||
msgstr "Ta bort %(name)s"
|
msgstr "Ta bort %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:147
|
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Author page for %(name)s"
|
msgid "Author page for %(name)s"
|
||||||
msgstr "Författarsida för %(name)s"
|
msgstr "Författarsida för %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:155
|
#: bookwyrm/templates/book/edit/edit_book_form.html:194
|
||||||
msgid "Add Authors:"
|
msgid "Add Authors:"
|
||||||
msgstr "Lägg till författare:"
|
msgstr "Lägg till författare:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:158
|
#: bookwyrm/templates/book/edit/edit_book_form.html:197
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:161
|
#: bookwyrm/templates/book/edit/edit_book_form.html:200
|
||||||
msgid "Add Author"
|
msgid "Add Author"
|
||||||
msgstr "Lägg till författare"
|
msgstr "Lägg till författare"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:159
|
#: bookwyrm/templates/book/edit/edit_book_form.html:198
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:162
|
#: bookwyrm/templates/book/edit/edit_book_form.html:201
|
||||||
msgid "Jane Doe"
|
msgid "Jane Doe"
|
||||||
msgstr "Jane Doe"
|
msgstr "Jane Doe"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:165
|
#: bookwyrm/templates/book/edit/edit_book_form.html:207
|
||||||
msgid "Add Another Author"
|
msgid "Add Another Author"
|
||||||
msgstr "Lägg till en annan författare"
|
msgstr "Lägg till en annan författare"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:173
|
#: bookwyrm/templates/book/edit/edit_book_form.html:217
|
||||||
#: bookwyrm/templates/shelf/shelf.html:146
|
#: bookwyrm/templates/shelf/shelf.html:146
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "Omslag"
|
msgstr "Omslag"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:205
|
#: bookwyrm/templates/book/edit/edit_book_form.html:249
|
||||||
msgid "Physical Properties"
|
msgid "Physical Properties"
|
||||||
msgstr "Fysiska egenskaper"
|
msgstr "Fysiska egenskaper"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:212
|
#: bookwyrm/templates/book/edit/edit_book_form.html:256
|
||||||
#: bookwyrm/templates/book/editions/format_filter.html:6
|
#: bookwyrm/templates/book/editions/format_filter.html:6
|
||||||
msgid "Format:"
|
msgid "Format:"
|
||||||
msgstr "Format:"
|
msgstr "Format:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:224
|
#: bookwyrm/templates/book/edit/edit_book_form.html:268
|
||||||
msgid "Format details:"
|
msgid "Format details:"
|
||||||
msgstr "Formatets detaljer:"
|
msgstr "Formatets detaljer:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:235
|
#: bookwyrm/templates/book/edit/edit_book_form.html:279
|
||||||
msgid "Pages:"
|
msgid "Pages:"
|
||||||
msgstr "Sidor:"
|
msgstr "Sidor:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:246
|
#: bookwyrm/templates/book/edit/edit_book_form.html:290
|
||||||
msgid "Book Identifiers"
|
msgid "Book Identifiers"
|
||||||
msgstr "Bok-identifierare"
|
msgstr "Bok-identifierare"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:251
|
#: bookwyrm/templates/book/edit/edit_book_form.html:295
|
||||||
msgid "ISBN 13:"
|
msgid "ISBN 13:"
|
||||||
msgstr "ISBN 13:"
|
msgstr "ISBN 13:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:260
|
#: bookwyrm/templates/book/edit/edit_book_form.html:304
|
||||||
msgid "ISBN 10:"
|
msgid "ISBN 10:"
|
||||||
msgstr "ISBN 10:"
|
msgstr "ISBN 10:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:269
|
#: bookwyrm/templates/book/edit/edit_book_form.html:313
|
||||||
msgid "Openlibrary ID:"
|
msgid "Openlibrary ID:"
|
||||||
msgstr "Openlibrary-ID:"
|
msgstr "Openlibrary-ID:"
|
||||||
|
|
||||||
|
@ -1144,12 +1155,8 @@ msgstr "Redigera länkar"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "\n"
|
msgid "Links for \"<em>%(title)s</em>\""
|
||||||
" Links for \"<em>%(title)s</em>\"\n"
|
msgstr ""
|
||||||
" "
|
|
||||||
msgstr "\n"
|
|
||||||
"Länkar för \"<em>%(title)s</em>\"\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
||||||
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
||||||
|
@ -3216,64 +3223,89 @@ msgstr "Visningsinställningar"
|
||||||
msgid "Color:"
|
msgid "Color:"
|
||||||
msgstr "Färg:"
|
msgstr "Färg:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:6
|
#: bookwyrm/templates/settings/automod/rules.html:7
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:10
|
#: bookwyrm/templates/settings/automod/rules.html:11
|
||||||
#: bookwyrm/templates/settings/layout.html:61
|
#: bookwyrm/templates/settings/layout.html:61
|
||||||
msgid "Auto-moderation rules"
|
msgid "Auto-moderation rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:17
|
#: bookwyrm/templates/settings/automod/rules.html:18
|
||||||
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:18
|
#: bookwyrm/templates/settings/automod/rules.html:19
|
||||||
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:19
|
#: bookwyrm/templates/settings/automod/rules.html:26
|
||||||
msgid "At this time, reports are <em>not</em> being generated automatically, and you must manually trigger a scan."
|
msgid "Schedule:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:23
|
#: bookwyrm/templates/settings/automod/rules.html:33
|
||||||
msgid "Run scan"
|
msgid "Last run:"
|
||||||
msgstr "Kör skanning"
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:31
|
#: bookwyrm/templates/settings/automod/rules.html:40
|
||||||
|
msgid "Total run count:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:47
|
||||||
|
msgid "Enabled:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:59
|
||||||
|
msgid "Delete schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:63
|
||||||
|
msgid "Run now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:64
|
||||||
|
msgid "Last run date will not be updated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:69
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:92
|
||||||
|
msgid "Schedule scan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:101
|
||||||
msgid "Successfully added rule"
|
msgid "Successfully added rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:37
|
#: bookwyrm/templates/settings/automod/rules.html:107
|
||||||
msgid "Add Rule"
|
msgid "Add Rule"
|
||||||
msgstr "Lägg till regel"
|
msgstr "Lägg till regel"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:46
|
#: bookwyrm/templates/settings/automod/rules.html:116
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:90
|
#: bookwyrm/templates/settings/automod/rules.html:160
|
||||||
msgid "String match"
|
msgid "String match"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:56
|
#: bookwyrm/templates/settings/automod/rules.html:126
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:93
|
#: bookwyrm/templates/settings/automod/rules.html:163
|
||||||
msgid "Flag users"
|
msgid "Flag users"
|
||||||
msgstr "Flagga användare"
|
msgstr "Flagga användare"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:63
|
#: bookwyrm/templates/settings/automod/rules.html:133
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:96
|
#: bookwyrm/templates/settings/automod/rules.html:166
|
||||||
msgid "Flag statuses"
|
msgid "Flag statuses"
|
||||||
msgstr "Flagga statusar"
|
msgstr "Flagga statusar"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:70
|
#: bookwyrm/templates/settings/automod/rules.html:140
|
||||||
msgid "Add rule"
|
msgid "Add rule"
|
||||||
msgstr "Lägg till regel"
|
msgstr "Lägg till regel"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:77
|
#: bookwyrm/templates/settings/automod/rules.html:147
|
||||||
msgid "Current Rules"
|
msgid "Current Rules"
|
||||||
msgstr "Nuvarande regler"
|
msgstr "Nuvarande regler"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:81
|
#: bookwyrm/templates/settings/automod/rules.html:151
|
||||||
msgid "Show rules"
|
msgid "Show rules"
|
||||||
msgstr "Visa regler"
|
msgstr "Visa regler"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:118
|
#: bookwyrm/templates/settings/automod/rules.html:188
|
||||||
msgid "Remove rule"
|
msgid "Remove rule"
|
||||||
msgstr "Ta bort regel"
|
msgstr "Ta bort regel"
|
||||||
|
|
||||||
|
@ -3523,7 +3555,6 @@ msgid "Import Blocklist"
|
||||||
msgstr "Importera blockeringslista"
|
msgstr "Importera blockeringslista"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:7
|
|
||||||
msgid "Success!"
|
msgid "Success!"
|
||||||
msgstr "Lyckades!"
|
msgstr "Lyckades!"
|
||||||
|
|
||||||
|
@ -4565,6 +4596,11 @@ msgstr "Skicka till flöde"
|
||||||
msgid "Set goal"
|
msgid "Set goal"
|
||||||
msgstr "Ställ in mål"
|
msgstr "Ställ in mål"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/snippets/goal_progress.html:7
|
||||||
|
msgctxt "Goal successfully completed"
|
||||||
|
msgid "Success!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:9
|
#: bookwyrm/templates/snippets/goal_progress.html:9
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(percent)s%% complete!"
|
msgid "%(percent)s%% complete!"
|
||||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-03-14 19:30+0000\n"
|
"POT-Creation-Date: 2022-03-16 23:12+0000\n"
|
||||||
"PO-Revision-Date: 2022-03-14 20:18\n"
|
"PO-Revision-Date: 2022-03-16 23:34\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Chinese Simplified\n"
|
"Language-Team: Chinese Simplified\n"
|
||||||
"Language: zh\n"
|
"Language: zh\n"
|
||||||
|
@ -17,28 +17,28 @@ msgstr ""
|
||||||
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
||||||
"X-Crowdin-File-ID: 1553\n"
|
"X-Crowdin-File-ID: 1553\n"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:40
|
#: bookwyrm/forms/admin.py:41
|
||||||
msgid "One Day"
|
msgid "One Day"
|
||||||
msgstr "一天"
|
msgstr "一天"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:41
|
#: bookwyrm/forms/admin.py:42
|
||||||
msgid "One Week"
|
msgid "One Week"
|
||||||
msgstr "一周"
|
msgstr "一周"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:42
|
#: bookwyrm/forms/admin.py:43
|
||||||
msgid "One Month"
|
msgid "One Month"
|
||||||
msgstr "一个月"
|
msgstr "一个月"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:43
|
#: bookwyrm/forms/admin.py:44
|
||||||
msgid "Does Not Expire"
|
msgid "Does Not Expire"
|
||||||
msgstr "永不失效"
|
msgstr "永不失效"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:47
|
#: bookwyrm/forms/admin.py:48
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{i} uses"
|
msgid "{i} uses"
|
||||||
msgstr "{i} 次使用"
|
msgstr "{i} 次使用"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:48
|
#: bookwyrm/forms/admin.py:49
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "不受限"
|
msgstr "不受限"
|
||||||
|
|
||||||
|
@ -261,73 +261,73 @@ msgstr "引用"
|
||||||
msgid "Everything else"
|
msgid "Everything else"
|
||||||
msgstr "所有其它内容"
|
msgstr "所有其它内容"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home Timeline"
|
msgid "Home Timeline"
|
||||||
msgstr "主页时间线"
|
msgstr "主页时间线"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "主页"
|
msgstr "主页"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209
|
#: bookwyrm/settings.py:210
|
||||||
msgid "Books Timeline"
|
msgid "Books Timeline"
|
||||||
msgstr "书目时间线"
|
msgstr "书目时间线"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209 bookwyrm/templates/search/layout.html:21
|
#: bookwyrm/settings.py:210 bookwyrm/templates/search/layout.html:21
|
||||||
#: bookwyrm/templates/search/layout.html:42
|
#: bookwyrm/templates/search/layout.html:42
|
||||||
#: bookwyrm/templates/user/layout.html:91
|
#: bookwyrm/templates/user/layout.html:91
|
||||||
msgid "Books"
|
msgid "Books"
|
||||||
msgstr "书目"
|
msgstr "书目"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:281
|
#: bookwyrm/settings.py:282
|
||||||
msgid "English"
|
msgid "English"
|
||||||
msgstr "English(英语)"
|
msgstr "English(英语)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:282
|
#: bookwyrm/settings.py:283
|
||||||
msgid "Deutsch (German)"
|
msgid "Deutsch (German)"
|
||||||
msgstr "Deutsch(德语)"
|
msgstr "Deutsch(德语)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:283
|
#: bookwyrm/settings.py:284
|
||||||
msgid "Español (Spanish)"
|
msgid "Español (Spanish)"
|
||||||
msgstr "Español(西班牙语)"
|
msgstr "Español(西班牙语)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:284
|
#: bookwyrm/settings.py:285
|
||||||
msgid "Galego (Galician)"
|
msgid "Galego (Galician)"
|
||||||
msgstr "Galego(加利西亚语)"
|
msgstr "Galego(加利西亚语)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:285
|
#: bookwyrm/settings.py:286
|
||||||
msgid "Italiano (Italian)"
|
msgid "Italiano (Italian)"
|
||||||
msgstr "Italiano(意大利语)"
|
msgstr "Italiano(意大利语)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:286
|
#: bookwyrm/settings.py:287
|
||||||
msgid "Français (French)"
|
msgid "Français (French)"
|
||||||
msgstr "Français(法语)"
|
msgstr "Français(法语)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:287
|
#: bookwyrm/settings.py:288
|
||||||
msgid "Lietuvių (Lithuanian)"
|
msgid "Lietuvių (Lithuanian)"
|
||||||
msgstr "Lietuvių(立陶宛语)"
|
msgstr "Lietuvių(立陶宛语)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:288
|
#: bookwyrm/settings.py:289
|
||||||
msgid "Norsk (Norwegian)"
|
msgid "Norsk (Norwegian)"
|
||||||
msgstr "Norsk(挪威语)"
|
msgstr "Norsk(挪威语)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:289
|
#: bookwyrm/settings.py:290
|
||||||
msgid "Português do Brasil (Brazilian Portuguese)"
|
msgid "Português do Brasil (Brazilian Portuguese)"
|
||||||
msgstr "Português do Brasil(巴西葡萄牙语)"
|
msgstr "Português do Brasil(巴西葡萄牙语)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:290
|
#: bookwyrm/settings.py:291
|
||||||
msgid "Português Europeu (European Portuguese)"
|
msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu(欧洲葡萄牙语)"
|
msgstr "Português Europeu(欧洲葡萄牙语)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:291
|
#: bookwyrm/settings.py:292
|
||||||
msgid "Svenska (Swedish)"
|
msgid "Svenska (Swedish)"
|
||||||
msgstr "Svenska(瑞典语)"
|
msgstr "Svenska(瑞典语)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:292
|
#: bookwyrm/settings.py:293
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文"
|
msgstr "简体中文"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:293
|
#: bookwyrm/settings.py:294
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文(繁体中文)"
|
msgstr "繁體中文(繁体中文)"
|
||||||
|
|
||||||
|
@ -675,8 +675,7 @@ msgstr "名称:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:44
|
#: bookwyrm/templates/author/edit_author.html:44
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
#: bookwyrm/templates/book/edit/edit_book_form.html:146
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:107
|
|
||||||
msgid "Separate multiple values with commas."
|
msgid "Separate multiple values with commas."
|
||||||
msgstr "请用英文逗号(,)分隔多个值。"
|
msgstr "请用英文逗号(,)分隔多个值。"
|
||||||
|
|
||||||
|
@ -705,7 +704,7 @@ msgid "Openlibrary key:"
|
||||||
msgstr "Openlibrary key:"
|
msgstr "Openlibrary key:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:84
|
#: bookwyrm/templates/author/edit_author.html:84
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:278
|
#: bookwyrm/templates/book/edit/edit_book_form.html:322
|
||||||
msgid "Inventaire ID:"
|
msgid "Inventaire ID:"
|
||||||
msgstr "Inventaire ID:"
|
msgstr "Inventaire ID:"
|
||||||
|
|
||||||
|
@ -887,12 +886,12 @@ msgid "ISBN:"
|
||||||
msgstr "ISBN:"
|
msgstr "ISBN:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:15
|
#: bookwyrm/templates/book/book_identifiers.html:15
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:287
|
#: bookwyrm/templates/book/edit/edit_book_form.html:331
|
||||||
msgid "OCLC Number:"
|
msgid "OCLC Number:"
|
||||||
msgstr "OCLC 号:"
|
msgstr "OCLC 号:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:22
|
#: bookwyrm/templates/book/book_identifiers.html:22
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:296
|
#: bookwyrm/templates/book/edit/edit_book_form.html:340
|
||||||
msgid "ASIN:"
|
msgid "ASIN:"
|
||||||
msgstr "ASIN:"
|
msgstr "ASIN:"
|
||||||
|
|
||||||
|
@ -901,12 +900,12 @@ msgid "Add cover"
|
||||||
msgstr "添加封面"
|
msgstr "添加封面"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:17
|
#: bookwyrm/templates/book/cover_add_modal.html:17
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
#: bookwyrm/templates/book/edit/edit_book_form.html:230
|
||||||
msgid "Upload cover:"
|
msgid "Upload cover:"
|
||||||
msgstr "上传封面:"
|
msgstr "上传封面:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:23
|
#: bookwyrm/templates/book/cover_add_modal.html:23
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:192
|
#: bookwyrm/templates/book/edit/edit_book_form.html:236
|
||||||
msgid "Load cover from url:"
|
msgid "Load cover from url:"
|
||||||
msgstr "从网址加载封面:"
|
msgstr "从网址加载封面:"
|
||||||
|
|
||||||
|
@ -1001,89 +1000,101 @@ msgstr "语言:"
|
||||||
msgid "Subjects:"
|
msgid "Subjects:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:98
|
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
||||||
|
msgid "Add subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:106
|
||||||
|
msgid "Remove subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:129
|
||||||
|
msgid "Add Another Subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:137
|
||||||
msgid "Publication"
|
msgid "Publication"
|
||||||
msgstr "出版"
|
msgstr "出版"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:103
|
#: bookwyrm/templates/book/edit/edit_book_form.html:142
|
||||||
msgid "Publisher:"
|
msgid "Publisher:"
|
||||||
msgstr "出版社:"
|
msgstr "出版社:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:115
|
#: bookwyrm/templates/book/edit/edit_book_form.html:154
|
||||||
msgid "First published date:"
|
msgid "First published date:"
|
||||||
msgstr "初版时间:"
|
msgstr "初版时间:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:124
|
#: bookwyrm/templates/book/edit/edit_book_form.html:163
|
||||||
msgid "Published date:"
|
msgid "Published date:"
|
||||||
msgstr "出版时间:"
|
msgstr "出版时间:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:135
|
#: bookwyrm/templates/book/edit/edit_book_form.html:174
|
||||||
msgid "Authors"
|
msgid "Authors"
|
||||||
msgstr "作者"
|
msgstr "作者"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:144
|
#: bookwyrm/templates/book/edit/edit_book_form.html:183
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Remove %(name)s"
|
msgid "Remove %(name)s"
|
||||||
msgstr "移除 %(name)s"
|
msgstr "移除 %(name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:147
|
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Author page for %(name)s"
|
msgid "Author page for %(name)s"
|
||||||
msgstr "%(name)s 的作者页面"
|
msgstr "%(name)s 的作者页面"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:155
|
#: bookwyrm/templates/book/edit/edit_book_form.html:194
|
||||||
msgid "Add Authors:"
|
msgid "Add Authors:"
|
||||||
msgstr "添加作者:"
|
msgstr "添加作者:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:158
|
#: bookwyrm/templates/book/edit/edit_book_form.html:197
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:161
|
#: bookwyrm/templates/book/edit/edit_book_form.html:200
|
||||||
msgid "Add Author"
|
msgid "Add Author"
|
||||||
msgstr "添加作者"
|
msgstr "添加作者"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:159
|
#: bookwyrm/templates/book/edit/edit_book_form.html:198
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:162
|
#: bookwyrm/templates/book/edit/edit_book_form.html:201
|
||||||
msgid "Jane Doe"
|
msgid "Jane Doe"
|
||||||
msgstr "张三"
|
msgstr "张三"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:165
|
#: bookwyrm/templates/book/edit/edit_book_form.html:207
|
||||||
msgid "Add Another Author"
|
msgid "Add Another Author"
|
||||||
msgstr "添加另一作者"
|
msgstr "添加另一作者"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:173
|
#: bookwyrm/templates/book/edit/edit_book_form.html:217
|
||||||
#: bookwyrm/templates/shelf/shelf.html:146
|
#: bookwyrm/templates/shelf/shelf.html:146
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "封面"
|
msgstr "封面"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:205
|
#: bookwyrm/templates/book/edit/edit_book_form.html:249
|
||||||
msgid "Physical Properties"
|
msgid "Physical Properties"
|
||||||
msgstr "实体性质"
|
msgstr "实体性质"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:212
|
#: bookwyrm/templates/book/edit/edit_book_form.html:256
|
||||||
#: bookwyrm/templates/book/editions/format_filter.html:6
|
#: bookwyrm/templates/book/editions/format_filter.html:6
|
||||||
msgid "Format:"
|
msgid "Format:"
|
||||||
msgstr "格式:"
|
msgstr "格式:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:224
|
#: bookwyrm/templates/book/edit/edit_book_form.html:268
|
||||||
msgid "Format details:"
|
msgid "Format details:"
|
||||||
msgstr "装订细节:"
|
msgstr "装订细节:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:235
|
#: bookwyrm/templates/book/edit/edit_book_form.html:279
|
||||||
msgid "Pages:"
|
msgid "Pages:"
|
||||||
msgstr "页数:"
|
msgstr "页数:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:246
|
#: bookwyrm/templates/book/edit/edit_book_form.html:290
|
||||||
msgid "Book Identifiers"
|
msgid "Book Identifiers"
|
||||||
msgstr "书目标识号"
|
msgstr "书目标识号"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:251
|
#: bookwyrm/templates/book/edit/edit_book_form.html:295
|
||||||
msgid "ISBN 13:"
|
msgid "ISBN 13:"
|
||||||
msgstr "ISBN 13:"
|
msgstr "ISBN 13:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:260
|
#: bookwyrm/templates/book/edit/edit_book_form.html:304
|
||||||
msgid "ISBN 10:"
|
msgid "ISBN 10:"
|
||||||
msgstr "ISBN 10:"
|
msgstr "ISBN 10:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:269
|
#: bookwyrm/templates/book/edit/edit_book_form.html:313
|
||||||
msgid "Openlibrary ID:"
|
msgid "Openlibrary ID:"
|
||||||
msgstr "Openlibrary ID:"
|
msgstr "Openlibrary ID:"
|
||||||
|
|
||||||
|
@ -1139,12 +1150,8 @@ msgstr "编辑链接"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "\n"
|
msgid "Links for \"<em>%(title)s</em>\""
|
||||||
" Links for \"<em>%(title)s</em>\"\n"
|
msgstr ""
|
||||||
" "
|
|
||||||
msgstr "\n"
|
|
||||||
" “<em>%(title)s</em>”的链接\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
||||||
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
#: bookwyrm/templates/settings/link_domains/link_table.html:6
|
||||||
|
@ -3205,64 +3212,89 @@ msgstr "显示设置"
|
||||||
msgid "Color:"
|
msgid "Color:"
|
||||||
msgstr "颜色:"
|
msgstr "颜色:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:6
|
#: bookwyrm/templates/settings/automod/rules.html:7
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:10
|
#: bookwyrm/templates/settings/automod/rules.html:11
|
||||||
#: bookwyrm/templates/settings/layout.html:61
|
#: bookwyrm/templates/settings/layout.html:61
|
||||||
msgid "Auto-moderation rules"
|
msgid "Auto-moderation rules"
|
||||||
msgstr "自动审核规则"
|
msgstr "自动审核规则"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:17
|
#: bookwyrm/templates/settings/automod/rules.html:18
|
||||||
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
||||||
msgstr "自动审核规则将为任何本地用户,或具有匹配所提供字符串的字段的状态新建举报。"
|
msgstr "自动审核规则将为任何本地用户,或具有匹配所提供字符串的字段的状态新建举报。"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:18
|
#: bookwyrm/templates/settings/automod/rules.html:19
|
||||||
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
||||||
msgstr "已经报告的用户或状态(无论举报是否得到解决)将不会被标记。"
|
msgstr "已经报告的用户或状态(无论举报是否得到解决)将不会被标记。"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:19
|
#: bookwyrm/templates/settings/automod/rules.html:26
|
||||||
msgid "At this time, reports are <em>not</em> being generated automatically, and you must manually trigger a scan."
|
msgid "Schedule:"
|
||||||
msgstr "此时,举报 <em>不会自动生成了</em> ,您必须手动触发扫描。"
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:23
|
#: bookwyrm/templates/settings/automod/rules.html:33
|
||||||
msgid "Run scan"
|
msgid "Last run:"
|
||||||
msgstr "运行扫描"
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:31
|
#: bookwyrm/templates/settings/automod/rules.html:40
|
||||||
|
msgid "Total run count:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:47
|
||||||
|
msgid "Enabled:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:59
|
||||||
|
msgid "Delete schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:63
|
||||||
|
msgid "Run now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:64
|
||||||
|
msgid "Last run date will not be updated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:69
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:92
|
||||||
|
msgid "Schedule scan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:101
|
||||||
msgid "Successfully added rule"
|
msgid "Successfully added rule"
|
||||||
msgstr "规则添加成功"
|
msgstr "规则添加成功"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:37
|
#: bookwyrm/templates/settings/automod/rules.html:107
|
||||||
msgid "Add Rule"
|
msgid "Add Rule"
|
||||||
msgstr "添加规则"
|
msgstr "添加规则"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:46
|
#: bookwyrm/templates/settings/automod/rules.html:116
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:90
|
#: bookwyrm/templates/settings/automod/rules.html:160
|
||||||
msgid "String match"
|
msgid "String match"
|
||||||
msgstr "字符串匹配"
|
msgstr "字符串匹配"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:56
|
#: bookwyrm/templates/settings/automod/rules.html:126
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:93
|
#: bookwyrm/templates/settings/automod/rules.html:163
|
||||||
msgid "Flag users"
|
msgid "Flag users"
|
||||||
msgstr "标记用户"
|
msgstr "标记用户"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:63
|
#: bookwyrm/templates/settings/automod/rules.html:133
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:96
|
#: bookwyrm/templates/settings/automod/rules.html:166
|
||||||
msgid "Flag statuses"
|
msgid "Flag statuses"
|
||||||
msgstr "标记状态"
|
msgstr "标记状态"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:70
|
#: bookwyrm/templates/settings/automod/rules.html:140
|
||||||
msgid "Add rule"
|
msgid "Add rule"
|
||||||
msgstr "添加规则"
|
msgstr "添加规则"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:77
|
#: bookwyrm/templates/settings/automod/rules.html:147
|
||||||
msgid "Current Rules"
|
msgid "Current Rules"
|
||||||
msgstr "目前规则"
|
msgstr "目前规则"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:81
|
#: bookwyrm/templates/settings/automod/rules.html:151
|
||||||
msgid "Show rules"
|
msgid "Show rules"
|
||||||
msgstr "显示规则"
|
msgstr "显示规则"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:118
|
#: bookwyrm/templates/settings/automod/rules.html:188
|
||||||
msgid "Remove rule"
|
msgid "Remove rule"
|
||||||
msgstr "删除规则"
|
msgstr "删除规则"
|
||||||
|
|
||||||
|
@ -3508,7 +3540,6 @@ msgid "Import Blocklist"
|
||||||
msgstr "导入屏蔽列表"
|
msgstr "导入屏蔽列表"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:7
|
|
||||||
msgid "Success!"
|
msgid "Success!"
|
||||||
msgstr "成功!"
|
msgstr "成功!"
|
||||||
|
|
||||||
|
@ -4543,6 +4574,11 @@ msgstr "发布到消息流中"
|
||||||
msgid "Set goal"
|
msgid "Set goal"
|
||||||
msgstr "设置目标"
|
msgstr "设置目标"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/snippets/goal_progress.html:7
|
||||||
|
msgctxt "Goal successfully completed"
|
||||||
|
msgid "Success!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:9
|
#: bookwyrm/templates/snippets/goal_progress.html:9
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(percent)s%% complete!"
|
msgid "%(percent)s%% complete!"
|
||||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-03-14 19:30+0000\n"
|
"POT-Creation-Date: 2022-03-16 23:12+0000\n"
|
||||||
"PO-Revision-Date: 2022-03-14 20:18\n"
|
"PO-Revision-Date: 2022-03-16 23:34\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Chinese Traditional\n"
|
"Language-Team: Chinese Traditional\n"
|
||||||
"Language: zh\n"
|
"Language: zh\n"
|
||||||
|
@ -17,28 +17,28 @@ msgstr ""
|
||||||
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n"
|
||||||
"X-Crowdin-File-ID: 1553\n"
|
"X-Crowdin-File-ID: 1553\n"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:40
|
#: bookwyrm/forms/admin.py:41
|
||||||
msgid "One Day"
|
msgid "One Day"
|
||||||
msgstr "一天"
|
msgstr "一天"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:41
|
#: bookwyrm/forms/admin.py:42
|
||||||
msgid "One Week"
|
msgid "One Week"
|
||||||
msgstr "一週"
|
msgstr "一週"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:42
|
#: bookwyrm/forms/admin.py:43
|
||||||
msgid "One Month"
|
msgid "One Month"
|
||||||
msgstr "一個月"
|
msgstr "一個月"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:43
|
#: bookwyrm/forms/admin.py:44
|
||||||
msgid "Does Not Expire"
|
msgid "Does Not Expire"
|
||||||
msgstr "永不失效"
|
msgstr "永不失效"
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:47
|
#: bookwyrm/forms/admin.py:48
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{i} uses"
|
msgid "{i} uses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/forms/admin.py:48
|
#: bookwyrm/forms/admin.py:49
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "不受限"
|
msgstr "不受限"
|
||||||
|
|
||||||
|
@ -261,73 +261,73 @@ msgstr ""
|
||||||
msgid "Everything else"
|
msgid "Everything else"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home Timeline"
|
msgid "Home Timeline"
|
||||||
msgstr "主頁時間線"
|
msgstr "主頁時間線"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:208
|
#: bookwyrm/settings.py:209
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "主頁"
|
msgstr "主頁"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209
|
#: bookwyrm/settings.py:210
|
||||||
msgid "Books Timeline"
|
msgid "Books Timeline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/settings.py:209 bookwyrm/templates/search/layout.html:21
|
#: bookwyrm/settings.py:210 bookwyrm/templates/search/layout.html:21
|
||||||
#: bookwyrm/templates/search/layout.html:42
|
#: bookwyrm/templates/search/layout.html:42
|
||||||
#: bookwyrm/templates/user/layout.html:91
|
#: bookwyrm/templates/user/layout.html:91
|
||||||
msgid "Books"
|
msgid "Books"
|
||||||
msgstr "書目"
|
msgstr "書目"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:281
|
#: bookwyrm/settings.py:282
|
||||||
msgid "English"
|
msgid "English"
|
||||||
msgstr "English(英語)"
|
msgstr "English(英語)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:282
|
#: bookwyrm/settings.py:283
|
||||||
msgid "Deutsch (German)"
|
msgid "Deutsch (German)"
|
||||||
msgstr "Deutsch(德語)"
|
msgstr "Deutsch(德語)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:283
|
#: bookwyrm/settings.py:284
|
||||||
msgid "Español (Spanish)"
|
msgid "Español (Spanish)"
|
||||||
msgstr "Español(西班牙語)"
|
msgstr "Español(西班牙語)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:284
|
#: bookwyrm/settings.py:285
|
||||||
msgid "Galego (Galician)"
|
msgid "Galego (Galician)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/settings.py:285
|
#: bookwyrm/settings.py:286
|
||||||
msgid "Italiano (Italian)"
|
msgid "Italiano (Italian)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/settings.py:286
|
#: bookwyrm/settings.py:287
|
||||||
msgid "Français (French)"
|
msgid "Français (French)"
|
||||||
msgstr "Français(法語)"
|
msgstr "Français(法語)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:287
|
#: bookwyrm/settings.py:288
|
||||||
msgid "Lietuvių (Lithuanian)"
|
msgid "Lietuvių (Lithuanian)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/settings.py:288
|
#: bookwyrm/settings.py:289
|
||||||
msgid "Norsk (Norwegian)"
|
msgid "Norsk (Norwegian)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/settings.py:289
|
#: bookwyrm/settings.py:290
|
||||||
msgid "Português do Brasil (Brazilian Portuguese)"
|
msgid "Português do Brasil (Brazilian Portuguese)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/settings.py:290
|
#: bookwyrm/settings.py:291
|
||||||
msgid "Português Europeu (European Portuguese)"
|
msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/settings.py:291
|
#: bookwyrm/settings.py:292
|
||||||
msgid "Svenska (Swedish)"
|
msgid "Svenska (Swedish)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/settings.py:292
|
#: bookwyrm/settings.py:293
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "簡體中文"
|
msgstr "簡體中文"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:293
|
#: bookwyrm/settings.py:294
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文"
|
msgstr "繁體中文"
|
||||||
|
|
||||||
|
@ -675,8 +675,7 @@ msgstr "名稱:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:44
|
#: bookwyrm/templates/author/edit_author.html:44
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
#: bookwyrm/templates/book/edit/edit_book_form.html:76
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
#: bookwyrm/templates/book/edit/edit_book_form.html:146
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:107
|
|
||||||
msgid "Separate multiple values with commas."
|
msgid "Separate multiple values with commas."
|
||||||
msgstr "請用逗號(,)分隔多個值。"
|
msgstr "請用逗號(,)分隔多個值。"
|
||||||
|
|
||||||
|
@ -705,7 +704,7 @@ msgid "Openlibrary key:"
|
||||||
msgstr "Openlibrary key:"
|
msgstr "Openlibrary key:"
|
||||||
|
|
||||||
#: bookwyrm/templates/author/edit_author.html:84
|
#: bookwyrm/templates/author/edit_author.html:84
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:278
|
#: bookwyrm/templates/book/edit/edit_book_form.html:322
|
||||||
msgid "Inventaire ID:"
|
msgid "Inventaire ID:"
|
||||||
msgstr "Inventaire ID:"
|
msgstr "Inventaire ID:"
|
||||||
|
|
||||||
|
@ -887,12 +886,12 @@ msgid "ISBN:"
|
||||||
msgstr "ISBN:"
|
msgstr "ISBN:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:15
|
#: bookwyrm/templates/book/book_identifiers.html:15
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:287
|
#: bookwyrm/templates/book/edit/edit_book_form.html:331
|
||||||
msgid "OCLC Number:"
|
msgid "OCLC Number:"
|
||||||
msgstr "OCLC 號:"
|
msgstr "OCLC 號:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book_identifiers.html:22
|
#: bookwyrm/templates/book/book_identifiers.html:22
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:296
|
#: bookwyrm/templates/book/edit/edit_book_form.html:340
|
||||||
msgid "ASIN:"
|
msgid "ASIN:"
|
||||||
msgstr "ASIN:"
|
msgstr "ASIN:"
|
||||||
|
|
||||||
|
@ -901,12 +900,12 @@ msgid "Add cover"
|
||||||
msgstr "新增封面"
|
msgstr "新增封面"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:17
|
#: bookwyrm/templates/book/cover_add_modal.html:17
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
#: bookwyrm/templates/book/edit/edit_book_form.html:230
|
||||||
msgid "Upload cover:"
|
msgid "Upload cover:"
|
||||||
msgstr "上載封面:"
|
msgstr "上載封面:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:23
|
#: bookwyrm/templates/book/cover_add_modal.html:23
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:192
|
#: bookwyrm/templates/book/edit/edit_book_form.html:236
|
||||||
msgid "Load cover from url:"
|
msgid "Load cover from url:"
|
||||||
msgstr "從網址載入封面:"
|
msgstr "從網址載入封面:"
|
||||||
|
|
||||||
|
@ -1001,89 +1000,101 @@ msgstr "語言:"
|
||||||
msgid "Subjects:"
|
msgid "Subjects:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:98
|
#: bookwyrm/templates/book/edit/edit_book_form.html:88
|
||||||
|
msgid "Add subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:106
|
||||||
|
msgid "Remove subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:129
|
||||||
|
msgid "Add Another Subject"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/book/edit/edit_book_form.html:137
|
||||||
msgid "Publication"
|
msgid "Publication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:103
|
#: bookwyrm/templates/book/edit/edit_book_form.html:142
|
||||||
msgid "Publisher:"
|
msgid "Publisher:"
|
||||||
msgstr "出版社:"
|
msgstr "出版社:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:115
|
#: bookwyrm/templates/book/edit/edit_book_form.html:154
|
||||||
msgid "First published date:"
|
msgid "First published date:"
|
||||||
msgstr "初版時間:"
|
msgstr "初版時間:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:124
|
#: bookwyrm/templates/book/edit/edit_book_form.html:163
|
||||||
msgid "Published date:"
|
msgid "Published date:"
|
||||||
msgstr "出版時間:"
|
msgstr "出版時間:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:135
|
#: bookwyrm/templates/book/edit/edit_book_form.html:174
|
||||||
msgid "Authors"
|
msgid "Authors"
|
||||||
msgstr "作者"
|
msgstr "作者"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:144
|
#: bookwyrm/templates/book/edit/edit_book_form.html:183
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Remove %(name)s"
|
msgid "Remove %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:147
|
#: bookwyrm/templates/book/edit/edit_book_form.html:186
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Author page for %(name)s"
|
msgid "Author page for %(name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:155
|
#: bookwyrm/templates/book/edit/edit_book_form.html:194
|
||||||
msgid "Add Authors:"
|
msgid "Add Authors:"
|
||||||
msgstr "新增作者:"
|
msgstr "新增作者:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:158
|
#: bookwyrm/templates/book/edit/edit_book_form.html:197
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:161
|
#: bookwyrm/templates/book/edit/edit_book_form.html:200
|
||||||
msgid "Add Author"
|
msgid "Add Author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:159
|
#: bookwyrm/templates/book/edit/edit_book_form.html:198
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:162
|
#: bookwyrm/templates/book/edit/edit_book_form.html:201
|
||||||
msgid "Jane Doe"
|
msgid "Jane Doe"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:165
|
#: bookwyrm/templates/book/edit/edit_book_form.html:207
|
||||||
msgid "Add Another Author"
|
msgid "Add Another Author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:173
|
#: bookwyrm/templates/book/edit/edit_book_form.html:217
|
||||||
#: bookwyrm/templates/shelf/shelf.html:146
|
#: bookwyrm/templates/shelf/shelf.html:146
|
||||||
msgid "Cover"
|
msgid "Cover"
|
||||||
msgstr "封面"
|
msgstr "封面"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:205
|
#: bookwyrm/templates/book/edit/edit_book_form.html:249
|
||||||
msgid "Physical Properties"
|
msgid "Physical Properties"
|
||||||
msgstr "實體性質"
|
msgstr "實體性質"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:212
|
#: bookwyrm/templates/book/edit/edit_book_form.html:256
|
||||||
#: bookwyrm/templates/book/editions/format_filter.html:6
|
#: bookwyrm/templates/book/editions/format_filter.html:6
|
||||||
msgid "Format:"
|
msgid "Format:"
|
||||||
msgstr "格式:"
|
msgstr "格式:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:224
|
#: bookwyrm/templates/book/edit/edit_book_form.html:268
|
||||||
msgid "Format details:"
|
msgid "Format details:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:235
|
#: bookwyrm/templates/book/edit/edit_book_form.html:279
|
||||||
msgid "Pages:"
|
msgid "Pages:"
|
||||||
msgstr "頁數:"
|
msgstr "頁數:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:246
|
#: bookwyrm/templates/book/edit/edit_book_form.html:290
|
||||||
msgid "Book Identifiers"
|
msgid "Book Identifiers"
|
||||||
msgstr "書目標識號"
|
msgstr "書目標識號"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:251
|
#: bookwyrm/templates/book/edit/edit_book_form.html:295
|
||||||
msgid "ISBN 13:"
|
msgid "ISBN 13:"
|
||||||
msgstr "ISBN 13:"
|
msgstr "ISBN 13:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:260
|
#: bookwyrm/templates/book/edit/edit_book_form.html:304
|
||||||
msgid "ISBN 10:"
|
msgid "ISBN 10:"
|
||||||
msgstr "ISBN 10:"
|
msgstr "ISBN 10:"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/edit/edit_book_form.html:269
|
#: bookwyrm/templates/book/edit/edit_book_form.html:313
|
||||||
msgid "Openlibrary ID:"
|
msgid "Openlibrary ID:"
|
||||||
msgstr "Openlibrary ID:"
|
msgstr "Openlibrary ID:"
|
||||||
|
|
||||||
|
@ -1139,9 +1150,7 @@ msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
#: bookwyrm/templates/book/file_links/edit_links.html:11
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "\n"
|
msgid "Links for \"<em>%(title)s</em>\""
|
||||||
" Links for \"<em>%(title)s</em>\"\n"
|
|
||||||
" "
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
#: bookwyrm/templates/book/file_links/edit_links.html:32
|
||||||
|
@ -3203,64 +3212,89 @@ msgstr ""
|
||||||
msgid "Color:"
|
msgid "Color:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:6
|
#: bookwyrm/templates/settings/automod/rules.html:7
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:10
|
#: bookwyrm/templates/settings/automod/rules.html:11
|
||||||
#: bookwyrm/templates/settings/layout.html:61
|
#: bookwyrm/templates/settings/layout.html:61
|
||||||
msgid "Auto-moderation rules"
|
msgid "Auto-moderation rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:17
|
#: bookwyrm/templates/settings/automod/rules.html:18
|
||||||
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:18
|
#: bookwyrm/templates/settings/automod/rules.html:19
|
||||||
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:19
|
#: bookwyrm/templates/settings/automod/rules.html:26
|
||||||
msgid "At this time, reports are <em>not</em> being generated automatically, and you must manually trigger a scan."
|
msgid "Schedule:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:23
|
#: bookwyrm/templates/settings/automod/rules.html:33
|
||||||
msgid "Run scan"
|
msgid "Last run:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:31
|
#: bookwyrm/templates/settings/automod/rules.html:40
|
||||||
msgid "Successfully added rule"
|
msgid "Total run count:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:37
|
#: bookwyrm/templates/settings/automod/rules.html:47
|
||||||
msgid "Add Rule"
|
msgid "Enabled:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:46
|
#: bookwyrm/templates/settings/automod/rules.html:59
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:90
|
msgid "Delete schedule"
|
||||||
msgid "String match"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:56
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:93
|
|
||||||
msgid "Flag users"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:63
|
#: bookwyrm/templates/settings/automod/rules.html:63
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:96
|
msgid "Run now"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:64
|
||||||
|
msgid "Last run date will not be updated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:69
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:92
|
||||||
|
msgid "Schedule scan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:101
|
||||||
|
msgid "Successfully added rule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:107
|
||||||
|
msgid "Add Rule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:116
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:160
|
||||||
|
msgid "String match"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:126
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:163
|
||||||
|
msgid "Flag users"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:133
|
||||||
|
#: bookwyrm/templates/settings/automod/rules.html:166
|
||||||
msgid "Flag statuses"
|
msgid "Flag statuses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:70
|
#: bookwyrm/templates/settings/automod/rules.html:140
|
||||||
msgid "Add rule"
|
msgid "Add rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:77
|
#: bookwyrm/templates/settings/automod/rules.html:147
|
||||||
msgid "Current Rules"
|
msgid "Current Rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:81
|
#: bookwyrm/templates/settings/automod/rules.html:151
|
||||||
msgid "Show rules"
|
msgid "Show rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/automod/rules.html:118
|
#: bookwyrm/templates/settings/automod/rules.html:188
|
||||||
msgid "Remove rule"
|
msgid "Remove rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -3506,7 +3540,6 @@ msgid "Import Blocklist"
|
||||||
msgstr "匯入封鎖列表"
|
msgstr "匯入封鎖列表"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
#: bookwyrm/templates/settings/federation/instance_blocklist.html:38
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:7
|
|
||||||
msgid "Success!"
|
msgid "Success!"
|
||||||
msgstr "成功!"
|
msgstr "成功!"
|
||||||
|
|
||||||
|
@ -4541,6 +4574,11 @@ msgstr "發佈到即時動態"
|
||||||
msgid "Set goal"
|
msgid "Set goal"
|
||||||
msgstr "設定目標"
|
msgstr "設定目標"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/snippets/goal_progress.html:7
|
||||||
|
msgctxt "Goal successfully completed"
|
||||||
|
msgid "Success!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/goal_progress.html:9
|
#: bookwyrm/templates/snippets/goal_progress.html:9
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(percent)s%% complete!"
|
msgid "%(percent)s%% complete!"
|
||||||
|
|
Loading…
Reference in a new issue