Merge branch 'main' into main

This commit is contained in:
Mouse Reeve 2022-02-03 10:40:27 -08:00 committed by GitHub
commit c58a3ac114
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
32 changed files with 388 additions and 246 deletions

View file

@ -1,7 +1,9 @@
""" functionality outline for a book data connector """ """ functionality outline for a book data connector """
from abc import ABC, abstractmethod from abc import ABC, abstractmethod
import imghdr
import logging import logging
from django.core.files.base import ContentFile
from django.db import transaction from django.db import transaction
import requests import requests
from requests.exceptions import RequestException from requests.exceptions import RequestException
@ -290,10 +292,18 @@ def get_image(url, timeout=10):
) )
except RequestException as err: except RequestException as err:
logger.exception(err) logger.exception(err)
return None return None, None
if not resp.ok: if not resp.ok:
return None return None, None
return resp
image_content = ContentFile(resp.content)
extension = imghdr.what(None, image_content.read())
if not extension:
logger.exception("File requested was not an image: %s", url)
return None, None
return image_content, extension
class Mapping: class Mapping:

View file

@ -0,0 +1,37 @@
# Generated by Django 3.2.10 on 2022-02-02 20:42
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("bookwyrm", "0131_merge_20220125_1644"),
]
operations = [
migrations.AlterField(
model_name="user",
name="preferred_language",
field=models.CharField(
blank=True,
choices=[
("en-us", "English"),
("de-de", "Deutsch (German)"),
("es-es", "Español (Spanish)"),
("gl-es", "Galego (Galician)"),
("it-it", "Italiano (Italian)"),
("fr-fr", "Français (French)"),
("lt-lt", "Lietuvių (Lithuanian)"),
("no-no", "Norsk (Norwegian)"),
("pt-br", "Português do Brasil (Brazilian Portuguese)"),
("pt-pt", "Português Europeu (European Portuguese)"),
("sv-se", "Svenska (Swedish)"),
("zh-hans", "简体中文 (Simplified Chinese)"),
("zh-hant", "繁體中文 (Traditional Chinese)"),
],
max_length=255,
null=True,
),
),
]

View file

@ -1,6 +1,5 @@
""" activitypub-aware django model fields """ """ activitypub-aware django model fields """
from dataclasses import MISSING from dataclasses import MISSING
import imghdr
import re import re
from uuid import uuid4 from uuid import uuid4
from urllib.parse import urljoin from urllib.parse import urljoin
@ -9,7 +8,6 @@ import dateutil.parser
from dateutil.parser import ParserError from dateutil.parser import ParserError
from django.contrib.postgres.fields import ArrayField as DjangoArrayField from django.contrib.postgres.fields import ArrayField as DjangoArrayField
from django.core.exceptions import ValidationError from django.core.exceptions import ValidationError
from django.core.files.base import ContentFile
from django.db import models from django.db import models
from django.forms import ClearableFileInput, ImageField as DjangoImageField from django.forms import ClearableFileInput, ImageField as DjangoImageField
from django.utils import timezone from django.utils import timezone
@ -443,12 +441,10 @@ class ImageField(ActivitypubFieldMixin, models.ImageField):
except ValidationError: except ValidationError:
return None return None
response = get_image(url) image_content, extension = get_image(url)
if not response: if not image_content:
return None return None
image_content = ContentFile(response.content)
extension = imghdr.what(None, image_content.read()) or ""
image_name = f"{uuid4()}.{extension}" image_name = f"{uuid4()}.{extension}"
return [image_name, image_content] return [image_name, image_content]

View file

@ -9,7 +9,7 @@ from django.utils.translation import gettext_lazy as _
env = Env() env = Env()
env.read_env() env.read_env()
DOMAIN = env("DOMAIN") DOMAIN = env("DOMAIN")
VERSION = "0.2.0" VERSION = "0.2.1"
PAGE_LENGTH = env("PAGE_LENGTH", 15) PAGE_LENGTH = env("PAGE_LENGTH", 15)
DEFAULT_LANGUAGE = env("DEFAULT_LANGUAGE", "English") DEFAULT_LANGUAGE = env("DEFAULT_LANGUAGE", "English")
@ -255,7 +255,7 @@ LANGUAGES = [
("no-no", _("Norsk (Norwegian)")), ("no-no", _("Norsk (Norwegian)")),
("pt-br", _("Português do Brasil (Brazilian Portuguese)")), ("pt-br", _("Português do Brasil (Brazilian Portuguese)")),
("pt-pt", _("Português Europeu (European Portuguese)")), ("pt-pt", _("Português Europeu (European Portuguese)")),
("sv-se", _("Swedish (Svenska)")), ("sv-se", _("Svenska (Swedish)")),
("zh-hans", _("简体中文 (Simplified Chinese)")), ("zh-hans", _("简体中文 (Simplified Chinese)")),
("zh-hant", _("繁體中文 (Traditional Chinese)")), ("zh-hant", _("繁體中文 (Traditional Chinese)")),
] ]

View file

@ -356,10 +356,11 @@
<form name="list-add" method="post" action="{% url 'list-add-book' %}"> <form name="list-add" method="post" action="{% url 'list-add-book' %}">
{% csrf_token %} {% csrf_token %}
<input type="hidden" name="book" value="{{ book.id }}"> <input type="hidden" name="book" value="{{ book.id }}">
<input type="hidden" name="user" value="{{ request.user.id }}">
<label class="label" for="id_list">{% trans "Add to list" %}</label> <label class="label" for="id_list">{% trans "Add to list" %}</label>
<div class="field has-addons"> <div class="field has-addons">
<div class="select control is-clipped"> <div class="select control is-clipped">
<select name="list" id="id_list"> <select name="book_list" id="id_list">
{% for list in user.list_set.all %} {% for list in user.list_set.all %}
<option value="{{ list.id }}">{{ list.name }}</option> <option value="{{ list.id }}">{{ list.name }}</option>
{% endfor %} {% endfor %}

View file

@ -97,7 +97,7 @@
<span class="details-close icon icon-pencil" aria-hidden></span> <span class="details-close icon icon-pencil" aria-hidden></span>
</span> </span>
</summary> </summary>
{% include "lists/edit_item_form.html" %} {% include "lists/edit_item_form.html" with book=item.book %}
</details> </details>
</div> </div>
{% endif %} {% endif %}
@ -112,7 +112,7 @@
<span class="details-close icon icon-plus" aria-hidden></span> <span class="details-close icon icon-plus" aria-hidden></span>
</span> </span>
</summary> </summary>
{% include "lists/edit_item_form.html" %} {% include "lists/edit_item_form.html" with book=item.book %}
</details> </details>
</div> </div>
{% endif %} {% endif %}

View file

@ -45,7 +45,7 @@
href="{{ shelf_tab.local_path }}" href="{{ shelf_tab.local_path }}"
{% if shelf_tab.identifier == shelf.identifier %} aria-current="page"{% endif %} {% if shelf_tab.identifier == shelf.identifier %} aria-current="page"{% endif %}
> >
{% include 'user/books_header.html' with shelf=shelf_tab %} {% include "snippets/translated_shelf_name.html" with shelf=shelf_tab %}
</a> </a>
</li> </li>
{% endfor %} {% endfor %}

View file

