diff --git a/bookwyrm/activitypub/verbs.py b/bookwyrm/activitypub/verbs.py index b32b04133..36898bc7e 100644 --- a/bookwyrm/activitypub/verbs.py +++ b/bookwyrm/activitypub/verbs.py @@ -38,7 +38,7 @@ class Create(Verb): class Delete(Verb): """Create activity""" - to: List[str] + to: List[str] = field(default_factory=lambda: []) cc: List[str] = field(default_factory=lambda: []) type: str = "Delete" @@ -137,8 +137,8 @@ class Accept(Verb): type: str = "Accept" def action(self): - """find and remove the activity object""" - obj = self.object.to_model(save=False, allow_create=False) + """accept a request""" + obj = self.object.to_model(save=False, allow_create=True) obj.accept() @@ -150,7 +150,7 @@ class Reject(Verb): type: str = "Reject" def action(self): - """find and remove the activity object""" + """reject a follow request""" obj = self.object.to_model(save=False, allow_create=False) obj.reject() diff --git a/bookwyrm/apps.py b/bookwyrm/apps.py new file mode 100644 index 000000000..8940edccc --- /dev/null +++ b/bookwyrm/apps.py @@ -0,0 +1,46 @@ +"""Do further startup configuration and initialization""" +import os +import urllib +import logging + +from django.apps import AppConfig + +from bookwyrm import settings + +logger = logging.getLogger(__name__) + + +def download_file(url, destination): + """Downloads a file to the given path""" + try: + # Ensure our destination directory exists + os.makedirs(os.path.dirname(destination)) + with urllib.request.urlopen(url) as stream: + with open(destination, "b+w") as outfile: + outfile.write(stream.read()) + except (urllib.error.HTTPError, urllib.error.URLError): + logger.error("Failed to download file %s", url) + except OSError: + logger.error("Couldn't open font file %s for writing", destination) + except: # pylint: disable=bare-except + logger.exception("Unknown error in file download") + + +class BookwyrmConfig(AppConfig): + """Handles additional configuration""" + + name = "bookwyrm" + verbose_name = "BookWyrm" + + def ready(self): + if settings.ENABLE_PREVIEW_IMAGES and settings.FONTS: + # Download any fonts that we don't have yet + logger.debug("Downloading fonts..") + for name, config in settings.FONTS.items(): + font_path = os.path.join( + settings.FONT_DIR, config["directory"], config["filename"] + ) + + if "url" in config and not os.path.exists(font_path): + logger.info("Just a sec, downloading %s", name) + download_file(config["url"], font_path) diff --git a/bookwyrm/connectors/abstract_connector.py b/bookwyrm/connectors/abstract_connector.py index 5ed57df1f..0ab135b87 100644 --- a/bookwyrm/connectors/abstract_connector.py +++ b/bookwyrm/connectors/abstract_connector.py @@ -1,7 +1,9 @@ """ functionality outline for a book data connector """ from abc import ABC, abstractmethod +import imghdr import logging +from django.core.files.base import ContentFile from django.db import transaction import requests from requests.exceptions import RequestException @@ -290,10 +292,18 @@ def get_image(url, timeout=10): ) except RequestException as err: logger.exception(err) - return None + return None, None + if not resp.ok: - return None - return resp + return None, None + + 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: diff --git a/bookwyrm/emailing.py b/bookwyrm/emailing.py index efef12638..80aca071b 100644 --- a/bookwyrm/emailing.py +++ b/bookwyrm/emailing.py @@ -48,7 +48,9 @@ def moderation_report_email(report): data["reportee"] = report.user.localname or report.user.username data["report_link"] = report.remote_id - for admin in models.User.objects.filter(groups__name__in=["admin", "moderator"]): + for admin in models.User.objects.filter( + groups__name__in=["admin", "moderator"] + ).distinct(): data["user"] = admin.display_name send_email.delay(admin.email, *format_email("moderation_report", data)) diff --git a/bookwyrm/migrations/0132_alter_user_preferred_language.py b/bookwyrm/migrations/0132_alter_user_preferred_language.py new file mode 100644 index 000000000..a2f0aa6a7 --- /dev/null +++ b/bookwyrm/migrations/0132_alter_user_preferred_language.py @@ -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, + ), + ), + ] diff --git a/bookwyrm/models/fields.py b/bookwyrm/models/fields.py index e61f912e5..b506c11ca 100644 --- a/bookwyrm/models/fields.py +++ b/bookwyrm/models/fields.py @@ -1,6 +1,5 @@ """ activitypub-aware django model fields """ from dataclasses import MISSING -import imghdr import re from uuid import uuid4 from urllib.parse import urljoin @@ -9,7 +8,6 @@ import dateutil.parser from dateutil.parser import ParserError from django.contrib.postgres.fields import ArrayField as DjangoArrayField from django.core.exceptions import ValidationError -from django.core.files.base import ContentFile from django.db import models from django.forms import ClearableFileInput, ImageField as DjangoImageField from django.utils import timezone @@ -443,12 +441,10 @@ class ImageField(ActivitypubFieldMixin, models.ImageField): except ValidationError: return None - response = get_image(url) - if not response: + image_content, extension = get_image(url) + if not image_content: return None - image_content = ContentFile(response.content) - extension = imghdr.what(None, image_content.read()) or "" image_name = f"{uuid4()}.{extension}" return [image_name, image_content] diff --git a/bookwyrm/models/report.py b/bookwyrm/models/report.py index a9f5b3b1e..bd2a1ef0e 100644 --- a/bookwyrm/models/report.py +++ b/bookwyrm/models/report.py @@ -1,5 +1,6 @@ """ flagged for moderation """ from django.db import models +from bookwyrm.settings import DOMAIN from .base_model import BookWyrmModel @@ -15,6 +16,9 @@ class Report(BookWyrmModel): links = models.ManyToManyField("Link", blank=True) resolved = models.BooleanField(default=False) + def get_remote_id(self): + return f"https://{DOMAIN}/settings/reports/{self.id}" + class Meta: """set order by default""" diff --git a/bookwyrm/preview_images.py b/bookwyrm/preview_images.py index a97ae2d5c..891c8b6da 100644 --- a/bookwyrm/preview_images.py +++ b/bookwyrm/preview_images.py @@ -4,6 +4,7 @@ import os import textwrap from io import BytesIO from uuid import uuid4 +import logging import colorsys from colorthief import ColorThief @@ -17,34 +18,49 @@ from django.db.models import Avg from bookwyrm import models, settings from bookwyrm.tasks import app +logger = logging.getLogger(__name__) IMG_WIDTH = settings.PREVIEW_IMG_WIDTH IMG_HEIGHT = settings.PREVIEW_IMG_HEIGHT BG_COLOR = settings.PREVIEW_BG_COLOR TEXT_COLOR = settings.PREVIEW_TEXT_COLOR DEFAULT_COVER_COLOR = settings.PREVIEW_DEFAULT_COVER_COLOR +DEFAULT_FONT = settings.PREVIEW_DEFAULT_FONT TRANSPARENT_COLOR = (0, 0, 0, 0) margin = math.floor(IMG_HEIGHT / 10) gutter = math.floor(margin / 2) inner_img_height = math.floor(IMG_HEIGHT * 0.8) inner_img_width = math.floor(inner_img_height * 0.7) -font_dir = os.path.join(settings.STATIC_ROOT, "fonts/public_sans") -def get_font(font_name, size=28): - """Loads custom font""" - if font_name == "light": - font_path = os.path.join(font_dir, "PublicSans-Light.ttf") - if font_name == "regular": - font_path = os.path.join(font_dir, "PublicSans-Regular.ttf") - elif font_name == "bold": - font_path = os.path.join(font_dir, "PublicSans-Bold.ttf") +def get_imagefont(name, size): + """Loads an ImageFont based on config""" + try: + config = settings.FONTS[name] + path = os.path.join(settings.FONT_DIR, config["directory"], config["filename"]) + return ImageFont.truetype(path, size) + except KeyError: + logger.error("Font %s not found in config", name) + except OSError: + logger.error("Could not load font %s from file", name) + + return ImageFont.load_default() + + +def get_font(weight, size=28): + """Gets a custom font with the given weight and size""" + font = get_imagefont(DEFAULT_FONT, size) try: - font = ImageFont.truetype(font_path, size) - except OSError: - font = ImageFont.load_default() + if weight == "light": + font.set_variation_by_name("Light") + if weight == "bold": + font.set_variation_by_name("Bold") + if weight == "regular": + font.set_variation_by_name("Regular") + except AttributeError: + pass return font diff --git a/bookwyrm/settings.py b/bookwyrm/settings.py index 8c4e8a7eb..e8cbe344b 100644 --- a/bookwyrm/settings.py +++ b/bookwyrm/settings.py @@ -9,7 +9,7 @@ from django.utils.translation import gettext_lazy as _ env = Env() env.read_env() DOMAIN = env("DOMAIN") -VERSION = "0.2.0" +VERSION = "0.2.1" PAGE_LENGTH = env("PAGE_LENGTH", 15) DEFAULT_LANGUAGE = env("DEFAULT_LANGUAGE", "English") @@ -35,6 +35,9 @@ LOCALE_PATHS = [ ] LANGUAGE_COOKIE_NAME = env.str("LANGUAGE_COOKIE_NAME", "django_language") +STATIC_ROOT = os.path.join(BASE_DIR, env("STATIC_ROOT", "static")) +MEDIA_ROOT = os.path.join(BASE_DIR, env("MEDIA_ROOT", "images")) + DEFAULT_AUTO_FIELD = "django.db.models.AutoField" # Preview image @@ -44,6 +47,17 @@ PREVIEW_TEXT_COLOR = env.str("PREVIEW_TEXT_COLOR", "#363636") PREVIEW_IMG_WIDTH = env.int("PREVIEW_IMG_WIDTH", 1200) PREVIEW_IMG_HEIGHT = env.int("PREVIEW_IMG_HEIGHT", 630) PREVIEW_DEFAULT_COVER_COLOR = env.str("PREVIEW_DEFAULT_COVER_COLOR", "#002549") +PREVIEW_DEFAULT_FONT = env.str("PREVIEW_DEFAULT_FONT", "Source Han Sans") + +FONTS = { + # pylint: disable=line-too-long + "Source Han Sans": { + "directory": "source_han_sans", + "filename": "SourceHanSans-VF.ttf.ttc", + "url": "https://github.com/adobe-fonts/source-han-sans/raw/release/Variable/OTC/SourceHanSans-VF.ttf.ttc", + } +} +FONT_DIR = os.path.join(STATIC_ROOT, "fonts") # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/ @@ -150,6 +164,9 @@ LOGGING = { "handlers": ["console", "mail_admins"], "level": LOG_LEVEL, }, + "django.utils.autoreload": { + "level": "INFO", + }, # Add a bookwyrm-specific logger "bookwyrm": { "handlers": ["console"], @@ -255,7 +272,7 @@ LANGUAGES = [ ("no-no", _("Norsk (Norwegian)")), ("pt-br", _("Português do Brasil (Brazilian Portuguese)")), ("pt-pt", _("Português Europeu (European Portuguese)")), - ("sv-se", _("Swedish (Svenska)")), + ("sv-se", _("Svenska (Swedish)")), ("zh-hans", _("简体中文 (Simplified Chinese)")), ("zh-hant", _("繁體中文 (Traditional Chinese)")), ] @@ -311,13 +328,8 @@ if USE_S3: MEDIA_FULL_URL = MEDIA_URL STATIC_FULL_URL = STATIC_URL DEFAULT_FILE_STORAGE = "bookwyrm.storage_backends.ImagesStorage" - # I don't know if it's used, but the site crashes without it - STATIC_ROOT = os.path.join(BASE_DIR, env("STATIC_ROOT", "static")) - MEDIA_ROOT = os.path.join(BASE_DIR, env("MEDIA_ROOT", "images")) else: STATIC_URL = "/static/" - STATIC_ROOT = os.path.join(BASE_DIR, env("STATIC_ROOT", "static")) MEDIA_URL = "/images/" MEDIA_FULL_URL = f"{PROTOCOL}://{DOMAIN}{MEDIA_URL}" STATIC_FULL_URL = f"{PROTOCOL}://{DOMAIN}{STATIC_URL}" - MEDIA_ROOT = os.path.join(BASE_DIR, env("MEDIA_ROOT", "images")) diff --git a/bookwyrm/static/fonts/source_han_sans/LICENSE.txt b/bookwyrm/static/fonts/source_han_sans/LICENSE.txt new file mode 100644 index 000000000..ddf7b7e91 --- /dev/null +++ b/bookwyrm/static/fonts/source_han_sans/LICENSE.txt @@ -0,0 +1,96 @@ +Copyright 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font +Name 'Source'. Source is a trademark of Adobe in the United States +and/or other countries. + +This Font Software is licensed under the SIL Open Font License, +Version 1.1. + +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font +creation efforts of academic and linguistic communities, and to +provide a free and open framework in which fonts may be shared and +improved in partnership with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply to +any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software +components as distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, +deleting, or substituting -- in part or in whole -- any of the +components of the Original Version, by changing formats or by porting +the Font Software to a new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, +modify, redistribute, and sell modified and unmodified copies of the +Font Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, in +Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the +corresponding Copyright Holder. This restriction only applies to the +primary font name as presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created using +the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/bookwyrm/static/fonts/source_han_sans/README.txt b/bookwyrm/static/fonts/source_han_sans/README.txt new file mode 100644 index 000000000..53cfa9b8f --- /dev/null +++ b/bookwyrm/static/fonts/source_han_sans/README.txt @@ -0,0 +1,9 @@ +The font file itself is not included in the Git repository to avoid putting +large files in the repo history. The Docker image should download the correct +font into this folder automatically. + +In case something goes wrong, the font used is the Variable OTC TTF, available +as of this writing from the Adobe Fonts GitHub repository: +https://github.com/adobe-fonts/source-han-sans/tree/release#user-content-variable-otcs + +BookWyrm expects the file to be in this folder, named SourceHanSans-VF.ttf.ttc diff --git a/bookwyrm/templates/about/about.html b/bookwyrm/templates/about/about.html index 4e533b11a..6f16aa675 100644 --- a/bookwyrm/templates/about/about.html +++ b/bookwyrm/templates/about/about.html @@ -28,7 +28,7 @@
[A-Za-z0-9]+)/?$", views.Invite.as_view()),
+ re_path(
+ r"^invite/(?P[A-Za-z0-9]+)/?$", views.Invite.as_view(), name="invite"
+ ),
re_path(
r"^settings/email-blocklist/?$",
views.EmailBlocklist.as_view(),
diff --git a/bookwyrm/views/admin/reports.py b/bookwyrm/views/admin/reports.py
index a25357bab..bf9553e52 100644
--- a/bookwyrm/views/admin/reports.py
+++ b/bookwyrm/views/admin/reports.py
@@ -58,6 +58,7 @@ class ReportAdmin(View):
"""load a report"""
data = {
"report": get_object_or_404(models.Report, id=report_id),
+ "group_form": forms.UserGroupForm(),
}
return TemplateResponse(request, "settings/reports/report.html", data)
diff --git a/bookwyrm/views/books/books.py b/bookwyrm/views/books/books.py
index 7de2d0d20..e04230bac 100644
--- a/bookwyrm/views/books/books.py
+++ b/bookwyrm/views/books/books.py
@@ -2,7 +2,6 @@
from uuid import uuid4
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.db.models import Avg, Q
from django.http import Http404
@@ -144,13 +143,12 @@ def upload_cover(request, book_id):
def set_cover_from_url(url):
"""load it from a url"""
try:
- image_file = get_image(url)
+ image_content, extension = get_image(url)
except: # pylint: disable=bare-except
return None
- if not image_file:
+ if not image_content:
return None
- image_name = str(uuid4()) + "." + url.split(".")[-1]
- image_content = ContentFile(image_file.content)
+ image_name = str(uuid4()) + "." + extension
return [image_name, image_content]
diff --git a/bookwyrm/views/list/list_item.py b/bookwyrm/views/list/list_item.py
index 29cfbee84..5fd65938e 100644
--- a/bookwyrm/views/list/list_item.py
+++ b/bookwyrm/views/list/list_item.py
@@ -19,4 +19,6 @@ class ListItem(View):
form = forms.ListItemForm(request.POST, instance=list_item)
if form.is_valid():
form.save()
+ else:
+ raise Exception(form.errors)
return redirect("list", list_item.book_list.id)
diff --git a/bookwyrm/views/user.py b/bookwyrm/views/user.py
index 851cfdaae..d38981ea8 100644
--- a/bookwyrm/views/user.py
+++ b/bookwyrm/views/user.py
@@ -31,12 +31,13 @@ class User(View):
shelf_preview = []
# only show shelves that should be visible
- shelves = user.shelf_set
is_self = request.user.id == user.id
if not is_self:
shelves = models.Shelf.privacy_filter(
request.user, privacy_levels=["public", "followers"]
).filter(user=user, books__isnull=False)
+ else:
+ shelves = user.shelf_set.filter(books__isnull=False).distinct()
for user_shelf in shelves.all()[:3]:
shelf_preview.append(
diff --git a/bw-dev b/bw-dev
index 00faa6a62..11977ad07 100755
--- a/bw-dev
+++ b/bw-dev
@@ -30,12 +30,12 @@ function execweb {
}
function initdb {
- execweb python manage.py migrate
- execweb python manage.py initdb "$@"
+ runweb python manage.py migrate
+ runweb python manage.py initdb "$@"
}
function makeitblack {
- docker-compose run --rm web black celerywyrm bookwyrm
+ runweb black celerywyrm bookwyrm
}
function awscommand {
@@ -209,6 +209,7 @@ case "$CMD" in
echo " build"
echo " clean"
echo " black"
+ echo " prettier"
echo " populate_streams [--stream=]"
echo " populate_suggestions"
echo " generate_thumbnails"
diff --git a/locale/de_DE/LC_MESSAGES/django.po b/locale/de_DE/LC_MESSAGES/django.po
index bb05219b3..3f56ede67 100644
--- a/locale/de_DE/LC_MESSAGES/django.po
+++ b/locale/de_DE/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-01-24 17:25+0000\n"
-"PO-Revision-Date: 2022-01-24 18:55\n"
+"POT-Creation-Date: 2022-01-30 18:17+0000\n"
+"PO-Revision-Date: 2022-01-30 19:38\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: German\n"
"Language: de\n"
@@ -46,33 +46,33 @@ msgstr "{i}-mal verwendbar"
msgid "Unlimited"
msgstr "Unbegrenzt"
-#: bookwyrm/forms.py:483
+#: bookwyrm/forms.py:489
msgid "List Order"
msgstr "Reihenfolge der Liste"
-#: bookwyrm/forms.py:484
+#: bookwyrm/forms.py:490
msgid "Book Title"
msgstr "Buchtitel"
-#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
+#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:32
msgid "Rating"
msgstr "Bewertung"
-#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
+#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
msgid "Sort By"
msgstr "Sortieren nach"
-#: bookwyrm/forms.py:491
+#: bookwyrm/forms.py:497
msgid "Ascending"
msgstr "Aufsteigend"
-#: bookwyrm/forms.py:492
+#: bookwyrm/forms.py:498
msgid "Descending"
msgstr "Absteigend"
-#: bookwyrm/forms.py:505
+#: bookwyrm/forms.py:511
msgid "Reading finish date cannot be before start date."
msgstr "Enddatum darf nicht vor dem Startdatum liegen."
@@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Portugiesisch)"
#: bookwyrm/settings.py:258
+msgid "Swedish (Svenska)"
+msgstr ""
+
+#: bookwyrm/settings.py:259
msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (vereinfachtes Chinesisch)"
-#: bookwyrm/settings.py:259
+#: bookwyrm/settings.py:260
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Chinesisch, traditionell)"
@@ -352,7 +356,7 @@ msgstr "Lerne deinen Admins kennen"
#: bookwyrm/templates/about/about.html:99
#, python-format
msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior."
-msgstr ""
+msgstr "Die Moderator*innen und Administrator*innen von %(site_name)s halten diese Seite am Laufen. Beachte den Verhaltenskodex und melde, wenn andere Benutzer*innen dagegen verstoßen oder Spam verbreiten."
#: bookwyrm/templates/about/about.html:113
msgid "Moderator"
@@ -424,7 +428,7 @@ msgid "Copy address"
msgstr "Adresse kopieren"
#: bookwyrm/templates/annual_summary/layout.html:68
-#: bookwyrm/templates/lists/list.html:231
+#: bookwyrm/templates/lists/list.html:269
msgid "Copied!"
msgstr "Kopiert!"
@@ -689,6 +693,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/book/file_links/edit_links.html:82
#: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15
+#: bookwyrm/templates/lists/edit_item_form.html:15
#: bookwyrm/templates/lists/form.html:130
#: bookwyrm/templates/preferences/edit_user.html:124
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
@@ -712,6 +717,7 @@ msgstr "Speichern"
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17
+#: bookwyrm/templates/lists/add_item_modal.html:42
#: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
@@ -816,7 +822,7 @@ msgstr "Orte"
#: bookwyrm/templates/book/book.html:348
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
-#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
+#: 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/search/layout.html:25
#: bookwyrm/templates/search/layout.html:50
@@ -830,7 +836,8 @@ msgstr "Zur Liste hinzufügen"
#: bookwyrm/templates/book/book.html:369
#: bookwyrm/templates/book/cover_add_modal.html:31
-#: bookwyrm/templates/lists/list.html:209
+#: bookwyrm/templates/lists/add_item_modal.html:37
+#: bookwyrm/templates/lists/list.html:247
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
msgid "Add"
@@ -1551,16 +1558,11 @@ msgstr "Alle Nachrichten"
msgid "You have no messages right now."
msgstr "Du hast momentan keine Nachrichten."
-#: bookwyrm/templates/feed/feed.html:28
-#, python-format
-msgid "load 0 unread status(es)"
-msgstr "lade 0 ungelesene Statusmeldung(en)"
-
-#: bookwyrm/templates/feed/feed.html:51
+#: bookwyrm/templates/feed/feed.html:54
msgid "There aren't any activities right now! Try following a user to get started"
msgstr "Hier sind noch keine Aktivitäten! Folge Anderen, um loszulegen"
-#: bookwyrm/templates/feed/feed.html:52
+#: bookwyrm/templates/feed/feed.html:55
msgid "Alternatively, you can try enabling more status types"
msgstr "Alternativ könntest du auch weitere Statustypen aktivieren"
@@ -1649,7 +1651,7 @@ msgid "What are you reading?"
msgstr "Was liest du gerade?"
#: bookwyrm/templates/get_started/books.html:9
-#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
+#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
msgid "Search for a book"
msgstr "Nach einem Buch suchen"
@@ -1669,7 +1671,7 @@ msgstr "Du kannst Bücher hinzufügen, wenn du %(site_name)s benutzt."
#: bookwyrm/templates/get_started/users.html:19
#: bookwyrm/templates/groups/members.html:15
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
-#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
+#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
#: bookwyrm/templates/search/layout.html:4
#: bookwyrm/templates/search/layout.html:9
msgid "Search"
@@ -1685,7 +1687,7 @@ msgid "Popular on %(site_name)s"
msgstr "Auf %(site_name)s beliebt"
#: bookwyrm/templates/get_started/books.html:58
-#: bookwyrm/templates/lists/list.html:180
+#: bookwyrm/templates/lists/list.html:222
msgid "No books found"
msgstr "Keine Bücher gefunden"
@@ -2034,7 +2036,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
msgstr "Die Genehmigung eines Vorschlags wird das vorgeschlagene Buch dauerhaft in deine Regale aufnehmen und deine Lesedaten, Besprechungen und Bewertungen mit diesem Buch verknüpfen."
#: bookwyrm/templates/import/manual_review.html:58
-#: bookwyrm/templates/lists/curate.html:59
+#: bookwyrm/templates/lists/curate.html:71
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve"
msgstr "Bestätigen"
@@ -2245,6 +2247,21 @@ msgstr "%(site_name)s auf %(suppo
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "BookWyrm ist open source Software. Du kannst dich auf GitHub beteiligen oder etwas melden."
+#: bookwyrm/templates/lists/add_item_modal.html:8
+#, python-format
+msgid "Add \"%(title)s\" to this list"
+msgstr "\"%(title)s\" zu dieser Liste hinzufügen"
+
+#: bookwyrm/templates/lists/add_item_modal.html:12
+#, python-format
+msgid "Suggest \"%(title)s\" for this list"
+msgstr "\"%(title)s\" für diese Liste vorschlagen"
+
+#: bookwyrm/templates/lists/add_item_modal.html:39
+#: bookwyrm/templates/lists/list.html:249
+msgid "Suggest"
+msgstr "Vorschlagen"
+
#: bookwyrm/templates/lists/bookmark_button.html:30
msgid "Un-save"
msgstr "Speichern rückgängig machen"
@@ -2264,23 +2281,29 @@ msgstr "Erstellt und betreut von %(username)s"
msgid "Created by %(username)s"
msgstr "Erstellt von %(username)s"
-#: bookwyrm/templates/lists/curate.html:11
+#: bookwyrm/templates/lists/curate.html:12
msgid "Curate"
msgstr "Kuratieren"
-#: bookwyrm/templates/lists/curate.html:20
+#: bookwyrm/templates/lists/curate.html:21
msgid "Pending Books"
msgstr "Unbestätigte Bücher"
-#: bookwyrm/templates/lists/curate.html:23
+#: bookwyrm/templates/lists/curate.html:24
msgid "You're all set!"
msgstr "Du bist soweit!"
-#: bookwyrm/templates/lists/curate.html:43
+#: bookwyrm/templates/lists/curate.html:45
+#: bookwyrm/templates/lists/list.html:83
+#, python-format
+msgid "%(username)s says:"
+msgstr "%(username)s sagt:"
+
+#: bookwyrm/templates/lists/curate.html:55
msgid "Suggested by"
msgstr "Vorgeschlagen von"
-#: bookwyrm/templates/lists/curate.html:65
+#: bookwyrm/templates/lists/curate.html:77
msgid "Discard"
msgstr "Ablehnen"
@@ -2304,7 +2327,7 @@ msgid "on %(site_name)s"
msgstr "auf %(site_name)s"
#: bookwyrm/templates/lists/embed-list.html:27
-#: bookwyrm/templates/lists/list.html:43
+#: bookwyrm/templates/lists/list.html:44
msgid "This list is currently empty"
msgstr "Diese Liste ist momentan leer"
@@ -2365,76 +2388,89 @@ msgstr "Gruppe erstellen"
msgid "Delete list"
msgstr "Liste löschen"
-#: bookwyrm/templates/lists/list.html:35
+#: bookwyrm/templates/lists/item_notes_field.html:7
+#: bookwyrm/templates/settings/federation/edit_instance.html:74
+msgid "Notes:"
+msgstr "Anmerkungen:"
+
+#: bookwyrm/templates/lists/item_notes_field.html:19
+msgid "An optional note that will be displayed with the book."
+msgstr "Eine optionale Notiz die zusammen mit dem Buch angezeigt wird."
+
+#: bookwyrm/templates/lists/list.html:36
msgid "You successfully suggested a book for this list!"
msgstr "Dein Buchvorschlag wurde dieser Liste hinzugefügt!"
-#: bookwyrm/templates/lists/list.html:37
+#: bookwyrm/templates/lists/list.html:38
msgid "You successfully added a book to this list!"
msgstr "Du hast ein Buch zu dieser Liste hinzugefügt!"
-#: bookwyrm/templates/lists/list.html:81
+#: bookwyrm/templates/lists/list.html:96
+msgid "Edit notes"
+msgstr "Notizen bearbeiten"
+
+#: bookwyrm/templates/lists/list.html:111
+msgid "Add notes"
+msgstr "Notiz hinzufügen"
+
+#: bookwyrm/templates/lists/list.html:123
#, python-format
msgid "Added by %(username)s"
msgstr "Hinzugefügt von %(username)s"
-#: bookwyrm/templates/lists/list.html:96
+#: bookwyrm/templates/lists/list.html:138
msgid "List position"
msgstr "Listenposition"
-#: bookwyrm/templates/lists/list.html:102
+#: bookwyrm/templates/lists/list.html:144
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set"
msgstr "Übernehmen"
-#: bookwyrm/templates/lists/list.html:117
+#: bookwyrm/templates/lists/list.html:159
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
msgid "Remove"
msgstr "Entfernen"
-#: bookwyrm/templates/lists/list.html:131
-#: bookwyrm/templates/lists/list.html:148
+#: bookwyrm/templates/lists/list.html:173
+#: bookwyrm/templates/lists/list.html:190
msgid "Sort List"
msgstr "Liste sortieren"
-#: bookwyrm/templates/lists/list.html:141
+#: bookwyrm/templates/lists/list.html:183
msgid "Direction"
msgstr "Reihenfolge"
-#: bookwyrm/templates/lists/list.html:155
+#: bookwyrm/templates/lists/list.html:197
msgid "Add Books"
msgstr "Bücher hinzufügen"
-#: bookwyrm/templates/lists/list.html:157
+#: bookwyrm/templates/lists/list.html:199
msgid "Suggest Books"
msgstr "Bücher vorschlagen"
-#: bookwyrm/templates/lists/list.html:168
+#: bookwyrm/templates/lists/list.html:210
msgid "search"
msgstr "suchen"
-#: bookwyrm/templates/lists/list.html:174
+#: bookwyrm/templates/lists/list.html:216
msgid "Clear search"
msgstr "Suche zurücksetzen"
-#: bookwyrm/templates/lists/list.html:179
+#: bookwyrm/templates/lists/list.html:221
#, python-format
msgid "No books found matching the query \"%(query)s\""
msgstr "Keine passenden Bücher zu „%(query)s“ gefunden"
-#: bookwyrm/templates/lists/list.html:211
-msgid "Suggest"
-msgstr "Vorschlagen"
-
-#: bookwyrm/templates/lists/list.html:222
+#: bookwyrm/templates/lists/list.html:260
msgid "Embed this list on a website"
msgstr "Diese Liste auf einer Webseite einbetten"
-#: bookwyrm/templates/lists/list.html:230
+#: bookwyrm/templates/lists/list.html:268
msgid "Copy embed code"
msgstr "Code zum einbetten kopieren"
-#: bookwyrm/templates/lists/list.html:232
+#: bookwyrm/templates/lists/list.html:270
#, python-format
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
msgstr "%(list_name)s, eine Liste von %(owner)s auf %(site_name)s"
@@ -3222,10 +3258,6 @@ msgstr "Software:"
msgid "Version:"
msgstr "Version:"
-#: bookwyrm/templates/settings/federation/edit_instance.html:74
-msgid "Notes:"
-msgstr "Anmerkungen:"
-
#: bookwyrm/templates/settings/federation/instance.html:19
msgid "Details"
msgstr "Details"
@@ -3542,23 +3574,31 @@ msgstr "Keine Links für diese Domain vorhanden."
msgid "Back to reports"
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"
msgstr "Gemeldete Statusmeldungen"
-#: bookwyrm/templates/settings/reports/report.html:27
+#: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted"
msgstr "Statusmeldung gelöscht"
-#: bookwyrm/templates/settings/reports/report.html:39
+#: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links"
msgstr "Gemeldete Links"
-#: bookwyrm/templates/settings/reports/report.html:55
+#: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments"
msgstr "Moderator*innenkommentare"
-#: bookwyrm/templates/settings/reports/report.html:73
+#: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment"
msgstr "Kommentieren"
@@ -3983,14 +4023,14 @@ msgstr "Prozent"
msgid "of %(pages)s pages"
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:53
#: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply"
msgstr "Antworten"
-#: bookwyrm/templates/snippets/create_status/content_field.html:17
+#: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content"
msgstr "Inhalt"
@@ -4137,13 +4177,13 @@ msgstr[1] "hat %(title)s mit %(display_rating)
#, python-format
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"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Rezension von \"%(book_title)s\" (%(display_rating)s Stern): %(review_title)s"
+msgstr[1] "Rezension von \"%(book_title)s\" (%(display_rating)s Sterne): %(review_title)s"
#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12
#, python-format
msgid "Review of \"%(book_title)s\": %(review_title)s"
-msgstr ""
+msgstr "Rezension von \"%(book_title)s\": %(review_title)s"
#: bookwyrm/templates/snippets/goal_form.html:4
#, python-format
@@ -4631,3 +4671,10 @@ msgstr "Ein Link zum Zurücksetzen des Passworts wurde an {email} gesendet"
msgid "Status updates from {obj.display_name}"
msgstr "Status -Updates von {obj.display_name}"
+#: bookwyrm/views/updates.py:45
+#, python-format
+msgid "Load %(count)d unread status"
+msgid_plural "Load %(count)d unread statuses"
+msgstr[0] "Lade %(count)d ungelesene Statusmeldung"
+msgstr[1] "Lade %(count)d ungelesene Statusmeldungen"
+
diff --git a/locale/en_US/LC_MESSAGES/django.po b/locale/en_US/LC_MESSAGES/django.po
index 6895c534b..411f825ef 100644
--- a/locale/en_US/LC_MESSAGES/django.po
+++ b/locale/en_US/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-01-28 02:50+0000\n"
+"POT-Creation-Date: 2022-02-02 20:09+0000\n"
"PO-Revision-Date: 2021-02-28 17:19-0800\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: English \n"
@@ -141,26 +141,26 @@ msgstr ""
msgid "Blocked"
msgstr ""
-#: bookwyrm/models/fields.py:29
+#: bookwyrm/models/fields.py:27
#, python-format
msgid "%(value)s is not a valid remote_id"
msgstr ""
-#: bookwyrm/models/fields.py:38 bookwyrm/models/fields.py:47
+#: bookwyrm/models/fields.py:36 bookwyrm/models/fields.py:45
#, python-format
msgid "%(value)s is not a valid username"
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
msgid "username"
msgstr ""
-#: bookwyrm/models/fields.py:188
+#: bookwyrm/models/fields.py:186
msgid "A user with that username already exists."
msgstr ""
-#: bookwyrm/models/fields.py:207
+#: bookwyrm/models/fields.py:205
#: bookwyrm/templates/snippets/privacy-icons.html:3
#: bookwyrm/templates/snippets/privacy-icons.html:4
#: bookwyrm/templates/snippets/privacy_select.html:11
@@ -168,7 +168,7 @@ msgstr ""
msgid "Public"
msgstr ""
-#: bookwyrm/models/fields.py:208
+#: bookwyrm/models/fields.py:206
#: bookwyrm/templates/snippets/privacy-icons.html:7
#: bookwyrm/templates/snippets/privacy-icons.html:8
#: bookwyrm/templates/snippets/privacy_select.html:14
@@ -176,14 +176,14 @@ msgstr ""
msgid "Unlisted"
msgstr ""
-#: bookwyrm/models/fields.py:209
+#: bookwyrm/models/fields.py:207
#: bookwyrm/templates/snippets/privacy_select.html:17
#: bookwyrm/templates/user/relationships/followers.html:6
#: bookwyrm/templates/user/relationships/layout.html:11
msgid "Followers"
msgstr ""
-#: bookwyrm/models/fields.py:210
+#: bookwyrm/models/fields.py:208
#: bookwyrm/templates/snippets/create_status/post_options_block.html:8
#: bookwyrm/templates/snippets/privacy-icons.html:15
#: bookwyrm/templates/snippets/privacy-icons.html:16
@@ -284,7 +284,7 @@ msgid "Português Europeu (European Portuguese)"
msgstr ""
#: bookwyrm/settings.py:258
-msgid "Swedish (Svenska)"
+msgid "Svenska (Swedish)"
msgstr ""
#: bookwyrm/settings.py:259
@@ -370,7 +370,7 @@ msgstr ""
#: bookwyrm/templates/about/about.html:131
#: bookwyrm/templates/settings/users/user_moderation_actions.html:14
#: 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"
msgstr ""
@@ -1018,7 +1018,7 @@ msgid "Physical Properties"
msgstr ""
#: 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:"
msgstr ""
@@ -1056,17 +1056,17 @@ msgstr ""
msgid "Editions of \"%(work_title)s\""
msgstr ""
-#: bookwyrm/templates/book/editions/format_filter.html:8
-#: bookwyrm/templates/book/editions/language_filter.html:8
+#: bookwyrm/templates/book/editions/format_filter.html:9
+#: bookwyrm/templates/book/editions/language_filter.html:9
msgid "Any"
msgstr ""
-#: bookwyrm/templates/book/editions/language_filter.html:5
+#: bookwyrm/templates/book/editions/language_filter.html:6
#: bookwyrm/templates/preferences/edit_user.html:95
msgid "Language:"
msgstr ""
-#: bookwyrm/templates/book/editions/search_filter.html:5
+#: bookwyrm/templates/book/editions/search_filter.html:6
msgid "Search editions"
msgstr ""
@@ -3574,23 +3574,31 @@ msgstr ""
msgid "Back to reports"
msgstr ""
-#: bookwyrm/templates/settings/reports/report.html:22
-msgid "Reported statuses"
+#: 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"
+msgstr ""
+
+#: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted"
msgstr ""
-#: bookwyrm/templates/settings/reports/report.html:39
+#: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links"
msgstr ""
-#: bookwyrm/templates/settings/reports/report.html:55
+#: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments"
msgstr ""
-#: bookwyrm/templates/settings/reports/report.html:73
+#: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment"
msgstr ""
@@ -4015,14 +4023,14 @@ msgstr ""
msgid "of %(pages)s pages"
msgstr ""
-#: 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:53
#: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply"
msgstr ""
-#: bookwyrm/templates/snippets/create_status/content_field.html:17
+#: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content"
msgstr ""
@@ -4100,7 +4108,7 @@ msgstr ""
msgid "Clear filters"
msgstr ""
-#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:42
+#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43
msgid "Apply filters"
msgstr ""
diff --git a/locale/es_ES/LC_MESSAGES/django.mo b/locale/es_ES/LC_MESSAGES/django.mo
index f30f3725c..faae97edd 100644
Binary files a/locale/es_ES/LC_MESSAGES/django.mo and b/locale/es_ES/LC_MESSAGES/django.mo differ
diff --git a/locale/es_ES/LC_MESSAGES/django.po b/locale/es_ES/LC_MESSAGES/django.po
index 4a713c200..6d0cf2d78 100644
--- a/locale/es_ES/LC_MESSAGES/django.po
+++ b/locale/es_ES/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-01-24 17:25+0000\n"
-"PO-Revision-Date: 2022-01-26 11:26\n"
+"POT-Creation-Date: 2022-01-30 18:17+0000\n"
+"PO-Revision-Date: 2022-01-30 19:38\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: Spanish\n"
"Language: es\n"
@@ -46,33 +46,33 @@ msgstr "{i} usos"
msgid "Unlimited"
msgstr "Sin límite"
-#: bookwyrm/forms.py:483
+#: bookwyrm/forms.py:489
msgid "List Order"
msgstr "Orden de la lista"
-#: bookwyrm/forms.py:484
+#: bookwyrm/forms.py:490
msgid "Book Title"
msgstr "Título"
-#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
+#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:32
msgid "Rating"
msgstr "Valoración"
-#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
+#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
msgid "Sort By"
msgstr "Ordenar por"
-#: bookwyrm/forms.py:491
+#: bookwyrm/forms.py:497
msgid "Ascending"
msgstr "Ascendente"
-#: bookwyrm/forms.py:492
+#: bookwyrm/forms.py:498
msgid "Descending"
msgstr "Descendente"
-#: bookwyrm/forms.py:505
+#: bookwyrm/forms.py:511
msgid "Reading finish date cannot be before start date."
msgstr "La fecha final de lectura no puede ser anterior a la fecha de inicio."
@@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Portugués europeo)"
#: bookwyrm/settings.py:258
+msgid "Swedish (Svenska)"
+msgstr "Sueco (Svenska)"
+
+#: bookwyrm/settings.py:259
msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Chino simplificado)"
-#: bookwyrm/settings.py:259
+#: bookwyrm/settings.py:260
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Chino tradicional)"
@@ -424,7 +428,7 @@ msgid "Copy address"
msgstr "Copiar dirección"
#: bookwyrm/templates/annual_summary/layout.html:68
-#: bookwyrm/templates/lists/list.html:231
+#: bookwyrm/templates/lists/list.html:269
msgid "Copied!"
msgstr "¡Copiado!"
@@ -689,6 +693,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/book/file_links/edit_links.html:82
#: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15
+#: bookwyrm/templates/lists/edit_item_form.html:15
#: bookwyrm/templates/lists/form.html:130
#: bookwyrm/templates/preferences/edit_user.html:124
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
@@ -712,6 +717,7 @@ msgstr "Guardar"
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17
+#: bookwyrm/templates/lists/add_item_modal.html:42
#: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
@@ -816,7 +822,7 @@ msgstr "Lugares"
#: bookwyrm/templates/book/book.html:348
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
-#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
+#: 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/search/layout.html:25
#: bookwyrm/templates/search/layout.html:50
@@ -830,7 +836,8 @@ msgstr "Agregar a lista"
#: bookwyrm/templates/book/book.html:369
#: bookwyrm/templates/book/cover_add_modal.html:31
-#: bookwyrm/templates/lists/list.html:209
+#: bookwyrm/templates/lists/add_item_modal.html:37
+#: bookwyrm/templates/lists/list.html:247
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
msgid "Add"
@@ -1551,16 +1558,11 @@ msgstr "Todos los mensajes"
msgid "You have no messages right now."
msgstr "No tienes ningún mensaje en este momento."
-#: bookwyrm/templates/feed/feed.html:28
-#, python-format
-msgid "load 0 unread status(es)"
-msgstr "cargar 0 estado(s) no leído(s)"
-
-#: bookwyrm/templates/feed/feed.html:51
+#: bookwyrm/templates/feed/feed.html:54
msgid "There aren't any activities right now! Try following a user to get started"
msgstr "¡No hay actividad ahora mismo! Sigue a otro usuario para empezar"
-#: bookwyrm/templates/feed/feed.html:52
+#: bookwyrm/templates/feed/feed.html:55
msgid "Alternatively, you can try enabling more status types"
msgstr "Alternativamente, puedes intentar habilitar más tipos de estado"
@@ -1649,7 +1651,7 @@ msgid "What are you reading?"
msgstr "¿Qué estás leyendo?"
#: bookwyrm/templates/get_started/books.html:9
-#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
+#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
msgid "Search for a book"
msgstr "Buscar libros"
@@ -1669,7 +1671,7 @@ msgstr "Puedes agregar libros cuando comiences a usar %(site_name)s."
#: bookwyrm/templates/get_started/users.html:19
#: bookwyrm/templates/groups/members.html:15
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
-#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
+#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
#: bookwyrm/templates/search/layout.html:4
#: bookwyrm/templates/search/layout.html:9
msgid "Search"
@@ -1685,7 +1687,7 @@ msgid "Popular on %(site_name)s"
msgstr "Popular en %(site_name)s"
#: bookwyrm/templates/get_started/books.html:58
-#: bookwyrm/templates/lists/list.html:180
+#: bookwyrm/templates/lists/list.html:222
msgid "No books found"
msgstr "No se encontró ningún libro"
@@ -2034,7 +2036,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
msgstr "La aprobación de una sugerencia añadirá permanentemente el libro sugerido a tus estanterías y asociará tus fechas de lectura, tus reseñas y tus valoraciones a ese libro."
#: bookwyrm/templates/import/manual_review.html:58
-#: bookwyrm/templates/lists/curate.html:59
+#: bookwyrm/templates/lists/curate.html:71
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve"
msgstr "Aprobar"
@@ -2245,6 +2247,21 @@ msgstr "Apoyar %(site_name)s en %
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "BookWyrm es software de código abierto. Puedes contribuir o reportar problemas en GitHub."
+#: bookwyrm/templates/lists/add_item_modal.html:8
+#, python-format
+msgid "Add \"%(title)s\" to this list"
+msgstr "Añadir «%(title)s» a esta lista"
+
+#: bookwyrm/templates/lists/add_item_modal.html:12
+#, python-format
+msgid "Suggest \"%(title)s\" for this list"
+msgstr "Sugerir «%(title)s» para esta lista"
+
+#: bookwyrm/templates/lists/add_item_modal.html:39
+#: bookwyrm/templates/lists/list.html:249
+msgid "Suggest"
+msgstr "Sugerir"
+
#: bookwyrm/templates/lists/bookmark_button.html:30
msgid "Un-save"
msgstr "Des-guardar"
@@ -2264,23 +2281,29 @@ msgstr "Agregado y comisariado por %(username)s"
msgid "Created by %(username)s"
msgstr "Creado por %(username)s"
-#: bookwyrm/templates/lists/curate.html:11
+#: bookwyrm/templates/lists/curate.html:12
msgid "Curate"
msgstr "Comisariar"
-#: bookwyrm/templates/lists/curate.html:20
+#: bookwyrm/templates/lists/curate.html:21
msgid "Pending Books"
msgstr "Libros pendientes"
-#: bookwyrm/templates/lists/curate.html:23
+#: bookwyrm/templates/lists/curate.html:24
msgid "You're all set!"
msgstr "¡Está todo listo!"
-#: bookwyrm/templates/lists/curate.html:43
+#: bookwyrm/templates/lists/curate.html:45
+#: bookwyrm/templates/lists/list.html:83
+#, python-format
+msgid "%(username)s says:"
+msgstr "%(username)s dice:"
+
+#: bookwyrm/templates/lists/curate.html:55
msgid "Suggested by"
msgstr "Sugerido por"
-#: bookwyrm/templates/lists/curate.html:65
+#: bookwyrm/templates/lists/curate.html:77
msgid "Discard"
msgstr "Descartar"
@@ -2304,7 +2327,7 @@ msgid "on %(site_name)s"
msgstr "en %(site_name)s"
#: bookwyrm/templates/lists/embed-list.html:27
-#: bookwyrm/templates/lists/list.html:43
+#: bookwyrm/templates/lists/list.html:44
msgid "This list is currently empty"
msgstr "Esta lista está vacia"
@@ -2365,76 +2388,89 @@ msgstr "Crear un grupo"
msgid "Delete list"
msgstr "Eliminar lista"
-#: bookwyrm/templates/lists/list.html:35
+#: bookwyrm/templates/lists/item_notes_field.html:7
+#: bookwyrm/templates/settings/federation/edit_instance.html:74
+msgid "Notes:"
+msgstr "Notas:"
+
+#: bookwyrm/templates/lists/item_notes_field.html:19
+msgid "An optional note that will be displayed with the book."
+msgstr "Una nota opcional que se mostrará con el libro."
+
+#: bookwyrm/templates/lists/list.html:36
msgid "You successfully suggested a book for this list!"
msgstr "¡Has sugerido un libro para esta lista exitosamente!"
-#: bookwyrm/templates/lists/list.html:37
+#: bookwyrm/templates/lists/list.html:38
msgid "You successfully added a book to this list!"
msgstr "¡Has agregado un libro a esta lista exitosamente!"
-#: bookwyrm/templates/lists/list.html:81
+#: bookwyrm/templates/lists/list.html:96
+msgid "Edit notes"
+msgstr "Editar notas"
+
+#: bookwyrm/templates/lists/list.html:111
+msgid "Add notes"
+msgstr "Añadir notas"
+
+#: bookwyrm/templates/lists/list.html:123
#, python-format
msgid "Added by %(username)s"
msgstr "Agregado por %(username)s"
-#: bookwyrm/templates/lists/list.html:96
+#: bookwyrm/templates/lists/list.html:138
msgid "List position"
msgstr "Posición"
-#: bookwyrm/templates/lists/list.html:102
+#: bookwyrm/templates/lists/list.html:144
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set"
msgstr "Establecido"
-#: bookwyrm/templates/lists/list.html:117
+#: bookwyrm/templates/lists/list.html:159
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
msgid "Remove"
msgstr "Quitar"
-#: bookwyrm/templates/lists/list.html:131
-#: bookwyrm/templates/lists/list.html:148
+#: bookwyrm/templates/lists/list.html:173
+#: bookwyrm/templates/lists/list.html:190
msgid "Sort List"
msgstr "Ordena la lista"
-#: bookwyrm/templates/lists/list.html:141
+#: bookwyrm/templates/lists/list.html:183
msgid "Direction"
msgstr "Dirección"
-#: bookwyrm/templates/lists/list.html:155
+#: bookwyrm/templates/lists/list.html:197
msgid "Add Books"
msgstr "Agregar libros"
-#: bookwyrm/templates/lists/list.html:157
+#: bookwyrm/templates/lists/list.html:199
msgid "Suggest Books"
msgstr "Sugerir libros"
-#: bookwyrm/templates/lists/list.html:168
+#: bookwyrm/templates/lists/list.html:210
msgid "search"
msgstr "buscar"
-#: bookwyrm/templates/lists/list.html:174
+#: bookwyrm/templates/lists/list.html:216
msgid "Clear search"
msgstr "Borrar búsqueda"
-#: bookwyrm/templates/lists/list.html:179
+#: bookwyrm/templates/lists/list.html:221
#, python-format
msgid "No books found matching the query \"%(query)s\""
msgstr "No se encontró ningún libro correspondiente a la búsqueda: \"%(query)s\""
-#: bookwyrm/templates/lists/list.html:211
-msgid "Suggest"
-msgstr "Sugerir"
-
-#: bookwyrm/templates/lists/list.html:222
+#: bookwyrm/templates/lists/list.html:260
msgid "Embed this list on a website"
msgstr "Incrustar esta lista en un sitio web"
-#: bookwyrm/templates/lists/list.html:230
+#: bookwyrm/templates/lists/list.html:268
msgid "Copy embed code"
msgstr "Copiar código para incrustar"
-#: bookwyrm/templates/lists/list.html:232
+#: bookwyrm/templates/lists/list.html:270
#, python-format
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
msgstr "%(list_name)s, una lista de %(owner)s en %(site_name)s"
@@ -3222,10 +3258,6 @@ msgstr "Software:"
msgid "Version:"
msgstr "Versión:"
-#: bookwyrm/templates/settings/federation/edit_instance.html:74
-msgid "Notes:"
-msgstr "Notas:"
-
#: bookwyrm/templates/settings/federation/instance.html:19
msgid "Details"
msgstr "Detalles"
@@ -3542,23 +3574,31 @@ msgstr "Ningún enlace disponible para este dominio."
msgid "Back to reports"
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"
msgstr "Estados reportados"
-#: bookwyrm/templates/settings/reports/report.html:27
+#: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted"
msgstr "El estado ha sido eliminado"
-#: bookwyrm/templates/settings/reports/report.html:39
+#: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links"
msgstr "Enlaces denunciados"
-#: bookwyrm/templates/settings/reports/report.html:55
+#: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments"
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
msgid "Comment"
msgstr "Comentario"
@@ -3983,14 +4023,14 @@ msgstr "por ciento"
msgid "of %(pages)s pages"
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:53
#: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply"
msgstr "Responder"
-#: bookwyrm/templates/snippets/create_status/content_field.html:17
+#: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content"
msgstr "Contenido"
@@ -4631,3 +4671,10 @@ msgstr "Un enlace para reestablecer tu contraseña se envió a {email}"
msgid "Status updates from {obj.display_name}"
msgstr "Actualizaciones de status de {obj.display_name}"
+#: bookwyrm/views/updates.py:45
+#, python-format
+msgid "Load %(count)d unread status"
+msgid_plural "Load %(count)d unread statuses"
+msgstr[0] "Cargar %(count)d estado no leído"
+msgstr[1] "Cargar %(count)d estados no leídos"
+
diff --git a/locale/fr_FR/LC_MESSAGES/django.po b/locale/fr_FR/LC_MESSAGES/django.po
index 23168abcc..4300f0052 100644
--- a/locale/fr_FR/LC_MESSAGES/django.po
+++ b/locale/fr_FR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-01-24 17:25+0000\n"
-"PO-Revision-Date: 2022-01-24 18:55\n"
+"POT-Creation-Date: 2022-01-30 18:17+0000\n"
+"PO-Revision-Date: 2022-01-30 19:38\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: French\n"
"Language: fr\n"
@@ -46,33 +46,33 @@ msgstr "{i} utilisations"
msgid "Unlimited"
msgstr "Sans limite"
-#: bookwyrm/forms.py:483
+#: bookwyrm/forms.py:489
msgid "List Order"
msgstr "Ordre de la liste"
-#: bookwyrm/forms.py:484
+#: bookwyrm/forms.py:490
msgid "Book Title"
msgstr "Titre du livre"
-#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
+#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:32
msgid "Rating"
msgstr "Note"
-#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
+#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
msgid "Sort By"
msgstr "Trier par"
-#: bookwyrm/forms.py:491
+#: bookwyrm/forms.py:497
msgid "Ascending"
msgstr "Ordre croissant"
-#: bookwyrm/forms.py:492
+#: bookwyrm/forms.py:498
msgid "Descending"
msgstr "Ordre décroissant"
-#: bookwyrm/forms.py:505
+#: bookwyrm/forms.py:511
msgid "Reading finish date cannot be before start date."
msgstr "La date de fin de lecture ne peut pas être antérieure à la date de début."
@@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Portugais européen)"
#: bookwyrm/settings.py:258
+msgid "Swedish (Svenska)"
+msgstr "Suédois (Svenska)"
+
+#: bookwyrm/settings.py:259
msgid "简体中文 (Simplified Chinese)"
msgstr "简化字"
-#: bookwyrm/settings.py:259
+#: bookwyrm/settings.py:260
msgid "繁體中文 (Traditional Chinese)"
msgstr "Infos supplémentaires :"
@@ -352,7 +356,7 @@ msgstr "Rencontrez vos admins"
#: bookwyrm/templates/about/about.html:99
#, python-format
msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior."
-msgstr ""
+msgstr "L’administration et la modération de %(site_name)s maintiennent le site opérationnel, font respecter le code de conduite, et répondent lorsque les utilisateurs signalent le spam et les mauvais comportements."
#: bookwyrm/templates/about/about.html:113
msgid "Moderator"
@@ -424,7 +428,7 @@ msgid "Copy address"
msgstr "Copier l’adresse"
#: bookwyrm/templates/annual_summary/layout.html:68
-#: bookwyrm/templates/lists/list.html:231
+#: bookwyrm/templates/lists/list.html:269
msgid "Copied!"
msgstr "Copié !"
@@ -689,6 +693,7 @@ msgstr "ISNI :"
#: bookwyrm/templates/book/file_links/edit_links.html:82
#: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15
+#: bookwyrm/templates/lists/edit_item_form.html:15
#: bookwyrm/templates/lists/form.html:130
#: bookwyrm/templates/preferences/edit_user.html:124
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
@@ -712,6 +717,7 @@ msgstr "Enregistrer"
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17
+#: bookwyrm/templates/lists/add_item_modal.html:42
#: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
@@ -816,7 +822,7 @@ msgstr "Lieux"
#: bookwyrm/templates/book/book.html:348
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
-#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
+#: 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/search/layout.html:25
#: bookwyrm/templates/search/layout.html:50
@@ -830,7 +836,8 @@ msgstr "Ajouter à la liste"
#: bookwyrm/templates/book/book.html:369
#: bookwyrm/templates/book/cover_add_modal.html:31
-#: bookwyrm/templates/lists/list.html:209
+#: bookwyrm/templates/lists/add_item_modal.html:37
+#: bookwyrm/templates/lists/list.html:247
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
msgid "Add"
@@ -1551,16 +1558,11 @@ msgstr "Tous les messages"
msgid "You have no messages right now."
msgstr "Vous n’avez aucun message pour l’instant."
-#: bookwyrm/templates/feed/feed.html:28
-#, python-format
-msgid "load 0 unread status(es)"
-msgstr "charger 0 statut(s) non lus"
-
-#: bookwyrm/templates/feed/feed.html:51
+#: bookwyrm/templates/feed/feed.html:54
msgid "There aren't any activities right now! Try following a user to get started"
msgstr "Aucune activité pour l’instant ! Abonnez‑vous à quelqu’un pour commencer"
-#: bookwyrm/templates/feed/feed.html:52
+#: bookwyrm/templates/feed/feed.html:55
msgid "Alternatively, you can try enabling more status types"
msgstr "Sinon, vous pouvez essayer d’activer plus de types de statuts"
@@ -1649,7 +1651,7 @@ msgid "What are you reading?"
msgstr "Que lisez‑vous ?"
#: bookwyrm/templates/get_started/books.html:9
-#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
+#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
msgid "Search for a book"
msgstr "Chercher un livre"
@@ -1669,7 +1671,7 @@ msgstr "Vous pourrez ajouter des livres lorsque vous commencerez à utiliser %(s
#: bookwyrm/templates/get_started/users.html:19
#: bookwyrm/templates/groups/members.html:15
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
-#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
+#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
#: bookwyrm/templates/search/layout.html:4
#: bookwyrm/templates/search/layout.html:9
msgid "Search"
@@ -1685,7 +1687,7 @@ msgid "Popular on %(site_name)s"
msgstr "Populaire sur %(site_name)s"
#: bookwyrm/templates/get_started/books.html:58
-#: bookwyrm/templates/lists/list.html:180
+#: bookwyrm/templates/lists/list.html:222
msgid "No books found"
msgstr "Aucun livre trouvé"
@@ -2034,7 +2036,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
msgstr "Approuver une suggestion ajoutera définitivement le livre suggéré à vos étagères et associera vos dates, critiques et notes de lecture à ce livre."
#: bookwyrm/templates/import/manual_review.html:58
-#: bookwyrm/templates/lists/curate.html:59
+#: bookwyrm/templates/lists/curate.html:71
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve"
msgstr "Approuver"
@@ -2245,6 +2247,21 @@ msgstr "Soutenez %(site_name)s avec GitHub."
msgstr "BookWyrm est un logiciel libre. Vous pouvez contribuer ou faire des rapports de bogues via GitHub."
+#: bookwyrm/templates/lists/add_item_modal.html:8
+#, python-format
+msgid "Add \"%(title)s\" to this list"
+msgstr "Ajouter « %(title)s » à cette liste"
+
+#: bookwyrm/templates/lists/add_item_modal.html:12
+#, python-format
+msgid "Suggest \"%(title)s\" for this list"
+msgstr "Suggérer « %(title)s » pour cette liste"
+
+#: bookwyrm/templates/lists/add_item_modal.html:39
+#: bookwyrm/templates/lists/list.html:249
+msgid "Suggest"
+msgstr "Suggérer"
+
#: bookwyrm/templates/lists/bookmark_button.html:30
msgid "Un-save"
msgstr "Annuler la sauvegarde"
@@ -2264,23 +2281,29 @@ msgstr "Créée et modérée par %(username)s"
msgid "Created by %(username)s"
msgstr "Créée par %(username)s"
-#: bookwyrm/templates/lists/curate.html:11
+#: bookwyrm/templates/lists/curate.html:12
msgid "Curate"
msgstr "Organiser"
-#: bookwyrm/templates/lists/curate.html:20
+#: bookwyrm/templates/lists/curate.html:21
msgid "Pending Books"
msgstr "Livres en attente de modération"
-#: bookwyrm/templates/lists/curate.html:23
+#: bookwyrm/templates/lists/curate.html:24
msgid "You're all set!"
msgstr "Aucun livre en attente de validation !"
-#: bookwyrm/templates/lists/curate.html:43
+#: bookwyrm/templates/lists/curate.html:45
+#: bookwyrm/templates/lists/list.html:83
+#, python-format
+msgid "%(username)s says:"
+msgstr "%(username)s a dit :"
+
+#: bookwyrm/templates/lists/curate.html:55
msgid "Suggested by"
msgstr "Suggéré par"
-#: bookwyrm/templates/lists/curate.html:65
+#: bookwyrm/templates/lists/curate.html:77
msgid "Discard"
msgstr "Rejeter"
@@ -2304,7 +2327,7 @@ msgid "on %(site_name)s"
msgstr "sur %(site_name)s"
#: bookwyrm/templates/lists/embed-list.html:27
-#: bookwyrm/templates/lists/list.html:43
+#: bookwyrm/templates/lists/list.html:44
msgid "This list is currently empty"
msgstr "Cette liste est actuellement vide"
@@ -2365,76 +2388,89 @@ msgstr "Créer un Groupe"
msgid "Delete list"
msgstr "Supprimer la liste"
-#: bookwyrm/templates/lists/list.html:35
+#: bookwyrm/templates/lists/item_notes_field.html:7
+#: bookwyrm/templates/settings/federation/edit_instance.html:74
+msgid "Notes:"
+msgstr "Remarques :"
+
+#: bookwyrm/templates/lists/item_notes_field.html:19
+msgid "An optional note that will be displayed with the book."
+msgstr "Une note facultative qui sera affichée avec le livre."
+
+#: bookwyrm/templates/lists/list.html:36
msgid "You successfully suggested a book for this list!"
msgstr "Vous avez suggéré un livre à cette liste !"
-#: bookwyrm/templates/lists/list.html:37
+#: bookwyrm/templates/lists/list.html:38
msgid "You successfully added a book to this list!"
msgstr "Vous avez ajouté un livre à cette liste !"
-#: bookwyrm/templates/lists/list.html:81
+#: bookwyrm/templates/lists/list.html:96
+msgid "Edit notes"
+msgstr "Modifier les notes"
+
+#: bookwyrm/templates/lists/list.html:111
+msgid "Add notes"
+msgstr "Ajouter des notes"
+
+#: bookwyrm/templates/lists/list.html:123
#, python-format
msgid "Added by %(username)s"
msgstr "Ajouté par %(username)s"
-#: bookwyrm/templates/lists/list.html:96
+#: bookwyrm/templates/lists/list.html:138
msgid "List position"
msgstr "Position"
-#: bookwyrm/templates/lists/list.html:102
+#: bookwyrm/templates/lists/list.html:144
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set"
msgstr "Appliquer"
-#: bookwyrm/templates/lists/list.html:117
+#: bookwyrm/templates/lists/list.html:159
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
msgid "Remove"
msgstr "Retirer"
-#: bookwyrm/templates/lists/list.html:131
-#: bookwyrm/templates/lists/list.html:148
+#: bookwyrm/templates/lists/list.html:173
+#: bookwyrm/templates/lists/list.html:190
msgid "Sort List"
msgstr "Trier la liste"
-#: bookwyrm/templates/lists/list.html:141
+#: bookwyrm/templates/lists/list.html:183
msgid "Direction"
msgstr "Direction"
-#: bookwyrm/templates/lists/list.html:155
+#: bookwyrm/templates/lists/list.html:197
msgid "Add Books"
msgstr "Ajouter des livres"
-#: bookwyrm/templates/lists/list.html:157
+#: bookwyrm/templates/lists/list.html:199
msgid "Suggest Books"
msgstr "Suggérer des livres"
-#: bookwyrm/templates/lists/list.html:168
+#: bookwyrm/templates/lists/list.html:210
msgid "search"
msgstr "chercher"
-#: bookwyrm/templates/lists/list.html:174
+#: bookwyrm/templates/lists/list.html:216
msgid "Clear search"
msgstr "Vider la requête"
-#: bookwyrm/templates/lists/list.html:179
+#: bookwyrm/templates/lists/list.html:221
#, python-format
msgid "No books found matching the query \"%(query)s\""
msgstr "Aucun livre trouvé pour la requête « %(query)s »"
-#: bookwyrm/templates/lists/list.html:211
-msgid "Suggest"
-msgstr "Suggérer"
-
-#: bookwyrm/templates/lists/list.html:222
+#: bookwyrm/templates/lists/list.html:260
msgid "Embed this list on a website"
msgstr "Intégrez cette liste sur un autre site internet"
-#: bookwyrm/templates/lists/list.html:230
+#: bookwyrm/templates/lists/list.html:268
msgid "Copy embed code"
msgstr "Copier le code d'intégration"
-#: bookwyrm/templates/lists/list.html:232
+#: bookwyrm/templates/lists/list.html:270
#, python-format
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
msgstr "%(list_name)s, une liste de %(owner)s sur %(site_name)s"
@@ -3222,10 +3258,6 @@ msgstr "Logiciel :"
msgid "Version:"
msgstr "Description :"
-#: bookwyrm/templates/settings/federation/edit_instance.html:74
-msgid "Notes:"
-msgstr "Remarques :"
-
#: bookwyrm/templates/settings/federation/instance.html:19
msgid "Details"
msgstr "Détails"
@@ -3542,23 +3574,31 @@ msgstr "Aucun lien n’est disponible pour ce domaine."
msgid "Back to reports"
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"
msgstr "Statuts signalés"
-#: bookwyrm/templates/settings/reports/report.html:27
+#: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted"
msgstr "Le statut a été supprimé"
-#: bookwyrm/templates/settings/reports/report.html:39
+#: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links"
msgstr "Liens signalés"
-#: bookwyrm/templates/settings/reports/report.html:55
+#: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments"
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
msgid "Comment"
msgstr "Commentaire"
@@ -3983,14 +4023,14 @@ msgstr "pourcent"
msgid "of %(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:53
#: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply"
msgstr "Répondre"
-#: bookwyrm/templates/snippets/create_status/content_field.html:17
+#: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content"
msgstr "Contenu"
@@ -4137,13 +4177,13 @@ msgstr[1] "a noté %(title)s : %(display_ratin
#, python-format
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"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Critique de « %(book_title)s » (%(display_rating)s étoile) : %(review_title)s"
+msgstr[1] "Critique de « %(book_title)s » (%(display_rating)s étoiles) : %(review_title)s"
#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12
#, python-format
msgid "Review of \"%(book_title)s\": %(review_title)s"
-msgstr ""
+msgstr "Critique de « %(book_title)s » : %(review_title)s"
#: bookwyrm/templates/snippets/goal_form.html:4
#, python-format
@@ -4631,3 +4671,10 @@ msgstr "Un lien de réinitialisation a été envoyé à {email}."
msgid "Status updates from {obj.display_name}"
msgstr "Mises à jour de statut de {obj.display_name}"
+#: bookwyrm/views/updates.py:45
+#, python-format
+msgid "Load %(count)d unread status"
+msgid_plural "Load %(count)d unread statuses"
+msgstr[0] "Charger %(count)d statut non lu"
+msgstr[1] "Charger %(count)d statuts non lus"
+
diff --git a/locale/gl_ES/LC_MESSAGES/django.mo b/locale/gl_ES/LC_MESSAGES/django.mo
index e18c27ff1..563a5e98d 100644
Binary files a/locale/gl_ES/LC_MESSAGES/django.mo and b/locale/gl_ES/LC_MESSAGES/django.mo differ
diff --git a/locale/gl_ES/LC_MESSAGES/django.po b/locale/gl_ES/LC_MESSAGES/django.po
index 312850000..5ae9619c3 100644
--- a/locale/gl_ES/LC_MESSAGES/django.po
+++ b/locale/gl_ES/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-01-24 17:25+0000\n"
-"PO-Revision-Date: 2022-01-24 18:54\n"
+"POT-Creation-Date: 2022-01-30 18:17+0000\n"
+"PO-Revision-Date: 2022-01-31 07:59\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: Galician\n"
"Language: gl\n"
@@ -46,33 +46,33 @@ msgstr "{i} usos"
msgid "Unlimited"
msgstr "Sen límite"
-#: bookwyrm/forms.py:483
+#: bookwyrm/forms.py:489
msgid "List Order"
msgstr "Orde da listaxe"
-#: bookwyrm/forms.py:484
+#: bookwyrm/forms.py:490
msgid "Book Title"
msgstr "Título do libro"
-#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
+#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:32
msgid "Rating"
msgstr "Puntuación"
-#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
+#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
msgid "Sort By"
msgstr "Ordenar por"
-#: bookwyrm/forms.py:491
+#: bookwyrm/forms.py:497
msgid "Ascending"
msgstr "Ascendente"
-#: bookwyrm/forms.py:492
+#: bookwyrm/forms.py:498
msgid "Descending"
msgstr "Descendente"
-#: bookwyrm/forms.py:505
+#: bookwyrm/forms.py:511
msgid "Reading finish date cannot be before start date."
msgstr "A data final da lectura non pode ser anterior á de inicio."
@@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Portugués europeo)"
#: bookwyrm/settings.py:258
+msgid "Swedish (Svenska)"
+msgstr "Sueco (Svenska)"
+
+#: bookwyrm/settings.py:259
msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Chinés simplificado)"
-#: bookwyrm/settings.py:259
+#: bookwyrm/settings.py:260
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Chinés tradicional)"
@@ -424,7 +428,7 @@ msgid "Copy address"
msgstr "Copiar enderezo"
#: bookwyrm/templates/annual_summary/layout.html:68
-#: bookwyrm/templates/lists/list.html:231
+#: bookwyrm/templates/lists/list.html:269
msgid "Copied!"
msgstr "Copiado!"
@@ -689,6 +693,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/book/file_links/edit_links.html:82
#: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15
+#: bookwyrm/templates/lists/edit_item_form.html:15
#: bookwyrm/templates/lists/form.html:130
#: bookwyrm/templates/preferences/edit_user.html:124
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
@@ -712,6 +717,7 @@ msgstr "Gardar"
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17
+#: bookwyrm/templates/lists/add_item_modal.html:42
#: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
@@ -816,7 +822,7 @@ msgstr "Lugares"
#: bookwyrm/templates/book/book.html:348
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
-#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
+#: 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/search/layout.html:25
#: bookwyrm/templates/search/layout.html:50
@@ -830,7 +836,8 @@ msgstr "Engadir a listaxe"
#: bookwyrm/templates/book/book.html:369
#: bookwyrm/templates/book/cover_add_modal.html:31
-#: bookwyrm/templates/lists/list.html:209
+#: bookwyrm/templates/lists/add_item_modal.html:37
+#: bookwyrm/templates/lists/list.html:247
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
msgid "Add"
@@ -1551,16 +1558,11 @@ msgstr "Tódalas mensaxes"
msgid "You have no messages right now."
msgstr "Non tes mensaxes por agora."
-#: bookwyrm/templates/feed/feed.html:28
-#, python-format
-msgid "load 0 unread status(es)"
-msgstr "cargar 0 estado(s) non lidos"
-
-#: bookwyrm/templates/feed/feed.html:51
+#: bookwyrm/templates/feed/feed.html:54
msgid "There aren't any activities right now! Try following a user to get started"
msgstr "Non hai actividade por agora! Proba a seguir algunha persoa para comezar"
-#: bookwyrm/templates/feed/feed.html:52
+#: bookwyrm/templates/feed/feed.html:55
msgid "Alternatively, you can try enabling more status types"
msgstr "De xeito alternativo, podes activar máis tipos de estados"
@@ -1649,7 +1651,7 @@ msgid "What are you reading?"
msgstr "Que estás a ler?"
#: bookwyrm/templates/get_started/books.html:9
-#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
+#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
msgid "Search for a book"
msgstr "Buscar un libro"
@@ -1669,7 +1671,7 @@ msgstr "Podes engadir libros cando comeces a usar %(site_name)s."
#: bookwyrm/templates/get_started/users.html:19
#: bookwyrm/templates/groups/members.html:15
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
-#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
+#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
#: bookwyrm/templates/search/layout.html:4
#: bookwyrm/templates/search/layout.html:9
msgid "Search"
@@ -1685,7 +1687,7 @@ msgid "Popular on %(site_name)s"
msgstr "Populares en %(site_name)s"
#: bookwyrm/templates/get_started/books.html:58
-#: bookwyrm/templates/lists/list.html:180
+#: bookwyrm/templates/lists/list.html:222
msgid "No books found"
msgstr "Non se atopan libros"
@@ -2034,7 +2036,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
msgstr "Ao aceptar unha suxestión engadirá permanentemente o libro suxerido aos teus estantes e asociará as túas datas de lectura, revisións e valoracións a ese libro."
#: bookwyrm/templates/import/manual_review.html:58
-#: bookwyrm/templates/lists/curate.html:59
+#: bookwyrm/templates/lists/curate.html:71
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve"
msgstr "Admitir"
@@ -2245,6 +2247,21 @@ msgstr "Axuda a %(site_name)s en
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "O código fonte de BookWyrm é público. Podes colaborar ou informar de problemas en GitHub."
+#: bookwyrm/templates/lists/add_item_modal.html:8
+#, python-format
+msgid "Add \"%(title)s\" to this list"
+msgstr "Engadir \"%(title)s\" a esta lista"
+
+#: bookwyrm/templates/lists/add_item_modal.html:12
+#, python-format
+msgid "Suggest \"%(title)s\" for this list"
+msgstr "Suxerir \"%(title)s\" para esta lista"
+
+#: bookwyrm/templates/lists/add_item_modal.html:39
+#: bookwyrm/templates/lists/list.html:249
+msgid "Suggest"
+msgstr "Suxire"
+
#: bookwyrm/templates/lists/bookmark_button.html:30
msgid "Un-save"
msgstr "Reverter"
@@ -2264,23 +2281,29 @@ msgstr "Creada e mantida por %(username)s"
msgid "Created by %(username)s"
msgstr "Creada por %(username)s"
-#: bookwyrm/templates/lists/curate.html:11
+#: bookwyrm/templates/lists/curate.html:12
msgid "Curate"
msgstr "Xestionar"
-#: bookwyrm/templates/lists/curate.html:20
+#: bookwyrm/templates/lists/curate.html:21
msgid "Pending Books"
msgstr "Libros pendentes"
-#: bookwyrm/templates/lists/curate.html:23
+#: bookwyrm/templates/lists/curate.html:24
msgid "You're all set!"
msgstr "Remataches!"
-#: bookwyrm/templates/lists/curate.html:43
+#: bookwyrm/templates/lists/curate.html:45
+#: bookwyrm/templates/lists/list.html:83
+#, python-format
+msgid "%(username)s says:"
+msgstr "%(username)s di:"
+
+#: bookwyrm/templates/lists/curate.html:55
msgid "Suggested by"
msgstr "Suxerido por"
-#: bookwyrm/templates/lists/curate.html:65
+#: bookwyrm/templates/lists/curate.html:77
msgid "Discard"
msgstr "Descartar"
@@ -2304,7 +2327,7 @@ msgid "on %(site_name)s"
msgstr "en %(site_name)s"
#: bookwyrm/templates/lists/embed-list.html:27
-#: bookwyrm/templates/lists/list.html:43
+#: bookwyrm/templates/lists/list.html:44
msgid "This list is currently empty"
msgstr "A lista está baleira neste intre"
@@ -2365,76 +2388,89 @@ msgstr "Crea un Grupo"
msgid "Delete list"
msgstr "Eliminar lista"
-#: bookwyrm/templates/lists/list.html:35
+#: bookwyrm/templates/lists/item_notes_field.html:7
+#: bookwyrm/templates/settings/federation/edit_instance.html:74
+msgid "Notes:"
+msgstr "Notas:"
+
+#: bookwyrm/templates/lists/item_notes_field.html:19
+msgid "An optional note that will be displayed with the book."
+msgstr "Unha nota optativa que aparecerá xunto ao libro."
+
+#: bookwyrm/templates/lists/list.html:36
msgid "You successfully suggested a book for this list!"
msgstr "Suxeriches correctamente un libro para esta lista!"
-#: bookwyrm/templates/lists/list.html:37
+#: bookwyrm/templates/lists/list.html:38
msgid "You successfully added a book to this list!"
msgstr "Engadiches correctamente un libro a esta lista!"
-#: bookwyrm/templates/lists/list.html:81
+#: bookwyrm/templates/lists/list.html:96
+msgid "Edit notes"
+msgstr "Editar notas"
+
+#: bookwyrm/templates/lists/list.html:111
+msgid "Add notes"
+msgstr "Engadir notas"
+
+#: bookwyrm/templates/lists/list.html:123
#, python-format
msgid "Added by %(username)s"
msgstr "Engadido por %(username)s"
-#: bookwyrm/templates/lists/list.html:96
+#: bookwyrm/templates/lists/list.html:138
msgid "List position"
msgstr "Posición da lista"
-#: bookwyrm/templates/lists/list.html:102
+#: bookwyrm/templates/lists/list.html:144
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set"
msgstr "Establecer"
-#: bookwyrm/templates/lists/list.html:117
+#: bookwyrm/templates/lists/list.html:159
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
msgid "Remove"
msgstr "Eliminar"
-#: bookwyrm/templates/lists/list.html:131
-#: bookwyrm/templates/lists/list.html:148
+#: bookwyrm/templates/lists/list.html:173
+#: bookwyrm/templates/lists/list.html:190
msgid "Sort List"
msgstr "Ordenar lista"
-#: bookwyrm/templates/lists/list.html:141
+#: bookwyrm/templates/lists/list.html:183
msgid "Direction"
msgstr "Dirección"
-#: bookwyrm/templates/lists/list.html:155
+#: bookwyrm/templates/lists/list.html:197
msgid "Add Books"
msgstr "Engadir Libros"
-#: bookwyrm/templates/lists/list.html:157
+#: bookwyrm/templates/lists/list.html:199
msgid "Suggest Books"
msgstr "Suxerir Libros"
-#: bookwyrm/templates/lists/list.html:168
+#: bookwyrm/templates/lists/list.html:210
msgid "search"
msgstr "buscar"
-#: bookwyrm/templates/lists/list.html:174
+#: bookwyrm/templates/lists/list.html:216
msgid "Clear search"
msgstr "Limpar busca"
-#: bookwyrm/templates/lists/list.html:179
+#: bookwyrm/templates/lists/list.html:221
#, python-format
msgid "No books found matching the query \"%(query)s\""
msgstr "Non se atopan libros coa consulta \"%(query)s\""
-#: bookwyrm/templates/lists/list.html:211
-msgid "Suggest"
-msgstr "Suxire"
-
-#: bookwyrm/templates/lists/list.html:222
+#: bookwyrm/templates/lists/list.html:260
msgid "Embed this list on a website"
msgstr "Utiliza esta lista nunha páxina web"
-#: bookwyrm/templates/lists/list.html:230
+#: bookwyrm/templates/lists/list.html:268
msgid "Copy embed code"
msgstr "Copia o código a incluír"
-#: bookwyrm/templates/lists/list.html:232
+#: bookwyrm/templates/lists/list.html:270
#, python-format
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
msgstr "%(list_name)s, unha lista de %(owner)s en %(site_name)s"
@@ -3222,10 +3258,6 @@ msgstr "Software:"
msgid "Version:"
msgstr "Versión:"
-#: bookwyrm/templates/settings/federation/edit_instance.html:74
-msgid "Notes:"
-msgstr "Notas:"
-
#: bookwyrm/templates/settings/federation/instance.html:19
msgid "Details"
msgstr "Detalles"
@@ -3542,23 +3574,31 @@ msgstr "Non hai ligazóns dispoñibles para este dominio."
msgid "Back to reports"
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"
msgstr "Estados dununciados"
-#: bookwyrm/templates/settings/reports/report.html:27
+#: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted"
msgstr "O estado foi eliminado"
-#: bookwyrm/templates/settings/reports/report.html:39
+#: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links"
msgstr "Ligazóns denunciadas"
-#: bookwyrm/templates/settings/reports/report.html:55
+#: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments"
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
msgid "Comment"
msgstr "Comentario"
@@ -3983,14 +4023,14 @@ msgstr "porcentaxe"
msgid "of %(pages)s pages"
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:53
#: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply"
msgstr "Responder"
-#: bookwyrm/templates/snippets/create_status/content_field.html:17
+#: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content"
msgstr "Contido"
@@ -4631,3 +4671,10 @@ msgstr "Enviamos unha ligazón de restablecemento a {email}"
msgid "Status updates from {obj.display_name}"
msgstr "Actualizacións de estados desde {obj.display_name}"
+#: bookwyrm/views/updates.py:45
+#, python-format
+msgid "Load %(count)d unread status"
+msgid_plural "Load %(count)d unread statuses"
+msgstr[0] "Cargar %(count)d estado non lido"
+msgstr[1] "Cargar %(count)d estados non lidos"
+
diff --git a/locale/it_IT/LC_MESSAGES/django.mo b/locale/it_IT/LC_MESSAGES/django.mo
index ffa734dcf..a8f4c5de6 100644
Binary files a/locale/it_IT/LC_MESSAGES/django.mo and b/locale/it_IT/LC_MESSAGES/django.mo differ
diff --git a/locale/it_IT/LC_MESSAGES/django.po b/locale/it_IT/LC_MESSAGES/django.po
index 0921ea0fa..fa00f1f49 100644
--- a/locale/it_IT/LC_MESSAGES/django.po
+++ b/locale/it_IT/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-01-24 17:25+0000\n"
-"PO-Revision-Date: 2022-01-24 18:54\n"
+"POT-Creation-Date: 2022-01-30 18:17+0000\n"
+"PO-Revision-Date: 2022-01-30 20:36\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: Italian\n"
"Language: it\n"
@@ -46,33 +46,33 @@ msgstr "{i} usi"
msgid "Unlimited"
msgstr "Illimitato"
-#: bookwyrm/forms.py:483
+#: bookwyrm/forms.py:489
msgid "List Order"
msgstr "Ordina Lista"
-#: bookwyrm/forms.py:484
+#: bookwyrm/forms.py:490
msgid "Book Title"
msgstr "Titolo del libro"
-#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
+#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:32
msgid "Rating"
msgstr "Valutazione"
-#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
+#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
msgid "Sort By"
msgstr "Ordina per"
-#: bookwyrm/forms.py:491
+#: bookwyrm/forms.py:497
msgid "Ascending"
msgstr "Crescente"
-#: bookwyrm/forms.py:492
+#: bookwyrm/forms.py:498
msgid "Descending"
msgstr "Decrescente"
-#: bookwyrm/forms.py:505
+#: bookwyrm/forms.py:511
msgid "Reading finish date cannot be before start date."
msgstr "La data di fine lettura non può essere precedente alla data di inizio."
@@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Portoghese europeo)"
#: bookwyrm/settings.py:258
+msgid "Swedish (Svenska)"
+msgstr "Swedish (Svedese)"
+
+#: bookwyrm/settings.py:259
msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Cinese Semplificato)"
-#: bookwyrm/settings.py:259
+#: bookwyrm/settings.py:260
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Cinese Tradizionale)"
@@ -424,7 +428,7 @@ msgid "Copy address"
msgstr "Copia l'indirizzo"
#: bookwyrm/templates/annual_summary/layout.html:68
-#: bookwyrm/templates/lists/list.html:231
+#: bookwyrm/templates/lists/list.html:269
msgid "Copied!"
msgstr "Copiato!"
@@ -689,6 +693,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/book/file_links/edit_links.html:82
#: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15
+#: bookwyrm/templates/lists/edit_item_form.html:15
#: bookwyrm/templates/lists/form.html:130
#: bookwyrm/templates/preferences/edit_user.html:124
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
@@ -712,6 +717,7 @@ msgstr "Salva"
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17
+#: bookwyrm/templates/lists/add_item_modal.html:42
#: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
@@ -816,7 +822,7 @@ msgstr "Luoghi"
#: bookwyrm/templates/book/book.html:348
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
-#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
+#: 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/search/layout.html:25
#: bookwyrm/templates/search/layout.html:50
@@ -830,7 +836,8 @@ msgstr "Aggiungi all'elenco"
#: bookwyrm/templates/book/book.html:369
#: bookwyrm/templates/book/cover_add_modal.html:31
-#: bookwyrm/templates/lists/list.html:209
+#: bookwyrm/templates/lists/add_item_modal.html:37
+#: bookwyrm/templates/lists/list.html:247
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
msgid "Add"
@@ -1551,16 +1558,11 @@ msgstr "Tutti i messaggi"
msgid "You have no messages right now."
msgstr "Non hai messaggi in questo momento."
-#: bookwyrm/templates/feed/feed.html:28
-#, python-format
-msgid "load 0 unread status(es)"
-msgstr "carica 0 stato non letto/i"
-
-#: bookwyrm/templates/feed/feed.html:51
+#: bookwyrm/templates/feed/feed.html:54
msgid "There aren't any activities right now! Try following a user to get started"
msgstr "Non ci sono attività in questo momento! Prova a seguire qualcuno per iniziare"
-#: bookwyrm/templates/feed/feed.html:52
+#: bookwyrm/templates/feed/feed.html:55
msgid "Alternatively, you can try enabling more status types"
msgstr "In alternativa, puoi provare ad abilitare più tipi di stato"
@@ -1649,7 +1651,7 @@ msgid "What are you reading?"
msgstr "Cosa stai leggendo?"
#: bookwyrm/templates/get_started/books.html:9
-#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
+#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
msgid "Search for a book"
msgstr "Cerca un libro"
@@ -1669,7 +1671,7 @@ msgstr "Puoi aggiungere libri quando inizi a usare %(site_name)s."
#: bookwyrm/templates/get_started/users.html:19
#: bookwyrm/templates/groups/members.html:15
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
-#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
+#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
#: bookwyrm/templates/search/layout.html:4
#: bookwyrm/templates/search/layout.html:9
msgid "Search"
@@ -1685,7 +1687,7 @@ msgid "Popular on %(site_name)s"
msgstr "Popolare su %(site_name)s"
#: bookwyrm/templates/get_started/books.html:58
-#: bookwyrm/templates/lists/list.html:180
+#: bookwyrm/templates/lists/list.html:222
msgid "No books found"
msgstr "Nessun libro trovato"
@@ -2034,7 +2036,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
msgstr "Approvare un suggerimento aggiungerà in modo permanente il libro suggerito agli scaffali e assocerà dati, recensioni e valutazioni a quel libro."
#: bookwyrm/templates/import/manual_review.html:58
-#: bookwyrm/templates/lists/curate.html:59
+#: bookwyrm/templates/lists/curate.html:71
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve"
msgstr "Approvato"
@@ -2245,6 +2247,21 @@ msgstr "Supporta %(site_name)s su GitHub."
msgstr "Il codice sorgente di BookWyrm è disponibile liberamente. Puoi contribuire o segnalare problemi su GitHub."
+#: bookwyrm/templates/lists/add_item_modal.html:8
+#, python-format
+msgid "Add \"%(title)s\" to this list"
+msgstr "Aggiungi \"%(title)s\" a questa lista"
+
+#: bookwyrm/templates/lists/add_item_modal.html:12
+#, python-format
+msgid "Suggest \"%(title)s\" for this list"
+msgstr "Suggerisci \"%(title)s\" per questa lista"
+
+#: bookwyrm/templates/lists/add_item_modal.html:39
+#: bookwyrm/templates/lists/list.html:249
+msgid "Suggest"
+msgstr "Suggerisci"
+
#: bookwyrm/templates/lists/bookmark_button.html:30
msgid "Un-save"
msgstr "Annulla salvataggio"
@@ -2264,23 +2281,29 @@ msgstr "Creato e curato da %(username)s"
msgid "Created by %(username)s"
msgstr "Gestito da %(username)s"
-#: bookwyrm/templates/lists/curate.html:11
+#: bookwyrm/templates/lists/curate.html:12
msgid "Curate"
msgstr "Curato"
-#: bookwyrm/templates/lists/curate.html:20
+#: bookwyrm/templates/lists/curate.html:21
msgid "Pending Books"
msgstr "Libri in sospeso"
-#: bookwyrm/templates/lists/curate.html:23
+#: bookwyrm/templates/lists/curate.html:24
msgid "You're all set!"
msgstr "é tutto pronto!"
-#: bookwyrm/templates/lists/curate.html:43
+#: bookwyrm/templates/lists/curate.html:45
+#: bookwyrm/templates/lists/list.html:83
+#, python-format
+msgid "%(username)s says:"
+msgstr "%(username)s dice:"
+
+#: bookwyrm/templates/lists/curate.html:55
msgid "Suggested by"
msgstr "Suggerito da"
-#: bookwyrm/templates/lists/curate.html:65
+#: bookwyrm/templates/lists/curate.html:77
msgid "Discard"
msgstr "Scarta"
@@ -2304,7 +2327,7 @@ msgid "on %(site_name)s"
msgstr "su %(site_name)s"
#: bookwyrm/templates/lists/embed-list.html:27
-#: bookwyrm/templates/lists/list.html:43
+#: bookwyrm/templates/lists/list.html:44
msgid "This list is currently empty"
msgstr "Questa lista è attualmente vuota"
@@ -2365,76 +2388,89 @@ msgstr "Crea un gruppo"
msgid "Delete list"
msgstr "Elimina lista"
-#: bookwyrm/templates/lists/list.html:35
+#: bookwyrm/templates/lists/item_notes_field.html:7
+#: bookwyrm/templates/settings/federation/edit_instance.html:74
+msgid "Notes:"
+msgstr "Note:"
+
+#: bookwyrm/templates/lists/item_notes_field.html:19
+msgid "An optional note that will be displayed with the book."
+msgstr "Una nota opzionale che verrà visualizzata con il libro."
+
+#: bookwyrm/templates/lists/list.html:36
msgid "You successfully suggested a book for this list!"
msgstr "Hai consigliato con successo un libro per questa lista!"
-#: bookwyrm/templates/lists/list.html:37
+#: bookwyrm/templates/lists/list.html:38
msgid "You successfully added a book to this list!"
msgstr "Hai consigliato con successo un libro per questa lista!"
-#: bookwyrm/templates/lists/list.html:81
+#: bookwyrm/templates/lists/list.html:96
+msgid "Edit notes"
+msgstr "Modifica note"
+
+#: bookwyrm/templates/lists/list.html:111
+msgid "Add notes"
+msgstr "Aggiungi note"
+
+#: bookwyrm/templates/lists/list.html:123
#, python-format
msgid "Added by %(username)s"
msgstr "Aggiunto da %(username)s"
-#: bookwyrm/templates/lists/list.html:96
+#: bookwyrm/templates/lists/list.html:138
msgid "List position"
msgstr "Posizione elenco"
-#: bookwyrm/templates/lists/list.html:102
+#: bookwyrm/templates/lists/list.html:144
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set"
msgstr "Imposta"
-#: bookwyrm/templates/lists/list.html:117
+#: bookwyrm/templates/lists/list.html:159
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
msgid "Remove"
msgstr "Elimina"
-#: bookwyrm/templates/lists/list.html:131
-#: bookwyrm/templates/lists/list.html:148
+#: bookwyrm/templates/lists/list.html:173
+#: bookwyrm/templates/lists/list.html:190
msgid "Sort List"
msgstr "Ordine lista"
-#: bookwyrm/templates/lists/list.html:141
+#: bookwyrm/templates/lists/list.html:183
msgid "Direction"
msgstr "Direzione"
-#: bookwyrm/templates/lists/list.html:155
+#: bookwyrm/templates/lists/list.html:197
msgid "Add Books"
msgstr "Aggiungi Libri"
-#: bookwyrm/templates/lists/list.html:157
+#: bookwyrm/templates/lists/list.html:199
msgid "Suggest Books"
msgstr "Libri consigliati"
-#: bookwyrm/templates/lists/list.html:168
+#: bookwyrm/templates/lists/list.html:210
msgid "search"
msgstr "cerca"
-#: bookwyrm/templates/lists/list.html:174
+#: bookwyrm/templates/lists/list.html:216
msgid "Clear search"
msgstr "Cancella ricerca"
-#: bookwyrm/templates/lists/list.html:179
+#: bookwyrm/templates/lists/list.html:221
#, python-format
msgid "No books found matching the query \"%(query)s\""
msgstr "Nessun libro trovato corrispondente alla query \"%(query)s\""
-#: bookwyrm/templates/lists/list.html:211
-msgid "Suggest"
-msgstr "Suggerisci"
-
-#: bookwyrm/templates/lists/list.html:222
+#: bookwyrm/templates/lists/list.html:260
msgid "Embed this list on a website"
msgstr "Incorpora questa lista in un sito web"
-#: bookwyrm/templates/lists/list.html:230
+#: bookwyrm/templates/lists/list.html:268
msgid "Copy embed code"
msgstr "Copia codice di incorporamento"
-#: bookwyrm/templates/lists/list.html:232
+#: bookwyrm/templates/lists/list.html:270
#, python-format
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
msgstr "%(list_name)s, una lista di %(owner)s su %(site_name)s"
@@ -3222,10 +3258,6 @@ msgstr "Software:"
msgid "Version:"
msgstr "Versione:"
-#: bookwyrm/templates/settings/federation/edit_instance.html:74
-msgid "Notes:"
-msgstr "Note:"
-
#: bookwyrm/templates/settings/federation/instance.html:19
msgid "Details"
msgstr "Dettagli"
@@ -3542,23 +3574,31 @@ msgstr "Nessun collegamento disponibile per questo libro."
msgid "Back to reports"
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"
msgstr "Stati segnalati"
-#: bookwyrm/templates/settings/reports/report.html:27
+#: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted"
msgstr "Lo stato è stato eliminato"
-#: bookwyrm/templates/settings/reports/report.html:39
+#: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links"
msgstr "Collegamenti segnalati"
-#: bookwyrm/templates/settings/reports/report.html:55
+#: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments"
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
msgid "Comment"
msgstr "Commenta"
@@ -3983,14 +4023,14 @@ msgstr "percentuale"
msgid "of %(pages)s pages"
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:53
#: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply"
msgstr "Rispondi"
-#: bookwyrm/templates/snippets/create_status/content_field.html:17
+#: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content"
msgstr "Contenuto"
@@ -4631,3 +4671,10 @@ msgstr "Il link per reimpostare la password è stato inviato a {email}"
msgid "Status updates from {obj.display_name}"
msgstr "Aggiornamenti di stato da {obj.display_name}"
+#: bookwyrm/views/updates.py:45
+#, python-format
+msgid "Load %(count)d unread status"
+msgid_plural "Load %(count)d unread statuses"
+msgstr[0] "Carica %(count)d stato non letto"
+msgstr[1] "Carica %(count)d stati non letti"
+
diff --git a/locale/lt_LT/LC_MESSAGES/django.mo b/locale/lt_LT/LC_MESSAGES/django.mo
index bd0c37b87..7c4e54132 100644
Binary files a/locale/lt_LT/LC_MESSAGES/django.mo and b/locale/lt_LT/LC_MESSAGES/django.mo differ
diff --git a/locale/lt_LT/LC_MESSAGES/django.po b/locale/lt_LT/LC_MESSAGES/django.po
index 9ee23fa0c..b9e24e72b 100644
--- a/locale/lt_LT/LC_MESSAGES/django.po
+++ b/locale/lt_LT/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-01-24 17:25+0000\n"
-"PO-Revision-Date: 2022-01-24 18:54\n"
+"POT-Creation-Date: 2022-01-30 18:17+0000\n"
+"PO-Revision-Date: 2022-01-31 15:31\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: Lithuanian\n"
"Language: lt\n"
@@ -46,33 +46,33 @@ msgstr "{i} naudoja"
msgid "Unlimited"
msgstr "Neribota"
-#: bookwyrm/forms.py:483
+#: bookwyrm/forms.py:489
msgid "List Order"
msgstr "Kaip pridėta į sąrašą"
-#: bookwyrm/forms.py:484
+#: bookwyrm/forms.py:490
msgid "Book Title"
msgstr "Knygos antraštė"
-#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
+#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:32
msgid "Rating"
msgstr "Įvertinimas"
-#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
+#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
msgid "Sort By"
msgstr "Rūšiuoti pagal"
-#: bookwyrm/forms.py:491
+#: bookwyrm/forms.py:497
msgid "Ascending"
msgstr "Didėjančia tvarka"
-#: bookwyrm/forms.py:492
+#: bookwyrm/forms.py:498
msgid "Descending"
msgstr "Mažėjančia tvarka"
-#: bookwyrm/forms.py:505
+#: bookwyrm/forms.py:511
msgid "Reading finish date cannot be before start date."
msgstr "Skaitymo pabaigos data negali būti prieš skaitymo pradžios datą."
@@ -138,7 +138,7 @@ msgstr "Susijungę"
#: bookwyrm/templates/settings/federation/instance_list.html:23
#: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked"
-msgstr "Užblokuota"
+msgstr "Užblokuoti"
#: bookwyrm/models/fields.py:29
#, python-format
@@ -206,7 +206,7 @@ msgstr "Galima pasiskolinti"
#: bookwyrm/models/link.py:70
#: bookwyrm/templates/settings/link_domains/link_domains.html:23
msgid "Approved"
-msgstr "Patvirtinti"
+msgstr "Patvirtinti puslapiai"
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
msgid "Reviews"
@@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Europos portugalų)"
#: bookwyrm/settings.py:258
+msgid "Swedish (Svenska)"
+msgstr "Švedų (Swedish)"
+
+#: bookwyrm/settings.py:259
msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Supaprastinta kinų)"
-#: bookwyrm/settings.py:259
+#: bookwyrm/settings.py:260
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Tradicinė kinų)"
@@ -424,7 +428,7 @@ msgid "Copy address"
msgstr "Kopijuoti adresą"
#: bookwyrm/templates/annual_summary/layout.html:68
-#: bookwyrm/templates/lists/list.html:231
+#: bookwyrm/templates/lists/list.html:269
msgid "Copied!"
msgstr "Nukopijuota"
@@ -697,6 +701,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/book/file_links/edit_links.html:82
#: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15
+#: bookwyrm/templates/lists/edit_item_form.html:15
#: bookwyrm/templates/lists/form.html:130
#: bookwyrm/templates/preferences/edit_user.html:124
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
@@ -720,6 +725,7 @@ msgstr "Išsaugoti"
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17
+#: bookwyrm/templates/lists/add_item_modal.html:42
#: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
@@ -826,7 +832,7 @@ msgstr "Vietos"
#: bookwyrm/templates/book/book.html:348
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
-#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
+#: 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/search/layout.html:25
#: bookwyrm/templates/search/layout.html:50
@@ -840,7 +846,8 @@ msgstr "Pridėti prie sąrašo"
#: bookwyrm/templates/book/book.html:369
#: bookwyrm/templates/book/cover_add_modal.html:31
-#: bookwyrm/templates/lists/list.html:209
+#: bookwyrm/templates/lists/add_item_modal.html:37
+#: bookwyrm/templates/lists/list.html:247
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
msgid "Add"
@@ -1298,7 +1305,7 @@ msgstr "Bendruomenė"
#: bookwyrm/templates/directory/directory.html:17
msgid "Make your profile discoverable to other BookWyrm users."
-msgstr "Savo paskyrą leiskite atrasti kitiems „BookWyrm“ nariems."
+msgstr "Savo paskyrą leiskite atrasti kitiems „BookWyrm“ nariams."
#: bookwyrm/templates/directory/directory.html:21
msgid "Join Directory"
@@ -1564,16 +1571,11 @@ msgstr "Visos žinutės"
msgid "You have no messages right now."
msgstr "Neturite žinučių."
-#: bookwyrm/templates/feed/feed.html:28
-#, python-format
-msgid "load 0 unread status(es)"
-msgstr "įkelti 0 neperskaitytas būsenas"
-
-#: bookwyrm/templates/feed/feed.html:51
+#: bookwyrm/templates/feed/feed.html:54
msgid "There aren't any activities right now! Try following a user to get started"
msgstr "Šiuo metu įrašų nėra. Norėdami matyti, sekite narį."
-#: bookwyrm/templates/feed/feed.html:52
+#: bookwyrm/templates/feed/feed.html:55
msgid "Alternatively, you can try enabling more status types"
msgstr "Taip pat galite pasirinkti daugiau būsenos tipų"
@@ -1645,7 +1647,7 @@ msgstr "Norimos perskaityti"
#: bookwyrm/templates/snippets/translated_shelf_name.html:7
#: bookwyrm/templates/user/user.html:34
msgid "Currently Reading"
-msgstr "Šiuo metu skaitoma"
+msgstr "Šiuo metu skaitomos"
#: bookwyrm/templates/get_started/book_preview.html:12
#: bookwyrm/templates/shelf/shelf.html:88
@@ -1655,14 +1657,14 @@ msgstr "Šiuo metu skaitoma"
#: bookwyrm/templates/snippets/translated_shelf_name.html:9
#: bookwyrm/templates/user/user.html:35
msgid "Read"
-msgstr "Perskaityta"
+msgstr "Perskaitytos"
#: bookwyrm/templates/get_started/books.html:6
msgid "What are you reading?"
msgstr "Ką skaitome?"
#: bookwyrm/templates/get_started/books.html:9
-#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
+#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
msgid "Search for a book"
msgstr "Ieškoti knygos"
@@ -1682,7 +1684,7 @@ msgstr "Kai pradedate naudotis %(site_name)s, galite pridėti knygų."
#: bookwyrm/templates/get_started/users.html:19
#: bookwyrm/templates/groups/members.html:15
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
-#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
+#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
#: bookwyrm/templates/search/layout.html:4
#: bookwyrm/templates/search/layout.html:9
msgid "Search"
@@ -1698,7 +1700,7 @@ msgid "Popular on %(site_name)s"
msgstr "%(site_name)s populiaru"
#: bookwyrm/templates/get_started/books.html:58
-#: bookwyrm/templates/lists/list.html:180
+#: bookwyrm/templates/lists/list.html:222
msgid "No books found"
msgstr "Knygų nerasta"
@@ -1740,7 +1742,7 @@ msgstr "Baigti"
#: bookwyrm/templates/get_started/profile.html:15
#: bookwyrm/templates/preferences/edit_user.html:41
msgid "Display name:"
-msgstr "Rodyti vardą:"
+msgstr "Rodomas vardą:"
#: bookwyrm/templates/get_started/profile.html:29
#: bookwyrm/templates/preferences/edit_user.html:47
@@ -2055,7 +2057,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
msgstr "Jei patvirtinsite siūlymą, siūloma knyga visam laikui bus įkelta į Jūsų lentyną, susieta su skaitymo datomis, atsiliepimais ir knygos reitingais."
#: bookwyrm/templates/import/manual_review.html:58
-#: bookwyrm/templates/lists/curate.html:59
+#: bookwyrm/templates/lists/curate.html:71
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve"
msgstr "Patvirtinti"
@@ -2266,6 +2268,21 @@ msgstr "Paremkite %(site_name)s per GitHub."
msgstr "„BookWyrm“ šaltinio kodas yra laisvai prieinamas. Galite prisidėti arba pranešti apie klaidas per GitHub."
+#: bookwyrm/templates/lists/add_item_modal.html:8
+#, python-format
+msgid "Add \"%(title)s\" to this list"
+msgstr "Pridėti \"%(title)s\" į šį sąrašą"
+
+#: bookwyrm/templates/lists/add_item_modal.html:12
+#, python-format
+msgid "Suggest \"%(title)s\" for this list"
+msgstr "Siūlyti \"%(title)s\" į šį sąrašą"
+
+#: bookwyrm/templates/lists/add_item_modal.html:39
+#: bookwyrm/templates/lists/list.html:249
+msgid "Suggest"
+msgstr "Siūlyti"
+
#: bookwyrm/templates/lists/bookmark_button.html:30
msgid "Un-save"
msgstr "Nebesaugoti"
@@ -2285,23 +2302,29 @@ msgstr "Sukūrė ir kuruoja %(username)s"
msgid "Created by %(username)s"
msgstr "Sukūrė %(username)s"
-#: bookwyrm/templates/lists/curate.html:11
+#: bookwyrm/templates/lists/curate.html:12
msgid "Curate"
msgstr "Kuruoti"
-#: bookwyrm/templates/lists/curate.html:20
+#: bookwyrm/templates/lists/curate.html:21
msgid "Pending Books"
msgstr "Patvirtinimo laukiančios knygos"
-#: bookwyrm/templates/lists/curate.html:23
+#: bookwyrm/templates/lists/curate.html:24
msgid "You're all set!"
msgstr "Viskas atlikta!"
-#: bookwyrm/templates/lists/curate.html:43
+#: bookwyrm/templates/lists/curate.html:45
+#: bookwyrm/templates/lists/list.html:83
+#, python-format
+msgid "%(username)s says:"
+msgstr "%(username)s sako:"
+
+#: bookwyrm/templates/lists/curate.html:55
msgid "Suggested by"
msgstr "Pasiūlė"
-#: bookwyrm/templates/lists/curate.html:65
+#: bookwyrm/templates/lists/curate.html:77
msgid "Discard"
msgstr "Atmesti"
@@ -2325,7 +2348,7 @@ msgid "on %(site_name)s"
msgstr "per %(site_name)s"
#: bookwyrm/templates/lists/embed-list.html:27
-#: bookwyrm/templates/lists/list.html:43
+#: bookwyrm/templates/lists/list.html:44
msgid "This list is currently empty"
msgstr "Šiuo metu sąrašas tuščias"
@@ -2386,76 +2409,89 @@ msgstr "Sukurti grupę"
msgid "Delete list"
msgstr "Ištrinti sąrašą"
-#: bookwyrm/templates/lists/list.html:35
+#: bookwyrm/templates/lists/item_notes_field.html:7
+#: bookwyrm/templates/settings/federation/edit_instance.html:74
+msgid "Notes:"
+msgstr "Užrašai:"
+
+#: bookwyrm/templates/lists/item_notes_field.html:19
+msgid "An optional note that will be displayed with the book."
+msgstr "Papildomi užrašai, kurie rodomi kartu su knyga."
+
+#: bookwyrm/templates/lists/list.html:36
msgid "You successfully suggested a book for this list!"
msgstr "Sėkmingai pasiūlėte knygą šiam sąrašui!"
-#: bookwyrm/templates/lists/list.html:37
+#: bookwyrm/templates/lists/list.html:38
msgid "You successfully added a book to this list!"
msgstr "Sėkmingai pridėjote knygą į šį sąrašą!"
-#: bookwyrm/templates/lists/list.html:81
+#: bookwyrm/templates/lists/list.html:96
+msgid "Edit notes"
+msgstr "Redaguoti užrašus"
+
+#: bookwyrm/templates/lists/list.html:111
+msgid "Add notes"
+msgstr "Pridėti užrašus"
+
+#: bookwyrm/templates/lists/list.html:123
#, python-format
msgid "Added by %(username)s"
msgstr "Pridėjo %(username)s"
-#: bookwyrm/templates/lists/list.html:96
+#: bookwyrm/templates/lists/list.html:138
msgid "List position"
msgstr "Sąrašo pozicija"
-#: bookwyrm/templates/lists/list.html:102
+#: bookwyrm/templates/lists/list.html:144
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set"
msgstr "Nustatyti"
-#: bookwyrm/templates/lists/list.html:117
+#: bookwyrm/templates/lists/list.html:159
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
msgid "Remove"
msgstr "Pašalinti"
-#: bookwyrm/templates/lists/list.html:131
-#: bookwyrm/templates/lists/list.html:148
+#: bookwyrm/templates/lists/list.html:173
+#: bookwyrm/templates/lists/list.html:190
msgid "Sort List"
msgstr "Rūšiuoti sąrašą"
-#: bookwyrm/templates/lists/list.html:141
+#: bookwyrm/templates/lists/list.html:183
msgid "Direction"
msgstr "Kryptis"
-#: bookwyrm/templates/lists/list.html:155
+#: bookwyrm/templates/lists/list.html:197
msgid "Add Books"
msgstr "Pridėti knygų"
-#: bookwyrm/templates/lists/list.html:157
+#: bookwyrm/templates/lists/list.html:199
msgid "Suggest Books"
msgstr "Siūlyti knygų"
-#: bookwyrm/templates/lists/list.html:168
+#: bookwyrm/templates/lists/list.html:210
msgid "search"
msgstr "paieška"
-#: bookwyrm/templates/lists/list.html:174
+#: bookwyrm/templates/lists/list.html:216
msgid "Clear search"
msgstr "Išvalyti paiešką"
-#: bookwyrm/templates/lists/list.html:179
+#: bookwyrm/templates/lists/list.html:221
#, python-format
msgid "No books found matching the query \"%(query)s\""
msgstr "Pagal paiešką „%(query)s“ knygų nerasta"
-#: bookwyrm/templates/lists/list.html:211
-msgid "Suggest"
-msgstr "Siūlyti"
-
-#: bookwyrm/templates/lists/list.html:222
+#: bookwyrm/templates/lists/list.html:260
msgid "Embed this list on a website"
msgstr "Įdėkite šį sąrašą į tinklalapį"
-#: bookwyrm/templates/lists/list.html:230
+#: bookwyrm/templates/lists/list.html:268
msgid "Copy embed code"
-msgstr "Nukopijuokite įterptinį kodą"
+msgstr "Nukopijuokite kodą įterpimui"
-#: bookwyrm/templates/lists/list.html:232
+#: bookwyrm/templates/lists/list.html:270
#, python-format
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
msgstr "%(list_name)s, sąrašą sudarė %(owner)s, per %(site_name)s"
@@ -2800,13 +2836,13 @@ msgstr "Nebegalėsite atstatyti ištrintos paskyros. Ateityje nebegalėsite naud
#: bookwyrm/templates/preferences/edit_user.html:7
#: bookwyrm/templates/preferences/layout.html:15
msgid "Edit Profile"
-msgstr "Redaguoti profilį"
+msgstr "Redaguoti paskyrą"
#: bookwyrm/templates/preferences/edit_user.html:12
#: bookwyrm/templates/preferences/edit_user.html:25
#: bookwyrm/templates/settings/users/user_info.html:7
msgid "Profile"
-msgstr "Profilis"
+msgstr "Paskyra"
#: bookwyrm/templates/preferences/edit_user.html:13
#: bookwyrm/templates/preferences/edit_user.html:64
@@ -3251,10 +3287,6 @@ msgstr "Programinė įranga:"
msgid "Version:"
msgstr "Versija:"
-#: bookwyrm/templates/settings/federation/edit_instance.html:74
-msgid "Notes:"
-msgstr "Užrašai:"
-
#: bookwyrm/templates/settings/federation/instance.html:19
msgid "Details"
msgstr "Išsami informacija"
@@ -3522,7 +3554,7 @@ msgstr "Pranešimai"
#: bookwyrm/templates/settings/link_domains/link_domains.html:5
#: bookwyrm/templates/settings/link_domains/link_domains.html:7
msgid "Link Domains"
-msgstr "Susieti domenus"
+msgstr "Nuorodų puslapiai"
#: bookwyrm/templates/settings/layout.html:72
msgid "Instance Settings"
@@ -3571,23 +3603,31 @@ msgstr ""
msgid "Back to reports"
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"
msgstr "Praneštos būsenos"
-#: bookwyrm/templates/settings/reports/report.html:27
+#: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted"
msgstr "Būsena ištrinta"
-#: bookwyrm/templates/settings/reports/report.html:39
+#: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links"
msgstr "Raportuotos nuorodos"
-#: bookwyrm/templates/settings/reports/report.html:55
+#: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments"
msgstr "Moderatoriaus komentarai"
-#: bookwyrm/templates/settings/reports/report.html:73
+#: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment"
msgstr "Komentuoti"
@@ -3808,7 +3848,7 @@ msgstr "Nenustatytas"
#: bookwyrm/templates/settings/users/user_info.html:16
msgid "View user profile"
-msgstr "Peržiūrėti vartotojo profilį"
+msgstr "Peržiūrėti nario paskyrą"
#: bookwyrm/templates/settings/users/user_info.html:36
msgid "Local"
@@ -3888,7 +3928,7 @@ msgstr "Redaguoti lentyną"
#: bookwyrm/templates/shelf/shelf.html:24
msgid "User profile"
-msgstr "Nario profilis"
+msgstr "Nario paskyra"
#: bookwyrm/templates/shelf/shelf.html:39
#: bookwyrm/templates/snippets/translated_shelf_name.html:3
@@ -4016,14 +4056,14 @@ msgstr "procentai"
msgid "of %(pages)s pages"
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:53
#: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply"
msgstr "Atsakyti"
-#: bookwyrm/templates/snippets/create_status/content_field.html:17
+#: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content"
msgstr "Turinys"
@@ -4388,7 +4428,7 @@ msgstr "redaguota %(date)s"
#: bookwyrm/templates/snippets/status/headers/comment.html:8
#, python-format
msgid "commented on %(book)s by %(author_name)s"
-msgstr ""
+msgstr "pakomentavo autoriaus %(author_name)s knygą %(book)s"
#: bookwyrm/templates/snippets/status/headers/comment.html:15
#, python-format
@@ -4438,7 +4478,7 @@ msgstr "pradėjo skaityti %(book)s"
#: bookwyrm/templates/snippets/status/headers/review.html:8
#, python-format
msgid "reviewed %(book)s by %(author_name)s"
-msgstr ""
+msgstr "apžvelgė autoriaus %(author_name)s knygą %(book)s"
#: bookwyrm/templates/snippets/status/headers/review.html:15
#, python-format
@@ -4547,7 +4587,7 @@ msgstr "Sukurti grupę"
#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
msgid "User Profile"
-msgstr "Naudotojo paskyra"
+msgstr "Nario paskyra"
#: bookwyrm/templates/user/layout.html:48
msgid "Follow Requests"
@@ -4678,3 +4718,12 @@ msgstr "Slaptažodžio atstatymo nuoroda išsiųsta į {email}"
msgid "Status updates from {obj.display_name}"
msgstr "Būsenos atnaujinimai iš {obj.display_name}"
+#: bookwyrm/views/updates.py:45
+#, python-format
+msgid "Load %(count)d unread status"
+msgid_plural "Load %(count)d unread statuses"
+msgstr[0] "Įkelti %(count)d neperskaitytą statusą"
+msgstr[1] "Įkelti %(count)d neperskaitytus statusus"
+msgstr[2] "Įkelti %(count)d neperskaitytą statusą"
+msgstr[3] "Įkelti %(count)d neperskaitytą statusą"
+
diff --git a/locale/no_NO/LC_MESSAGES/django.mo b/locale/no_NO/LC_MESSAGES/django.mo
index 24ec9e5cf..3d3d4263f 100644
Binary files a/locale/no_NO/LC_MESSAGES/django.mo and b/locale/no_NO/LC_MESSAGES/django.mo differ
diff --git a/locale/no_NO/LC_MESSAGES/django.po b/locale/no_NO/LC_MESSAGES/django.po
index 225c4338b..a46774343 100644
--- a/locale/no_NO/LC_MESSAGES/django.po
+++ b/locale/no_NO/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-01-24 17:25+0000\n"
-"PO-Revision-Date: 2022-01-24 18:54\n"
+"POT-Creation-Date: 2022-01-30 18:17+0000\n"
+"PO-Revision-Date: 2022-01-30 21:36\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: Norwegian\n"
"Language: no\n"
@@ -46,33 +46,33 @@ msgstr "{i} ganger"
msgid "Unlimited"
msgstr "Ubegrenset"
-#: bookwyrm/forms.py:483
+#: bookwyrm/forms.py:489
msgid "List Order"
msgstr "Liste rekkefølge"
-#: bookwyrm/forms.py:484
+#: bookwyrm/forms.py:490
msgid "Book Title"
msgstr "Boktittel"
-#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
+#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:32
msgid "Rating"
msgstr "Vurdering"
-#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
+#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
msgid "Sort By"
msgstr "Sorter etter"
-#: bookwyrm/forms.py:491
+#: bookwyrm/forms.py:497
msgid "Ascending"
msgstr "Stigende"
-#: bookwyrm/forms.py:492
+#: bookwyrm/forms.py:498
msgid "Descending"
msgstr "Synkende"
-#: bookwyrm/forms.py:505
+#: bookwyrm/forms.py:511
msgid "Reading finish date cannot be before start date."
msgstr "Sluttdato kan ikke være før startdato."
@@ -193,20 +193,20 @@ msgstr "Privat"
#: bookwyrm/models/link.py:51
msgid "Free"
-msgstr ""
+msgstr "Gratis"
#: bookwyrm/models/link.py:52
msgid "Purchasable"
-msgstr ""
+msgstr "Tilgjengelig for kjøp"
#: bookwyrm/models/link.py:53
msgid "Available for loan"
-msgstr ""
+msgstr "Tilgjengelig for utlån"
#: bookwyrm/models/link.py:70
#: bookwyrm/templates/settings/link_domains/link_domains.html:23
msgid "Approved"
-msgstr ""
+msgstr "Godkjent"
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
msgid "Reviews"
@@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Europeisk Portugisisk)"
#: bookwyrm/settings.py:258
+msgid "Swedish (Svenska)"
+msgstr "Svensk (Svenska)"
+
+#: bookwyrm/settings.py:259
msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Forenklet kinesisk)"
-#: bookwyrm/settings.py:259
+#: bookwyrm/settings.py:260
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Tradisjonelt kinesisk)"
@@ -324,7 +328,7 @@ msgstr "Velkommen til %(site_name)s!"
#: bookwyrm/templates/about/about.html:23
#, python-format
msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique."
-msgstr ""
+msgstr "%(site_name)s er en del av BookWyrm, et nettverk av selvstendige, selvstyrte samfunn for lesere. Du kan kommunisere sømløst med brukere hvor som helst i BookWyrm nettverket, men hvert samfunn er unikt."
#: bookwyrm/templates/about/about.html:40
#, python-format
@@ -352,7 +356,7 @@ msgstr "Møt administratorene"
#: bookwyrm/templates/about/about.html:99
#, python-format
msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior."
-msgstr ""
+msgstr "%(site_name)s sine moderatorer og administratorer holder nettsida oppe og tilgjengelig, håndhever adferdskoden, og svarer på brukernes rapporterer om spam og dårlig atferd."
#: bookwyrm/templates/about/about.html:113
msgid "Moderator"
@@ -424,7 +428,7 @@ msgid "Copy address"
msgstr "Kopiér adresse"
#: bookwyrm/templates/annual_summary/layout.html:68
-#: bookwyrm/templates/lists/list.html:231
+#: bookwyrm/templates/lists/list.html:269
msgid "Copied!"
msgstr "Kopiert!"
@@ -689,6 +693,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/book/file_links/edit_links.html:82
#: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15
+#: bookwyrm/templates/lists/edit_item_form.html:15
#: bookwyrm/templates/lists/form.html:130
#: bookwyrm/templates/preferences/edit_user.html:124
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
@@ -712,6 +717,7 @@ msgstr "Lagre"
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17
+#: bookwyrm/templates/lists/add_item_modal.html:42
#: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
@@ -816,7 +822,7 @@ msgstr "Steder"
#: bookwyrm/templates/book/book.html:348
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
-#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
+#: 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/search/layout.html:25
#: bookwyrm/templates/search/layout.html:50
@@ -830,7 +836,8 @@ msgstr "Legg til i liste"
#: bookwyrm/templates/book/book.html:369
#: bookwyrm/templates/book/cover_add_modal.html:31
-#: bookwyrm/templates/lists/list.html:209
+#: bookwyrm/templates/lists/add_item_modal.html:37
+#: bookwyrm/templates/lists/list.html:247
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
msgid "Add"
@@ -1064,51 +1071,53 @@ msgstr "Søk etter utgaver"
#: bookwyrm/templates/book/file_links/add_link_modal.html:6
msgid "Add file link"
-msgstr ""
+msgstr "Legg til fillenke"
#: bookwyrm/templates/book/file_links/add_link_modal.html:19
msgid "Links from unknown domains will need to be approved by a moderator before they are added."
-msgstr ""
+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
msgid "URL:"
-msgstr ""
+msgstr "URL:"
#: bookwyrm/templates/book/file_links/add_link_modal.html:29
msgid "File type:"
-msgstr ""
+msgstr "Filtype:"
#: bookwyrm/templates/book/file_links/add_link_modal.html:48
msgid "Availability:"
-msgstr ""
+msgstr "Tilgjengelighet:"
#: bookwyrm/templates/book/file_links/edit_links.html:5
#: bookwyrm/templates/book/file_links/edit_links.html:22
#: bookwyrm/templates/book/file_links/links.html:53
msgid "Edit links"
-msgstr ""
+msgstr "Rediger lenker"
#: bookwyrm/templates/book/file_links/edit_links.html:11
#, python-format
msgid "\n"
" Links for \"%(title)s\"\n"
" "
-msgstr ""
+msgstr "\n"
+" Lenker for \"%(title)s\"\n"
+" "
#: bookwyrm/templates/book/file_links/edit_links.html:32
#: bookwyrm/templates/settings/link_domains/link_table.html:6
msgid "URL"
-msgstr ""
+msgstr "URL"
#: bookwyrm/templates/book/file_links/edit_links.html:33
#: bookwyrm/templates/settings/link_domains/link_table.html:7
msgid "Added by"
-msgstr ""
+msgstr "Lagt til av"
#: bookwyrm/templates/book/file_links/edit_links.html:34
#: bookwyrm/templates/settings/link_domains/link_table.html:8
msgid "Filetype"
-msgstr ""
+msgstr "Filtype"
#: bookwyrm/templates/book/file_links/edit_links.html:35
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25
@@ -1136,41 +1145,41 @@ msgstr "Handlinger"
#: bookwyrm/templates/book/file_links/edit_links.html:53
#: bookwyrm/templates/book/file_links/verification_modal.html:25
msgid "Report spam"
-msgstr ""
+msgstr "Rapporter spam"
#: bookwyrm/templates/book/file_links/edit_links.html:97
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/links.html:18
msgid "Add link to file"
-msgstr ""
+msgstr "Legg til lenke til fil"
#: bookwyrm/templates/book/file_links/file_link_page.html:6
msgid "File Links"
-msgstr ""
+msgstr "Fillenker"
#: bookwyrm/templates/book/file_links/links.html:9
msgid "Get a copy"
-msgstr ""
+msgstr "Få en kopi"
#: bookwyrm/templates/book/file_links/links.html:47
msgid "No links available"
-msgstr ""
+msgstr "Ingen tilgjengelige lenker"
#: bookwyrm/templates/book/file_links/verification_modal.html:5
msgid "Leaving BookWyrm"
-msgstr ""
+msgstr "Forlater BookWyrm"
#: bookwyrm/templates/book/file_links/verification_modal.html:11
#, python-format
msgid "This link is taking you to: %(link_url)s
.
Is that where you'd like to go?"
-msgstr ""
+msgstr "Denne lenka sender deg til: %(link_url)s
.
Er det dit du vil dra?"
#: bookwyrm/templates/book/file_links/verification_modal.html:20
msgid "Continue"
-msgstr ""
+msgstr "Fortsett"
#: bookwyrm/templates/book/publisher_info.html:23
#, python-format
@@ -1549,16 +1558,11 @@ msgstr "Alle meldinger"
msgid "You have no messages right now."
msgstr "Du har ingen meldinger."
-#: bookwyrm/templates/feed/feed.html:28
-#, python-format
-msgid "load 0 unread status(es)"
-msgstr "last 0 uleste status(er)"
-
-#: bookwyrm/templates/feed/feed.html:51
+#: bookwyrm/templates/feed/feed.html:54
msgid "There aren't any activities right now! Try following a user to get started"
msgstr "Det er ingen aktiviteter akkurat nå! Prøv å følge en bruker for å komme i gang"
-#: bookwyrm/templates/feed/feed.html:52
+#: bookwyrm/templates/feed/feed.html:55
msgid "Alternatively, you can try enabling more status types"
msgstr "Eller, du kan prøve å aktivere flere statustyper"
@@ -1647,7 +1651,7 @@ msgid "What are you reading?"
msgstr "Hva er det du leser nå?"
#: bookwyrm/templates/get_started/books.html:9
-#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
+#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
msgid "Search for a book"
msgstr "Søk etter en bok"
@@ -1667,7 +1671,7 @@ msgstr "Du kan legge til bøker når du begynner å bruke %(site_name)s."
#: bookwyrm/templates/get_started/users.html:19
#: bookwyrm/templates/groups/members.html:15
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
-#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
+#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
#: bookwyrm/templates/search/layout.html:4
#: bookwyrm/templates/search/layout.html:9
msgid "Search"
@@ -1683,7 +1687,7 @@ msgid "Popular on %(site_name)s"
msgstr "Populært på %(site_name)s"
#: bookwyrm/templates/get_started/books.html:58
-#: bookwyrm/templates/lists/list.html:180
+#: bookwyrm/templates/lists/list.html:222
msgid "No books found"
msgstr "Ingen bøker funnet"
@@ -2032,7 +2036,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
msgstr "Aksept av et forslag legger boka til i hyllene dine permanent, og kobler dine lesedatoer, anmeldelser og vurderinger til boka."
#: bookwyrm/templates/import/manual_review.html:58
-#: bookwyrm/templates/lists/curate.html:59
+#: bookwyrm/templates/lists/curate.html:71
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve"
msgstr "Godkjenn"
@@ -2043,7 +2047,7 @@ msgstr "Avslå"
#: bookwyrm/templates/import/tooltip.html:6
msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account."
-msgstr ""
+msgstr "Du kan laste ned Goodread-dataene dine fra Import/Export sida på Goodread-kontoen din."
#: bookwyrm/templates/import/troubleshoot.html:7
msgid "Failed items"
@@ -2243,6 +2247,21 @@ msgstr "Støtt %(site_name)s på
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "BookWyrms kildekode er fritt tilgjengelig. Du kan bidra eller rapportere problemer på GitHub."
+#: bookwyrm/templates/lists/add_item_modal.html:8
+#, python-format
+msgid "Add \"%(title)s\" to this list"
+msgstr "Legg til \"%(title)s\" på denne lista"
+
+#: bookwyrm/templates/lists/add_item_modal.html:12
+#, python-format
+msgid "Suggest \"%(title)s\" for this list"
+msgstr "Foreslå \"%(title)s\" for denne lista"
+
+#: bookwyrm/templates/lists/add_item_modal.html:39
+#: bookwyrm/templates/lists/list.html:249
+msgid "Suggest"
+msgstr "Foreslå"
+
#: bookwyrm/templates/lists/bookmark_button.html:30
msgid "Un-save"
msgstr "Fjern lagring"
@@ -2262,23 +2281,29 @@ msgstr "Opprettet og forvaltet av %(username)s"
msgid "Created by %(username)s"
msgstr "Opprettet av %(username)s"
-#: bookwyrm/templates/lists/curate.html:11
+#: bookwyrm/templates/lists/curate.html:12
msgid "Curate"
msgstr "Forvalt"
-#: bookwyrm/templates/lists/curate.html:20
+#: bookwyrm/templates/lists/curate.html:21
msgid "Pending Books"
msgstr "Ventende bøker"
-#: bookwyrm/templates/lists/curate.html:23
+#: bookwyrm/templates/lists/curate.html:24
msgid "You're all set!"
msgstr "Nå er du klar!"
-#: bookwyrm/templates/lists/curate.html:43
+#: bookwyrm/templates/lists/curate.html:45
+#: bookwyrm/templates/lists/list.html:83
+#, python-format
+msgid "%(username)s says:"
+msgstr "%(username)s sier:"
+
+#: bookwyrm/templates/lists/curate.html:55
msgid "Suggested by"
msgstr "Foreslått av"
-#: bookwyrm/templates/lists/curate.html:65
+#: bookwyrm/templates/lists/curate.html:77
msgid "Discard"
msgstr "Forkast"
@@ -2302,7 +2327,7 @@ msgid "on %(site_name)s"
msgstr "på %(site_name)s"
#: bookwyrm/templates/lists/embed-list.html:27
-#: bookwyrm/templates/lists/list.html:43
+#: bookwyrm/templates/lists/list.html:44
msgid "This list is currently empty"
msgstr "Denne lista er for tida tom"
@@ -2363,76 +2388,89 @@ msgstr "Opprett ei gruppe"
msgid "Delete list"
msgstr "Slett liste"
-#: bookwyrm/templates/lists/list.html:35
+#: bookwyrm/templates/lists/item_notes_field.html:7
+#: bookwyrm/templates/settings/federation/edit_instance.html:74
+msgid "Notes:"
+msgstr "Notater:"
+
+#: bookwyrm/templates/lists/item_notes_field.html:19
+msgid "An optional note that will be displayed with the book."
+msgstr "En valgfri merknad som vil vises sammen med boken."
+
+#: bookwyrm/templates/lists/list.html:36
msgid "You successfully suggested a book for this list!"
msgstr "Du har nå foreslått en bok for denne lista!"
-#: bookwyrm/templates/lists/list.html:37
+#: bookwyrm/templates/lists/list.html:38
msgid "You successfully added a book to this list!"
msgstr "Du har nå lagt til ei bok i denne lista!"
-#: bookwyrm/templates/lists/list.html:81
+#: bookwyrm/templates/lists/list.html:96
+msgid "Edit notes"
+msgstr "Rediger merknader"
+
+#: bookwyrm/templates/lists/list.html:111
+msgid "Add notes"
+msgstr "Legg til merknader"
+
+#: bookwyrm/templates/lists/list.html:123
#, python-format
msgid "Added by %(username)s"
msgstr "Lagt til av %(username)s"
-#: bookwyrm/templates/lists/list.html:96
+#: bookwyrm/templates/lists/list.html:138
msgid "List position"
msgstr "Listeposisjon"
-#: bookwyrm/templates/lists/list.html:102
+#: bookwyrm/templates/lists/list.html:144
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set"
msgstr "Bruk"
-#: bookwyrm/templates/lists/list.html:117
+#: bookwyrm/templates/lists/list.html:159
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
msgid "Remove"
msgstr "Fjern"
-#: bookwyrm/templates/lists/list.html:131
-#: bookwyrm/templates/lists/list.html:148
+#: bookwyrm/templates/lists/list.html:173
+#: bookwyrm/templates/lists/list.html:190
msgid "Sort List"
msgstr "Sorter liste"
-#: bookwyrm/templates/lists/list.html:141
+#: bookwyrm/templates/lists/list.html:183
msgid "Direction"
msgstr "Retning"
-#: bookwyrm/templates/lists/list.html:155
+#: bookwyrm/templates/lists/list.html:197
msgid "Add Books"
msgstr "Legg til bøker"
-#: bookwyrm/templates/lists/list.html:157
+#: bookwyrm/templates/lists/list.html:199
msgid "Suggest Books"
msgstr "Foreslå bøker"
-#: bookwyrm/templates/lists/list.html:168
+#: bookwyrm/templates/lists/list.html:210
msgid "search"
msgstr "søk"
-#: bookwyrm/templates/lists/list.html:174
+#: bookwyrm/templates/lists/list.html:216
msgid "Clear search"
msgstr "Nullstill søk"
-#: bookwyrm/templates/lists/list.html:179
+#: bookwyrm/templates/lists/list.html:221
#, python-format
msgid "No books found matching the query \"%(query)s\""
msgstr "Ingen bøker funnet for søket\"%(query)s\""
-#: bookwyrm/templates/lists/list.html:211
-msgid "Suggest"
-msgstr "Foreslå"
-
-#: bookwyrm/templates/lists/list.html:222
+#: bookwyrm/templates/lists/list.html:260
msgid "Embed this list on a website"
msgstr "Legg denne lista inn på et nettsted"
-#: bookwyrm/templates/lists/list.html:230
+#: bookwyrm/templates/lists/list.html:268
msgid "Copy embed code"
msgstr "Kopier kode som legger inn lista"
-#: bookwyrm/templates/lists/list.html:232
+#: bookwyrm/templates/lists/list.html:270
#, python-format
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
msgstr "%(list_name)s, en liste av %(owner)s på %(site_name)s"
@@ -3093,8 +3131,8 @@ msgstr[1] "%(display_count)s åpne rapporter"
#, python-format
msgid "%(display_count)s domain needs review"
msgid_plural "%(display_count)s domains need review"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "%(display_count)s domene må godkjennes"
+msgstr[1] "%(display_count)s domener må godkjennes"
#: bookwyrm/templates/settings/dashboard/dashboard.html:65
#, python-format
@@ -3220,10 +3258,6 @@ msgstr "Programvare:"
msgid "Version:"
msgstr "Versjon:"
-#: bookwyrm/templates/settings/federation/edit_instance.html:74
-msgid "Notes:"
-msgstr "Notater:"
-
#: bookwyrm/templates/settings/federation/instance.html:19
msgid "Details"
msgstr "Detaljer"
@@ -3491,7 +3525,7 @@ msgstr "Rapporter"
#: bookwyrm/templates/settings/link_domains/link_domains.html:5
#: bookwyrm/templates/settings/link_domains/link_domains.html:7
msgid "Link Domains"
-msgstr ""
+msgstr "Lenkedomener"
#: bookwyrm/templates/settings/layout.html:72
msgid "Instance Settings"
@@ -3506,57 +3540,65 @@ msgstr "Sideinnstillinger"
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5
#, python-format
msgid "Set display name for %(url)s"
-msgstr ""
+msgstr "Angi visningsnavn for %(url)s"
#: bookwyrm/templates/settings/link_domains/link_domains.html:11
msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving."
-msgstr ""
+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
msgid "Set display name"
-msgstr ""
+msgstr "Angi visningsnavn"
#: bookwyrm/templates/settings/link_domains/link_domains.html:53
msgid "View links"
-msgstr ""
+msgstr "Vis lenker"
#: bookwyrm/templates/settings/link_domains/link_domains.html:96
msgid "No domains currently approved"
-msgstr ""
+msgstr "Ingen domener er hittil godkjent"
#: bookwyrm/templates/settings/link_domains/link_domains.html:98
msgid "No domains currently pending"
-msgstr ""
+msgstr "Ingen domener venter for tiden på godkjenning"
#: bookwyrm/templates/settings/link_domains/link_domains.html:100
msgid "No domains currently blocked"
-msgstr ""
+msgstr "Ingen domener er for øyeblikket blokkert"
#: bookwyrm/templates/settings/link_domains/link_table.html:39
msgid "No links available for this domain."
-msgstr ""
+msgstr "Ingen lenker tilgjengelig til dette domenet."
#: bookwyrm/templates/settings/reports/report.html:11
msgid "Back to reports"
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"
msgstr "Rapporterte statuser"
-#: bookwyrm/templates/settings/reports/report.html:27
+#: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted"
msgstr "Status er slettet"
-#: bookwyrm/templates/settings/reports/report.html:39
+#: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links"
-msgstr ""
+msgstr "Rapporterte lenker"
-#: bookwyrm/templates/settings/reports/report.html:55
+#: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments"
msgstr "Moderatorkommentarer"
-#: bookwyrm/templates/settings/reports/report.html:73
+#: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment"
msgstr "Kommentar"
@@ -3564,21 +3606,21 @@ msgstr "Kommentar"
#: bookwyrm/templates/settings/reports/report_header.html:6
#, python-format
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
#, python-format
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
#, python-format
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
msgid "Block domain"
-msgstr ""
+msgstr "Blokkér domene"
#: bookwyrm/templates/settings/reports/report_preview.html:17
msgid "No notes provided"
@@ -3587,7 +3629,7 @@ msgstr "Ingen merknader finnes"
#: bookwyrm/templates/settings/reports/report_preview.html:24
#, python-format
msgid "Reported by @%(username)s"
-msgstr ""
+msgstr "Rapportert av %(username)s"
#: bookwyrm/templates/settings/reports/report_preview.html:34
msgid "Re-open"
@@ -3833,7 +3875,7 @@ msgstr "Slettet for godt"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:8
msgid "User Actions"
-msgstr ""
+msgstr "Brukerhandlinger"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:21
msgid "Suspend user"
@@ -3981,14 +4023,14 @@ msgstr "prosent"
msgid "of %(pages)s pages"
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:53
#: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply"
msgstr "Svar"
-#: bookwyrm/templates/snippets/create_status/content_field.html:17
+#: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content"
msgstr "Innhold"
@@ -4135,13 +4177,13 @@ msgstr[1] "vurderte %(title)s til: %(display_r
#, python-format
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"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Anmeldelse av \"%(book_title)s\" (%(display_rating)s stjerne): %(review_title)s"
+msgstr[1] "Anmeldelse av \"%(book_title)s\" (%(display_rating)s stjerner): %(review_title)s"
#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12
#, python-format
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
#, python-format
@@ -4250,12 +4292,12 @@ msgstr "Registrer deg"
#: bookwyrm/templates/snippets/report_modal.html:8
#, python-format
msgid "Report @%(username)s's status"
-msgstr ""
+msgstr "Rapportér @%(username)s sin status"
#: bookwyrm/templates/snippets/report_modal.html:10
#, python-format
msgid "Report %(domain)s link"
-msgstr ""
+msgstr "Rapportér %(domain)s lenke"
#: bookwyrm/templates/snippets/report_modal.html:12
#, python-format
@@ -4269,7 +4311,7 @@ msgstr "Denne rapporten vil bli sendt til %(site_name)s sine moderatorer for gje
#: bookwyrm/templates/snippets/report_modal.html:36
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
msgid "More info about this report:"
@@ -4629,3 +4671,10 @@ msgstr "En lenke for tilbakestilling av passord er sendt til {email}"
msgid "Status updates from {obj.display_name}"
msgstr "Statusoppdateringer fra {obj.display_name}"
+#: bookwyrm/views/updates.py:45
+#, python-format
+msgid "Load %(count)d unread status"
+msgid_plural "Load %(count)d unread statuses"
+msgstr[0] "Last inn %(count)d ulest status"
+msgstr[1] "Last inn %(count)d uleste statuser"
+
diff --git a/locale/pt_BR/LC_MESSAGES/django.mo b/locale/pt_BR/LC_MESSAGES/django.mo
index ae5d241ca..2522c804a 100644
Binary files a/locale/pt_BR/LC_MESSAGES/django.mo and b/locale/pt_BR/LC_MESSAGES/django.mo differ
diff --git a/locale/pt_BR/LC_MESSAGES/django.po b/locale/pt_BR/LC_MESSAGES/django.po
index a7f34e4b5..4845ae1bc 100644
--- a/locale/pt_BR/LC_MESSAGES/django.po
+++ b/locale/pt_BR/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-01-24 17:25+0000\n"
-"PO-Revision-Date: 2022-01-24 18:55\n"
+"POT-Creation-Date: 2022-01-30 18:17+0000\n"
+"PO-Revision-Date: 2022-01-30 19:38\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: Portuguese, Brazilian\n"
"Language: pt\n"
@@ -46,33 +46,33 @@ msgstr "{i} usos"
msgid "Unlimited"
msgstr "Ilimitado"
-#: bookwyrm/forms.py:483
+#: bookwyrm/forms.py:489
msgid "List Order"
msgstr "Ordem de inserção"
-#: bookwyrm/forms.py:484
+#: bookwyrm/forms.py:490
msgid "Book Title"
msgstr "Título do livro"
-#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
+#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:32
msgid "Rating"
msgstr "Avaliação"
-#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
+#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
msgid "Sort By"
msgstr "Organizar por"
-#: bookwyrm/forms.py:491
+#: bookwyrm/forms.py:497
msgid "Ascending"
msgstr "Crescente"
-#: bookwyrm/forms.py:492
+#: bookwyrm/forms.py:498
msgid "Descending"
msgstr "Decrescente"
-#: bookwyrm/forms.py:505
+#: bookwyrm/forms.py:511
msgid "Reading finish date cannot be before start date."
msgstr "A data de término da leitura não pode ser anterior a de início."
@@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Português Europeu)"
#: bookwyrm/settings.py:258
+msgid "Swedish (Svenska)"
+msgstr "Sueco (Svenska)"
+
+#: bookwyrm/settings.py:259
msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Chinês simplificado)"
-#: bookwyrm/settings.py:259
+#: bookwyrm/settings.py:260
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Chinês tradicional)"
@@ -424,7 +428,7 @@ msgid "Copy address"
msgstr "Copiar endereço"
#: bookwyrm/templates/annual_summary/layout.html:68
-#: bookwyrm/templates/lists/list.html:231
+#: bookwyrm/templates/lists/list.html:269
msgid "Copied!"
msgstr "Copiado!"
@@ -689,6 +693,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/book/file_links/edit_links.html:82
#: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15
+#: bookwyrm/templates/lists/edit_item_form.html:15
#: bookwyrm/templates/lists/form.html:130
#: bookwyrm/templates/preferences/edit_user.html:124
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
@@ -712,6 +717,7 @@ msgstr "Salvar"
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17
+#: bookwyrm/templates/lists/add_item_modal.html:42
#: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
@@ -816,7 +822,7 @@ msgstr "Lugares"
#: bookwyrm/templates/book/book.html:348
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
-#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
+#: 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/search/layout.html:25
#: bookwyrm/templates/search/layout.html:50
@@ -830,7 +836,8 @@ msgstr "Adicionar à lista"
#: bookwyrm/templates/book/book.html:369
#: bookwyrm/templates/book/cover_add_modal.html:31
-#: bookwyrm/templates/lists/list.html:209
+#: bookwyrm/templates/lists/add_item_modal.html:37
+#: bookwyrm/templates/lists/list.html:247
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
msgid "Add"
@@ -1551,16 +1558,11 @@ msgstr "Todas as mensagens"
msgid "You have no messages right now."
msgstr "Você não tem mensagens."
-#: bookwyrm/templates/feed/feed.html:28
-#, python-format
-msgid "load 0 unread status(es)"
-msgstr "carregar 0 publicações não lida(s)"
-
-#: bookwyrm/templates/feed/feed.html:51
+#: bookwyrm/templates/feed/feed.html:54
msgid "There aren't any activities right now! Try following a user to get started"
msgstr "Não há nenhuma atividade! Tente seguir um usuário para começar"
-#: bookwyrm/templates/feed/feed.html:52
+#: bookwyrm/templates/feed/feed.html:55
msgid "Alternatively, you can try enabling more status types"
msgstr "Uma outra opção é habilitar mais tipos de publicação"
@@ -1649,7 +1651,7 @@ msgid "What are you reading?"
msgstr "O que você está lendo?"
#: bookwyrm/templates/get_started/books.html:9
-#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
+#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
msgid "Search for a book"
msgstr "Pesquisar livro"
@@ -1669,7 +1671,7 @@ msgstr "Você pode adicionar livros quando começar a usar o %(site_name)s."
#: bookwyrm/templates/get_started/users.html:19
#: bookwyrm/templates/groups/members.html:15
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
-#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
+#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
#: bookwyrm/templates/search/layout.html:4
#: bookwyrm/templates/search/layout.html:9
msgid "Search"
@@ -1685,7 +1687,7 @@ msgid "Popular on %(site_name)s"
msgstr "Popular em %(site_name)s"
#: bookwyrm/templates/get_started/books.html:58
-#: bookwyrm/templates/lists/list.html:180
+#: bookwyrm/templates/lists/list.html:222
msgid "No books found"
msgstr "Nenhum livro encontrado"
@@ -2034,7 +2036,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
msgstr "Aprovar uma sugestão adicionará permanentemente o livro sugerido às suas estantes e associará suas datas de leitura, resenhas e avaliações aos do livro."
#: bookwyrm/templates/import/manual_review.html:58
-#: bookwyrm/templates/lists/curate.html:59
+#: bookwyrm/templates/lists/curate.html:71
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve"
msgstr "Aprovar"
@@ -2245,6 +2247,21 @@ msgstr "Apoie a instância %(site_name)s: GitHub."
msgstr "O código-fonte da BookWyrm está disponível gratuitamente. Você pode contribuir ou reportar problemas no GitHub."
+#: bookwyrm/templates/lists/add_item_modal.html:8
+#, python-format
+msgid "Add \"%(title)s\" to this list"
+msgstr "Adicionar \"%(title)s\" a esta lista"
+
+#: bookwyrm/templates/lists/add_item_modal.html:12
+#, python-format
+msgid "Suggest \"%(title)s\" for this list"
+msgstr "Sugerir \"%(title)s\" para esta lista"
+
+#: bookwyrm/templates/lists/add_item_modal.html:39
+#: bookwyrm/templates/lists/list.html:249
+msgid "Suggest"
+msgstr "Sugerir"
+
#: bookwyrm/templates/lists/bookmark_button.html:30
msgid "Un-save"
msgstr "Restaurar"
@@ -2264,23 +2281,29 @@ msgstr "Criada e organizada por %(username)s"
msgid "Created by %(username)s"
msgstr "Criada por %(username)s"
-#: bookwyrm/templates/lists/curate.html:11
+#: bookwyrm/templates/lists/curate.html:12
msgid "Curate"
msgstr "Moderar"
-#: bookwyrm/templates/lists/curate.html:20
+#: bookwyrm/templates/lists/curate.html:21
msgid "Pending Books"
msgstr "Livros pendentes"
-#: bookwyrm/templates/lists/curate.html:23
+#: bookwyrm/templates/lists/curate.html:24
msgid "You're all set!"
msgstr "Tudo pronto!"
-#: bookwyrm/templates/lists/curate.html:43
+#: bookwyrm/templates/lists/curate.html:45
+#: bookwyrm/templates/lists/list.html:83
+#, python-format
+msgid "%(username)s says:"
+msgstr "%(username)s diz:"
+
+#: bookwyrm/templates/lists/curate.html:55
msgid "Suggested by"
msgstr "Sugerido por"
-#: bookwyrm/templates/lists/curate.html:65
+#: bookwyrm/templates/lists/curate.html:77
msgid "Discard"
msgstr "Descartar"
@@ -2304,7 +2327,7 @@ msgid "on %(site_name)s"
msgstr "em %(site_name)s"
#: bookwyrm/templates/lists/embed-list.html:27
-#: bookwyrm/templates/lists/list.html:43
+#: bookwyrm/templates/lists/list.html:44
msgid "This list is currently empty"
msgstr "Esta lista está vazia"
@@ -2365,76 +2388,89 @@ msgstr "Criar grupo"
msgid "Delete list"
msgstr "Excluir lista"
-#: bookwyrm/templates/lists/list.html:35
+#: bookwyrm/templates/lists/item_notes_field.html:7
+#: bookwyrm/templates/settings/federation/edit_instance.html:74
+msgid "Notes:"
+msgstr "Notas:"
+
+#: bookwyrm/templates/lists/item_notes_field.html:19
+msgid "An optional note that will be displayed with the book."
+msgstr "Uma anotação opcional será mostrada com o livro."
+
+#: bookwyrm/templates/lists/list.html:36
msgid "You successfully suggested a book for this list!"
msgstr "Você sugeriu um livro para esta lista com sucesso!"
-#: bookwyrm/templates/lists/list.html:37
+#: bookwyrm/templates/lists/list.html:38
msgid "You successfully added a book to this list!"
msgstr "Você adicionou um livro a esta lista com sucesso!"
-#: bookwyrm/templates/lists/list.html:81
+#: bookwyrm/templates/lists/list.html:96
+msgid "Edit notes"
+msgstr "Editar anotações"
+
+#: bookwyrm/templates/lists/list.html:111
+msgid "Add notes"
+msgstr "Adicionar anotações"
+
+#: bookwyrm/templates/lists/list.html:123
#, python-format
msgid "Added by %(username)s"
msgstr "Adicionado por %(username)s"
-#: bookwyrm/templates/lists/list.html:96
+#: bookwyrm/templates/lists/list.html:138
msgid "List position"
msgstr "Posição na lista"
-#: bookwyrm/templates/lists/list.html:102
+#: bookwyrm/templates/lists/list.html:144
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set"
msgstr "Definir"
-#: bookwyrm/templates/lists/list.html:117
+#: bookwyrm/templates/lists/list.html:159
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
msgid "Remove"
msgstr "Remover"
-#: bookwyrm/templates/lists/list.html:131
-#: bookwyrm/templates/lists/list.html:148
+#: bookwyrm/templates/lists/list.html:173
+#: bookwyrm/templates/lists/list.html:190
msgid "Sort List"
msgstr "Ordenar lista"
-#: bookwyrm/templates/lists/list.html:141
+#: bookwyrm/templates/lists/list.html:183
msgid "Direction"
msgstr "Sentido"
-#: bookwyrm/templates/lists/list.html:155
+#: bookwyrm/templates/lists/list.html:197
msgid "Add Books"
msgstr "Adicionar livros"
-#: bookwyrm/templates/lists/list.html:157
+#: bookwyrm/templates/lists/list.html:199
msgid "Suggest Books"
msgstr "Sugerir livros"
-#: bookwyrm/templates/lists/list.html:168
+#: bookwyrm/templates/lists/list.html:210
msgid "search"
msgstr "pesquisar"
-#: bookwyrm/templates/lists/list.html:174
+#: bookwyrm/templates/lists/list.html:216
msgid "Clear search"
msgstr "Limpar pesquisa"
-#: bookwyrm/templates/lists/list.html:179
+#: bookwyrm/templates/lists/list.html:221
#, python-format
msgid "No books found matching the query \"%(query)s\""
msgstr "Nenhum livro encontrado para \"%(query)s\""
-#: bookwyrm/templates/lists/list.html:211
-msgid "Suggest"
-msgstr "Sugerir"
-
-#: bookwyrm/templates/lists/list.html:222
+#: bookwyrm/templates/lists/list.html:260
msgid "Embed this list on a website"
msgstr "Incorpore esta lista em um site"
-#: bookwyrm/templates/lists/list.html:230
+#: bookwyrm/templates/lists/list.html:268
msgid "Copy embed code"
msgstr "Copiar código de incorporação"
-#: bookwyrm/templates/lists/list.html:232
+#: bookwyrm/templates/lists/list.html:270
#, python-format
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
msgstr "%(list_name)s, uma lista de %(owner)s em %(site_name)s"
@@ -3222,10 +3258,6 @@ msgstr "Software:"
msgid "Version:"
msgstr "Versão:"
-#: bookwyrm/templates/settings/federation/edit_instance.html:74
-msgid "Notes:"
-msgstr "Notas:"
-
#: bookwyrm/templates/settings/federation/instance.html:19
msgid "Details"
msgstr "Detalhes"
@@ -3542,23 +3574,31 @@ msgstr "Nenhum link disponível para este domínio."
msgid "Back to reports"
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"
msgstr "Publicações denunciadas"
-#: bookwyrm/templates/settings/reports/report.html:27
+#: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted"
msgstr "A publicação foi excluída"
-#: bookwyrm/templates/settings/reports/report.html:39
+#: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links"
msgstr "Links denunciados"
-#: bookwyrm/templates/settings/reports/report.html:55
+#: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments"
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
msgid "Comment"
msgstr "Comentar"
@@ -3983,14 +4023,14 @@ msgstr "porcentagem"
msgid "of %(pages)s pages"
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:53
#: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply"
msgstr "Responder"
-#: bookwyrm/templates/snippets/create_status/content_field.html:17
+#: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content"
msgstr "Conteúdo"
@@ -4631,3 +4671,10 @@ msgstr "Um link para redefinição da senha foi enviado para {email}"
msgid "Status updates from {obj.display_name}"
msgstr "Novas publicações de {obj.display_name}"
+#: bookwyrm/views/updates.py:45
+#, python-format
+msgid "Load %(count)d unread status"
+msgid_plural "Load %(count)d unread statuses"
+msgstr[0] "Carregar %(count)d publicação não lida"
+msgstr[1] "Carregar %(count)d publicações não lidas"
+
diff --git a/locale/pt_PT/LC_MESSAGES/django.mo b/locale/pt_PT/LC_MESSAGES/django.mo
index 70db33917..1ffe4140d 100644
Binary files a/locale/pt_PT/LC_MESSAGES/django.mo and b/locale/pt_PT/LC_MESSAGES/django.mo differ
diff --git a/locale/pt_PT/LC_MESSAGES/django.po b/locale/pt_PT/LC_MESSAGES/django.po
index edc39bcb9..b241c4d51 100644
--- a/locale/pt_PT/LC_MESSAGES/django.po
+++ b/locale/pt_PT/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-01-24 17:25+0000\n"
-"PO-Revision-Date: 2022-01-24 18:54\n"
+"POT-Creation-Date: 2022-01-30 18:17+0000\n"
+"PO-Revision-Date: 2022-01-30 19:38\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: Portuguese\n"
"Language: pt\n"
@@ -46,33 +46,33 @@ msgstr "{i} utilizações"
msgid "Unlimited"
msgstr "Ilimitado"
-#: bookwyrm/forms.py:483
+#: bookwyrm/forms.py:489
msgid "List Order"
msgstr "Ordem da Lista"
-#: bookwyrm/forms.py:484
+#: bookwyrm/forms.py:490
msgid "Book Title"
msgstr "Título do livro"
-#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
+#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:32
msgid "Rating"
msgstr "Classificação"
-#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
+#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
msgid "Sort By"
msgstr "Ordenar Por"
-#: bookwyrm/forms.py:491
+#: bookwyrm/forms.py:497
msgid "Ascending"
msgstr "Ascendente"
-#: bookwyrm/forms.py:492
+#: bookwyrm/forms.py:498
msgid "Descending"
msgstr "Descendente"
-#: bookwyrm/forms.py:505
+#: bookwyrm/forms.py:511
msgid "Reading finish date cannot be before start date."
msgstr ""
@@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
msgstr "Português (Português Europeu)"
#: bookwyrm/settings.py:258
+msgid "Swedish (Svenska)"
+msgstr ""
+
+#: bookwyrm/settings.py:259
msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Chinês simplificado)"
-#: bookwyrm/settings.py:259
+#: bookwyrm/settings.py:260
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Chinês tradicional)"
@@ -424,7 +428,7 @@ msgid "Copy address"
msgstr "Copiar endereço"
#: bookwyrm/templates/annual_summary/layout.html:68
-#: bookwyrm/templates/lists/list.html:231
+#: bookwyrm/templates/lists/list.html:269
msgid "Copied!"
msgstr "Copiado!"
@@ -689,6 +693,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/book/file_links/edit_links.html:82
#: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15
+#: bookwyrm/templates/lists/edit_item_form.html:15
#: bookwyrm/templates/lists/form.html:130
#: bookwyrm/templates/preferences/edit_user.html:124
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
@@ -712,6 +717,7 @@ msgstr "Salvar"
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17
+#: bookwyrm/templates/lists/add_item_modal.html:42
#: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
@@ -816,7 +822,7 @@ msgstr "Lugares"
#: bookwyrm/templates/book/book.html:348
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
-#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
+#: 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/search/layout.html:25
#: bookwyrm/templates/search/layout.html:50
@@ -830,7 +836,8 @@ msgstr "Adicionar à lista"
#: bookwyrm/templates/book/book.html:369
#: bookwyrm/templates/book/cover_add_modal.html:31
-#: bookwyrm/templates/lists/list.html:209
+#: bookwyrm/templates/lists/add_item_modal.html:37
+#: bookwyrm/templates/lists/list.html:247
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
msgid "Add"
@@ -1549,16 +1556,11 @@ msgstr "Todas as mensagens"
msgid "You have no messages right now."
msgstr "Ainda não tem mensagens."
-#: bookwyrm/templates/feed/feed.html:28
-#, python-format
-msgid "load 0 unread status(es)"
-msgstr "carregar 0 estado(s) não lido(s)"
-
-#: bookwyrm/templates/feed/feed.html:51
+#: bookwyrm/templates/feed/feed.html:54
msgid "There aren't any activities right now! Try following a user to get started"
msgstr "Não existem atividades agora! Experimenta seguir um utilizador para começar"
-#: bookwyrm/templates/feed/feed.html:52
+#: bookwyrm/templates/feed/feed.html:55
msgid "Alternatively, you can try enabling more status types"
msgstr "Alternativamente, podes tentar ativar mais tipos de estado"
@@ -1647,7 +1649,7 @@ msgid "What are you reading?"
msgstr "O que andas a ler?"
#: bookwyrm/templates/get_started/books.html:9
-#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
+#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
msgid "Search for a book"
msgstr "Pesquisar por um livro"
@@ -1667,7 +1669,7 @@ msgstr "Podes adicionar livros quando começas a usar %(site_name)s."
#: bookwyrm/templates/get_started/users.html:19
#: bookwyrm/templates/groups/members.html:15
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
-#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
+#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
#: bookwyrm/templates/search/layout.html:4
#: bookwyrm/templates/search/layout.html:9
msgid "Search"
@@ -1683,7 +1685,7 @@ msgid "Popular on %(site_name)s"
msgstr "Populares em %(site_name)s"
#: bookwyrm/templates/get_started/books.html:58
-#: bookwyrm/templates/lists/list.html:180
+#: bookwyrm/templates/lists/list.html:222
msgid "No books found"
msgstr "Nenhum livro encontrado"
@@ -2032,7 +2034,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
msgstr "Aprovar uma sugestão adicionará permanentemente o livro sugerido às tuas prateleiras e associará as tuas datas de leitura, análises, avaliações e criticas a esse livro."
#: bookwyrm/templates/import/manual_review.html:58
-#: bookwyrm/templates/lists/curate.html:59
+#: bookwyrm/templates/lists/curate.html:71
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve"
msgstr "Aprovar"
@@ -2243,6 +2245,21 @@ msgstr "Apoia %(site_name)s em %(
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "O código de fonte do BookWyrm está disponível gratuitamente. E também podes contribuir ou reportar problemas no GitHub."
+#: bookwyrm/templates/lists/add_item_modal.html:8
+#, python-format
+msgid "Add \"%(title)s\" to this list"
+msgstr ""
+
+#: bookwyrm/templates/lists/add_item_modal.html:12
+#, python-format
+msgid "Suggest \"%(title)s\" for this list"
+msgstr ""
+
+#: bookwyrm/templates/lists/add_item_modal.html:39
+#: bookwyrm/templates/lists/list.html:249
+msgid "Suggest"
+msgstr "Sugerir"
+
#: bookwyrm/templates/lists/bookmark_button.html:30
msgid "Un-save"
msgstr "Des-gravar"
@@ -2262,23 +2279,29 @@ msgstr "Criado e curado por %(username)s"
msgid "Created by %(username)s"
msgstr "Criado por %(username)s"
-#: bookwyrm/templates/lists/curate.html:11
+#: bookwyrm/templates/lists/curate.html:12
msgid "Curate"
msgstr "Administrar"
-#: bookwyrm/templates/lists/curate.html:20
+#: bookwyrm/templates/lists/curate.html:21
msgid "Pending Books"
msgstr "Livros pendentes"
-#: bookwyrm/templates/lists/curate.html:23
+#: bookwyrm/templates/lists/curate.html:24
msgid "You're all set!"
msgstr "Está tudo pronto!"
-#: bookwyrm/templates/lists/curate.html:43
+#: bookwyrm/templates/lists/curate.html:45
+#: bookwyrm/templates/lists/list.html:83
+#, python-format
+msgid "%(username)s says:"
+msgstr ""
+
+#: bookwyrm/templates/lists/curate.html:55
msgid "Suggested by"
msgstr "Sugerido por"
-#: bookwyrm/templates/lists/curate.html:65
+#: bookwyrm/templates/lists/curate.html:77
msgid "Discard"
msgstr "Descartar"
@@ -2302,7 +2325,7 @@ msgid "on %(site_name)s"
msgstr "em %(site_name)s"
#: bookwyrm/templates/lists/embed-list.html:27
-#: bookwyrm/templates/lists/list.html:43
+#: bookwyrm/templates/lists/list.html:44
msgid "This list is currently empty"
msgstr "Esta lista está vazia"
@@ -2363,76 +2386,89 @@ msgstr "Criar um Grupo"
msgid "Delete list"
msgstr "Apagar lista"
-#: bookwyrm/templates/lists/list.html:35
+#: bookwyrm/templates/lists/item_notes_field.html:7
+#: bookwyrm/templates/settings/federation/edit_instance.html:74
+msgid "Notes:"
+msgstr "Notas:"
+
+#: bookwyrm/templates/lists/item_notes_field.html:19
+msgid "An optional note that will be displayed with the book."
+msgstr ""
+
+#: bookwyrm/templates/lists/list.html:36
msgid "You successfully suggested a book for this list!"
msgstr "Sugeriste um livro para esta lista com sucesso!"
-#: bookwyrm/templates/lists/list.html:37
+#: bookwyrm/templates/lists/list.html:38
msgid "You successfully added a book to this list!"
msgstr "Adicionaste um livro a esta lista com sucesso!"
-#: bookwyrm/templates/lists/list.html:81
+#: bookwyrm/templates/lists/list.html:96
+msgid "Edit notes"
+msgstr ""
+
+#: bookwyrm/templates/lists/list.html:111
+msgid "Add notes"
+msgstr ""
+
+#: bookwyrm/templates/lists/list.html:123
#, python-format
msgid "Added by %(username)s"
msgstr "Adicionado por %(username)s"
-#: bookwyrm/templates/lists/list.html:96
+#: bookwyrm/templates/lists/list.html:138
msgid "List position"
msgstr "Posição da lista"
-#: bookwyrm/templates/lists/list.html:102
+#: bookwyrm/templates/lists/list.html:144
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set"
msgstr "Definir"
-#: bookwyrm/templates/lists/list.html:117
+#: bookwyrm/templates/lists/list.html:159
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
msgid "Remove"
msgstr "Remover"
-#: bookwyrm/templates/lists/list.html:131
-#: bookwyrm/templates/lists/list.html:148
+#: bookwyrm/templates/lists/list.html:173
+#: bookwyrm/templates/lists/list.html:190
msgid "Sort List"
msgstr "Ordenar lista"
-#: bookwyrm/templates/lists/list.html:141
+#: bookwyrm/templates/lists/list.html:183
msgid "Direction"
msgstr "Direcção"
-#: bookwyrm/templates/lists/list.html:155
+#: bookwyrm/templates/lists/list.html:197
msgid "Add Books"
msgstr "Adicionar Livros"
-#: bookwyrm/templates/lists/list.html:157
+#: bookwyrm/templates/lists/list.html:199
msgid "Suggest Books"
msgstr "Sugerir Livros"
-#: bookwyrm/templates/lists/list.html:168
+#: bookwyrm/templates/lists/list.html:210
msgid "search"
msgstr "pesquisar"
-#: bookwyrm/templates/lists/list.html:174
+#: bookwyrm/templates/lists/list.html:216
msgid "Clear search"
msgstr "Limpar Pesquisa"
-#: bookwyrm/templates/lists/list.html:179
+#: bookwyrm/templates/lists/list.html:221
#, python-format
msgid "No books found matching the query \"%(query)s\""
msgstr "Nenhum livro encontrado que corresponda à consulta \"%(query)s\""
-#: bookwyrm/templates/lists/list.html:211
-msgid "Suggest"
-msgstr "Sugerir"
-
-#: bookwyrm/templates/lists/list.html:222
+#: bookwyrm/templates/lists/list.html:260
msgid "Embed this list on a website"
msgstr "Incorporar esta lista num website"
-#: bookwyrm/templates/lists/list.html:230
+#: bookwyrm/templates/lists/list.html:268
msgid "Copy embed code"
msgstr "Copiar código de incorporação"
-#: bookwyrm/templates/lists/list.html:232
+#: bookwyrm/templates/lists/list.html:270
#, python-format
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
msgstr "%(list_name)s, uma lista de %(owner)s no %(site_name)s"
@@ -3220,10 +3256,6 @@ msgstr "Software:"
msgid "Version:"
msgstr "Versão:"
-#: bookwyrm/templates/settings/federation/edit_instance.html:74
-msgid "Notes:"
-msgstr "Notas:"
-
#: bookwyrm/templates/settings/federation/instance.html:19
msgid "Details"
msgstr "Detalhes"
@@ -3540,23 +3572,31 @@ msgstr ""
msgid "Back to reports"
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"
msgstr "Estados denunciados"
-#: bookwyrm/templates/settings/reports/report.html:27
+#: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted"
msgstr "O estado foi eliminado"
-#: bookwyrm/templates/settings/reports/report.html:39
+#: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links"
msgstr ""
-#: bookwyrm/templates/settings/reports/report.html:55
+#: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments"
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
msgid "Comment"
msgstr "Comentar"
@@ -3981,14 +4021,14 @@ msgstr "porcento"
msgid "of %(pages)s pages"
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:53
#: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply"
msgstr "Responder"
-#: bookwyrm/templates/snippets/create_status/content_field.html:17
+#: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content"
msgstr "Conteúdo"
@@ -4629,3 +4669,10 @@ msgstr "Um link para redefinir a palavra-passe foi enviado para este {email}"
msgid "Status updates from {obj.display_name}"
msgstr "Actualização de estado fornecido por {obj.display_name}"
+#: bookwyrm/views/updates.py:45
+#, python-format
+msgid "Load %(count)d unread status"
+msgid_plural "Load %(count)d unread statuses"
+msgstr[0] ""
+msgstr[1] ""
+
diff --git a/locale/sv_SE/LC_MESSAGES/django.mo b/locale/sv_SE/LC_MESSAGES/django.mo
index a28c21679..87a0038a5 100644
Binary files a/locale/sv_SE/LC_MESSAGES/django.mo and b/locale/sv_SE/LC_MESSAGES/django.mo differ
diff --git a/locale/sv_SE/LC_MESSAGES/django.po b/locale/sv_SE/LC_MESSAGES/django.po
index 31f3e0d7e..33fc8682a 100644
--- a/locale/sv_SE/LC_MESSAGES/django.po
+++ b/locale/sv_SE/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-01-24 17:25+0000\n"
-"PO-Revision-Date: 2022-01-27 17:00\n"
+"POT-Creation-Date: 2022-01-30 18:17+0000\n"
+"PO-Revision-Date: 2022-01-30 19:38\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: Swedish\n"
"Language: sv\n"
@@ -46,33 +46,33 @@ msgstr "{i} använder"
msgid "Unlimited"
msgstr "Obegränsad"
-#: bookwyrm/forms.py:483
+#: bookwyrm/forms.py:489
msgid "List Order"
msgstr "Listordning"
-#: bookwyrm/forms.py:484
+#: bookwyrm/forms.py:490
msgid "Book Title"
msgstr "Bokens titel"
-#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
+#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:32
msgid "Rating"
msgstr "Betyg"
-#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
+#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
msgid "Sort By"
msgstr "Sortera efter"
-#: bookwyrm/forms.py:491
+#: bookwyrm/forms.py:497
msgid "Ascending"
msgstr "Stigande"
-#: bookwyrm/forms.py:492
+#: bookwyrm/forms.py:498
msgid "Descending"
msgstr "Fallande"
-#: bookwyrm/forms.py:505
+#: bookwyrm/forms.py:511
msgid "Reading finish date cannot be before start date."
msgstr "Slutdatum för läsning kan inte vara före startdatum."
@@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Europeisk Portugisiska)"
#: bookwyrm/settings.py:258
+msgid "Swedish (Svenska)"
+msgstr ""
+
+#: bookwyrm/settings.py:259
msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Förenklad Kinesiska)"
-#: bookwyrm/settings.py:259
+#: bookwyrm/settings.py:260
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Traditionell Kinesiska)"
@@ -424,7 +428,7 @@ msgid "Copy address"
msgstr "Kopiera adress"
#: bookwyrm/templates/annual_summary/layout.html:68
-#: bookwyrm/templates/lists/list.html:231
+#: bookwyrm/templates/lists/list.html:269
msgid "Copied!"
msgstr "Kopierades!"
@@ -689,6 +693,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/book/file_links/edit_links.html:82
#: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15
+#: bookwyrm/templates/lists/edit_item_form.html:15
#: bookwyrm/templates/lists/form.html:130
#: bookwyrm/templates/preferences/edit_user.html:124
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
@@ -712,6 +717,7 @@ msgstr "Spara"
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17
+#: bookwyrm/templates/lists/add_item_modal.html:42
#: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
@@ -816,7 +822,7 @@ msgstr "Platser"
#: bookwyrm/templates/book/book.html:348
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
-#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
+#: 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/search/layout.html:25
#: bookwyrm/templates/search/layout.html:50
@@ -830,7 +836,8 @@ msgstr "Lägg till i listan"
#: bookwyrm/templates/book/book.html:369
#: bookwyrm/templates/book/cover_add_modal.html:31
-#: bookwyrm/templates/lists/list.html:209
+#: bookwyrm/templates/lists/add_item_modal.html:37
+#: bookwyrm/templates/lists/list.html:247
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
msgid "Add"
@@ -1551,16 +1558,11 @@ msgstr "Alla meddelanden"
msgid "You have no messages right now."
msgstr "Du har inga meddelanden just nu."
-#: bookwyrm/templates/feed/feed.html:28
-#, python-format
-msgid "load 0 unread status(es)"
-msgstr "ladda 0 olästa status(ar)"
-
-#: bookwyrm/templates/feed/feed.html:51
+#: bookwyrm/templates/feed/feed.html:54
msgid "There aren't any activities right now! Try following a user to get started"
msgstr "Det finns inga aktiviteter just nu! Försök att följa en användare för att komma igång"
-#: bookwyrm/templates/feed/feed.html:52
+#: bookwyrm/templates/feed/feed.html:55
msgid "Alternatively, you can try enabling more status types"
msgstr "Alternativt så kan du prova att aktivera fler status-typer"
@@ -1649,7 +1651,7 @@ msgid "What are you reading?"
msgstr "Vad läser du?"
#: bookwyrm/templates/get_started/books.html:9
-#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
+#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
msgid "Search for a book"
msgstr "Sök efter en bok"
@@ -1669,7 +1671,7 @@ msgstr "Du kan lägga till böcker när du börjar använda %(site_name)s."
#: bookwyrm/templates/get_started/users.html:19
#: bookwyrm/templates/groups/members.html:15
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
-#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
+#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
#: bookwyrm/templates/search/layout.html:4
#: bookwyrm/templates/search/layout.html:9
msgid "Search"
@@ -1685,7 +1687,7 @@ msgid "Popular on %(site_name)s"
msgstr "Populära i %(site_name)s"
#: bookwyrm/templates/get_started/books.html:58
-#: bookwyrm/templates/lists/list.html:180
+#: bookwyrm/templates/lists/list.html:222
msgid "No books found"
msgstr "Inga böcker hittades"
@@ -2034,7 +2036,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
msgstr "Godkännandet av ett förslag kommer permanent lägga till den föreslagna boken till dina hyllor och associera dina läsdatum, recensioner och betyg med den boken."
#: bookwyrm/templates/import/manual_review.html:58
-#: bookwyrm/templates/lists/curate.html:59
+#: bookwyrm/templates/lists/curate.html:71
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve"
msgstr "Godkänn"
@@ -2245,6 +2247,21 @@ msgstr "Stötta %(site_name)s på GitHub."
msgstr "BookWyrm's källkod är fritt tillgängligt. Du kan bidra eller rapportera problem på GitHub."
+#: bookwyrm/templates/lists/add_item_modal.html:8
+#, python-format
+msgid "Add \"%(title)s\" to this list"
+msgstr ""
+
+#: bookwyrm/templates/lists/add_item_modal.html:12
+#, python-format
+msgid "Suggest \"%(title)s\" for this list"
+msgstr ""
+
+#: bookwyrm/templates/lists/add_item_modal.html:39
+#: bookwyrm/templates/lists/list.html:249
+msgid "Suggest"
+msgstr "Föreslå"
+
#: bookwyrm/templates/lists/bookmark_button.html:30
msgid "Un-save"
msgstr "Ta bort sparning"
@@ -2264,23 +2281,29 @@ msgstr "Skapades och kurerades av %(username)s"
msgid "Created by %(username)s"
msgstr "Skapades av %(username)s"
-#: bookwyrm/templates/lists/curate.html:11
+#: bookwyrm/templates/lists/curate.html:12
msgid "Curate"
msgstr "Kurera"
-#: bookwyrm/templates/lists/curate.html:20
+#: bookwyrm/templates/lists/curate.html:21
msgid "Pending Books"
msgstr "Böcker som väntar"
-#: bookwyrm/templates/lists/curate.html:23
+#: bookwyrm/templates/lists/curate.html:24
msgid "You're all set!"
msgstr "Nu är du klar!"
-#: bookwyrm/templates/lists/curate.html:43
+#: bookwyrm/templates/lists/curate.html:45
+#: bookwyrm/templates/lists/list.html:83
+#, python-format
+msgid "%(username)s says:"
+msgstr ""
+
+#: bookwyrm/templates/lists/curate.html:55
msgid "Suggested by"
msgstr "Föreslogs av"
-#: bookwyrm/templates/lists/curate.html:65
+#: bookwyrm/templates/lists/curate.html:77
msgid "Discard"
msgstr "Kassera"
@@ -2304,7 +2327,7 @@ msgid "on %(site_name)s"
msgstr "på %(site_name)s"
#: bookwyrm/templates/lists/embed-list.html:27
-#: bookwyrm/templates/lists/list.html:43
+#: bookwyrm/templates/lists/list.html:44
msgid "This list is currently empty"
msgstr "Den här listan är för närvarande tom"
@@ -2365,76 +2388,89 @@ msgstr "Skapa en grupp"
msgid "Delete list"
msgstr "Ta bort lista"
-#: bookwyrm/templates/lists/list.html:35
+#: bookwyrm/templates/lists/item_notes_field.html:7
+#: bookwyrm/templates/settings/federation/edit_instance.html:74
+msgid "Notes:"
+msgstr "Anteckningar:"
+
+#: bookwyrm/templates/lists/item_notes_field.html:19
+msgid "An optional note that will be displayed with the book."
+msgstr ""
+
+#: bookwyrm/templates/lists/list.html:36
msgid "You successfully suggested a book for this list!"
msgstr "Du föreslog framgångsrikt en bok för den här listan!"
-#: bookwyrm/templates/lists/list.html:37
+#: bookwyrm/templates/lists/list.html:38
msgid "You successfully added a book to this list!"
msgstr "Du lade framgångsrikt till en bok i här listan!"
-#: bookwyrm/templates/lists/list.html:81
+#: bookwyrm/templates/lists/list.html:96
+msgid "Edit notes"
+msgstr ""
+
+#: bookwyrm/templates/lists/list.html:111
+msgid "Add notes"
+msgstr ""
+
+#: bookwyrm/templates/lists/list.html:123
#, python-format
msgid "Added by %(username)s"
msgstr "Lades till av %(username)s"
-#: bookwyrm/templates/lists/list.html:96
+#: bookwyrm/templates/lists/list.html:138
msgid "List position"
msgstr "Listans plats"
-#: bookwyrm/templates/lists/list.html:102
+#: bookwyrm/templates/lists/list.html:144
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set"
msgstr "Ställ in"
-#: bookwyrm/templates/lists/list.html:117
+#: bookwyrm/templates/lists/list.html:159
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
msgid "Remove"
msgstr "Ta bort"
-#: bookwyrm/templates/lists/list.html:131
-#: bookwyrm/templates/lists/list.html:148
+#: bookwyrm/templates/lists/list.html:173
+#: bookwyrm/templates/lists/list.html:190
msgid "Sort List"
msgstr "Sortera lista"
-#: bookwyrm/templates/lists/list.html:141
+#: bookwyrm/templates/lists/list.html:183
msgid "Direction"
msgstr "Riktning"
-#: bookwyrm/templates/lists/list.html:155
+#: bookwyrm/templates/lists/list.html:197
msgid "Add Books"
msgstr "Lägg till böcker"
-#: bookwyrm/templates/lists/list.html:157
+#: bookwyrm/templates/lists/list.html:199
msgid "Suggest Books"
msgstr "Föreslå böcker"
-#: bookwyrm/templates/lists/list.html:168
+#: bookwyrm/templates/lists/list.html:210
msgid "search"
msgstr "sök"
-#: bookwyrm/templates/lists/list.html:174
+#: bookwyrm/templates/lists/list.html:216
msgid "Clear search"
msgstr "Rensa sökning"
-#: bookwyrm/templates/lists/list.html:179
+#: bookwyrm/templates/lists/list.html:221
#, python-format
msgid "No books found matching the query \"%(query)s\""
msgstr "Inga böcker hittades som matchar frågan \"%(query)s\""
-#: bookwyrm/templates/lists/list.html:211
-msgid "Suggest"
-msgstr "Föreslå"
-
-#: bookwyrm/templates/lists/list.html:222
+#: bookwyrm/templates/lists/list.html:260
msgid "Embed this list on a website"
msgstr "Bädda in den här listan på en hemsida"
-#: bookwyrm/templates/lists/list.html:230
+#: bookwyrm/templates/lists/list.html:268
msgid "Copy embed code"
msgstr "Kopiera inbäddad kod"
-#: bookwyrm/templates/lists/list.html:232
+#: bookwyrm/templates/lists/list.html:270
#, python-format
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
msgstr "%(list_name)s, en lista av %(owner)s på %(site_name)s"
@@ -3222,10 +3258,6 @@ msgstr "Programvara:"
msgid "Version:"
msgstr "Version:"
-#: bookwyrm/templates/settings/federation/edit_instance.html:74
-msgid "Notes:"
-msgstr "Anteckningar:"
-
#: bookwyrm/templates/settings/federation/instance.html:19
msgid "Details"
msgstr "Detaljer"
@@ -3542,23 +3574,31 @@ msgstr "Inga länkar tillgängliga för den här domänen."
msgid "Back to reports"
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"
msgstr "Rapporterade statusar"
-#: bookwyrm/templates/settings/reports/report.html:27
+#: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted"
msgstr "Statusen har tagits bort"
-#: bookwyrm/templates/settings/reports/report.html:39
+#: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links"
msgstr "Rapporterade länkar"
-#: bookwyrm/templates/settings/reports/report.html:55
+#: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments"
msgstr "Moderatorns kommentarer"
-#: bookwyrm/templates/settings/reports/report.html:73
+#: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment"
msgstr "Kommentar"
@@ -3983,14 +4023,14 @@ msgstr "procent"
msgid "of %(pages)s pages"
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:53
#: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply"
msgstr "Svara"
-#: bookwyrm/templates/snippets/create_status/content_field.html:17
+#: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content"
msgstr "Innehåll"
@@ -4631,3 +4671,10 @@ msgstr "En länk för återställning av lösenordet har skickats till {email}"
msgid "Status updates from {obj.display_name}"
msgstr "Status-uppdateringar från {obj.display_name}"
+#: bookwyrm/views/updates.py:45
+#, python-format
+msgid "Load %(count)d unread status"
+msgid_plural "Load %(count)d unread statuses"
+msgstr[0] ""
+msgstr[1] ""
+
diff --git a/locale/zh_Hans/LC_MESSAGES/django.po b/locale/zh_Hans/LC_MESSAGES/django.po
index e0407d411..6b51efb86 100644
--- a/locale/zh_Hans/LC_MESSAGES/django.po
+++ b/locale/zh_Hans/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-01-24 17:25+0000\n"
-"PO-Revision-Date: 2022-01-24 18:54\n"
+"POT-Creation-Date: 2022-01-30 18:17+0000\n"
+"PO-Revision-Date: 2022-01-30 19:38\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: Chinese Simplified\n"
"Language: zh\n"
@@ -46,33 +46,33 @@ msgstr "{i} 次使用"
msgid "Unlimited"
msgstr "不受限"
-#: bookwyrm/forms.py:483
+#: bookwyrm/forms.py:489
msgid "List Order"
msgstr "列表顺序"
-#: bookwyrm/forms.py:484
+#: bookwyrm/forms.py:490
msgid "Book Title"
msgstr "书名"
-#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
+#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:32
msgid "Rating"
msgstr "评价"
-#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
+#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
msgid "Sort By"
msgstr "排序方式"
-#: bookwyrm/forms.py:491
+#: bookwyrm/forms.py:497
msgid "Ascending"
msgstr "升序"
-#: bookwyrm/forms.py:492
+#: bookwyrm/forms.py:498
msgid "Descending"
msgstr "降序"
-#: bookwyrm/forms.py:505
+#: bookwyrm/forms.py:511
msgid "Reading finish date cannot be before start date."
msgstr ""
@@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
msgstr ""
#: bookwyrm/settings.py:258
+msgid "Swedish (Svenska)"
+msgstr ""
+
+#: bookwyrm/settings.py:259
msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文"
-#: bookwyrm/settings.py:259
+#: bookwyrm/settings.py:260
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文(繁体中文)"
@@ -424,7 +428,7 @@ msgid "Copy address"
msgstr "复制地址"
#: bookwyrm/templates/annual_summary/layout.html:68
-#: bookwyrm/templates/lists/list.html:231
+#: bookwyrm/templates/lists/list.html:269
msgid "Copied!"
msgstr "复制成功!"
@@ -685,6 +689,7 @@ msgstr "ISNI:"
#: bookwyrm/templates/book/file_links/edit_links.html:82
#: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15
+#: bookwyrm/templates/lists/edit_item_form.html:15
#: bookwyrm/templates/lists/form.html:130
#: bookwyrm/templates/preferences/edit_user.html:124
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
@@ -708,6 +713,7 @@ msgstr "保存"
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17
+#: bookwyrm/templates/lists/add_item_modal.html:42
#: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
@@ -811,7 +817,7 @@ msgstr "地点"
#: bookwyrm/templates/book/book.html:348
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
-#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
+#: 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/search/layout.html:25
#: bookwyrm/templates/search/layout.html:50
@@ -825,7 +831,8 @@ msgstr "添加到列表"
#: bookwyrm/templates/book/book.html:369
#: bookwyrm/templates/book/cover_add_modal.html:31
-#: bookwyrm/templates/lists/list.html:209
+#: bookwyrm/templates/lists/add_item_modal.html:37
+#: bookwyrm/templates/lists/list.html:247
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
msgid "Add"
@@ -1542,16 +1549,11 @@ msgstr "所有消息"
msgid "You have no messages right now."
msgstr "你现在没有消息。"
-#: bookwyrm/templates/feed/feed.html:28
-#, python-format
-msgid "load 0 unread status(es)"
-msgstr "加载 0 条未读状态"
-
-#: bookwyrm/templates/feed/feed.html:51
+#: bookwyrm/templates/feed/feed.html:54
msgid "There aren't any activities right now! Try following a user to get started"
msgstr "现在还没有任何活动!尝试从关注一个用户开始吧"
-#: bookwyrm/templates/feed/feed.html:52
+#: bookwyrm/templates/feed/feed.html:55
msgid "Alternatively, you can try enabling more status types"
msgstr "或者,您可以尝试启用更多的状态种类"
@@ -1640,7 +1642,7 @@ msgid "What are you reading?"
msgstr "你在阅读什么?"
#: bookwyrm/templates/get_started/books.html:9
-#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
+#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
msgid "Search for a book"
msgstr "搜索书目"
@@ -1660,7 +1662,7 @@ msgstr "你可以在开始使用 %(site_name)s 后添加书目。"
#: bookwyrm/templates/get_started/users.html:19
#: bookwyrm/templates/groups/members.html:15
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
-#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
+#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
#: bookwyrm/templates/search/layout.html:4
#: bookwyrm/templates/search/layout.html:9
msgid "Search"
@@ -1676,7 +1678,7 @@ msgid "Popular on %(site_name)s"
msgstr "%(site_name)s 上的热门"
#: bookwyrm/templates/get_started/books.html:58
-#: bookwyrm/templates/lists/list.html:180
+#: bookwyrm/templates/lists/list.html:222
msgid "No books found"
msgstr "没有找到书目"
@@ -2021,7 +2023,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
msgstr "批准建议后,被提议的书将会永久添加到您的书架上并与您的阅读日期、书评、评分联系起来。"
#: bookwyrm/templates/import/manual_review.html:58
-#: bookwyrm/templates/lists/curate.html:59
+#: bookwyrm/templates/lists/curate.html:71
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve"
msgstr "批准"
@@ -2232,6 +2234,21 @@ msgstr "在 %(support_title)s
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "BookWyrm 是开源软件。你可以在 GitHub 贡献或报告问题。"
+#: bookwyrm/templates/lists/add_item_modal.html:8
+#, python-format
+msgid "Add \"%(title)s\" to this list"
+msgstr ""
+
+#: bookwyrm/templates/lists/add_item_modal.html:12
+#, python-format
+msgid "Suggest \"%(title)s\" for this list"
+msgstr ""
+
+#: bookwyrm/templates/lists/add_item_modal.html:39
+#: bookwyrm/templates/lists/list.html:249
+msgid "Suggest"
+msgstr "推荐"
+
#: bookwyrm/templates/lists/bookmark_button.html:30
msgid "Un-save"
msgstr "取消保存"
@@ -2251,23 +2268,29 @@ msgstr "由 %(username)s 创建并策展"
msgid "Created by %(username)s"
msgstr "由 %(username)s 创建"
-#: bookwyrm/templates/lists/curate.html:11
+#: bookwyrm/templates/lists/curate.html:12
msgid "Curate"
msgstr ""
-#: bookwyrm/templates/lists/curate.html:20
+#: bookwyrm/templates/lists/curate.html:21
msgid "Pending Books"
msgstr "等候中的书目"
-#: bookwyrm/templates/lists/curate.html:23
+#: bookwyrm/templates/lists/curate.html:24
msgid "You're all set!"
msgstr "都弄好了!"
-#: bookwyrm/templates/lists/curate.html:43
+#: bookwyrm/templates/lists/curate.html:45
+#: bookwyrm/templates/lists/list.html:83
+#, python-format
+msgid "%(username)s says:"
+msgstr ""
+
+#: bookwyrm/templates/lists/curate.html:55
msgid "Suggested by"
msgstr "推荐来自"
-#: bookwyrm/templates/lists/curate.html:65
+#: bookwyrm/templates/lists/curate.html:77
msgid "Discard"
msgstr "削除"
@@ -2291,7 +2314,7 @@ msgid "on %(site_name)s"
msgstr "在 %(site_name)s"
#: bookwyrm/templates/lists/embed-list.html:27
-#: bookwyrm/templates/lists/list.html:43
+#: bookwyrm/templates/lists/list.html:44
msgid "This list is currently empty"
msgstr "此列表当前是空的"
@@ -2352,76 +2375,89 @@ msgstr "创建一个群组"
msgid "Delete list"
msgstr "删除列表"
-#: bookwyrm/templates/lists/list.html:35
+#: bookwyrm/templates/lists/item_notes_field.html:7
+#: bookwyrm/templates/settings/federation/edit_instance.html:74
+msgid "Notes:"
+msgstr "备注:"
+
+#: bookwyrm/templates/lists/item_notes_field.html:19
+msgid "An optional note that will be displayed with the book."
+msgstr ""
+
+#: bookwyrm/templates/lists/list.html:36
msgid "You successfully suggested a book for this list!"
msgstr "你成功向该列表推荐了一本书!"
-#: bookwyrm/templates/lists/list.html:37
+#: bookwyrm/templates/lists/list.html:38
msgid "You successfully added a book to this list!"
msgstr "你成功向此列表添加了一本书!"
-#: bookwyrm/templates/lists/list.html:81
+#: bookwyrm/templates/lists/list.html:96
+msgid "Edit notes"
+msgstr ""
+
+#: bookwyrm/templates/lists/list.html:111
+msgid "Add notes"
+msgstr ""
+
+#: bookwyrm/templates/lists/list.html:123
#, python-format
msgid "Added by %(username)s"
msgstr "由 %(username)s 添加"
-#: bookwyrm/templates/lists/list.html:96
+#: bookwyrm/templates/lists/list.html:138
msgid "List position"
msgstr "列表位置:"
-#: bookwyrm/templates/lists/list.html:102
+#: bookwyrm/templates/lists/list.html:144
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set"
msgstr "设定"
-#: bookwyrm/templates/lists/list.html:117
+#: bookwyrm/templates/lists/list.html:159
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
msgid "Remove"
msgstr "移除"
-#: bookwyrm/templates/lists/list.html:131
-#: bookwyrm/templates/lists/list.html:148
+#: bookwyrm/templates/lists/list.html:173
+#: bookwyrm/templates/lists/list.html:190
msgid "Sort List"
msgstr "排序列表"
-#: bookwyrm/templates/lists/list.html:141
+#: bookwyrm/templates/lists/list.html:183
msgid "Direction"
msgstr "方向"
-#: bookwyrm/templates/lists/list.html:155
+#: bookwyrm/templates/lists/list.html:197
msgid "Add Books"
msgstr "添加书目"
-#: bookwyrm/templates/lists/list.html:157
+#: bookwyrm/templates/lists/list.html:199
msgid "Suggest Books"
msgstr "推荐书目"
-#: bookwyrm/templates/lists/list.html:168
+#: bookwyrm/templates/lists/list.html:210
msgid "search"
msgstr "搜索"
-#: bookwyrm/templates/lists/list.html:174
+#: bookwyrm/templates/lists/list.html:216
msgid "Clear search"
msgstr "清除搜索"
-#: bookwyrm/templates/lists/list.html:179
+#: bookwyrm/templates/lists/list.html:221
#, python-format
msgid "No books found matching the query \"%(query)s\""
msgstr "没有符合 “%(query)s” 请求的书目"
-#: bookwyrm/templates/lists/list.html:211
-msgid "Suggest"
-msgstr "推荐"
-
-#: bookwyrm/templates/lists/list.html:222
+#: bookwyrm/templates/lists/list.html:260
msgid "Embed this list on a website"
msgstr "将此列表嵌入到网站"
-#: bookwyrm/templates/lists/list.html:230
+#: bookwyrm/templates/lists/list.html:268
msgid "Copy embed code"
msgstr "复制嵌入代码"
-#: bookwyrm/templates/lists/list.html:232
+#: bookwyrm/templates/lists/list.html:270
#, python-format
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
msgstr "%(list_name)s,%(owner)s 在 %(site_name)s 上的列表"
@@ -3205,10 +3241,6 @@ msgstr "软件:"
msgid "Version:"
msgstr "版本:"
-#: bookwyrm/templates/settings/federation/edit_instance.html:74
-msgid "Notes:"
-msgstr "备注:"
-
#: bookwyrm/templates/settings/federation/instance.html:19
msgid "Details"
msgstr "详细"
@@ -3525,23 +3557,31 @@ msgstr ""
msgid "Back to reports"
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"
msgstr "被报告的状态"
-#: bookwyrm/templates/settings/reports/report.html:27
+#: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted"
msgstr "状态已被删除"
-#: bookwyrm/templates/settings/reports/report.html:39
+#: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links"
msgstr ""
-#: bookwyrm/templates/settings/reports/report.html:55
+#: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments"
msgstr "监察员评论"
-#: bookwyrm/templates/settings/reports/report.html:73
+#: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment"
msgstr "评论"
@@ -3964,14 +4004,14 @@ msgstr "百分比"
msgid "of %(pages)s pages"
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:53
#: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply"
msgstr "回复"
-#: bookwyrm/templates/snippets/create_status/content_field.html:17
+#: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content"
msgstr "内容"
@@ -4605,3 +4645,9 @@ msgstr "密码重置连接已发送给 {email}"
msgid "Status updates from {obj.display_name}"
msgstr "{obj.display_name} 的状态更新"
+#: bookwyrm/views/updates.py:45
+#, python-format
+msgid "Load %(count)d unread status"
+msgid_plural "Load %(count)d unread statuses"
+msgstr[0] ""
+
diff --git a/locale/zh_Hant/LC_MESSAGES/django.po b/locale/zh_Hant/LC_MESSAGES/django.po
index 3f5ec5240..daebda622 100644
--- a/locale/zh_Hant/LC_MESSAGES/django.po
+++ b/locale/zh_Hant/LC_MESSAGES/django.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-01-24 17:25+0000\n"
-"PO-Revision-Date: 2022-01-24 18:54\n"
+"POT-Creation-Date: 2022-01-30 18:17+0000\n"
+"PO-Revision-Date: 2022-01-30 19:38\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: Chinese Traditional\n"
"Language: zh\n"
@@ -46,33 +46,33 @@ msgstr ""
msgid "Unlimited"
msgstr "不受限"
-#: bookwyrm/forms.py:483
+#: bookwyrm/forms.py:489
msgid "List Order"
msgstr "列表順序"
-#: bookwyrm/forms.py:484
+#: bookwyrm/forms.py:490
msgid "Book Title"
msgstr "書名"
-#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
+#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
#: bookwyrm/templates/shelf/shelf.html:187
#: bookwyrm/templates/snippets/create_status/review.html:32
msgid "Rating"
msgstr "評價"
-#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
+#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
msgid "Sort By"
msgstr "排序方式"
-#: bookwyrm/forms.py:491
+#: bookwyrm/forms.py:497
msgid "Ascending"
msgstr "升序"
-#: bookwyrm/forms.py:492
+#: bookwyrm/forms.py:498
msgid "Descending"
msgstr "降序"
-#: bookwyrm/forms.py:505
+#: bookwyrm/forms.py:511
msgid "Reading finish date cannot be before start date."
msgstr ""
@@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
msgstr ""
#: bookwyrm/settings.py:258
+msgid "Swedish (Svenska)"
+msgstr ""
+
+#: bookwyrm/settings.py:259
msgid "简体中文 (Simplified Chinese)"
msgstr "簡體中文"
-#: bookwyrm/settings.py:259
+#: bookwyrm/settings.py:260
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文"
@@ -424,7 +428,7 @@ msgid "Copy address"
msgstr ""
#: bookwyrm/templates/annual_summary/layout.html:68
-#: bookwyrm/templates/lists/list.html:231
+#: bookwyrm/templates/lists/list.html:269
msgid "Copied!"
msgstr ""
@@ -685,6 +689,7 @@ msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:82
#: bookwyrm/templates/groups/form.html:30
#: bookwyrm/templates/lists/bookmark_button.html:15
+#: bookwyrm/templates/lists/edit_item_form.html:15
#: bookwyrm/templates/lists/form.html:130
#: bookwyrm/templates/preferences/edit_user.html:124
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
@@ -708,6 +713,7 @@ msgstr "儲存"
#: bookwyrm/templates/book/file_links/verification_modal.html:21
#: bookwyrm/templates/book/sync_modal.html:23
#: bookwyrm/templates/groups/delete_group_modal.html:17
+#: bookwyrm/templates/lists/add_item_modal.html:42
#: bookwyrm/templates/lists/delete_list_modal.html:18
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
@@ -811,7 +817,7 @@ msgstr "地點"
#: bookwyrm/templates/book/book.html:348
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
-#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
+#: 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/search/layout.html:25
#: bookwyrm/templates/search/layout.html:50
@@ -825,7 +831,8 @@ msgstr "新增到列表"
#: bookwyrm/templates/book/book.html:369
#: bookwyrm/templates/book/cover_add_modal.html:31
-#: bookwyrm/templates/lists/list.html:209
+#: bookwyrm/templates/lists/add_item_modal.html:37
+#: bookwyrm/templates/lists/list.html:247
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
msgid "Add"
@@ -1542,16 +1549,11 @@ msgstr "所有訊息"
msgid "You have no messages right now."
msgstr "你現在沒有訊息。"
-#: bookwyrm/templates/feed/feed.html:28
-#, python-format
-msgid "load 0 unread status(es)"
-msgstr ""
-
-#: bookwyrm/templates/feed/feed.html:51
+#: bookwyrm/templates/feed/feed.html:54
msgid "There aren't any activities right now! Try following a user to get started"
msgstr "現在還沒有任何活動!嘗試著從關注一個使用者開始吧"
-#: bookwyrm/templates/feed/feed.html:52
+#: bookwyrm/templates/feed/feed.html:55
msgid "Alternatively, you can try enabling more status types"
msgstr ""
@@ -1640,7 +1642,7 @@ msgid "What are you reading?"
msgstr "你在閱讀什麼?"
#: bookwyrm/templates/get_started/books.html:9
-#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
+#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
msgid "Search for a book"
msgstr "搜尋書目"
@@ -1660,7 +1662,7 @@ msgstr "你可以在開始使用 %(site_name)s 後新增書目。"
#: bookwyrm/templates/get_started/users.html:19
#: bookwyrm/templates/groups/members.html:15
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
-#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
+#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
#: bookwyrm/templates/search/layout.html:4
#: bookwyrm/templates/search/layout.html:9
msgid "Search"
@@ -1676,7 +1678,7 @@ msgid "Popular on %(site_name)s"
msgstr "%(site_name)s 上的熱門"
#: bookwyrm/templates/get_started/books.html:58
-#: bookwyrm/templates/lists/list.html:180
+#: bookwyrm/templates/lists/list.html:222
msgid "No books found"
msgstr "沒有找到書目"
@@ -2021,7 +2023,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
msgstr ""
#: bookwyrm/templates/import/manual_review.html:58
-#: bookwyrm/templates/lists/curate.html:59
+#: bookwyrm/templates/lists/curate.html:71
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
msgid "Approve"
msgstr "批准"
@@ -2232,6 +2234,21 @@ msgstr "在 %(support_title)s
msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub."
msgstr "BookWyrm 是開源軟體。你可以在 GitHub 貢獻或報告問題。"
+#: bookwyrm/templates/lists/add_item_modal.html:8
+#, python-format
+msgid "Add \"%(title)s\" to this list"
+msgstr ""
+
+#: bookwyrm/templates/lists/add_item_modal.html:12
+#, python-format
+msgid "Suggest \"%(title)s\" for this list"
+msgstr ""
+
+#: bookwyrm/templates/lists/add_item_modal.html:39
+#: bookwyrm/templates/lists/list.html:249
+msgid "Suggest"
+msgstr "推薦"
+
#: bookwyrm/templates/lists/bookmark_button.html:30
msgid "Un-save"
msgstr ""
@@ -2251,23 +2268,29 @@ msgstr "由 %(username)s 建立並管理"
msgid "Created by %(username)s"
msgstr "由 %(username)s 建立"
-#: bookwyrm/templates/lists/curate.html:11
+#: bookwyrm/templates/lists/curate.html:12
msgid "Curate"
msgstr ""
-#: bookwyrm/templates/lists/curate.html:20
+#: bookwyrm/templates/lists/curate.html:21
msgid "Pending Books"
msgstr "等候中的書目"
-#: bookwyrm/templates/lists/curate.html:23
+#: bookwyrm/templates/lists/curate.html:24
msgid "You're all set!"
msgstr "都弄好了!"
-#: bookwyrm/templates/lists/curate.html:43
+#: bookwyrm/templates/lists/curate.html:45
+#: bookwyrm/templates/lists/list.html:83
+#, python-format
+msgid "%(username)s says:"
+msgstr ""
+
+#: bookwyrm/templates/lists/curate.html:55
msgid "Suggested by"
msgstr "推薦來自"
-#: bookwyrm/templates/lists/curate.html:65
+#: bookwyrm/templates/lists/curate.html:77
msgid "Discard"
msgstr "放棄"
@@ -2291,7 +2314,7 @@ msgid "on %(site_name)s"
msgstr ""
#: bookwyrm/templates/lists/embed-list.html:27
-#: bookwyrm/templates/lists/list.html:43
+#: bookwyrm/templates/lists/list.html:44
msgid "This list is currently empty"
msgstr "此列表當前是空的"
@@ -2352,76 +2375,89 @@ msgstr ""
msgid "Delete list"
msgstr ""
-#: bookwyrm/templates/lists/list.html:35
+#: bookwyrm/templates/lists/item_notes_field.html:7
+#: bookwyrm/templates/settings/federation/edit_instance.html:74
+msgid "Notes:"
+msgstr "備註:"
+
+#: bookwyrm/templates/lists/item_notes_field.html:19
+msgid "An optional note that will be displayed with the book."
+msgstr ""
+
+#: bookwyrm/templates/lists/list.html:36
msgid "You successfully suggested a book for this list!"
msgstr "你成功!向該列表推薦了一本書"
-#: bookwyrm/templates/lists/list.html:37
+#: bookwyrm/templates/lists/list.html:38
msgid "You successfully added a book to this list!"
msgstr "你成功在此列表新增了一本書!"
-#: bookwyrm/templates/lists/list.html:81
+#: bookwyrm/templates/lists/list.html:96
+msgid "Edit notes"
+msgstr ""
+
+#: bookwyrm/templates/lists/list.html:111
+msgid "Add notes"
+msgstr ""
+
+#: bookwyrm/templates/lists/list.html:123
#, python-format
msgid "Added by %(username)s"
msgstr "由 %(username)s 新增"
-#: bookwyrm/templates/lists/list.html:96
+#: bookwyrm/templates/lists/list.html:138
msgid "List position"
msgstr "列表位置:"
-#: bookwyrm/templates/lists/list.html:102
+#: bookwyrm/templates/lists/list.html:144
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
msgid "Set"
msgstr "設定"
-#: bookwyrm/templates/lists/list.html:117
+#: bookwyrm/templates/lists/list.html:159
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
msgid "Remove"
msgstr "移除"
-#: bookwyrm/templates/lists/list.html:131
-#: bookwyrm/templates/lists/list.html:148
+#: bookwyrm/templates/lists/list.html:173
+#: bookwyrm/templates/lists/list.html:190
msgid "Sort List"
msgstr "排序列表"
-#: bookwyrm/templates/lists/list.html:141
+#: bookwyrm/templates/lists/list.html:183
msgid "Direction"
msgstr "方向"
-#: bookwyrm/templates/lists/list.html:155
+#: bookwyrm/templates/lists/list.html:197
msgid "Add Books"
msgstr "新增書目"
-#: bookwyrm/templates/lists/list.html:157
+#: bookwyrm/templates/lists/list.html:199
msgid "Suggest Books"
msgstr "推薦書目"
-#: bookwyrm/templates/lists/list.html:168
+#: bookwyrm/templates/lists/list.html:210
msgid "search"
msgstr "搜尋"
-#: bookwyrm/templates/lists/list.html:174
+#: bookwyrm/templates/lists/list.html:216
msgid "Clear search"
msgstr "清除搜尋"
-#: bookwyrm/templates/lists/list.html:179
+#: bookwyrm/templates/lists/list.html:221
#, python-format
msgid "No books found matching the query \"%(query)s\""
msgstr "沒有符合 \"%(query)s\" 請求的書目"
-#: bookwyrm/templates/lists/list.html:211
-msgid "Suggest"
-msgstr "推薦"
-
-#: bookwyrm/templates/lists/list.html:222
+#: bookwyrm/templates/lists/list.html:260
msgid "Embed this list on a website"
msgstr ""
-#: bookwyrm/templates/lists/list.html:230
+#: bookwyrm/templates/lists/list.html:268
msgid "Copy embed code"
msgstr ""
-#: bookwyrm/templates/lists/list.html:232
+#: bookwyrm/templates/lists/list.html:270
#, python-format
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
msgstr ""
@@ -3205,10 +3241,6 @@ msgstr "軟件:"
msgid "Version:"
msgstr "版本:"
-#: bookwyrm/templates/settings/federation/edit_instance.html:74
-msgid "Notes:"
-msgstr "備註:"
-
#: bookwyrm/templates/settings/federation/instance.html:19
msgid "Details"
msgstr "詳細"
@@ -3525,23 +3557,31 @@ msgstr ""
msgid "Back to reports"
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"
msgstr "被舉報的狀態"
-#: bookwyrm/templates/settings/reports/report.html:27
+#: bookwyrm/templates/settings/reports/report.html:40
msgid "Status has been deleted"
msgstr "狀態已被刪除"
-#: bookwyrm/templates/settings/reports/report.html:39
+#: bookwyrm/templates/settings/reports/report.html:52
msgid "Reported links"
msgstr ""
-#: bookwyrm/templates/settings/reports/report.html:55
+#: bookwyrm/templates/settings/reports/report.html:68
msgid "Moderator Comments"
msgstr "監察員評論"
-#: bookwyrm/templates/settings/reports/report.html:73
+#: bookwyrm/templates/settings/reports/report.html:89
#: bookwyrm/templates/snippets/create_status.html:28
msgid "Comment"
msgstr "評論"
@@ -3964,14 +4004,14 @@ msgstr "百分比"
msgid "of %(pages)s pages"
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:53
#: bookwyrm/templates/snippets/status/layout.html:54
msgid "Reply"
msgstr "回覆"
-#: bookwyrm/templates/snippets/create_status/content_field.html:17
+#: bookwyrm/templates/snippets/create_status/content_field.html:18
msgid "Content"
msgstr "內容"
@@ -4605,3 +4645,9 @@ msgstr "密碼重置連結已傳送給 {email}"
msgid "Status updates from {obj.display_name}"
msgstr ""
+#: bookwyrm/views/updates.py:45
+#, python-format
+msgid "Load %(count)d unread status"
+msgid_plural "Load %(count)d unread statuses"
+msgstr[0] ""
+
diff --git a/requirements.txt b/requirements.txt
index 534a0593d..4bda6bd5a 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,12 +1,12 @@
celery==5.2.2
colorthief==0.2.1
-Django==3.2.10
+Django==3.2.11
django-imagekit==4.1.0
django-model-utils==4.0.0
environs==9.3.4
flower==1.0.0
Markdown==3.3.3
-Pillow>=8.2.0
+Pillow>=9.0.0
psycopg2==2.8.4
pycryptodome==3.9.4
python-dateutil==2.8.1
@@ -20,7 +20,7 @@ django-storages==1.11.1
django-redis==5.2.0
# Dev
-black==21.4b0
+black==21.4b2
pytest-django==4.1.0
pytest==6.1.2
pytest-cov==2.10.1