@ -443,18 +443,17 @@ class ModelFields(TestCase):
image_file = pathlib.Path(__file__).parent.joinpath( image_file = pathlib.Path(__file__).parent.joinpath(
"../../static/images/default_avi.jpg" "../../static/images/default_avi.jpg"
) )
image = Image.open(image_file)
output = BytesIO()
image.save(output, format=image.format)
instance = fields.ImageField() instance = fields.ImageField()
responses.add( with open(image_file, "rb") as image_data:
responses.GET, responses.add(
"http://www.example.com/image.jpg", responses.GET,
body=image.tobytes(), "http://www.example.com/image.jpg",
status=200, body=image_data.read(),
) status=200,
content_type="image/jpeg",
stream=True,
)
loaded_image = instance.field_from_activity("http://www.example.com/image.jpg") loaded_image = instance.field_from_activity("http://www.example.com/image.jpg")
self.assertIsInstance(loaded_image, list) self.assertIsInstance(loaded_image, list)
self.assertIsInstance(loaded_image[1], ContentFile) self.assertIsInstance(loaded_image[1], ContentFile)
@ -465,18 +464,18 @@ class ModelFields(TestCase):
image_file = pathlib.Path(__file__).parent.joinpath( image_file = pathlib.Path(__file__).parent.joinpath(
"../../static/images/default_avi.jpg" "../../static/images/default_avi.jpg"
) )
image = Image.open(image_file)
output = BytesIO()
image.save(output, format=image.format)
instance = fields.ImageField(activitypub_field="cover", name="cover") instance = fields.ImageField(activitypub_field="cover", name="cover")
responses.add( with open(image_file, "rb") as image_data:
responses.GET, responses.add(
"http://www.example.com/image.jpg", responses.GET,
body=image.tobytes(), "http://www.example.com/image.jpg",
status=200, body=image_data.read(),
) content_type="image/jpeg",
status=200,
stream=True,
)
book = Edition.objects.create(title="hello") book = Edition.objects.create(title="hello")
MockActivity = namedtuple("MockActivity", ("cover")) MockActivity = namedtuple("MockActivity", ("cover"))
@ -491,18 +490,18 @@ class ModelFields(TestCase):
image_file = pathlib.Path(__file__).parent.joinpath( image_file = pathlib.Path(__file__).parent.joinpath(
"../../static/images/default_avi.jpg" "../../static/images/default_avi.jpg"
) )
image = Image.open(image_file)
output = BytesIO()
image.save(output, format=image.format)
instance = fields.ImageField(activitypub_field="cover", name="cover") instance = fields.ImageField(activitypub_field="cover", name="cover")
responses.add( with open(image_file, "rb") as image_data:
responses.GET, responses.add(
"http://www.example.com/image.jpg", responses.GET,
body=image.tobytes(), "http://www.example.com/image.jpg",
status=200, body=image_data.read(),
) status=200,
content_type="image/jpeg",
stream=True,
)
book = Edition.objects.create(title="hello") book = Edition.objects.create(title="hello")
MockActivity = namedtuple("MockActivity", ("cover")) MockActivity = namedtuple("MockActivity", ("cover"))
@ -565,18 +564,18 @@ class ModelFields(TestCase):
another_image_file = pathlib.Path(__file__).parent.joinpath( another_image_file = pathlib.Path(__file__).parent.joinpath(
"../../static/images/logo.png" "../../static/images/logo.png"
) )
another_image = Image.open(another_image_file)
another_output = BytesIO()
another_image.save(another_output, format=another_image.format)
instance = fields.ImageField(activitypub_field="cover", name="cover") instance = fields.ImageField(activitypub_field="cover", name="cover")
responses.add( with open(another_image_file, "rb") as another_image:
responses.GET, responses.add(
"http://www.example.com/image.jpg", responses.GET,
body=another_image.tobytes(), "http://www.example.com/image.jpg",
status=200, body=another_image.read(),
) status=200,
content_type="image/jpeg",
stream=True,
)
MockActivity = namedtuple("MockActivity", ("cover")) MockActivity = namedtuple("MockActivity", ("cover"))
mock_activity = MockActivity("http://www.example.com/image.jpg") mock_activity = MockActivity("http://www.example.com/image.jpg")

View file

@ -2,7 +2,6 @@
from uuid import uuid4 from uuid import uuid4
from django.contrib.auth.decorators import login_required, permission_required from django.contrib.auth.decorators import login_required, permission_required
from django.core.files.base import ContentFile
from django.core.paginator import Paginator from django.core.paginator import Paginator
from django.db.models import Avg, Q from django.db.models import Avg, Q
from django.http import Http404 from django.http import Http404
@ -144,13 +143,12 @@ def upload_cover(request, book_id):
def set_cover_from_url(url): def set_cover_from_url(url):
"""load it from a url""" """load it from a url"""
try: try:
image_file = get_image(url) image_content, extension = get_image(url)
except: # pylint: disable=bare-except except: # pylint: disable=bare-except
return None return None
if not image_file: if not image_content:
return None return None
image_name = str(uuid4()) + "." + url.split(".")[-1] image_name = str(uuid4()) + "." + extension
image_content = ContentFile(image_file.content)
return [image_name, image_content] return [image_name, image_content]

View file

@ -19,4 +19,6 @@ class ListItem(View):
form = forms.ListItemForm(request.POST, instance=list_item) form = forms.ListItemForm(request.POST, instance=list_item)
if form.is_valid(): if form.is_valid():
form.save() form.save()
else:
raise Exception(form.errors)
return redirect("list", list_item.book_list.id) return redirect("list", list_item.book_list.id)

1
bw-dev
View file

@ -209,6 +209,7 @@ case "$CMD" in
echo " build" echo " build"
echo " clean" echo " clean"
echo " black" echo " black"
echo " prettier"
echo " populate_streams [--stream=<stream name>]" echo " populate_streams [--stream=<stream name>]"
echo " populate_suggestions" echo " populate_suggestions"
echo " generate_thumbnails" echo " generate_thumbnails"

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-02 18:03+0000\n" "POT-Creation-Date: 2022-01-30 18:17+0000\n"
"PO-Revision-Date: 2022-01-24 18:55\n" "PO-Revision-Date: 2022-01-30 19:38\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"
@ -3582,23 +3582,31 @@ msgstr "Keine Links für diese Domain vorhanden."
msgid "Back to reports" msgid "Back to reports"
msgstr "Zurück zu den Meldungen" msgstr "Zurück zu den Meldungen"
#: bookwyrm/templates/settings/reports/report.html:22 #: bookwyrm/templates/settings/reports/report.html:23
msgid "Message reporter"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Update on your report:"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:35
msgid "Reported statuses" msgid "Reported statuses"
msgstr "Gemeldete Statusmeldungen" msgstr "Gemeldete Statusmeldungen"
#: bookwyrm/templates/settings/reports/report.html:27 #: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted" msgid "Status has been deleted"
msgstr "Statusmeldung gelöscht" msgstr "Statusmeldung gelöscht"
#: bookwyrm/templates/settings/reports/report.html:39 #: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links" msgid "Reported links"
msgstr "Gemeldete Links" msgstr "Gemeldete Links"
#: bookwyrm/templates/settings/reports/report.html:55 #: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Moderator*innenkommentare" msgstr "Moderator*innenkommentare"
#: bookwyrm/templates/settings/reports/report.html:73 #: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Kommentieren" msgstr "Kommentieren"
@ -4023,14 +4031,14 @@ msgstr "Prozent"
msgid "of %(pages)s pages" msgid "of %(pages)s pages"
msgstr "von %(pages)s Seiten" msgstr "von %(pages)s Seiten"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
#: bookwyrm/templates/snippets/status/layout.html:34 #: bookwyrm/templates/snippets/status/layout.html:34
#: bookwyrm/templates/snippets/status/layout.html:53 #: bookwyrm/templates/snippets/status/layout.html:53
#: bookwyrm/templates/snippets/status/layout.html:54 #: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply" msgid "Reply"
msgstr "Antworten" msgstr "Antworten"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content" msgid "Content"
msgstr "Inhalt" msgstr "Inhalt"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.0.1\n" "Project-Id-Version: 0.0.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-02 18:03+0000\n" "POT-Creation-Date: 2022-02-02 20:09+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"
@ -149,26 +149,26 @@ msgstr ""
msgid "Blocked" msgid "Blocked"
msgstr "" msgstr ""
#: bookwyrm/models/fields.py:29 #: bookwyrm/models/fields.py:27
#, python-format #, python-format
msgid "%(value)s is not a valid remote_id" msgid "%(value)s is not a valid remote_id"
msgstr "" msgstr ""
#: bookwyrm/models/fields.py:38 bookwyrm/models/fields.py:47 #: bookwyrm/models/fields.py:36 bookwyrm/models/fields.py:45
#, python-format #, python-format
msgid "%(value)s is not a valid username" msgid "%(value)s is not a valid username"
msgstr "" msgstr ""
#: bookwyrm/models/fields.py:183 bookwyrm/templates/layout.html:170 #: bookwyrm/models/fields.py:181 bookwyrm/templates/layout.html:170
#: bookwyrm/templates/ostatus/error.html:29 #: bookwyrm/templates/ostatus/error.html:29
msgid "username" msgid "username"
msgstr "" msgstr ""
#: bookwyrm/models/fields.py:188 #: bookwyrm/models/fields.py:186
msgid "A user with that username already exists." msgid "A user with that username already exists."
msgstr "" msgstr ""
#: bookwyrm/models/fields.py:207 #: bookwyrm/models/fields.py:205
#: bookwyrm/templates/snippets/privacy-icons.html:3 #: bookwyrm/templates/snippets/privacy-icons.html:3
#: bookwyrm/templates/snippets/privacy-icons.html:4 #: bookwyrm/templates/snippets/privacy-icons.html:4
#: bookwyrm/templates/snippets/privacy_select.html:11 #: bookwyrm/templates/snippets/privacy_select.html:11
@ -176,7 +176,7 @@ msgstr ""
msgid "Public" msgid "Public"
msgstr "" msgstr ""
#: bookwyrm/models/fields.py:208 #: bookwyrm/models/fields.py:206
#: bookwyrm/templates/snippets/privacy-icons.html:7 #: bookwyrm/templates/snippets/privacy-icons.html:7
#: bookwyrm/templates/snippets/privacy-icons.html:8 #: bookwyrm/templates/snippets/privacy-icons.html:8
#: bookwyrm/templates/snippets/privacy_select.html:14 #: bookwyrm/templates/snippets/privacy_select.html:14
@ -184,14 +184,14 @@ msgstr ""
msgid "Unlisted" msgid "Unlisted"
msgstr "" msgstr ""
#: bookwyrm/models/fields.py:209 #: bookwyrm/models/fields.py:207
#: bookwyrm/templates/snippets/privacy_select.html:17 #: bookwyrm/templates/snippets/privacy_select.html:17
#: bookwyrm/templates/user/relationships/followers.html:6 #: bookwyrm/templates/user/relationships/followers.html:6
#: bookwyrm/templates/user/relationships/layout.html:11 #: bookwyrm/templates/user/relationships/layout.html:11
msgid "Followers" msgid "Followers"
msgstr "" msgstr ""
#: bookwyrm/models/fields.py:210 #: bookwyrm/models/fields.py:208
#: bookwyrm/templates/snippets/create_status/post_options_block.html:8 #: bookwyrm/templates/snippets/create_status/post_options_block.html:8
#: bookwyrm/templates/snippets/privacy-icons.html:15 #: bookwyrm/templates/snippets/privacy-icons.html:15
#: bookwyrm/templates/snippets/privacy-icons.html:16 #: bookwyrm/templates/snippets/privacy-icons.html:16
@ -292,7 +292,7 @@ msgid "Português Europeu (European Portuguese)"
msgstr "" msgstr ""
#: bookwyrm/settings.py:258 #: bookwyrm/settings.py:258
msgid "Swedish (Svenska)" msgid "Svenska (Swedish)"
msgstr "" msgstr ""
#: bookwyrm/settings.py:259 #: bookwyrm/settings.py:259
@ -378,7 +378,7 @@ msgstr ""
#: bookwyrm/templates/about/about.html:131 #: bookwyrm/templates/about/about.html:131
#: bookwyrm/templates/settings/users/user_moderation_actions.html:14 #: bookwyrm/templates/settings/users/user_moderation_actions.html:14
#: bookwyrm/templates/snippets/status/status_options.html:35 #: bookwyrm/templates/snippets/status/status_options.html:35
#: bookwyrm/templates/snippets/user_options.html:13 #: bookwyrm/templates/snippets/user_options.html:14
msgid "Send direct message" msgid "Send direct message"
msgstr "" msgstr ""
@ -1026,7 +1026,7 @@ msgid "Physical Properties"
msgstr "" msgstr ""
#: bookwyrm/templates/book/edit/edit_book_form.html:199 #: bookwyrm/templates/book/edit/edit_book_form.html:199
#: bookwyrm/templates/book/editions/format_filter.html:5 #: bookwyrm/templates/book/editions/format_filter.html:6
msgid "Format:" msgid "Format:"
msgstr "" msgstr ""
@ -1064,17 +1064,17 @@ 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/format_filter.html:8 #: bookwyrm/templates/book/editions/format_filter.html:9
#: bookwyrm/templates/book/editions/language_filter.html:8 #: bookwyrm/templates/book/editions/language_filter.html:9
msgid "Any" msgid "Any"
msgstr "" msgstr ""
#: bookwyrm/templates/book/editions/language_filter.html:5 #: bookwyrm/templates/book/editions/language_filter.html:6
#: bookwyrm/templates/preferences/edit_user.html:95 #: bookwyrm/templates/preferences/edit_user.html:95
msgid "Language:" msgid "Language:"
msgstr "" msgstr ""
#: bookwyrm/templates/book/editions/search_filter.html:5 #: bookwyrm/templates/book/editions/search_filter.html:6
msgid "Search editions" msgid "Search editions"
msgstr "" msgstr ""
@ -4116,7 +4116,7 @@ msgstr ""
msgid "Clear filters" msgid "Clear filters"
msgstr "" msgstr ""
#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:42 #: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43
msgid "Apply filters" msgid "Apply filters"
msgstr "" msgstr ""

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-01-28 02:50+0000\n" "POT-Creation-Date: 2022-01-30 18:17+0000\n"
"PO-Revision-Date: 2022-01-28 08:06\n" "PO-Revision-Date: 2022-01-30 19:38\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"
@ -3574,23 +3574,31 @@ msgstr "Ningún enlace disponible para este dominio."
msgid "Back to reports" msgid "Back to reports"
msgstr "Volver a los informes" msgstr "Volver a los informes"
#: bookwyrm/templates/settings/reports/report.html:22 #: bookwyrm/templates/settings/reports/report.html:23
msgid "Message reporter"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Update on your report:"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:35
msgid "Reported statuses" msgid "Reported statuses"
msgstr "Estados reportados" msgstr "Estados reportados"
#: bookwyrm/templates/settings/reports/report.html:27 #: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted" msgid "Status has been deleted"
msgstr "El estado ha sido eliminado" msgstr "El estado ha sido eliminado"
#: bookwyrm/templates/settings/reports/report.html:39 #: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links" msgid "Reported links"
msgstr "Enlaces denunciados" msgstr "Enlaces denunciados"
#: bookwyrm/templates/settings/reports/report.html:55 #: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Comentarios de moderador" msgstr "Comentarios de moderador"
#: bookwyrm/templates/settings/reports/report.html:73 #: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Comentario" msgstr "Comentario"
@ -4015,14 +4023,14 @@ msgstr "por ciento"
msgid "of %(pages)s pages" msgid "of %(pages)s pages"
msgstr "de %(pages)s páginas" msgstr "de %(pages)s páginas"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
#: bookwyrm/templates/snippets/status/layout.html:34 #: bookwyrm/templates/snippets/status/layout.html:34
#: bookwyrm/templates/snippets/status/layout.html:53 #: bookwyrm/templates/snippets/status/layout.html:53
#: bookwyrm/templates/snippets/status/layout.html:54 #: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply" msgid "Reply"
msgstr "Responder" msgstr "Responder"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content" msgid "Content"
msgstr "Contenido" msgstr "Contenido"

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-01-28 02:50+0000\n" "POT-Creation-Date: 2022-01-30 18:17+0000\n"
"PO-Revision-Date: 2022-01-28 11:29\n" "PO-Revision-Date: 2022-01-30 19:38\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"
@ -3574,23 +3574,31 @@ msgstr "Aucun lien nest disponible pour ce domaine."
msgid "Back to reports" msgid "Back to reports"
msgstr "Retour aux signalements" msgstr "Retour aux signalements"
#: bookwyrm/templates/settings/reports/report.html:22 #: bookwyrm/templates/settings/reports/report.html:23
msgid "Message reporter"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Update on your report:"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:35
msgid "Reported statuses" msgid "Reported statuses"
msgstr "Statuts signalés" msgstr "Statuts signalés"
#: bookwyrm/templates/settings/reports/report.html:27 #: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted" msgid "Status has been deleted"
msgstr "Le statut a été supprimé" msgstr "Le statut a été supprimé"
#: bookwyrm/templates/settings/reports/report.html:39 #: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links" msgid "Reported links"
msgstr "Liens signalés" msgstr "Liens signalés"
#: bookwyrm/templates/settings/reports/report.html:55 #: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Commentaires de léquipe de modération" msgstr "Commentaires de léquipe de modération"
#: bookwyrm/templates/settings/reports/report.html:73 #: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Commentaire" msgstr "Commentaire"
@ -4015,14 +4023,14 @@ msgstr "pourcent"
msgid "of %(pages)s pages" msgid "of %(pages)s pages"
msgstr "sur %(pages)s pages" msgstr "sur %(pages)s pages"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
#: bookwyrm/templates/snippets/status/layout.html:34 #: bookwyrm/templates/snippets/status/layout.html:34
#: bookwyrm/templates/snippets/status/layout.html:53 #: bookwyrm/templates/snippets/status/layout.html:53
#: bookwyrm/templates/snippets/status/layout.html:54 #: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply" msgid "Reply"
msgstr "Répondre" msgstr "Répondre"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content" msgid "Content"
msgstr "Contenu" msgstr "Contenu"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-01-28 02:50+0000\n" "POT-Creation-Date: 2022-01-30 18:17+0000\n"
"PO-Revision-Date: 2022-01-28 05:04\n" "PO-Revision-Date: 2022-01-31 07:59\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"
@ -3574,23 +3574,31 @@ msgstr "Non hai ligazóns dispoñibles para este dominio."
msgid "Back to reports" msgid "Back to reports"
msgstr "Volver a denuncias" msgstr "Volver a denuncias"
#: bookwyrm/templates/settings/reports/report.html:22 #: bookwyrm/templates/settings/reports/report.html:23
msgid "Message reporter"
msgstr "Denunciante"
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Update on your report:"
msgstr "Actualiza a denuncia:"
#: bookwyrm/templates/settings/reports/report.html:35
msgid "Reported statuses" msgid "Reported statuses"
msgstr "Estados dununciados" msgstr "Estados dununciados"
#: bookwyrm/templates/settings/reports/report.html:27 #: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted" msgid "Status has been deleted"
msgstr "O estado foi eliminado" msgstr "O estado foi eliminado"
#: bookwyrm/templates/settings/reports/report.html:39 #: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links" msgid "Reported links"
msgstr "Ligazóns denunciadas" msgstr "Ligazóns denunciadas"
#: bookwyrm/templates/settings/reports/report.html:55 #: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Comentarios da moderación" msgstr "Comentarios da moderación"
#: bookwyrm/templates/settings/reports/report.html:73 #: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Comentario" msgstr "Comentario"
@ -4015,14 +4023,14 @@ msgstr "porcentaxe"
msgid "of %(pages)s pages" msgid "of %(pages)s pages"
msgstr "de %(pages)s páxinas" msgstr "de %(pages)s páxinas"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
#: bookwyrm/templates/snippets/status/layout.html:34 #: bookwyrm/templates/snippets/status/layout.html:34
#: bookwyrm/templates/snippets/status/layout.html:53 #: bookwyrm/templates/snippets/status/layout.html:53
#: bookwyrm/templates/snippets/status/layout.html:54 #: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply" msgid "Reply"
msgstr "Responder" msgstr "Responder"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content" msgid "Content"
msgstr "Contido" msgstr "Contido"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-01-28 02:50+0000\n" "POT-Creation-Date: 2022-01-30 18:17+0000\n"
"PO-Revision-Date: 2022-01-28 19:04\n" "PO-Revision-Date: 2022-01-30 20:36\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"
@ -3574,23 +3574,31 @@ msgstr "Nessun collegamento disponibile per questo libro."
msgid "Back to reports" msgid "Back to reports"
msgstr "Tornare all'elenco dei report" msgstr "Tornare all'elenco dei report"
#: bookwyrm/templates/settings/reports/report.html:22 #: bookwyrm/templates/settings/reports/report.html:23
msgid "Message reporter"
msgstr "Messaggio segnalato"
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Update on your report:"
msgstr "Aggiornamento sul tuo rapporto:"
#: bookwyrm/templates/settings/reports/report.html:35
msgid "Reported statuses" msgid "Reported statuses"
msgstr "Stati segnalati" msgstr "Stati segnalati"
#: bookwyrm/templates/settings/reports/report.html:27 #: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted" msgid "Status has been deleted"
msgstr "Lo stato è stato eliminato" msgstr "Lo stato è stato eliminato"
#: bookwyrm/templates/settings/reports/report.html:39 #: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links" msgid "Reported links"
msgstr "Collegamenti segnalati" msgstr "Collegamenti segnalati"
#: bookwyrm/templates/settings/reports/report.html:55 #: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Commenti del moderatore" msgstr "Commenti del moderatore"
#: bookwyrm/templates/settings/reports/report.html:73 #: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Commenta" msgstr "Commenta"
@ -4015,14 +4023,14 @@ msgstr "percentuale"
msgid "of %(pages)s pages" msgid "of %(pages)s pages"
msgstr "di %(pages)s pagine" msgstr "di %(pages)s pagine"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
#: bookwyrm/templates/snippets/status/layout.html:34 #: bookwyrm/templates/snippets/status/layout.html:34
#: bookwyrm/templates/snippets/status/layout.html:53 #: bookwyrm/templates/snippets/status/layout.html:53
#: bookwyrm/templates/snippets/status/layout.html:54 #: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply" msgid "Reply"
msgstr "Rispondi" msgstr "Rispondi"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content" msgid "Content"
msgstr "Contenuto" msgstr "Contenuto"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-01-28 02:50+0000\n" "POT-Creation-Date: 2022-01-30 18:17+0000\n"
"PO-Revision-Date: 2022-01-30 17:27\n" "PO-Revision-Date: 2022-01-31 15:31\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"
@ -3603,23 +3603,31 @@ msgstr ""
msgid "Back to reports" msgid "Back to reports"
msgstr "Atgal į pranešimus" msgstr "Atgal į pranešimus"
#: bookwyrm/templates/settings/reports/report.html:22 #: bookwyrm/templates/settings/reports/report.html:23
msgid "Message reporter"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Update on your report:"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:35
msgid "Reported statuses" msgid "Reported statuses"
msgstr "Praneštos būsenos" msgstr "Praneštos būsenos"
#: bookwyrm/templates/settings/reports/report.html:27 #: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted" msgid "Status has been deleted"
msgstr "Būsena ištrinta" msgstr "Būsena ištrinta"
#: bookwyrm/templates/settings/reports/report.html:39 #: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links" msgid "Reported links"
msgstr "Raportuotos nuorodos" msgstr "Raportuotos nuorodos"
#: bookwyrm/templates/settings/reports/report.html:55 #: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Moderatoriaus komentarai" msgstr "Moderatoriaus komentarai"
#: bookwyrm/templates/settings/reports/report.html:73 #: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Komentuoti" msgstr "Komentuoti"
@ -4048,14 +4056,14 @@ msgstr "procentai"
msgid "of %(pages)s pages" msgid "of %(pages)s pages"
msgstr "iš %(pages)s psl." msgstr "iš %(pages)s psl."
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
#: bookwyrm/templates/snippets/status/layout.html:34 #: bookwyrm/templates/snippets/status/layout.html:34
#: bookwyrm/templates/snippets/status/layout.html:53 #: bookwyrm/templates/snippets/status/layout.html:53
#: bookwyrm/templates/snippets/status/layout.html:54 #: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply" msgid "Reply"
msgstr "Atsakyti" msgstr "Atsakyti"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content" msgid "Content"
msgstr "Turinys" msgstr "Turinys"
@ -4420,7 +4428,7 @@ msgstr "redaguota %(date)s"
#: bookwyrm/templates/snippets/status/headers/comment.html:8 #: bookwyrm/templates/snippets/status/headers/comment.html:8
#, python-format #, python-format
msgid "commented on <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>" msgid "commented on <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>"
msgstr "" msgstr "pakomentavo autoriaus <a href=\"%(author_path)s\">%(author_name)s</a> knygą <a href=\"%(book_path)s\">%(book)s</a>"
#: bookwyrm/templates/snippets/status/headers/comment.html:15 #: bookwyrm/templates/snippets/status/headers/comment.html:15
#, python-format #, python-format
@ -4714,8 +4722,8 @@ msgstr "Būsenos atnaujinimai iš {obj.display_name}"
#, python-format #, python-format
msgid "Load %(count)d unread status" msgid "Load %(count)d unread status"
msgid_plural "Load %(count)d unread statuses" msgid_plural "Load %(count)d unread statuses"
msgstr[0] "" msgstr[0] "Įkelti %(count)d neperskaitytą statusą"
msgstr[1] "" msgstr[1] "Įkelti %(count)d neperskaitytus statusus"
msgstr[2] "" msgstr[2] "Įkelti %(count)d neperskaitytą statusą"
msgstr[3] "" msgstr[3] "Įkelti %(count)d neperskaitytą statusą"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-01-28 02:50+0000\n" "POT-Creation-Date: 2022-01-30 18:17+0000\n"
"PO-Revision-Date: 2022-01-28 04:03\n" "PO-Revision-Date: 2022-01-30 21:36\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"
@ -193,20 +193,20 @@ msgstr "Privat"
#: bookwyrm/models/link.py:51 #: bookwyrm/models/link.py:51
msgid "Free" msgid "Free"
msgstr "" msgstr "Gratis"
#: bookwyrm/models/link.py:52 #: bookwyrm/models/link.py:52
msgid "Purchasable" msgid "Purchasable"
msgstr "" msgstr "Tilgjengelig for kjøp"
#: bookwyrm/models/link.py:53 #: bookwyrm/models/link.py:53
msgid "Available for loan" msgid "Available for loan"
msgstr "" msgstr "Tilgjengelig for utlån"
#: bookwyrm/models/link.py:70 #: bookwyrm/models/link.py:70
#: bookwyrm/templates/settings/link_domains/link_domains.html:23 #: bookwyrm/templates/settings/link_domains/link_domains.html:23
msgid "Approved" msgid "Approved"
msgstr "" msgstr "Godkjent"
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272 #: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
msgid "Reviews" msgid "Reviews"
@ -284,7 +284,7 @@ msgstr "Português Europeu (Europeisk Portugisisk)"
#: bookwyrm/settings.py:258 #: bookwyrm/settings.py:258
msgid "Swedish (Svenska)" msgid "Swedish (Svenska)"
msgstr "" msgstr "Svensk (Svenska)"
#: bookwyrm/settings.py:259 #: bookwyrm/settings.py:259
msgid "简体中文 (Simplified Chinese)" msgid "简体中文 (Simplified Chinese)"
@ -328,7 +328,7 @@ msgstr "Velkommen til %(site_name)s!"
#: bookwyrm/templates/about/about.html:23 #: bookwyrm/templates/about/about.html:23
#, python-format #, python-format
msgid "%(site_name)s is part of <em>BookWyrm</em>, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the <a href=\"https://joinbookwyrm.com/instances/\" target=\"_blank\">BookWyrm network</a>, this community is unique." msgid "%(site_name)s is part of <em>BookWyrm</em>, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the <a href=\"https://joinbookwyrm.com/instances/\" target=\"_blank\">BookWyrm network</a>, this community is unique."
msgstr "" msgstr "%(site_name)s er en del av <em>BookWyrm</em>, et nettverk av selvstendige, selvstyrte samfunn for lesere. Du kan kommunisere sømløst med brukere hvor som helst i <a href=\"https://joinbookwyrm.com/instances/\" target=\"_blank\">BookWyrm nettverket</a>, men hvert samfunn er unikt."
#: bookwyrm/templates/about/about.html:40 #: bookwyrm/templates/about/about.html:40
#, python-format #, python-format
@ -356,7 +356,7 @@ msgstr "Møt administratorene"
#: bookwyrm/templates/about/about.html:99 #: bookwyrm/templates/about/about.html:99
#, python-format #, python-format
msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the <a href=\"coc_path\">code of conduct</a>, and respond when users report spam and bad behavior." msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the <a href=\"coc_path\">code of conduct</a>, and respond when users report spam and bad behavior."
msgstr "" msgstr "%(site_name)s sine moderatorer og administratorer holder nettsida oppe og tilgjengelig, håndhever <a href=\"coc_path\">adferdskoden</a>, og svarer på brukernes rapporterer om spam og dårlig atferd."
#: bookwyrm/templates/about/about.html:113 #: bookwyrm/templates/about/about.html:113
msgid "Moderator" msgid "Moderator"
@ -1071,51 +1071,53 @@ msgstr "Søk etter utgaver"
#: bookwyrm/templates/book/file_links/add_link_modal.html:6 #: bookwyrm/templates/book/file_links/add_link_modal.html:6
msgid "Add file link" msgid "Add file link"
msgstr "" msgstr "Legg til fillenke"
#: bookwyrm/templates/book/file_links/add_link_modal.html:19 #: bookwyrm/templates/book/file_links/add_link_modal.html:19
msgid "Links from unknown domains will need to be approved by a moderator before they are added." msgid "Links from unknown domains will need to be approved by a moderator before they are added."
msgstr "" msgstr "Lenker fra ukjente domener må være godkjent av en moderator før de kan legges til."
#: bookwyrm/templates/book/file_links/add_link_modal.html:24 #: bookwyrm/templates/book/file_links/add_link_modal.html:24
msgid "URL:" msgid "URL:"
msgstr "" msgstr "URL:"
#: bookwyrm/templates/book/file_links/add_link_modal.html:29 #: bookwyrm/templates/book/file_links/add_link_modal.html:29
msgid "File type:" msgid "File type:"
msgstr "" msgstr "Filtype:"
#: bookwyrm/templates/book/file_links/add_link_modal.html:48 #: bookwyrm/templates/book/file_links/add_link_modal.html:48
msgid "Availability:" msgid "Availability:"
msgstr "" msgstr "Tilgjengelighet:"
#: bookwyrm/templates/book/file_links/edit_links.html:5 #: bookwyrm/templates/book/file_links/edit_links.html:5
#: bookwyrm/templates/book/file_links/edit_links.html:22 #: bookwyrm/templates/book/file_links/edit_links.html:22
#: bookwyrm/templates/book/file_links/links.html:53 #: bookwyrm/templates/book/file_links/links.html:53
msgid "Edit links" msgid "Edit links"
msgstr "" 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 "\n"
" Links for \"<em>%(title)s</em>\"\n" " 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
msgid "URL" msgid "URL"
msgstr "" msgstr "URL"
#: bookwyrm/templates/book/file_links/edit_links.html:33 #: bookwyrm/templates/book/file_links/edit_links.html:33
#: bookwyrm/templates/settings/link_domains/link_table.html:7 #: bookwyrm/templates/settings/link_domains/link_table.html:7
msgid "Added by" msgid "Added by"
msgstr "" msgstr "Lagt til av"
#: bookwyrm/templates/book/file_links/edit_links.html:34 #: bookwyrm/templates/book/file_links/edit_links.html:34
#: bookwyrm/templates/settings/link_domains/link_table.html:8 #: bookwyrm/templates/settings/link_domains/link_table.html:8
msgid "Filetype" msgid "Filetype"
msgstr "" msgstr "Filtype"
#: bookwyrm/templates/book/file_links/edit_links.html:35 #: bookwyrm/templates/book/file_links/edit_links.html:35
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
@ -1143,41 +1145,41 @@ msgstr "Handlinger"
#: bookwyrm/templates/book/file_links/edit_links.html:53 #: bookwyrm/templates/book/file_links/edit_links.html:53
#: bookwyrm/templates/book/file_links/verification_modal.html:25 #: bookwyrm/templates/book/file_links/verification_modal.html:25
msgid "Report spam" msgid "Report spam"
msgstr "" msgstr "Rapporter spam"
#: bookwyrm/templates/book/file_links/edit_links.html:97 #: bookwyrm/templates/book/file_links/edit_links.html:97
msgid "No links available for this book." msgid "No links available for this book."
msgstr "" msgstr "Ingen lenker er tilgjengelig for denne boka."
#: bookwyrm/templates/book/file_links/edit_links.html:108 #: bookwyrm/templates/book/file_links/edit_links.html:108
#: bookwyrm/templates/book/file_links/links.html:18 #: bookwyrm/templates/book/file_links/links.html:18
msgid "Add link to file" msgid "Add link to file"
msgstr "" msgstr "Legg til lenke til fil"
#: bookwyrm/templates/book/file_links/file_link_page.html:6 #: bookwyrm/templates/book/file_links/file_link_page.html:6
msgid "File Links" msgid "File Links"
msgstr "" msgstr "Fillenker"
#: bookwyrm/templates/book/file_links/links.html:9 #: bookwyrm/templates/book/file_links/links.html:9
msgid "Get a copy" msgid "Get a copy"
msgstr "" msgstr "Få en kopi"
#: bookwyrm/templates/book/file_links/links.html:47 #: bookwyrm/templates/book/file_links/links.html:47
msgid "No links available" msgid "No links available"
msgstr "" msgstr "Ingen tilgjengelige lenker"
#: bookwyrm/templates/book/file_links/verification_modal.html:5 #: bookwyrm/templates/book/file_links/verification_modal.html:5
msgid "Leaving BookWyrm" msgid "Leaving BookWyrm"
msgstr "" msgstr "Forlater BookWyrm"
#: bookwyrm/templates/book/file_links/verification_modal.html:11 #: bookwyrm/templates/book/file_links/verification_modal.html:11
#, python-format #, python-format
msgid "This link is taking you to: <code>%(link_url)s</code>.<br> Is that where you'd like to go?" msgid "This link is taking you to: <code>%(link_url)s</code>.<br> Is that where you'd like to go?"
msgstr "" msgstr "Denne lenka sender deg til: <code>%(link_url)s</code>.<br> Er det dit du vil dra?"
#: bookwyrm/templates/book/file_links/verification_modal.html:20 #: bookwyrm/templates/book/file_links/verification_modal.html:20
msgid "Continue" msgid "Continue"
msgstr "" msgstr "Fortsett"
#: bookwyrm/templates/book/publisher_info.html:23 #: bookwyrm/templates/book/publisher_info.html:23
#, python-format #, python-format
@ -2045,7 +2047,7 @@ msgstr "Avslå"
#: bookwyrm/templates/import/tooltip.html:6 #: bookwyrm/templates/import/tooltip.html:6
msgid "You can download your Goodreads data from the <a href=\"https://www.goodreads.com/review/import\" target=\"_blank\" rel=\"noopener noreferrer\">Import/Export page</a> of your Goodreads account." msgid "You can download your Goodreads data from the <a href=\"https://www.goodreads.com/review/import\" target=\"_blank\" rel=\"noopener noreferrer\">Import/Export page</a> of your Goodreads account."
msgstr "" msgstr "Du kan laste ned Goodread-dataene dine fra <a href=\"https://www.goodreads.com/review/import\" target=\"_blank\" rel=\"noopener noreferrer\">Import/Export sida</a> på Goodread-kontoen din."
#: bookwyrm/templates/import/troubleshoot.html:7 #: bookwyrm/templates/import/troubleshoot.html:7
msgid "Failed items" msgid "Failed items"
@ -2248,12 +2250,12 @@ msgstr "BookWyrms kildekode er fritt tilgjengelig. Du kan bidra eller rapportere
#: bookwyrm/templates/lists/add_item_modal.html:8 #: bookwyrm/templates/lists/add_item_modal.html:8
#, python-format #, python-format
msgid "Add \"<em>%(title)s</em>\" to this list" msgid "Add \"<em>%(title)s</em>\" to this list"
msgstr "" msgstr "Legg til \"<em>%(title)s</em>\" på denne lista"
#: bookwyrm/templates/lists/add_item_modal.html:12 #: bookwyrm/templates/lists/add_item_modal.html:12
#, python-format #, python-format
msgid "Suggest \"<em>%(title)s</em>\" for this list" msgid "Suggest \"<em>%(title)s</em>\" for this list"
msgstr "" msgstr "Foreslå \"<em>%(title)s</em>\" for denne lista"
#: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/add_item_modal.html:39
#: bookwyrm/templates/lists/list.html:249 #: bookwyrm/templates/lists/list.html:249
@ -2295,7 +2297,7 @@ msgstr "Nå er du klar!"
#: bookwyrm/templates/lists/list.html:83 #: bookwyrm/templates/lists/list.html:83
#, python-format #, python-format
msgid "<a href=\"%(user_path)s\">%(username)s</a> says:" msgid "<a href=\"%(user_path)s\">%(username)s</a> says:"
msgstr "" msgstr "<a href=\"%(user_path)s\">%(username)s</a> sier:"
#: bookwyrm/templates/lists/curate.html:55 #: bookwyrm/templates/lists/curate.html:55
msgid "Suggested by" msgid "Suggested by"
@ -2393,7 +2395,7 @@ msgstr "Notater:"
#: bookwyrm/templates/lists/item_notes_field.html:19 #: bookwyrm/templates/lists/item_notes_field.html:19
msgid "An optional note that will be displayed with the book." msgid "An optional note that will be displayed with the book."
msgstr "" msgstr "En valgfri merknad som vil vises sammen med boken."
#: bookwyrm/templates/lists/list.html:36 #: bookwyrm/templates/lists/list.html:36
msgid "You successfully suggested a book for this list!" msgid "You successfully suggested a book for this list!"
@ -2405,11 +2407,11 @@ msgstr "Du har nå lagt til ei bok i denne lista!"
#: bookwyrm/templates/lists/list.html:96 #: bookwyrm/templates/lists/list.html:96
msgid "Edit notes" msgid "Edit notes"
msgstr "" msgstr "Rediger merknader"
#: bookwyrm/templates/lists/list.html:111 #: bookwyrm/templates/lists/list.html:111
msgid "Add notes" msgid "Add notes"
msgstr "" msgstr "Legg til merknader"
#: bookwyrm/templates/lists/list.html:123 #: bookwyrm/templates/lists/list.html:123
#, python-format #, python-format
@ -3129,8 +3131,8 @@ msgstr[1] "%(display_count)s åpne rapporter"
#, python-format #, python-format
msgid "%(display_count)s domain needs review" msgid "%(display_count)s domain needs review"
msgid_plural "%(display_count)s domains need review" msgid_plural "%(display_count)s domains need review"
msgstr[0] "" msgstr[0] "%(display_count)s domene må godkjennes"
msgstr[1] "" msgstr[1] "%(display_count)s domener må godkjennes"
#: bookwyrm/templates/settings/dashboard/dashboard.html:65 #: bookwyrm/templates/settings/dashboard/dashboard.html:65
#, python-format #, python-format
@ -3523,7 +3525,7 @@ msgstr "Rapporter"
#: bookwyrm/templates/settings/link_domains/link_domains.html:5 #: bookwyrm/templates/settings/link_domains/link_domains.html:5
#: bookwyrm/templates/settings/link_domains/link_domains.html:7 #: bookwyrm/templates/settings/link_domains/link_domains.html:7
msgid "Link Domains" msgid "Link Domains"
msgstr "" msgstr "Lenkedomener"
#: bookwyrm/templates/settings/layout.html:72 #: bookwyrm/templates/settings/layout.html:72
msgid "Instance Settings" msgid "Instance Settings"
@ -3538,57 +3540,65 @@ msgstr "Sideinnstillinger"
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5
#, python-format #, python-format
msgid "Set display name for %(url)s" msgid "Set display name for %(url)s"
msgstr "" msgstr "Angi visningsnavn for %(url)s"
#: bookwyrm/templates/settings/link_domains/link_domains.html:11 #: bookwyrm/templates/settings/link_domains/link_domains.html:11
msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving."
msgstr "" msgstr "Nettstedsdomener må godkjennes før de kan vises på boksidene. Vennligst sjekk at domenene ikke fører spam, ondsinnet kode eller lurelenker før du godkjenner."
#: bookwyrm/templates/settings/link_domains/link_domains.html:45 #: bookwyrm/templates/settings/link_domains/link_domains.html:45
msgid "Set display name" msgid "Set display name"
msgstr "" msgstr "Angi visningsnavn"
#: bookwyrm/templates/settings/link_domains/link_domains.html:53 #: bookwyrm/templates/settings/link_domains/link_domains.html:53
msgid "View links" msgid "View links"
msgstr "" msgstr "Vis lenker"
#: bookwyrm/templates/settings/link_domains/link_domains.html:96 #: bookwyrm/templates/settings/link_domains/link_domains.html:96
msgid "No domains currently approved" msgid "No domains currently approved"
msgstr "" msgstr "Ingen domener er hittil godkjent"
#: bookwyrm/templates/settings/link_domains/link_domains.html:98 #: bookwyrm/templates/settings/link_domains/link_domains.html:98
msgid "No domains currently pending" msgid "No domains currently pending"
msgstr "" msgstr "Ingen domener venter for tiden på godkjenning"
#: bookwyrm/templates/settings/link_domains/link_domains.html:100 #: bookwyrm/templates/settings/link_domains/link_domains.html:100
msgid "No domains currently blocked" msgid "No domains currently blocked"
msgstr "" msgstr "Ingen domener er for øyeblikket blokkert"
#: bookwyrm/templates/settings/link_domains/link_table.html:39 #: bookwyrm/templates/settings/link_domains/link_table.html:39
msgid "No links available for this domain." msgid "No links available for this domain."
msgstr "" msgstr "Ingen lenker tilgjengelig til dette domenet."
#: bookwyrm/templates/settings/reports/report.html:11 #: bookwyrm/templates/settings/reports/report.html:11
msgid "Back to reports" msgid "Back to reports"
msgstr "Tilbake til rapporter" msgstr "Tilbake til rapporter"
#: bookwyrm/templates/settings/reports/report.html:22 #: bookwyrm/templates/settings/reports/report.html:23
msgid "Message reporter"
msgstr "Send melding til rapportør"
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Update on your report:"
msgstr "Oppdatering på din rapport:"
#: bookwyrm/templates/settings/reports/report.html:35
msgid "Reported statuses" msgid "Reported statuses"
msgstr "Rapporterte statuser" msgstr "Rapporterte statuser"
#: bookwyrm/templates/settings/reports/report.html:27 #: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted" msgid "Status has been deleted"
msgstr "Status er slettet" msgstr "Status er slettet"
#: bookwyrm/templates/settings/reports/report.html:39 #: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links" msgid "Reported links"
msgstr "" msgstr "Rapporterte lenker"
#: bookwyrm/templates/settings/reports/report.html:55 #: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Moderatorkommentarer" msgstr "Moderatorkommentarer"
#: bookwyrm/templates/settings/reports/report.html:73 #: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Kommentar" msgstr "Kommentar"
@ -3596,21 +3606,21 @@ msgstr "Kommentar"
#: bookwyrm/templates/settings/reports/report_header.html:6 #: bookwyrm/templates/settings/reports/report_header.html:6
#, python-format #, python-format
msgid "Report #%(report_id)s: Status posted by @%(username)s" msgid "Report #%(report_id)s: Status posted by @%(username)s"
msgstr "" msgstr "Rapportér #%(report_id)s: Status postet av @%(username)s"
#: bookwyrm/templates/settings/reports/report_header.html:12 #: bookwyrm/templates/settings/reports/report_header.html:12
#, python-format #, python-format
msgid "Report #%(report_id)s: Link added by @%(username)s" msgid "Report #%(report_id)s: Link added by @%(username)s"
msgstr "" msgstr "Rapportér #%(report_id)s: Lenke lagt til av @%(username)s"
#: bookwyrm/templates/settings/reports/report_header.html:18 #: bookwyrm/templates/settings/reports/report_header.html:18
#, python-format #, python-format
msgid "Report #%(report_id)s: User @%(username)s" msgid "Report #%(report_id)s: User @%(username)s"
msgstr "" msgstr "Rapportér #%(report_id)s: bruker @%(username)s"
#: bookwyrm/templates/settings/reports/report_links_table.html:17 #: bookwyrm/templates/settings/reports/report_links_table.html:17
msgid "Block domain" msgid "Block domain"
msgstr "" msgstr "Blokkér domene"
#: bookwyrm/templates/settings/reports/report_preview.html:17 #: bookwyrm/templates/settings/reports/report_preview.html:17
msgid "No notes provided" msgid "No notes provided"
@ -3619,7 +3629,7 @@ msgstr "Ingen merknader finnes"
#: bookwyrm/templates/settings/reports/report_preview.html:24 #: bookwyrm/templates/settings/reports/report_preview.html:24
#, python-format #, python-format
msgid "Reported by <a href=\"%(path)s\">@%(username)s</a>" msgid "Reported by <a href=\"%(path)s\">@%(username)s</a>"
msgstr "" msgstr "Rapportert av <a href=\"%(path)s\">%(username)s</a>"
#: bookwyrm/templates/settings/reports/report_preview.html:34 #: bookwyrm/templates/settings/reports/report_preview.html:34
msgid "Re-open" msgid "Re-open"
@ -3865,7 +3875,7 @@ msgstr "Slettet for godt"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:8 #: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "User Actions" msgid "User Actions"
msgstr "" msgstr "Brukerhandlinger"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:21 #: bookwyrm/templates/settings/users/user_moderation_actions.html:21
msgid "Suspend user" msgid "Suspend user"
@ -4013,14 +4023,14 @@ msgstr "prosent"
msgid "of %(pages)s pages" msgid "of %(pages)s pages"
msgstr "av %(pages)s sider" msgstr "av %(pages)s sider"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
#: bookwyrm/templates/snippets/status/layout.html:34 #: bookwyrm/templates/snippets/status/layout.html:34
#: bookwyrm/templates/snippets/status/layout.html:53 #: bookwyrm/templates/snippets/status/layout.html:53
#: bookwyrm/templates/snippets/status/layout.html:54 #: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply" msgid "Reply"
msgstr "Svar" msgstr "Svar"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content" msgid "Content"
msgstr "Innhold" msgstr "Innhold"
@ -4167,13 +4177,13 @@ msgstr[1] "vurderte <em><a href=\"%(path)s\">%(title)s</a></em> til: %(display_r
#, python-format #, python-format
msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s"
msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s"
msgstr[0] "" msgstr[0] "Anmeldelse av \"%(book_title)s\" (%(display_rating)s stjerne): %(review_title)s"
msgstr[1] "" msgstr[1] "Anmeldelse av \"%(book_title)s\" (%(display_rating)s stjerner): %(review_title)s"
#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 #: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12
#, python-format #, python-format
msgid "Review of \"%(book_title)s\": %(review_title)s" msgid "Review of \"%(book_title)s\": %(review_title)s"
msgstr "" msgstr "Anmeldelse av \"%(book_title)s\": %(review_title)s"
#: bookwyrm/templates/snippets/goal_form.html:4 #: bookwyrm/templates/snippets/goal_form.html:4
#, python-format #, python-format
@ -4282,12 +4292,12 @@ msgstr "Registrer deg"
#: bookwyrm/templates/snippets/report_modal.html:8 #: bookwyrm/templates/snippets/report_modal.html:8
#, python-format #, python-format
msgid "Report @%(username)s's status" msgid "Report @%(username)s's status"
msgstr "" msgstr "Rapportér @%(username)s sin status"
#: bookwyrm/templates/snippets/report_modal.html:10 #: bookwyrm/templates/snippets/report_modal.html:10
#, python-format #, python-format
msgid "Report %(domain)s link" msgid "Report %(domain)s link"
msgstr "" msgstr "Rapportér %(domain)s lenke"
#: bookwyrm/templates/snippets/report_modal.html:12 #: bookwyrm/templates/snippets/report_modal.html:12
#, python-format #, python-format
@ -4301,7 +4311,7 @@ msgstr "Denne rapporten vil bli sendt til %(site_name)s sine moderatorer for gje
#: bookwyrm/templates/snippets/report_modal.html:36 #: bookwyrm/templates/snippets/report_modal.html:36
msgid "Links from this domain will be removed until your report has been reviewed." msgid "Links from this domain will be removed until your report has been reviewed."
msgstr "" msgstr "Lenker fra dette domenet vil fjernes fram til rapporten din er ferbigbehandlet."
#: bookwyrm/templates/snippets/report_modal.html:41 #: bookwyrm/templates/snippets/report_modal.html:41
msgid "More info about this report:" msgid "More info about this report:"
@ -4665,6 +4675,6 @@ msgstr "Statusoppdateringer fra {obj.display_name}"
#, python-format #, python-format
msgid "Load %(count)d unread status" msgid "Load %(count)d unread status"
msgid_plural "Load %(count)d unread statuses" msgid_plural "Load %(count)d unread statuses"
msgstr[0] "" msgstr[0] "Last inn %(count)d ulest status"
msgstr[1] "" msgstr[1] "Last inn %(count)d uleste statuser"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-01-28 02:50+0000\n" "POT-Creation-Date: 2022-01-30 18:17+0000\n"
"PO-Revision-Date: 2022-01-29 14:28\n" "PO-Revision-Date: 2022-01-30 19:38\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"
@ -3574,23 +3574,31 @@ msgstr "Nenhum link disponível para este domínio."
msgid "Back to reports" msgid "Back to reports"
msgstr "Voltar às denúncias" msgstr "Voltar às denúncias"
#: bookwyrm/templates/settings/reports/report.html:22 #: bookwyrm/templates/settings/reports/report.html:23
msgid "Message reporter"
msgstr "Enviar mensagem a quem denunciou"
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Update on your report:"
msgstr "Atualização sobre sua denúncia:"
#: bookwyrm/templates/settings/reports/report.html:35
msgid "Reported statuses" msgid "Reported statuses"
msgstr "Publicações denunciadas" msgstr "Publicações denunciadas"
#: bookwyrm/templates/settings/reports/report.html:27 #: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted" msgid "Status has been deleted"
msgstr "A publicação foi excluída" msgstr "A publicação foi excluída"
#: bookwyrm/templates/settings/reports/report.html:39 #: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links" msgid "Reported links"
msgstr "Links denunciados" msgstr "Links denunciados"
#: bookwyrm/templates/settings/reports/report.html:55 #: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Comentários da moderação" msgstr "Comentários da moderação"
#: bookwyrm/templates/settings/reports/report.html:73 #: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Comentar" msgstr "Comentar"
@ -4015,14 +4023,14 @@ msgstr "porcentagem"
msgid "of %(pages)s pages" msgid "of %(pages)s pages"
msgstr "de %(pages)s páginas" msgstr "de %(pages)s páginas"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
#: bookwyrm/templates/snippets/status/layout.html:34 #: bookwyrm/templates/snippets/status/layout.html:34
#: bookwyrm/templates/snippets/status/layout.html:53 #: bookwyrm/templates/snippets/status/layout.html:53
#: bookwyrm/templates/snippets/status/layout.html:54 #: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply" msgid "Reply"
msgstr "Responder" msgstr "Responder"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content" msgid "Content"
msgstr "Conteúdo" msgstr "Conteúdo"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-01-28 02:50+0000\n" "POT-Creation-Date: 2022-01-30 18:17+0000\n"
"PO-Revision-Date: 2022-01-28 04:03\n" "PO-Revision-Date: 2022-01-30 19:38\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"
@ -3572,23 +3572,31 @@ msgstr ""
msgid "Back to reports" msgid "Back to reports"
msgstr "Voltar para denúncias" msgstr "Voltar para denúncias"
#: bookwyrm/templates/settings/reports/report.html:22 #: bookwyrm/templates/settings/reports/report.html:23
msgid "Message reporter"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Update on your report:"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:35
msgid "Reported statuses" msgid "Reported statuses"
msgstr "Estados denunciados" msgstr "Estados denunciados"
#: bookwyrm/templates/settings/reports/report.html:27 #: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted" msgid "Status has been deleted"
msgstr "O estado foi eliminado" msgstr "O estado foi eliminado"
#: bookwyrm/templates/settings/reports/report.html:39 #: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links" msgid "Reported links"
msgstr "" msgstr ""
#: bookwyrm/templates/settings/reports/report.html:55 #: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Comentários do Moderador" msgstr "Comentários do Moderador"
#: bookwyrm/templates/settings/reports/report.html:73 #: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Comentar" msgstr "Comentar"
@ -4013,14 +4021,14 @@ msgstr "porcento"
msgid "of %(pages)s pages" msgid "of %(pages)s pages"
msgstr "%(pages)s páginas" msgstr "%(pages)s páginas"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
#: bookwyrm/templates/snippets/status/layout.html:34 #: bookwyrm/templates/snippets/status/layout.html:34
#: bookwyrm/templates/snippets/status/layout.html:53 #: bookwyrm/templates/snippets/status/layout.html:53
#: bookwyrm/templates/snippets/status/layout.html:54 #: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply" msgid "Reply"
msgstr "Responder" msgstr "Responder"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content" msgid "Content"
msgstr "Conteúdo" msgstr "Conteúdo"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-01-28 02:50+0000\n" "POT-Creation-Date: 2022-01-30 18:17+0000\n"
"PO-Revision-Date: 2022-01-28 04:03\n" "PO-Revision-Date: 2022-01-30 19:38\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"
@ -3574,23 +3574,31 @@ msgstr "Inga länkar tillgängliga för den här domänen."
msgid "Back to reports" msgid "Back to reports"
msgstr "Tillbaka till rapporter" msgstr "Tillbaka till rapporter"
#: bookwyrm/templates/settings/reports/report.html:22 #: bookwyrm/templates/settings/reports/report.html:23
msgid "Message reporter"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Update on your report:"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:35
msgid "Reported statuses" msgid "Reported statuses"
msgstr "Rapporterade statusar" msgstr "Rapporterade statusar"
#: bookwyrm/templates/settings/reports/report.html:27 #: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted" msgid "Status has been deleted"
msgstr "Statusen har tagits bort" msgstr "Statusen har tagits bort"
#: bookwyrm/templates/settings/reports/report.html:39 #: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links" msgid "Reported links"
msgstr "Rapporterade länkar" msgstr "Rapporterade länkar"
#: bookwyrm/templates/settings/reports/report.html:55 #: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "Moderatorns kommentarer" msgstr "Moderatorns kommentarer"
#: bookwyrm/templates/settings/reports/report.html:73 #: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "Kommentar" msgstr "Kommentar"
@ -4015,14 +4023,14 @@ msgstr "procent"
msgid "of %(pages)s pages" msgid "of %(pages)s pages"
msgstr "av %(pages)s sidor" msgstr "av %(pages)s sidor"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
#: bookwyrm/templates/snippets/status/layout.html:34 #: bookwyrm/templates/snippets/status/layout.html:34
#: bookwyrm/templates/snippets/status/layout.html:53 #: bookwyrm/templates/snippets/status/layout.html:53
#: bookwyrm/templates/snippets/status/layout.html:54 #: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply" msgid "Reply"
msgstr "Svara" msgstr "Svara"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content" msgid "Content"
msgstr "Innehåll" msgstr "Innehåll"

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-01-28 02:50+0000\n" "POT-Creation-Date: 2022-01-30 18:17+0000\n"
"PO-Revision-Date: 2022-01-28 04:03\n" "PO-Revision-Date: 2022-01-30 19:38\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"
@ -3557,23 +3557,31 @@ msgstr ""
msgid "Back to reports" msgid "Back to reports"
msgstr "回到报告" msgstr "回到报告"
#: bookwyrm/templates/settings/reports/report.html:22 #: bookwyrm/templates/settings/reports/report.html:23
msgid "Message reporter"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Update on your report:"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:35
msgid "Reported statuses" msgid "Reported statuses"
msgstr "被报告的状态" msgstr "被报告的状态"
#: bookwyrm/templates/settings/reports/report.html:27 #: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted" msgid "Status has been deleted"
msgstr "状态已被删除" msgstr "状态已被删除"
#: bookwyrm/templates/settings/reports/report.html:39 #: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links" msgid "Reported links"
msgstr "" msgstr ""
#: bookwyrm/templates/settings/reports/report.html:55 #: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "监察员评论" msgstr "监察员评论"
#: bookwyrm/templates/settings/reports/report.html:73 #: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "评论" msgstr "评论"
@ -3996,14 +4004,14 @@ msgstr "百分比"
msgid "of %(pages)s pages" msgid "of %(pages)s pages"
msgstr "全书 %(pages)s 页" msgstr "全书 %(pages)s 页"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
#: bookwyrm/templates/snippets/status/layout.html:34 #: bookwyrm/templates/snippets/status/layout.html:34
#: bookwyrm/templates/snippets/status/layout.html:53 #: bookwyrm/templates/snippets/status/layout.html:53
#: bookwyrm/templates/snippets/status/layout.html:54 #: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply" msgid "Reply"
msgstr "回复" msgstr "回复"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content" msgid "Content"
msgstr "内容" msgstr "内容"

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-01-28 02:50+0000\n" "POT-Creation-Date: 2022-01-30 18:17+0000\n"
"PO-Revision-Date: 2022-01-28 04:03\n" "PO-Revision-Date: 2022-01-30 19:38\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"
@ -3557,23 +3557,31 @@ msgstr ""
msgid "Back to reports" msgid "Back to reports"
msgstr "回到舉報" msgstr "回到舉報"
#: bookwyrm/templates/settings/reports/report.html:22 #: bookwyrm/templates/settings/reports/report.html:23
msgid "Message reporter"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:27
msgid "Update on your report:"
msgstr ""
#: bookwyrm/templates/settings/reports/report.html:35
msgid "Reported statuses" msgid "Reported statuses"
msgstr "被舉報的狀態" msgstr "被舉報的狀態"
#: bookwyrm/templates/settings/reports/report.html:27 #: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted" msgid "Status has been deleted"
msgstr "狀態已被刪除" msgstr "狀態已被刪除"
#: bookwyrm/templates/settings/reports/report.html:39 #: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links" msgid "Reported links"
msgstr "" msgstr ""
#: bookwyrm/templates/settings/reports/report.html:55 #: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments" msgid "Moderator Comments"
msgstr "監察員評論" msgstr "監察員評論"
#: bookwyrm/templates/settings/reports/report.html:73 #: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28 #: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment" msgid "Comment"
msgstr "評論" msgstr "評論"
@ -3996,14 +4004,14 @@ msgstr "百分比"
msgid "of %(pages)s pages" msgid "of %(pages)s pages"
msgstr "全書 %(pages)s 頁" msgstr "全書 %(pages)s 頁"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
#: bookwyrm/templates/snippets/status/layout.html:34 #: bookwyrm/templates/snippets/status/layout.html:34
#: bookwyrm/templates/snippets/status/layout.html:53 #: bookwyrm/templates/snippets/status/layout.html:53
#: bookwyrm/templates/snippets/status/layout.html:54 #: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply" msgid "Reply"
msgstr "回覆" msgstr "回覆"
#: bookwyrm/templates/snippets/create_status/content_field.html:17 #: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content" msgid "Content"
msgstr "內容" msgstr "內容"