diff --git a/bookwyrm/importers/goodreads_import.py b/bookwyrm/importers/goodreads_import.py
index 7b577ea85..c62e65827 100644
--- a/bookwyrm/importers/goodreads_import.py
+++ b/bookwyrm/importers/goodreads_import.py
@@ -3,10 +3,10 @@ from . import Importer
class GoodreadsImporter(Importer):
- """GoodReads is the default importer, thus Importer follows its structure.
+ """Goodreads is the default importer, thus Importer follows its structure.
For a more complete example of overriding see librarything_import.py"""
- service = "GoodReads"
+ service = "Goodreads"
def parse_fields(self, entry):
"""handle the specific fields in goodreads csvs"""
diff --git a/bookwyrm/importers/importer.py b/bookwyrm/importers/importer.py
index a10b4060c..6d898a2a3 100644
--- a/bookwyrm/importers/importer.py
+++ b/bookwyrm/importers/importer.py
@@ -1,4 +1,4 @@
-""" handle reading a csv from an external service, defaults are from GoodReads """
+""" handle reading a csv from an external service, defaults are from Goodreads """
import csv
import logging
diff --git a/bookwyrm/templates/book/publisher_info.html b/bookwyrm/templates/book/publisher_info.html
index e0711fa82..b39bcf5ce 100644
--- a/bookwyrm/templates/book/publisher_info.html
+++ b/bookwyrm/templates/book/publisher_info.html
@@ -3,7 +3,7 @@
{% load i18n %}
{% load humanize %}
-{% firstof book.physical_format_detail book.physical_format as format %}
+{% firstof book.physical_format_detail book.get_physical_format_display as format %}
{% firstof book.physical_format book.physical_format_detail as format_property %}
{% with pages=book.pages %}
{% if format or pages %}
@@ -18,7 +18,7 @@
{% if format and not pages %}
- {% blocktrans %}{{ format }}{% endblocktrans %}
+ {{ format }}
{% elif format and pages %}
{% blocktrans %}{{ format }}, {{ pages }} pages{% endblocktrans %}
{% elif pages %}
diff --git a/bookwyrm/templates/discover/card-header.html b/bookwyrm/templates/discover/card-header.html
new file mode 100644
index 000000000..0eb9a678c
--- /dev/null
+++ b/bookwyrm/templates/discover/card-header.html
@@ -0,0 +1,26 @@
+{% load i18n %}
+{% load utilities %}
+
+{% with user_path=status.user.local_path username=status.user.display_name book_path=status.book.local_poth book_title=book|book_title %}
+
+{% if status.status_type == 'GeneratedNote' %}
+ {{ status.content|safe }}
+{% elif status.status_type == 'Rating' %}
+ {% blocktrans trimmed %}
+ {{ username }} rated {{ book_title }}
+ {% endblocktrans %}
+{% elif status.status_type == 'Review' %}
+ {% blocktrans trimmed %}
+ {{ username }} reviewed {{ book_title }}
+ {% endblocktrans %}
+{% elif status.status_type == 'Comment' %}
+ {% blocktrans trimmed %}
+ {{ username }} commented on {{ book_title }}
+ {% endblocktrans %}
+{% elif status.status_type == 'Quotation' %}
+ {% blocktrans trimmed %}
+ {{ username }} quoted {{ book_title }}
+ {% endblocktrans %}
+{% endif %}
+
+{% endwith %}
diff --git a/bookwyrm/templates/discover/large-book.html b/bookwyrm/templates/discover/large-book.html
index 6d80c3daf..1fa0afb92 100644
--- a/bookwyrm/templates/discover/large-book.html
+++ b/bookwyrm/templates/discover/large-book.html
@@ -36,23 +36,7 @@
-
- {{ status.user.display_name }}
-
-
- {% if status.status_type == 'GeneratedNote' %}
- {{ status.content|safe }}
- {% elif status.status_type == 'Rating' %}
- {% trans "rated" %}
- {% elif status.status_type == 'Review' %}
- {% trans "reviewed" %}
- {% elif status.status_type == 'Comment' %}
- {% trans "commented on" %}
- {% elif status.status_type == 'Quotation' %}
- {% trans "quoted" %}
- {% endif %}
-
- {{ book.title }}
+ {% include "discover/card-header.html" %}
diff --git a/bookwyrm/templates/discover/small-book.html b/bookwyrm/templates/discover/small-book.html
index 5b2070188..76732ca14 100644
--- a/bookwyrm/templates/discover/small-book.html
+++ b/bookwyrm/templates/discover/small-book.html
@@ -22,23 +22,7 @@
-
- {{ status.user.display_name }}
-
-
- {% if status.status_type == 'GeneratedNote' %}
- {{ status.content|safe }}
- {% elif status.status_type == 'Rating' %}
- {% trans "rated" %}
- {% elif status.status_type == 'Review' %}
- {% trans "reviewed" %}
- {% elif status.status_type == 'Comment' %}
- {% trans "commented on" %}
- {% elif status.status_type == 'Quotation' %}
- {% trans "quoted" %}
- {% endif %}
-
- {{ book.title }}
+ {% include "discover/card-header.html" %}
{% if status.rating %}
diff --git a/bookwyrm/templates/email/invite/html_content.html b/bookwyrm/templates/email/invite/html_content.html
index 358e23dc1..adc993b7b 100644
--- a/bookwyrm/templates/email/invite/html_content.html
+++ b/bookwyrm/templates/email/invite/html_content.html
@@ -12,6 +12,6 @@
{% url 'code-of-conduct' as coc_path %}
{% url 'about' as about_path %}
- {% blocktrans %}Learn more about this instance .{% endblocktrans %}
+ {% blocktrans %}Learn more about {{ site_name }} .{% endblocktrans %}
{% endblock %}
diff --git a/bookwyrm/templates/email/invite/text_content.html b/bookwyrm/templates/email/invite/text_content.html
index c3fcdc04e..26dcd1720 100644
--- a/bookwyrm/templates/email/invite/text_content.html
+++ b/bookwyrm/templates/email/invite/text_content.html
@@ -5,6 +5,6 @@
{{ invite_link }}
-{% trans "Learn more about this instance:" %} https://{{ domain }}{% url 'about' %}
+{% blocktrans %}Learn more about {{ site_name }}:{% endblocktrans %} https://{{ domain }}{% url 'about' %}
{% endblock %}
diff --git a/bookwyrm/templates/import/import.html b/bookwyrm/templates/import/import.html
index cc296b75b..81f0daa54 100644
--- a/bookwyrm/templates/import/import.html
+++ b/bookwyrm/templates/import/import.html
@@ -22,8 +22,8 @@
-
- GoodReads (CSV)
+
+ Goodreads (CSV)
Storygraph (CSV)
diff --git a/bookwyrm/templates/import/tooltip.html b/bookwyrm/templates/import/tooltip.html
index 1cfe5a3b2..311cce82c 100644
--- a/bookwyrm/templates/import/tooltip.html
+++ b/bookwyrm/templates/import/tooltip.html
@@ -3,6 +3,6 @@
{% block tooltip_content %}
-{% trans 'You can download your GoodReads data from the Import/Export page of your GoodReads account.' %}
+{% trans 'You can download your Goodreads data from the Import/Export page of your Goodreads account.' %}
{% endblock %}
diff --git a/bookwyrm/templates/layout.html b/bookwyrm/templates/layout.html
index ce3eee2ba..d475646e8 100644
--- a/bookwyrm/templates/layout.html
+++ b/bookwyrm/templates/layout.html
@@ -227,7 +227,7 @@
{% trans "Short description:" %}
-
{% trans "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown." %}
+
{% trans "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." %}
{{ site_form.instance_short_description }}
diff --git a/bookwyrm/views/import_data.py b/bookwyrm/views/import_data.py
index fe54c39a9..5e113be88 100644
--- a/bookwyrm/views/import_data.py
+++ b/bookwyrm/views/import_data.py
@@ -51,7 +51,7 @@ class Import(View):
elif source == "Storygraph":
importer = StorygraphImporter()
else:
- # Default : GoodReads
+ # Default : Goodreads
importer = GoodreadsImporter()
try:
diff --git a/locale/de_DE/LC_MESSAGES/django.mo b/locale/de_DE/LC_MESSAGES/django.mo
index 682f599d5..0907655a2 100644
Binary files a/locale/de_DE/LC_MESSAGES/django.mo and b/locale/de_DE/LC_MESSAGES/django.mo differ
diff --git a/locale/de_DE/LC_MESSAGES/django.po b/locale/de_DE/LC_MESSAGES/django.po
index de0fd4a48..a143a313d 100644
--- a/locale/de_DE/LC_MESSAGES/django.po
+++ b/locale/de_DE/LC_MESSAGES/django.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-10-06 23:57+0000\n"
+"POT-Creation-Date: 2021-10-15 22:03+0000\n"
"PO-Revision-Date: 2021-10-13 13:32\n"
"Last-Translator: Mouse Reeve
\n"
"Language-Team: German\n"
@@ -54,8 +54,8 @@ msgstr "Reihenfolge der Liste"
msgid "Book Title"
msgstr "Buchtitel"
-#: bookwyrm/forms.py:328 bookwyrm/templates/shelf/shelf.html:134
-#: bookwyrm/templates/shelf/shelf.html:165
+#: bookwyrm/forms.py:328 bookwyrm/templates/shelf/shelf.html:136
+#: bookwyrm/templates/shelf/shelf.html:168
#: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating"
msgstr "Bewertung"
@@ -151,45 +151,49 @@ msgstr "Username"
msgid "A user with that username already exists."
msgstr "Dieser Benutzename ist bereits vergeben."
-#: bookwyrm/settings.py:117
+#: bookwyrm/settings.py:118
msgid "Home Timeline"
msgstr "Start-Zeitleiste"
-#: bookwyrm/settings.py:117
+#: bookwyrm/settings.py:118
msgid "Home"
msgstr "Startseite"
-#: bookwyrm/settings.py:118
+#: bookwyrm/settings.py:119
msgid "Books Timeline"
msgstr "Bücher-Zeitachse"
-#: bookwyrm/settings.py:118 bookwyrm/templates/search/layout.html:21
+#: bookwyrm/settings.py:119 bookwyrm/templates/search/layout.html:21
#: bookwyrm/templates/search/layout.html:42
#: bookwyrm/templates/user/layout.html:81
msgid "Books"
msgstr "Bücher"
-#: bookwyrm/settings.py:164
+#: bookwyrm/settings.py:165
msgid "English"
msgstr "English (Englisch)"
-#: bookwyrm/settings.py:165
+#: bookwyrm/settings.py:166
msgid "Deutsch (German)"
msgstr "Deutsch"
-#: bookwyrm/settings.py:166
+#: bookwyrm/settings.py:167
msgid "Español (Spanish)"
msgstr "Español (Spanisch)"
-#: bookwyrm/settings.py:167
+#: bookwyrm/settings.py:168
msgid "Français (French)"
msgstr "Français (Französisch)"
-#: bookwyrm/settings.py:168
+#: bookwyrm/settings.py:169
+msgid "Português - Brasil (Brazilian Portuguese)"
+msgstr ""
+
+#: bookwyrm/settings.py:170
msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Vereinfachtes Chinesisch)"
-#: bookwyrm/settings.py:169
+#: bookwyrm/settings.py:171
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Chinesisch, traditionell)"
@@ -669,11 +673,6 @@ msgstr "Sprache"
msgid "Search editions"
msgstr "Ausgaben suchen"
-#: bookwyrm/templates/book/publisher_info.html:21
-#, python-format
-msgid "%(format)s"
-msgstr "Formate: %(format)s"
-
#: bookwyrm/templates/book/publisher_info.html:23
#, python-format
msgid "%(format)s, %(pages)s pages"
@@ -753,8 +752,10 @@ msgid "Help"
msgstr "Hilfe"
#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8
-msgid "Compose status"
-msgstr "Status verfassen"
+#, fuzzy
+#| msgid "View status"
+msgid "Edit status"
+msgstr "Status ansehen"
#: bookwyrm/templates/confirm_email/confirm_email.html:4
msgid "Confirm email"
@@ -888,6 +889,30 @@ msgstr "Bookwyrmnutzer*innen"
msgid "All known users"
msgstr "Alle bekannten Nutzer*innen"
+#: bookwyrm/templates/discover/card-header.html:9
+#, fuzzy, python-format
+#| msgid "replied to your review of %(book_title)s "
+msgid "%(username)s rated %(book_title)s "
+msgstr "hat auf deine Bewertung von %(book_title)s geantwortet "
+
+#: bookwyrm/templates/discover/card-header.html:13
+#, fuzzy, python-format
+#| msgid "replied to your review of %(book_title)s "
+msgid "%(username)s reviewed %(book_title)s "
+msgstr "hat auf deine Bewertung von %(book_title)s geantwortet "
+
+#: bookwyrm/templates/discover/card-header.html:17
+#, fuzzy, python-format
+#| msgid "replied to your review of %(book_title)s "
+msgid "%(username)s commented on %(book_title)s "
+msgstr "hat auf deine Bewertung von %(book_title)s geantwortet "
+
+#: bookwyrm/templates/discover/card-header.html:21
+#, fuzzy, python-format
+#| msgid "replied to your review of %(book_title)s "
+msgid "%(username)s quoted %(book_title)s "
+msgstr "hat auf deine Bewertung von %(book_title)s geantwortet "
+
#: bookwyrm/templates/discover/discover.html:4
#: bookwyrm/templates/discover/discover.html:10
#: bookwyrm/templates/layout.html:78
@@ -899,28 +924,8 @@ msgstr "Entdecken"
msgid "See what's new in the local %(site_name)s community"
msgstr "Schau, was in der %(site_name)s Community neu ist"
-#: bookwyrm/templates/discover/large-book.html:46
-#: bookwyrm/templates/discover/small-book.html:32
-msgid "rated"
-msgstr "bewertet"
-
-#: bookwyrm/templates/discover/large-book.html:48
-#: bookwyrm/templates/discover/small-book.html:34
-msgid "reviewed"
-msgstr "bewertete"
-
-#: bookwyrm/templates/discover/large-book.html:50
-#: bookwyrm/templates/discover/small-book.html:36
-msgid "commented on"
-msgstr "kommentierte"
-
#: bookwyrm/templates/discover/large-book.html:52
-#: bookwyrm/templates/discover/small-book.html:38
-msgid "quoted"
-msgstr "zitierte"
-
-#: bookwyrm/templates/discover/large-book.html:68
-#: bookwyrm/templates/discover/small-book.html:52
+#: bookwyrm/templates/discover/small-book.html:36
msgid "View status"
msgstr "Status ansehen"
@@ -973,8 +978,9 @@ msgid "Join Now"
msgstr "Tritt jetzt bei"
#: bookwyrm/templates/email/invite/html_content.html:15
-#, python-format
-msgid "Learn more about this instance ."
+#, fuzzy, python-format
+#| msgid "Learn more about this instance ."
+msgid "Learn more about %(site_name)s ."
msgstr "Erfahre mehr über diese Instanz ."
#: bookwyrm/templates/email/invite/text_content.html:4
@@ -983,7 +989,9 @@ msgid "You're invited to join %(site_name)s! Click the link below to create an a
msgstr "Du bist eingeladen, %(site_name)s beizutreten! Klicke auf den Link unten um einen Account zu erstellen."
#: bookwyrm/templates/email/invite/text_content.html:8
-msgid "Learn more about this instance:"
+#, fuzzy, python-format
+#| msgid "Learn more about this instance:"
+msgid "Learn more about %(site_name)s:"
msgstr "Lerne mehr über diese Instanz:"
#: bookwyrm/templates/email/password_reset/html_content.html:6
@@ -1323,13 +1331,13 @@ msgstr "Buch"
#: bookwyrm/templates/import/import_status.html:122
#: bookwyrm/templates/shelf/shelf.html:128
-#: bookwyrm/templates/shelf/shelf.html:148
+#: bookwyrm/templates/shelf/shelf.html:150
msgid "Title"
msgstr "Titel"
#: bookwyrm/templates/import/import_status.html:125
#: bookwyrm/templates/shelf/shelf.html:129
-#: bookwyrm/templates/shelf/shelf.html:151
+#: bookwyrm/templates/shelf/shelf.html:153
msgid "Author"
msgstr "Autor*in"
@@ -1338,7 +1346,9 @@ msgid "Imported"
msgstr "Importiert"
#: bookwyrm/templates/import/tooltip.html:6
-msgid "You can download your GoodReads data from the Import/Export page of your GoodReads account."
+#, fuzzy
+#| msgid "You can download your GoodReads data from the Import/Export page of your GoodReads account."
+msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account."
msgstr "Du kannst dir deine GoodReads Daten von Import/Export page in deinem GoodReads Account runterladen."
#: bookwyrm/templates/invite.html:4 bookwyrm/templates/invite.html:8
@@ -1354,7 +1364,7 @@ msgstr "Zugiff verweigert"
msgid "Sorry! This invite code is no longer valid."
msgstr "Sorry! Dieser Einladecode ist mehr gültig."
-#: bookwyrm/templates/landing/about.html:7
+#: bookwyrm/templates/landing/about.html:7 bookwyrm/templates/layout.html:230
#, python-format
msgid "About %(site_name)s"
msgstr "Über %(site_name)s"
@@ -1485,10 +1495,6 @@ msgstr "Status erfolgreich veröffentlicht"
msgid "Error posting status"
msgstr "Fehler beim veröffentlichen des Status"
-#: bookwyrm/templates/layout.html:230
-msgid "About this instance"
-msgstr "Über diese Instanz"
-
#: bookwyrm/templates/layout.html:234
msgid "Contact site admin"
msgstr "Admin kontaktieren"
@@ -1732,23 +1738,27 @@ msgid "boosted your status "
msgstr "hat deinen Status geteilt"
#: bookwyrm/templates/notifications/items/fav.html:19
-#, python-format
-msgid "favorited your review of %(book_title)s "
+#, fuzzy, python-format
+#| msgid "favorited your review of %(book_title)s "
+msgid "liked your review of %(book_title)s "
msgstr "hat deine Bewertung von %(book_title)s favorisiert"
#: bookwyrm/templates/notifications/items/fav.html:25
-#, python-format
-msgid "favorited your comment on%(book_title)s "
+#, fuzzy, python-format
+#| msgid "favorited your comment on%(book_title)s "
+msgid "liked your comment on%(book_title)s "
msgstr "favorisierte deinen Kommentar zu%(book_title)s "
#: bookwyrm/templates/notifications/items/fav.html:31
-#, python-format
-msgid "favorited your quote from %(book_title)s "
+#, fuzzy, python-format
+#| msgid "favorited your quote from %(book_title)s "
+msgid "liked your quote from %(book_title)s "
msgstr " hat dein Zitat aus %(book_title)s favorisiert"
#: bookwyrm/templates/notifications/items/fav.html:37
-#, python-format
-msgid "favorited your status "
+#, fuzzy, python-format
+#| msgid "favorited your status "
+msgid "liked your status "
msgstr "hat deinen Status favorisiert"
#: bookwyrm/templates/notifications/items/follow.html:15
@@ -2297,6 +2307,7 @@ msgid "Notes"
msgstr "Hinweise"
#: bookwyrm/templates/settings/federation/instance.html:75
+#: bookwyrm/templates/snippets/status/status_options.html:24
msgid "Edit"
msgstr "Ändern"
@@ -2636,7 +2647,7 @@ msgid "Short description:"
msgstr ""
#: bookwyrm/templates/settings/site.html:37
-msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown."
+msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown."
msgstr ""
#: bookwyrm/templates/settings/site.html:41
@@ -2811,7 +2822,7 @@ msgid "Permanently deleted"
msgstr "Permanent gelöscht"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13
-#: bookwyrm/templates/snippets/status/status_options.html:35
+#: bookwyrm/templates/snippets/status/status_options.html:32
#: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message"
msgstr "Direktnachricht senden"
@@ -2864,22 +2875,22 @@ msgstr "Regal bearbeiten"
msgid "Delete shelf"
msgstr "Regal löschen"
-#: bookwyrm/templates/shelf/shelf.html:130
-#: bookwyrm/templates/shelf/shelf.html:154
+#: bookwyrm/templates/shelf/shelf.html:132
+#: bookwyrm/templates/shelf/shelf.html:158
msgid "Shelved"
msgstr "Ins Regal gestellt"
-#: bookwyrm/templates/shelf/shelf.html:131
-#: bookwyrm/templates/shelf/shelf.html:158
+#: bookwyrm/templates/shelf/shelf.html:133
+#: bookwyrm/templates/shelf/shelf.html:161
msgid "Started"
msgstr "Gestartet"
-#: bookwyrm/templates/shelf/shelf.html:132
-#: bookwyrm/templates/shelf/shelf.html:161
+#: bookwyrm/templates/shelf/shelf.html:134
+#: bookwyrm/templates/shelf/shelf.html:164
msgid "Finished"
msgstr "Abgeschlossen"
-#: bookwyrm/templates/shelf/shelf.html:187
+#: bookwyrm/templates/shelf/shelf.html:190
msgid "This shelf is empty."
msgstr "Dieses Regal ist leer."
@@ -2926,22 +2937,22 @@ msgstr "Zitieren"
msgid "Some thoughts on the book"
msgstr "Ein paar Gedanken zum Buch"
-#: bookwyrm/templates/snippets/create_status/comment.html:26
+#: bookwyrm/templates/snippets/create_status/comment.html:27
#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:15
msgid "Progress:"
msgstr "Fortschritt:"
-#: bookwyrm/templates/snippets/create_status/comment.html:52
+#: bookwyrm/templates/snippets/create_status/comment.html:53
#: bookwyrm/templates/snippets/progress_field.html:18
msgid "pages"
msgstr "Seiten"
-#: bookwyrm/templates/snippets/create_status/comment.html:58
+#: bookwyrm/templates/snippets/create_status/comment.html:59
#: bookwyrm/templates/snippets/progress_field.html:23
msgid "percent"
msgstr "Prozent"
-#: bookwyrm/templates/snippets/create_status/comment.html:65
+#: bookwyrm/templates/snippets/create_status/comment.html:66
#, python-format
msgid "of %(pages)s pages"
msgstr "von %(pages)s Seiten"
@@ -2969,7 +2980,7 @@ msgstr "Spoileralarm!"
msgid "Include spoiler alert"
msgstr "Spoileralarm aktivieren"
-#: bookwyrm/templates/snippets/create_status/layout.html:41
+#: bookwyrm/templates/snippets/create_status/layout.html:48
#: bookwyrm/templates/snippets/reading_modals/form.html:7
msgid "Comment:"
msgstr "Kommentar:"
@@ -3163,12 +3174,12 @@ msgstr "Du hast %(read_count)s von %(goal_count)s Büchern<
msgid "%(username)s has read %(read_count)s of %(goal_count)s books ."
msgstr "%(username)s hat %(read_count)s von %(goal_count)s Büchern gelesen."
-#: bookwyrm/templates/snippets/page_text.html:4
+#: bookwyrm/templates/snippets/page_text.html:8
#, python-format
msgid "page %(page)s of %(total_pages)s"
msgstr ""
-#: bookwyrm/templates/snippets/page_text.html:6
+#: bookwyrm/templates/snippets/page_text.html:14
#, python-format
msgid "page %(page)s"
msgstr ""
@@ -3329,6 +3340,12 @@ msgstr "Bild in neuem Fenster öffnen"
msgid "Hide status"
msgstr ""
+#: bookwyrm/templates/snippets/status/header.html:45
+#, fuzzy, python-format
+#| msgid "Joined %(date)s"
+msgid "edited %(date)s"
+msgstr "Beigetreten %(date)s"
+
#: bookwyrm/templates/snippets/status/headers/comment.html:2
#, python-format
msgid "commented on %(book)s "
@@ -3393,10 +3410,6 @@ msgstr "teilt"
msgid "More options"
msgstr "Mehr Optionen"
-#: bookwyrm/templates/snippets/status/status_options.html:26
-msgid "Delete & re-draft"
-msgstr ""
-
#: bookwyrm/templates/snippets/suggested_users.html:16
#, python-format
msgid "%(mutuals)s follower you follow"
@@ -3585,3 +3598,23 @@ msgstr "Ein Passwortwiederherstellungslinl wurde zu {email} gesendet"
msgid "Status updates from {obj.display_name}"
msgstr "Status updates von {obj.display_name}"
+#~ msgid "Compose status"
+#~ msgstr "Status verfassen"
+
+#~ msgid "%(format)s"
+#~ msgstr "Formate: %(format)s"
+
+#~ msgid "rated"
+#~ msgstr "bewertet"
+
+#~ msgid "reviewed"
+#~ msgstr "bewertete"
+
+#~ msgid "commented on"
+#~ msgstr "kommentierte"
+
+#~ msgid "quoted"
+#~ msgstr "zitierte"
+
+#~ msgid "About this instance"
+#~ msgstr "Über diese Instanz"
diff --git a/locale/en_US/LC_MESSAGES/django.po b/locale/en_US/LC_MESSAGES/django.po
index b67d50c53..3f04e5c5c 100644
--- a/locale/en_US/LC_MESSAGES/django.po
+++ b/locale/en_US/LC_MESSAGES/django.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-10-06 23:57+0000\n"
+"POT-Creation-Date: 2021-10-15 22:03+0000\n"
"PO-Revision-Date: 2021-02-28 17:19-0800\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: English \n"
@@ -55,8 +55,8 @@ msgstr ""
msgid "Book Title"
msgstr ""
-#: bookwyrm/forms.py:328 bookwyrm/templates/shelf/shelf.html:134
-#: bookwyrm/templates/shelf/shelf.html:165
+#: bookwyrm/forms.py:328 bookwyrm/templates/shelf/shelf.html:136
+#: bookwyrm/templates/shelf/shelf.html:168
#: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating"
msgstr ""
@@ -152,45 +152,49 @@ msgstr ""
msgid "A user with that username already exists."
msgstr ""
-#: bookwyrm/settings.py:117
+#: bookwyrm/settings.py:118
msgid "Home Timeline"
msgstr ""
-#: bookwyrm/settings.py:117
+#: bookwyrm/settings.py:118
msgid "Home"
msgstr ""
-#: bookwyrm/settings.py:118
+#: bookwyrm/settings.py:119
msgid "Books Timeline"
msgstr ""
-#: bookwyrm/settings.py:118 bookwyrm/templates/search/layout.html:21
+#: bookwyrm/settings.py:119 bookwyrm/templates/search/layout.html:21
#: bookwyrm/templates/search/layout.html:42
#: bookwyrm/templates/user/layout.html:81
msgid "Books"
msgstr ""
-#: bookwyrm/settings.py:164
+#: bookwyrm/settings.py:165
msgid "English"
msgstr ""
-#: bookwyrm/settings.py:165
+#: bookwyrm/settings.py:166
msgid "Deutsch (German)"
msgstr ""
-#: bookwyrm/settings.py:166
+#: bookwyrm/settings.py:167
msgid "Español (Spanish)"
msgstr ""
-#: bookwyrm/settings.py:167
+#: bookwyrm/settings.py:168
msgid "Français (French)"
msgstr ""
-#: bookwyrm/settings.py:168
+#: bookwyrm/settings.py:169
+msgid "Português - Brasil (Brazilian Portuguese)"
+msgstr ""
+
+#: bookwyrm/settings.py:170
msgid "简体中文 (Simplified Chinese)"
msgstr ""
-#: bookwyrm/settings.py:169
+#: bookwyrm/settings.py:171
msgid "繁體中文 (Traditional Chinese)"
msgstr ""
@@ -670,11 +674,6 @@ msgstr ""
msgid "Search editions"
msgstr ""
-#: bookwyrm/templates/book/publisher_info.html:21
-#, python-format
-msgid "%(format)s"
-msgstr ""
-
#: bookwyrm/templates/book/publisher_info.html:23
#, python-format
msgid "%(format)s, %(pages)s pages"
@@ -754,7 +753,7 @@ msgid "Help"
msgstr ""
#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8
-msgid "Compose status"
+msgid "Edit status"
msgstr ""
#: bookwyrm/templates/confirm_email/confirm_email.html:4
@@ -889,6 +888,26 @@ msgstr ""
msgid "All known users"
msgstr ""
+#: bookwyrm/templates/discover/card-header.html:9
+#, python-format
+msgid "%(username)s rated %(book_title)s "
+msgstr ""
+
+#: bookwyrm/templates/discover/card-header.html:13
+#, python-format
+msgid "%(username)s reviewed %(book_title)s "
+msgstr ""
+
+#: bookwyrm/templates/discover/card-header.html:17
+#, python-format
+msgid "%(username)s commented on %(book_title)s "
+msgstr ""
+
+#: bookwyrm/templates/discover/card-header.html:21
+#, python-format
+msgid "%(username)s quoted %(book_title)s "
+msgstr ""
+
#: bookwyrm/templates/discover/discover.html:4
#: bookwyrm/templates/discover/discover.html:10
#: bookwyrm/templates/layout.html:78
@@ -900,28 +919,8 @@ msgstr ""
msgid "See what's new in the local %(site_name)s community"
msgstr ""
-#: bookwyrm/templates/discover/large-book.html:46
-#: bookwyrm/templates/discover/small-book.html:32
-msgid "rated"
-msgstr ""
-
-#: bookwyrm/templates/discover/large-book.html:48
-#: bookwyrm/templates/discover/small-book.html:34
-msgid "reviewed"
-msgstr ""
-
-#: bookwyrm/templates/discover/large-book.html:50
-#: bookwyrm/templates/discover/small-book.html:36
-msgid "commented on"
-msgstr ""
-
#: bookwyrm/templates/discover/large-book.html:52
-#: bookwyrm/templates/discover/small-book.html:38
-msgid "quoted"
-msgstr ""
-
-#: bookwyrm/templates/discover/large-book.html:68
-#: bookwyrm/templates/discover/small-book.html:52
+#: bookwyrm/templates/discover/small-book.html:36
msgid "View status"
msgstr ""
@@ -975,7 +974,7 @@ msgstr ""
#: bookwyrm/templates/email/invite/html_content.html:15
#, python-format
-msgid "Learn more about this instance ."
+msgid "Learn more about %(site_name)s ."
msgstr ""
#: bookwyrm/templates/email/invite/text_content.html:4
@@ -984,7 +983,8 @@ msgid "You're invited to join %(site_name)s! Click the link below to create an a
msgstr ""
#: bookwyrm/templates/email/invite/text_content.html:8
-msgid "Learn more about this instance:"
+#, python-format
+msgid "Learn more about %(site_name)s:"
msgstr ""
#: bookwyrm/templates/email/password_reset/html_content.html:6
@@ -1324,13 +1324,13 @@ msgstr ""
#: bookwyrm/templates/import/import_status.html:122
#: bookwyrm/templates/shelf/shelf.html:128
-#: bookwyrm/templates/shelf/shelf.html:148
+#: bookwyrm/templates/shelf/shelf.html:150
msgid "Title"
msgstr ""
#: bookwyrm/templates/import/import_status.html:125
#: bookwyrm/templates/shelf/shelf.html:129
-#: bookwyrm/templates/shelf/shelf.html:151
+#: bookwyrm/templates/shelf/shelf.html:153
msgid "Author"
msgstr ""
@@ -1339,7 +1339,7 @@ msgid "Imported"
msgstr ""
#: bookwyrm/templates/import/tooltip.html:6
-msgid "You can download your GoodReads data from the Import/Export page of your GoodReads account."
+msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account."
msgstr ""
#: bookwyrm/templates/invite.html:4 bookwyrm/templates/invite.html:8
@@ -1355,7 +1355,7 @@ msgstr ""
msgid "Sorry! This invite code is no longer valid."
msgstr ""
-#: bookwyrm/templates/landing/about.html:7
+#: bookwyrm/templates/landing/about.html:7 bookwyrm/templates/layout.html:230
#, python-format
msgid "About %(site_name)s"
msgstr ""
@@ -1486,10 +1486,6 @@ msgstr ""
msgid "Error posting status"
msgstr ""
-#: bookwyrm/templates/layout.html:230
-msgid "About this instance"
-msgstr ""
-
#: bookwyrm/templates/layout.html:234
msgid "Contact site admin"
msgstr ""
@@ -1734,22 +1730,22 @@ msgstr ""
#: bookwyrm/templates/notifications/items/fav.html:19
#, python-format
-msgid "favorited your review of %(book_title)s "
+msgid "liked your review of %(book_title)s "
msgstr ""
#: bookwyrm/templates/notifications/items/fav.html:25
#, python-format
-msgid "favorited your comment on%(book_title)s "
+msgid "liked your comment on%(book_title)s "
msgstr ""
#: bookwyrm/templates/notifications/items/fav.html:31
#, python-format
-msgid "favorited your quote from %(book_title)s "
+msgid "liked your quote from %(book_title)s "
msgstr ""
#: bookwyrm/templates/notifications/items/fav.html:37
#, python-format
-msgid "favorited your status "
+msgid "liked your status "
msgstr ""
#: bookwyrm/templates/notifications/items/follow.html:15
@@ -2298,6 +2294,7 @@ msgid "Notes"
msgstr ""
#: bookwyrm/templates/settings/federation/instance.html:75
+#: bookwyrm/templates/snippets/status/status_options.html:24
msgid "Edit"
msgstr ""
@@ -2637,7 +2634,7 @@ msgid "Short description:"
msgstr ""
#: bookwyrm/templates/settings/site.html:37
-msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown."
+msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown."
msgstr ""
#: bookwyrm/templates/settings/site.html:41
@@ -2812,7 +2809,7 @@ msgid "Permanently deleted"
msgstr ""
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13
-#: bookwyrm/templates/snippets/status/status_options.html:35
+#: bookwyrm/templates/snippets/status/status_options.html:32
#: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message"
msgstr ""
@@ -2865,22 +2862,22 @@ msgstr ""
msgid "Delete shelf"
msgstr ""
-#: bookwyrm/templates/shelf/shelf.html:130
-#: bookwyrm/templates/shelf/shelf.html:154
+#: bookwyrm/templates/shelf/shelf.html:132
+#: bookwyrm/templates/shelf/shelf.html:158
msgid "Shelved"
msgstr ""
-#: bookwyrm/templates/shelf/shelf.html:131
-#: bookwyrm/templates/shelf/shelf.html:158
+#: bookwyrm/templates/shelf/shelf.html:133
+#: bookwyrm/templates/shelf/shelf.html:161
msgid "Started"
msgstr ""
-#: bookwyrm/templates/shelf/shelf.html:132
-#: bookwyrm/templates/shelf/shelf.html:161
+#: bookwyrm/templates/shelf/shelf.html:134
+#: bookwyrm/templates/shelf/shelf.html:164
msgid "Finished"
msgstr ""
-#: bookwyrm/templates/shelf/shelf.html:187
+#: bookwyrm/templates/shelf/shelf.html:190
msgid "This shelf is empty."
msgstr ""
@@ -2927,22 +2924,22 @@ msgstr ""
msgid "Some thoughts on the book"
msgstr ""
-#: bookwyrm/templates/snippets/create_status/comment.html:26
+#: bookwyrm/templates/snippets/create_status/comment.html:27
#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:15
msgid "Progress:"
msgstr ""
-#: bookwyrm/templates/snippets/create_status/comment.html:52
+#: bookwyrm/templates/snippets/create_status/comment.html:53
#: bookwyrm/templates/snippets/progress_field.html:18
msgid "pages"
msgstr ""
-#: bookwyrm/templates/snippets/create_status/comment.html:58
+#: bookwyrm/templates/snippets/create_status/comment.html:59
#: bookwyrm/templates/snippets/progress_field.html:23
msgid "percent"
msgstr ""
-#: bookwyrm/templates/snippets/create_status/comment.html:65
+#: bookwyrm/templates/snippets/create_status/comment.html:66
#, python-format
msgid "of %(pages)s pages"
msgstr ""
@@ -2970,7 +2967,7 @@ msgstr ""
msgid "Include spoiler alert"
msgstr ""
-#: bookwyrm/templates/snippets/create_status/layout.html:41
+#: bookwyrm/templates/snippets/create_status/layout.html:48
#: bookwyrm/templates/snippets/reading_modals/form.html:7
msgid "Comment:"
msgstr ""
@@ -3164,12 +3161,12 @@ msgstr ""
msgid "%(username)s has read %(read_count)s of %(goal_count)s books ."
msgstr ""
-#: bookwyrm/templates/snippets/page_text.html:4
+#: bookwyrm/templates/snippets/page_text.html:8
#, python-format
msgid "page %(page)s of %(total_pages)s"
msgstr ""
-#: bookwyrm/templates/snippets/page_text.html:6
+#: bookwyrm/templates/snippets/page_text.html:14
#, python-format
msgid "page %(page)s"
msgstr ""
@@ -3330,6 +3327,11 @@ msgstr ""
msgid "Hide status"
msgstr ""
+#: bookwyrm/templates/snippets/status/header.html:45
+#, python-format
+msgid "edited %(date)s"
+msgstr ""
+
#: bookwyrm/templates/snippets/status/headers/comment.html:2
#, python-format
msgid "commented on %(book)s "
@@ -3394,10 +3396,6 @@ msgstr ""
msgid "More options"
msgstr ""
-#: bookwyrm/templates/snippets/status/status_options.html:26
-msgid "Delete & re-draft"
-msgstr ""
-
#: bookwyrm/templates/snippets/suggested_users.html:16
#, python-format
msgid "%(mutuals)s follower you follow"
diff --git a/locale/es_ES/LC_MESSAGES/django.mo b/locale/es_ES/LC_MESSAGES/django.mo
index 93c9caed1..35ccb7f05 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 d066ed1a9..4f1ed8d21 100644
--- a/locale/es_ES/LC_MESSAGES/django.po
+++ b/locale/es_ES/LC_MESSAGES/django.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-10-06 23:57+0000\n"
+"POT-Creation-Date: 2021-10-15 22:03+0000\n"
"PO-Revision-Date: 2021-10-08 00:04\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: Spanish\n"
@@ -54,8 +54,8 @@ msgstr "Orden de la lista"
msgid "Book Title"
msgstr "Título"
-#: bookwyrm/forms.py:328 bookwyrm/templates/shelf/shelf.html:134
-#: bookwyrm/templates/shelf/shelf.html:165
+#: bookwyrm/forms.py:328 bookwyrm/templates/shelf/shelf.html:136
+#: bookwyrm/templates/shelf/shelf.html:168
#: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating"
msgstr "Calificación"
@@ -151,45 +151,49 @@ msgstr "nombre de usuario"
msgid "A user with that username already exists."
msgstr "Ya existe un usuario con ese nombre."
-#: bookwyrm/settings.py:117
+#: bookwyrm/settings.py:118
msgid "Home Timeline"
msgstr "Línea temporal de hogar"
-#: bookwyrm/settings.py:117
+#: bookwyrm/settings.py:118
msgid "Home"
msgstr "Hogar"
-#: bookwyrm/settings.py:118
+#: bookwyrm/settings.py:119
msgid "Books Timeline"
msgstr "Línea temporal de libros"
-#: bookwyrm/settings.py:118 bookwyrm/templates/search/layout.html:21
+#: bookwyrm/settings.py:119 bookwyrm/templates/search/layout.html:21
#: bookwyrm/templates/search/layout.html:42
#: bookwyrm/templates/user/layout.html:81
msgid "Books"
msgstr "Libros"
-#: bookwyrm/settings.py:164
+#: bookwyrm/settings.py:165
msgid "English"
msgstr "Inglés"
-#: bookwyrm/settings.py:165
+#: bookwyrm/settings.py:166
msgid "Deutsch (German)"
msgstr "Deutsch (Alemán)"
-#: bookwyrm/settings.py:166
+#: bookwyrm/settings.py:167
msgid "Español (Spanish)"
msgstr "Español"
-#: bookwyrm/settings.py:167
+#: bookwyrm/settings.py:168
msgid "Français (French)"
msgstr "Français (Francés)"
-#: bookwyrm/settings.py:168
+#: bookwyrm/settings.py:169
+msgid "Português - Brasil (Brazilian Portuguese)"
+msgstr ""
+
+#: bookwyrm/settings.py:170
msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Chino simplificado)"
-#: bookwyrm/settings.py:169
+#: bookwyrm/settings.py:171
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Chino tradicional)"
@@ -669,11 +673,6 @@ msgstr "Idioma:"
msgid "Search editions"
msgstr "Buscar ediciones"
-#: bookwyrm/templates/book/publisher_info.html:21
-#, python-format
-msgid "%(format)s"
-msgstr ""
-
#: bookwyrm/templates/book/publisher_info.html:23
#, python-format
msgid "%(format)s, %(pages)s pages"
@@ -753,8 +752,10 @@ msgid "Help"
msgstr "Ayuda"
#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8
-msgid "Compose status"
-msgstr "Componer status"
+#, fuzzy
+#| msgid "View status"
+msgid "Edit status"
+msgstr "Ver status"
#: bookwyrm/templates/confirm_email/confirm_email.html:4
msgid "Confirm email"
@@ -888,6 +889,30 @@ msgstr "Usuarios de BookWyrm"
msgid "All known users"
msgstr "Todos los usuarios conocidos"
+#: bookwyrm/templates/discover/card-header.html:9
+#, fuzzy, python-format
+#| msgid "%(username)s wants to read %(book)s "
+msgid "%(username)s rated %(book_title)s "
+msgstr "%(username)s quiere leer %(book)s "
+
+#: bookwyrm/templates/discover/card-header.html:13
+#, fuzzy, python-format
+#| msgid "%(username)s wants to read %(book)s "
+msgid "%(username)s reviewed %(book_title)s "
+msgstr "%(username)s quiere leer %(book)s "
+
+#: bookwyrm/templates/discover/card-header.html:17
+#, fuzzy, python-format
+#| msgid "%(username)s wants to read %(book)s "
+msgid "%(username)s commented on %(book_title)s "
+msgstr "%(username)s quiere leer %(book)s "
+
+#: bookwyrm/templates/discover/card-header.html:21
+#, fuzzy, python-format
+#| msgid "%(username)s wants to read %(book)s "
+msgid "%(username)s quoted %(book_title)s "
+msgstr "%(username)s quiere leer %(book)s "
+
#: bookwyrm/templates/discover/discover.html:4
#: bookwyrm/templates/discover/discover.html:10
#: bookwyrm/templates/layout.html:78
@@ -899,28 +924,8 @@ msgstr "Descubrir"
msgid "See what's new in the local %(site_name)s community"
msgstr "Ver que es nuevo en la comunidad local de %(site_name)s"
-#: bookwyrm/templates/discover/large-book.html:46
-#: bookwyrm/templates/discover/small-book.html:32
-msgid "rated"
-msgstr "calificó"
-
-#: bookwyrm/templates/discover/large-book.html:48
-#: bookwyrm/templates/discover/small-book.html:34
-msgid "reviewed"
-msgstr "reseñó"
-
-#: bookwyrm/templates/discover/large-book.html:50
-#: bookwyrm/templates/discover/small-book.html:36
-msgid "commented on"
-msgstr "comentó en"
-
#: bookwyrm/templates/discover/large-book.html:52
-#: bookwyrm/templates/discover/small-book.html:38
-msgid "quoted"
-msgstr "citó"
-
-#: bookwyrm/templates/discover/large-book.html:68
-#: bookwyrm/templates/discover/small-book.html:52
+#: bookwyrm/templates/discover/small-book.html:36
msgid "View status"
msgstr "Ver status"
@@ -973,8 +978,9 @@ msgid "Join Now"
msgstr "Únete ahora"
#: bookwyrm/templates/email/invite/html_content.html:15
-#, python-format
-msgid "Learn more about this instance ."
+#, fuzzy, python-format
+#| msgid "Learn more about this instance ."
+msgid "Learn more about %(site_name)s ."
msgstr "Aprenda más sobre esta instancia ."
#: bookwyrm/templates/email/invite/text_content.html:4
@@ -983,7 +989,9 @@ msgid "You're invited to join %(site_name)s! Click the link below to create an a
msgstr "Estás invitado a unirte con %(site_name)s! Haz clic en el enlace a continuación para crear una cuenta."
#: bookwyrm/templates/email/invite/text_content.html:8
-msgid "Learn more about this instance:"
+#, fuzzy, python-format
+#| msgid "Learn more about this instance:"
+msgid "Learn more about %(site_name)s:"
msgstr "Aprende más sobre esta intancia:"
#: bookwyrm/templates/email/password_reset/html_content.html:6
@@ -1323,13 +1331,13 @@ msgstr "Libro"
#: bookwyrm/templates/import/import_status.html:122
#: bookwyrm/templates/shelf/shelf.html:128
-#: bookwyrm/templates/shelf/shelf.html:148
+#: bookwyrm/templates/shelf/shelf.html:150
msgid "Title"
msgstr "Título"
#: bookwyrm/templates/import/import_status.html:125
#: bookwyrm/templates/shelf/shelf.html:129
-#: bookwyrm/templates/shelf/shelf.html:151
+#: bookwyrm/templates/shelf/shelf.html:153
msgid "Author"
msgstr "Autor/Autora"
@@ -1338,7 +1346,9 @@ msgid "Imported"
msgstr "Importado"
#: bookwyrm/templates/import/tooltip.html:6
-msgid "You can download your GoodReads data from the Import/Export page of your GoodReads account."
+#, fuzzy
+#| msgid "You can download your GoodReads data from the Import/Export page of your GoodReads account."
+msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account."
msgstr "Puedes descargar tus datos de GoodReads de la Página de Exportación/Importación de tu cuenta de GoodReads."
#: bookwyrm/templates/invite.html:4 bookwyrm/templates/invite.html:8
@@ -1354,7 +1364,7 @@ msgstr "Permiso denegado"
msgid "Sorry! This invite code is no longer valid."
msgstr "¡Disculpa! Este código de invitación no queda válido."
-#: bookwyrm/templates/landing/about.html:7
+#: bookwyrm/templates/landing/about.html:7 bookwyrm/templates/layout.html:230
#, python-format
msgid "About %(site_name)s"
msgstr "Sobre %(site_name)s"
@@ -1485,10 +1495,6 @@ msgstr "Status publicado exitosamente"
msgid "Error posting status"
msgstr "Error en publicar status"
-#: bookwyrm/templates/layout.html:230
-msgid "About this instance"
-msgstr "Sobre esta instancia"
-
#: bookwyrm/templates/layout.html:234
msgid "Contact site admin"
msgstr "Contactarse con administradores del sitio"
@@ -1732,23 +1738,27 @@ msgid "boosted your status "
msgstr "respaldó tu status "
#: bookwyrm/templates/notifications/items/fav.html:19
-#, python-format
-msgid "favorited your review of %(book_title)s "
+#, fuzzy, python-format
+#| msgid "favorited your review of %(book_title)s "
+msgid "liked your review of %(book_title)s "
msgstr "le gustó tu reseña de %(book_title)s "
#: bookwyrm/templates/notifications/items/fav.html:25
-#, python-format
-msgid "favorited your comment on%(book_title)s "
-msgstr ""
+#, fuzzy, python-format
+#| msgid "boosted your comment on%(book_title)s "
+msgid "liked your comment on%(book_title)s "
+msgstr "respaldó tu comentario en%(book_title)s "
#: bookwyrm/templates/notifications/items/fav.html:31
-#, python-format
-msgid "favorited your quote from %(book_title)s "
+#, fuzzy, python-format
+#| msgid "favorited your quote from %(book_title)s "
+msgid "liked your quote from %(book_title)s "
msgstr "le gustó tu cita de %(book_title)s "
#: bookwyrm/templates/notifications/items/fav.html:37
-#, python-format
-msgid "favorited your status "
+#, fuzzy, python-format
+#| msgid "favorited your status "
+msgid "liked your status "
msgstr "le gustó tu status "
#: bookwyrm/templates/notifications/items/follow.html:15
@@ -2297,6 +2307,7 @@ msgid "Notes"
msgstr "Notas"
#: bookwyrm/templates/settings/federation/instance.html:75
+#: bookwyrm/templates/snippets/status/status_options.html:24
msgid "Edit"
msgstr "Editar"
@@ -2636,7 +2647,9 @@ msgid "Short description:"
msgstr "Descripción corta:"
#: bookwyrm/templates/settings/site.html:37
-msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown."
+#, fuzzy
+#| msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown."
+msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown."
msgstr "Utilizado cuando la instancia se ve de una vista previa en joinbookwyrm.com. No es compatible con html o markdown."
#: bookwyrm/templates/settings/site.html:41
@@ -2811,7 +2824,7 @@ msgid "Permanently deleted"
msgstr "Eliminado permanentemente"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13
-#: bookwyrm/templates/snippets/status/status_options.html:35
+#: bookwyrm/templates/snippets/status/status_options.html:32
#: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message"
msgstr "Enviar mensaje directo"
@@ -2864,22 +2877,22 @@ msgstr "Editar estante"
msgid "Delete shelf"
msgstr "Eliminar estante"
-#: bookwyrm/templates/shelf/shelf.html:130
-#: bookwyrm/templates/shelf/shelf.html:154
+#: bookwyrm/templates/shelf/shelf.html:132
+#: bookwyrm/templates/shelf/shelf.html:158
msgid "Shelved"
msgstr "Archivado"
-#: bookwyrm/templates/shelf/shelf.html:131
-#: bookwyrm/templates/shelf/shelf.html:158
+#: bookwyrm/templates/shelf/shelf.html:133
+#: bookwyrm/templates/shelf/shelf.html:161
msgid "Started"
msgstr "Empezado"
-#: bookwyrm/templates/shelf/shelf.html:132
-#: bookwyrm/templates/shelf/shelf.html:161
+#: bookwyrm/templates/shelf/shelf.html:134
+#: bookwyrm/templates/shelf/shelf.html:164
msgid "Finished"
msgstr "Terminado"
-#: bookwyrm/templates/shelf/shelf.html:187
+#: bookwyrm/templates/shelf/shelf.html:190
msgid "This shelf is empty."
msgstr "Este estante está vacio."
@@ -2926,22 +2939,22 @@ msgstr "Cita"
msgid "Some thoughts on the book"
msgstr "Algunos pensamientos sobre el libro"
-#: bookwyrm/templates/snippets/create_status/comment.html:26
+#: bookwyrm/templates/snippets/create_status/comment.html:27
#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:15
msgid "Progress:"
msgstr "Progreso:"
-#: bookwyrm/templates/snippets/create_status/comment.html:52
+#: bookwyrm/templates/snippets/create_status/comment.html:53
#: bookwyrm/templates/snippets/progress_field.html:18
msgid "pages"
msgstr "páginas"
-#: bookwyrm/templates/snippets/create_status/comment.html:58
+#: bookwyrm/templates/snippets/create_status/comment.html:59
#: bookwyrm/templates/snippets/progress_field.html:23
msgid "percent"
msgstr "por ciento"
-#: bookwyrm/templates/snippets/create_status/comment.html:65
+#: bookwyrm/templates/snippets/create_status/comment.html:66
#, python-format
msgid "of %(pages)s pages"
msgstr "de %(pages)s páginas"
@@ -2969,7 +2982,7 @@ msgstr "¡Advertencia, ya vienen spoilers!"
msgid "Include spoiler alert"
msgstr "Incluir alerta de spoiler"
-#: bookwyrm/templates/snippets/create_status/layout.html:41
+#: bookwyrm/templates/snippets/create_status/layout.html:48
#: bookwyrm/templates/snippets/reading_modals/form.html:7
msgid "Comment:"
msgstr "Comentario:"
@@ -3163,12 +3176,12 @@ msgstr "Has leído %(read_count)s de %(goal_count)s libros<
msgid "%(username)s has read %(read_count)s of %(goal_count)s books ."
msgstr "%(username)s ha leído %(read_count)s de %(goal_count)s libros ."
-#: bookwyrm/templates/snippets/page_text.html:4
+#: bookwyrm/templates/snippets/page_text.html:8
#, python-format
msgid "page %(page)s of %(total_pages)s"
msgstr "página %(page)s de %(total_pages)s"
-#: bookwyrm/templates/snippets/page_text.html:6
+#: bookwyrm/templates/snippets/page_text.html:14
#, python-format
msgid "page %(page)s"
msgstr "página %(page)s"
@@ -3329,6 +3342,12 @@ msgstr "Abrir imagen en una nueva ventana"
msgid "Hide status"
msgstr "Ocultar status"
+#: bookwyrm/templates/snippets/status/header.html:45
+#, fuzzy, python-format
+#| msgid "Joined %(date)s"
+msgid "edited %(date)s"
+msgstr "Unido %(date)s"
+
#: bookwyrm/templates/snippets/status/headers/comment.html:2
#, python-format
msgid "commented on %(book)s "
@@ -3393,10 +3412,6 @@ msgstr "respaldó"
msgid "More options"
msgstr "Más opciones"
-#: bookwyrm/templates/snippets/status/status_options.html:26
-msgid "Delete & re-draft"
-msgstr "Eliminar y recomponer"
-
#: bookwyrm/templates/snippets/suggested_users.html:16
#, python-format
msgid "%(mutuals)s follower you follow"
@@ -3585,3 +3600,23 @@ 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}"
+#~ msgid "Compose status"
+#~ msgstr "Componer status"
+
+#~ msgid "rated"
+#~ msgstr "calificó"
+
+#~ msgid "reviewed"
+#~ msgstr "reseñó"
+
+#~ msgid "commented on"
+#~ msgstr "comentó en"
+
+#~ msgid "quoted"
+#~ msgstr "citó"
+
+#~ msgid "About this instance"
+#~ msgstr "Sobre esta instancia"
+
+#~ msgid "Delete & re-draft"
+#~ msgstr "Eliminar y recomponer"
diff --git a/locale/fr_FR/LC_MESSAGES/django.mo b/locale/fr_FR/LC_MESSAGES/django.mo
index a0d40fae6..a1fbfd2cb 100644
Binary files a/locale/fr_FR/LC_MESSAGES/django.mo and b/locale/fr_FR/LC_MESSAGES/django.mo differ
diff --git a/locale/fr_FR/LC_MESSAGES/django.po b/locale/fr_FR/LC_MESSAGES/django.po
index 699f8e8ba..6330db793 100644
--- a/locale/fr_FR/LC_MESSAGES/django.po
+++ b/locale/fr_FR/LC_MESSAGES/django.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-10-06 23:57+0000\n"
+"POT-Creation-Date: 2021-10-15 22:03+0000\n"
"PO-Revision-Date: 2021-10-08 10:19\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: French\n"
@@ -54,8 +54,8 @@ msgstr "Ordre de la liste"
msgid "Book Title"
msgstr "Titre du livre"
-#: bookwyrm/forms.py:328 bookwyrm/templates/shelf/shelf.html:134
-#: bookwyrm/templates/shelf/shelf.html:165
+#: bookwyrm/forms.py:328 bookwyrm/templates/shelf/shelf.html:136
+#: bookwyrm/templates/shelf/shelf.html:168
#: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating"
msgstr "Note"
@@ -151,45 +151,49 @@ msgstr "nom du compte :"
msgid "A user with that username already exists."
msgstr "Ce nom est déjà associé à un compte."
-#: bookwyrm/settings.py:117
+#: bookwyrm/settings.py:118
msgid "Home Timeline"
msgstr "Mon fil d’actualité"
-#: bookwyrm/settings.py:117
+#: bookwyrm/settings.py:118
msgid "Home"
msgstr "Accueil"
-#: bookwyrm/settings.py:118
+#: bookwyrm/settings.py:119
msgid "Books Timeline"
msgstr ""
-#: bookwyrm/settings.py:118 bookwyrm/templates/search/layout.html:21
+#: bookwyrm/settings.py:119 bookwyrm/templates/search/layout.html:21
#: bookwyrm/templates/search/layout.html:42
#: bookwyrm/templates/user/layout.html:81
msgid "Books"
msgstr "Livres"
-#: bookwyrm/settings.py:164
+#: bookwyrm/settings.py:165
msgid "English"
msgstr "English"
-#: bookwyrm/settings.py:165
+#: bookwyrm/settings.py:166
msgid "Deutsch (German)"
msgstr "Deutsch"
-#: bookwyrm/settings.py:166
+#: bookwyrm/settings.py:167
msgid "Español (Spanish)"
msgstr "Español"
-#: bookwyrm/settings.py:167
+#: bookwyrm/settings.py:168
msgid "Français (French)"
msgstr "Français"
-#: bookwyrm/settings.py:168
+#: bookwyrm/settings.py:169
+msgid "Português - Brasil (Brazilian Portuguese)"
+msgstr ""
+
+#: bookwyrm/settings.py:170
msgid "简体中文 (Simplified Chinese)"
msgstr "简化字"
-#: bookwyrm/settings.py:169
+#: bookwyrm/settings.py:171
msgid "繁體中文 (Traditional Chinese)"
msgstr "Infos supplémentaires :"
@@ -669,11 +673,6 @@ msgstr "Langue :"
msgid "Search editions"
msgstr "Rechercher des éditions"
-#: bookwyrm/templates/book/publisher_info.html:21
-#, python-format
-msgid "%(format)s"
-msgstr "%(format)s"
-
#: bookwyrm/templates/book/publisher_info.html:23
#, python-format
msgid "%(format)s, %(pages)s pages"
@@ -753,8 +752,10 @@ msgid "Help"
msgstr "Aide"
#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8
-msgid "Compose status"
-msgstr "Rédiger un statut"
+#, fuzzy
+#| msgid "View status"
+msgid "Edit status"
+msgstr "Afficher tous les status"
#: bookwyrm/templates/confirm_email/confirm_email.html:4
msgid "Confirm email"
@@ -888,6 +889,30 @@ msgstr "Comptes BookWyrm"
msgid "All known users"
msgstr "Tous les comptes connus"
+#: bookwyrm/templates/discover/card-header.html:9
+#, fuzzy, python-format
+#| msgid "replied to %(username)s 's status "
+msgid "%(username)s rated %(book_title)s "
+msgstr "a répondu au statut de %(username)s "
+
+#: bookwyrm/templates/discover/card-header.html:13
+#, fuzzy, python-format
+#| msgid "replied to %(username)s 's status "
+msgid "%(username)s reviewed %(book_title)s "
+msgstr "a répondu au statut de %(username)s "
+
+#: bookwyrm/templates/discover/card-header.html:17
+#, fuzzy, python-format
+#| msgid "replied to %(username)s 's status "
+msgid "%(username)s commented on %(book_title)s "
+msgstr "a répondu au statut de %(username)s "
+
+#: bookwyrm/templates/discover/card-header.html:21
+#, fuzzy, python-format
+#| msgid "replied to %(username)s 's status "
+msgid "%(username)s quoted %(book_title)s "
+msgstr "a répondu au statut de %(username)s "
+
#: bookwyrm/templates/discover/discover.html:4
#: bookwyrm/templates/discover/discover.html:10
#: bookwyrm/templates/layout.html:78
@@ -899,28 +924,8 @@ msgstr "Découvrir"
msgid "See what's new in the local %(site_name)s community"
msgstr "Voir les nouveautés de la communauté locale %(site_name)s"
-#: bookwyrm/templates/discover/large-book.html:46
-#: bookwyrm/templates/discover/small-book.html:32
-msgid "rated"
-msgstr "a noté"
-
-#: bookwyrm/templates/discover/large-book.html:48
-#: bookwyrm/templates/discover/small-book.html:34
-msgid "reviewed"
-msgstr "a écrit une critique de"
-
-#: bookwyrm/templates/discover/large-book.html:50
-#: bookwyrm/templates/discover/small-book.html:36
-msgid "commented on"
-msgstr "a commenté"
-
#: bookwyrm/templates/discover/large-book.html:52
-#: bookwyrm/templates/discover/small-book.html:38
-msgid "quoted"
-msgstr "a cité"
-
-#: bookwyrm/templates/discover/large-book.html:68
-#: bookwyrm/templates/discover/small-book.html:52
+#: bookwyrm/templates/discover/small-book.html:36
msgid "View status"
msgstr "Afficher tous les status"
@@ -973,8 +978,9 @@ msgid "Join Now"
msgstr "S’enregistrer maintenant"
#: bookwyrm/templates/email/invite/html_content.html:15
-#, python-format
-msgid "Learn more about this instance ."
+#, fuzzy, python-format
+#| msgid "Learn more about this instance ."
+msgid "Learn more about %(site_name)s ."
msgstr "En savoir plus sur cette instance ."
#: bookwyrm/templates/email/invite/text_content.html:4
@@ -983,7 +989,9 @@ msgid "You're invited to join %(site_name)s! Click the link below to create an a
msgstr "Vous avez reçu une invitation à rejoindre %(site_name)s ! Cliquez le lien suivant pour créer un compte."
#: bookwyrm/templates/email/invite/text_content.html:8
-msgid "Learn more about this instance:"
+#, fuzzy, python-format
+#| msgid "Learn more about this instance:"
+msgid "Learn more about %(site_name)s:"
msgstr "En savoir plus sur cete instance :"
#: bookwyrm/templates/email/password_reset/html_content.html:6
@@ -1323,13 +1331,13 @@ msgstr "Livre"
#: bookwyrm/templates/import/import_status.html:122
#: bookwyrm/templates/shelf/shelf.html:128
-#: bookwyrm/templates/shelf/shelf.html:148
+#: bookwyrm/templates/shelf/shelf.html:150
msgid "Title"
msgstr "Titre"
#: bookwyrm/templates/import/import_status.html:125
#: bookwyrm/templates/shelf/shelf.html:129
-#: bookwyrm/templates/shelf/shelf.html:151
+#: bookwyrm/templates/shelf/shelf.html:153
msgid "Author"
msgstr "Auteur/autrice"
@@ -1338,7 +1346,9 @@ msgid "Imported"
msgstr "Importé"
#: bookwyrm/templates/import/tooltip.html:6
-msgid "You can download your GoodReads data from the Import/Export page of your GoodReads account."
+#, fuzzy
+#| msgid "You can download your GoodReads data from the Import/Export page of your GoodReads account."
+msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account."
msgstr "Vous pouvez télécharger vos données GoodReads depuis la page Importation/Exportation de votre compte GoodRead."
#: bookwyrm/templates/invite.html:4 bookwyrm/templates/invite.html:8
@@ -1354,7 +1364,7 @@ msgstr "Autorisation refusée"
msgid "Sorry! This invite code is no longer valid."
msgstr "Cette invitation n’est plus valide ; désolé !"
-#: bookwyrm/templates/landing/about.html:7
+#: bookwyrm/templates/landing/about.html:7 bookwyrm/templates/layout.html:230
#, python-format
msgid "About %(site_name)s"
msgstr "À propos de %(site_name)s"
@@ -1485,10 +1495,6 @@ msgstr "Publié !"
msgid "Error posting status"
msgstr "Erreur lors de la publication"
-#: bookwyrm/templates/layout.html:230
-msgid "About this instance"
-msgstr "À propos de cette instance"
-
#: bookwyrm/templates/layout.html:234
msgid "Contact site admin"
msgstr "Contacter l’administrateur du site"
@@ -1732,23 +1738,27 @@ msgid "boosted your status "
msgstr "a partagé votre statut "
#: bookwyrm/templates/notifications/items/fav.html:19
-#, python-format
-msgid "favorited your review of %(book_title)s "
+#, fuzzy, python-format
+#| msgid "favorited your review of %(book_title)s "
+msgid "liked your review of %(book_title)s "
msgstr "a ajouté votre critique de %(book_title)s à ses favoris"
#: bookwyrm/templates/notifications/items/fav.html:25
-#, python-format
-msgid "favorited your comment on%(book_title)s "
-msgstr ""
+#, fuzzy, python-format
+#| msgid "boosted your comment on%(book_title)s "
+msgid "liked your comment on%(book_title)s "
+msgstr "a partagé votre commentaire sur %(book_title)s "
#: bookwyrm/templates/notifications/items/fav.html:31
-#, python-format
-msgid "favorited your quote from %(book_title)s "
+#, fuzzy, python-format
+#| msgid "favorited your quote from %(book_title)s "
+msgid "liked your quote from %(book_title)s "
msgstr "a ajouté votre citation de %(book_title)s à ses favoris"
#: bookwyrm/templates/notifications/items/fav.html:37
-#, python-format
-msgid "favorited your status "
+#, fuzzy, python-format
+#| msgid "favorited your status "
+msgid "liked your status "
msgstr "a ajouté votre statut à ses favoris"
#: bookwyrm/templates/notifications/items/follow.html:15
@@ -2297,6 +2307,7 @@ msgid "Notes"
msgstr "Remarques"
#: bookwyrm/templates/settings/federation/instance.html:75
+#: bookwyrm/templates/snippets/status/status_options.html:24
msgid "Edit"
msgstr "Modifier"
@@ -2636,7 +2647,9 @@ msgid "Short description:"
msgstr "Description courte :"
#: bookwyrm/templates/settings/site.html:37
-msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown."
+#, fuzzy
+#| msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown."
+msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown."
msgstr "Utilisé lorsque l'instance est prévisualisée sur joinbookwyrm.com. Ne supporte pas html ou markdown."
#: bookwyrm/templates/settings/site.html:41
@@ -2811,7 +2824,7 @@ msgid "Permanently deleted"
msgstr "Supprimé définitivement"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13
-#: bookwyrm/templates/snippets/status/status_options.html:35
+#: bookwyrm/templates/snippets/status/status_options.html:32
#: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message"
msgstr "Envoyer un message direct"
@@ -2864,22 +2877,22 @@ msgstr "Modifier l’étagère"
msgid "Delete shelf"
msgstr "Supprimer l’étagère"
-#: bookwyrm/templates/shelf/shelf.html:130
-#: bookwyrm/templates/shelf/shelf.html:154
+#: bookwyrm/templates/shelf/shelf.html:132
+#: bookwyrm/templates/shelf/shelf.html:158
msgid "Shelved"
msgstr "Date d’ajout"
-#: bookwyrm/templates/shelf/shelf.html:131
-#: bookwyrm/templates/shelf/shelf.html:158
+#: bookwyrm/templates/shelf/shelf.html:133
+#: bookwyrm/templates/shelf/shelf.html:161
msgid "Started"
msgstr "Commencé"
-#: bookwyrm/templates/shelf/shelf.html:132
-#: bookwyrm/templates/shelf/shelf.html:161
+#: bookwyrm/templates/shelf/shelf.html:134
+#: bookwyrm/templates/shelf/shelf.html:164
msgid "Finished"
msgstr "Terminé"
-#: bookwyrm/templates/shelf/shelf.html:187
+#: bookwyrm/templates/shelf/shelf.html:190
msgid "This shelf is empty."
msgstr "Cette étagère est vide"
@@ -2926,22 +2939,22 @@ msgstr "Citation"
msgid "Some thoughts on the book"
msgstr ""
-#: bookwyrm/templates/snippets/create_status/comment.html:26
+#: bookwyrm/templates/snippets/create_status/comment.html:27
#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:15
msgid "Progress:"
msgstr "Progression :"
-#: bookwyrm/templates/snippets/create_status/comment.html:52
+#: bookwyrm/templates/snippets/create_status/comment.html:53
#: bookwyrm/templates/snippets/progress_field.html:18
msgid "pages"
msgstr "pages"
-#: bookwyrm/templates/snippets/create_status/comment.html:58
+#: bookwyrm/templates/snippets/create_status/comment.html:59
#: bookwyrm/templates/snippets/progress_field.html:23
msgid "percent"
msgstr "pourcent"
-#: bookwyrm/templates/snippets/create_status/comment.html:65
+#: bookwyrm/templates/snippets/create_status/comment.html:66
#, python-format
msgid "of %(pages)s pages"
msgstr "sur %(pages)s pages"
@@ -2969,7 +2982,7 @@ msgstr "Attention spoilers !"
msgid "Include spoiler alert"
msgstr "Afficher une alerte spoiler"
-#: bookwyrm/templates/snippets/create_status/layout.html:41
+#: bookwyrm/templates/snippets/create_status/layout.html:48
#: bookwyrm/templates/snippets/reading_modals/form.html:7
msgid "Comment:"
msgstr "Commentaire :"
@@ -3163,12 +3176,12 @@ msgstr "Vous avez lu %(read_count)s sur %(goal_count)s livr
msgid "%(username)s has read %(read_count)s of %(goal_count)s books ."
msgstr "%(username)s a lu %(read_count)s sur %(goal_count)s livres ."
-#: bookwyrm/templates/snippets/page_text.html:4
+#: bookwyrm/templates/snippets/page_text.html:8
#, python-format
msgid "page %(page)s of %(total_pages)s"
msgstr "page %(page)s sur %(total_pages)s pages"
-#: bookwyrm/templates/snippets/page_text.html:6
+#: bookwyrm/templates/snippets/page_text.html:14
#, python-format
msgid "page %(page)s"
msgstr "page %(page)s"
@@ -3329,6 +3342,12 @@ msgstr "Ouvrir l’image dans une nouvelle fenêtre"
msgid "Hide status"
msgstr ""
+#: bookwyrm/templates/snippets/status/header.html:45
+#, fuzzy, python-format
+#| msgid "Joined %(date)s"
+msgid "edited %(date)s"
+msgstr "A rejoint ce serveur %(date)s"
+
#: bookwyrm/templates/snippets/status/headers/comment.html:2
#, python-format
msgid "commented on %(book)s "
@@ -3393,10 +3412,6 @@ msgstr "a partagé"
msgid "More options"
msgstr "Plus d’options"
-#: bookwyrm/templates/snippets/status/status_options.html:26
-msgid "Delete & re-draft"
-msgstr "Supprimer & recommencer la rédaction"
-
#: bookwyrm/templates/snippets/suggested_users.html:16
#, python-format
msgid "%(mutuals)s follower you follow"
@@ -3585,3 +3600,26 @@ msgstr "Un lien de réinitialisation a été envoyé à {email}."
msgid "Status updates from {obj.display_name}"
msgstr ""
+#~ msgid "Compose status"
+#~ msgstr "Rédiger un statut"
+
+#~ msgid "%(format)s"
+#~ msgstr "%(format)s"
+
+#~ msgid "rated"
+#~ msgstr "a noté"
+
+#~ msgid "reviewed"
+#~ msgstr "a écrit une critique de"
+
+#~ msgid "commented on"
+#~ msgstr "a commenté"
+
+#~ msgid "quoted"
+#~ msgstr "a cité"
+
+#~ msgid "About this instance"
+#~ msgstr "À propos de cette instance"
+
+#~ msgid "Delete & re-draft"
+#~ msgstr "Supprimer & recommencer la rédaction"
diff --git a/locale/pt_BR/LC_MESSAGES/django.mo b/locale/pt_BR/LC_MESSAGES/django.mo
index 1942ada36..33fbeac24 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 d3add60c7..6d7750b75 100644
--- a/locale/pt_BR/LC_MESSAGES/django.po
+++ b/locale/pt_BR/LC_MESSAGES/django.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-10-06 23:57+0000\n"
+"POT-Creation-Date: 2021-10-15 22:03+0000\n"
"PO-Revision-Date: 2021-10-13 16:42\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: Portuguese, Brazilian\n"
@@ -54,8 +54,8 @@ msgstr "Ordem da lista"
msgid "Book Title"
msgstr "Título do livro"
-#: bookwyrm/forms.py:328 bookwyrm/templates/shelf/shelf.html:134
-#: bookwyrm/templates/shelf/shelf.html:165
+#: bookwyrm/forms.py:328 bookwyrm/templates/shelf/shelf.html:136
+#: bookwyrm/templates/shelf/shelf.html:168
#: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating"
msgstr "Avaliação"
@@ -151,45 +151,49 @@ msgstr "nome de usuário"
msgid "A user with that username already exists."
msgstr "Já existe um usuário com este nome."
-#: bookwyrm/settings.py:117
+#: bookwyrm/settings.py:118
msgid "Home Timeline"
msgstr "Linha do tempo"
-#: bookwyrm/settings.py:117
+#: bookwyrm/settings.py:118
msgid "Home"
msgstr "Página inicial"
-#: bookwyrm/settings.py:118
+#: bookwyrm/settings.py:119
msgid "Books Timeline"
msgstr "Linha do tempo dos livros"
-#: bookwyrm/settings.py:118 bookwyrm/templates/search/layout.html:21
+#: bookwyrm/settings.py:119 bookwyrm/templates/search/layout.html:21
#: bookwyrm/templates/search/layout.html:42
#: bookwyrm/templates/user/layout.html:81
msgid "Books"
msgstr "Livros"
-#: bookwyrm/settings.py:164
+#: bookwyrm/settings.py:165
msgid "English"
msgstr "English (Inglês)"
-#: bookwyrm/settings.py:165
+#: bookwyrm/settings.py:166
msgid "Deutsch (German)"
msgstr "Deutsch (Alemão)"
-#: bookwyrm/settings.py:166
+#: bookwyrm/settings.py:167
msgid "Español (Spanish)"
msgstr "Español (Espanhol)"
-#: bookwyrm/settings.py:167
+#: bookwyrm/settings.py:168
msgid "Français (French)"
msgstr "Français (Francês)"
-#: bookwyrm/settings.py:168
+#: bookwyrm/settings.py:169
+msgid "Português - Brasil (Brazilian Portuguese)"
+msgstr ""
+
+#: bookwyrm/settings.py:170
msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Chinês simplificado)"
-#: bookwyrm/settings.py:169
+#: bookwyrm/settings.py:171
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Chinês tradicional)"
@@ -669,11 +673,6 @@ msgstr "Idioma:"
msgid "Search editions"
msgstr "Procurar edições"
-#: bookwyrm/templates/book/publisher_info.html:21
-#, python-format
-msgid "%(format)s"
-msgstr "%(format)s"
-
#: bookwyrm/templates/book/publisher_info.html:23
#, python-format
msgid "%(format)s, %(pages)s pages"
@@ -753,8 +752,10 @@ msgid "Help"
msgstr "Ajuda"
#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8
-msgid "Compose status"
-msgstr "Escrever publicação"
+#, fuzzy
+#| msgid "View status"
+msgid "Edit status"
+msgstr "Ver publicação"
#: bookwyrm/templates/confirm_email/confirm_email.html:4
msgid "Confirm email"
@@ -888,6 +889,30 @@ msgstr "Usuários da BookWyrm"
msgid "All known users"
msgstr "Todos os usuários conhecidos"
+#: bookwyrm/templates/discover/card-header.html:9
+#, fuzzy, python-format
+#| msgid "%(username)s wants to read %(book)s "
+msgid "%(username)s rated %(book_title)s "
+msgstr "%(username)s quer ler %(book)s "
+
+#: bookwyrm/templates/discover/card-header.html:13
+#, fuzzy, python-format
+#| msgid "%(username)s wants to read %(book)s "
+msgid "%(username)s reviewed %(book_title)s "
+msgstr "%(username)s quer ler %(book)s "
+
+#: bookwyrm/templates/discover/card-header.html:17
+#, fuzzy, python-format
+#| msgid "%(username)s wants to read %(book)s "
+msgid "%(username)s commented on %(book_title)s "
+msgstr "%(username)s quer ler %(book)s "
+
+#: bookwyrm/templates/discover/card-header.html:21
+#, fuzzy, python-format
+#| msgid "%(username)s wants to read %(book)s "
+msgid "%(username)s quoted %(book_title)s "
+msgstr "%(username)s quer ler %(book)s "
+
#: bookwyrm/templates/discover/discover.html:4
#: bookwyrm/templates/discover/discover.html:10
#: bookwyrm/templates/layout.html:78
@@ -899,28 +924,8 @@ msgstr "Explorar"
msgid "See what's new in the local %(site_name)s community"
msgstr "Veja as novidades da comunidade %(site_name)s local"
-#: bookwyrm/templates/discover/large-book.html:46
-#: bookwyrm/templates/discover/small-book.html:32
-msgid "rated"
-msgstr "avaliado"
-
-#: bookwyrm/templates/discover/large-book.html:48
-#: bookwyrm/templates/discover/small-book.html:34
-msgid "reviewed"
-msgstr "resenhado"
-
-#: bookwyrm/templates/discover/large-book.html:50
-#: bookwyrm/templates/discover/small-book.html:36
-msgid "commented on"
-msgstr "comentado"
-
#: bookwyrm/templates/discover/large-book.html:52
-#: bookwyrm/templates/discover/small-book.html:38
-msgid "quoted"
-msgstr "citou"
-
-#: bookwyrm/templates/discover/large-book.html:68
-#: bookwyrm/templates/discover/small-book.html:52
+#: bookwyrm/templates/discover/small-book.html:36
msgid "View status"
msgstr "Ver publicação"
@@ -973,8 +978,9 @@ msgid "Join Now"
msgstr "Inscreva-se"
#: bookwyrm/templates/email/invite/html_content.html:15
-#, python-format
-msgid "Learn more about this instance ."
+#, fuzzy, python-format
+#| msgid "Learn more about this instance ."
+msgid "Learn more about %(site_name)s ."
msgstr "Saiba mais sobre esta instância ."
#: bookwyrm/templates/email/invite/text_content.html:4
@@ -983,7 +989,9 @@ msgid "You're invited to join %(site_name)s! Click the link below to create an a
msgstr "Você recebeu um convite para juntar-se a %(site_name)s! Clique no link abaixo para criar uma conta."
#: bookwyrm/templates/email/invite/text_content.html:8
-msgid "Learn more about this instance:"
+#, fuzzy, python-format
+#| msgid "Learn more about this instance:"
+msgid "Learn more about %(site_name)s:"
msgstr "Saiba mais sobre esta instância:"
#: bookwyrm/templates/email/password_reset/html_content.html:6
@@ -1323,13 +1331,13 @@ msgstr "Livro"
#: bookwyrm/templates/import/import_status.html:122
#: bookwyrm/templates/shelf/shelf.html:128
-#: bookwyrm/templates/shelf/shelf.html:148
+#: bookwyrm/templates/shelf/shelf.html:150
msgid "Title"
msgstr "Título"
#: bookwyrm/templates/import/import_status.html:125
#: bookwyrm/templates/shelf/shelf.html:129
-#: bookwyrm/templates/shelf/shelf.html:151
+#: bookwyrm/templates/shelf/shelf.html:153
msgid "Author"
msgstr "Autor"
@@ -1338,7 +1346,9 @@ msgid "Imported"
msgstr "Importado"
#: bookwyrm/templates/import/tooltip.html:6
-msgid "You can download your GoodReads data from the Import/Export page of your GoodReads account."
+#, fuzzy
+#| msgid "You can download your GoodReads data from the Import/Export page of your GoodReads account."
+msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account."
msgstr "Você pode baixar seus dados do Goodreads na página de Importar/Exportar da sua conta."
#: bookwyrm/templates/invite.html:4 bookwyrm/templates/invite.html:8
@@ -1354,7 +1364,7 @@ msgstr "Permissão negada"
msgid "Sorry! This invite code is no longer valid."
msgstr "Desculpe! Este convite não é mais válido."
-#: bookwyrm/templates/landing/about.html:7
+#: bookwyrm/templates/landing/about.html:7 bookwyrm/templates/layout.html:230
#, python-format
msgid "About %(site_name)s"
msgstr "Sobre %(site_name)s"
@@ -1485,10 +1495,6 @@ msgstr "Publicação feita com sucesso"
msgid "Error posting status"
msgstr "Erro ao publicar"
-#: bookwyrm/templates/layout.html:230
-msgid "About this instance"
-msgstr "Sobre esta instância"
-
#: bookwyrm/templates/layout.html:234
msgid "Contact site admin"
msgstr "Contatar administração"
@@ -1732,23 +1738,27 @@ msgid "boosted your status "
msgstr "compartilhou sua publicação "
#: bookwyrm/templates/notifications/items/fav.html:19
-#, python-format
-msgid "favorited your review of %(book_title)s "
+#, fuzzy, python-format
+#| msgid "favorited your review of %(book_title)s "
+msgid "liked your review of %(book_title)s "
msgstr "curtiu sua resenha de %(book_title)s "
#: bookwyrm/templates/notifications/items/fav.html:25
-#, python-format
-msgid "favorited your comment on%(book_title)s "
+#, fuzzy, python-format
+#| msgid "favorited your comment on%(book_title)s "
+msgid "liked your comment on%(book_title)s "
msgstr "curtiu seu comentário sobre%(book_title)s "
#: bookwyrm/templates/notifications/items/fav.html:31
-#, python-format
-msgid "favorited your quote from %(book_title)s "
+#, fuzzy, python-format
+#| msgid "favorited your quote from %(book_title)s "
+msgid "liked your quote from %(book_title)s "
msgstr "curtiu sua citação de %(book_title)s "
#: bookwyrm/templates/notifications/items/fav.html:37
-#, python-format
-msgid "favorited your status "
+#, fuzzy, python-format
+#| msgid "favorited your status "
+msgid "liked your status "
msgstr "curtiu sua publicação "
#: bookwyrm/templates/notifications/items/follow.html:15
@@ -2297,6 +2307,7 @@ msgid "Notes"
msgstr "Notas"
#: bookwyrm/templates/settings/federation/instance.html:75
+#: bookwyrm/templates/snippets/status/status_options.html:24
msgid "Edit"
msgstr "Editar"
@@ -2636,7 +2647,9 @@ msgid "Short description:"
msgstr "Descrição curta:"
#: bookwyrm/templates/settings/site.html:37
-msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown."
+#, fuzzy
+#| msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown."
+msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown."
msgstr "Mostrado quando a instância é vista em joinbookwyrm.com. Não compatível com HTML ou markdown."
#: bookwyrm/templates/settings/site.html:41
@@ -2811,7 +2824,7 @@ msgid "Permanently deleted"
msgstr "Excluído permanentemente"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13
-#: bookwyrm/templates/snippets/status/status_options.html:35
+#: bookwyrm/templates/snippets/status/status_options.html:32
#: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message"
msgstr "Enviar mensagem direta"
@@ -2864,22 +2877,22 @@ msgstr "Editar estante"
msgid "Delete shelf"
msgstr "Excluir estante"
-#: bookwyrm/templates/shelf/shelf.html:130
-#: bookwyrm/templates/shelf/shelf.html:154
+#: bookwyrm/templates/shelf/shelf.html:132
+#: bookwyrm/templates/shelf/shelf.html:158
msgid "Shelved"
msgstr "Adicionado"
-#: bookwyrm/templates/shelf/shelf.html:131
-#: bookwyrm/templates/shelf/shelf.html:158
+#: bookwyrm/templates/shelf/shelf.html:133
+#: bookwyrm/templates/shelf/shelf.html:161
msgid "Started"
msgstr "Iniciado"
-#: bookwyrm/templates/shelf/shelf.html:132
-#: bookwyrm/templates/shelf/shelf.html:161
+#: bookwyrm/templates/shelf/shelf.html:134
+#: bookwyrm/templates/shelf/shelf.html:164
msgid "Finished"
msgstr "Terminado"
-#: bookwyrm/templates/shelf/shelf.html:187
+#: bookwyrm/templates/shelf/shelf.html:190
msgid "This shelf is empty."
msgstr "Esta estante está vazia."
@@ -2926,22 +2939,22 @@ msgstr "Citar"
msgid "Some thoughts on the book"
msgstr "Algumas ideias sobre o livro"
-#: bookwyrm/templates/snippets/create_status/comment.html:26
+#: bookwyrm/templates/snippets/create_status/comment.html:27
#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:15
msgid "Progress:"
msgstr "Progresso:"
-#: bookwyrm/templates/snippets/create_status/comment.html:52
+#: bookwyrm/templates/snippets/create_status/comment.html:53
#: bookwyrm/templates/snippets/progress_field.html:18
msgid "pages"
msgstr "páginas"
-#: bookwyrm/templates/snippets/create_status/comment.html:58
+#: bookwyrm/templates/snippets/create_status/comment.html:59
#: bookwyrm/templates/snippets/progress_field.html:23
msgid "percent"
msgstr "porcento"
-#: bookwyrm/templates/snippets/create_status/comment.html:65
+#: bookwyrm/templates/snippets/create_status/comment.html:66
#, python-format
msgid "of %(pages)s pages"
msgstr "de %(pages)s páginas"
@@ -2969,7 +2982,7 @@ msgstr "Alerta de spoiler!"
msgid "Include spoiler alert"
msgstr "Incluir alerta de spoiler"
-#: bookwyrm/templates/snippets/create_status/layout.html:41
+#: bookwyrm/templates/snippets/create_status/layout.html:48
#: bookwyrm/templates/snippets/reading_modals/form.html:7
msgid "Comment:"
msgstr "Comentário:"
@@ -3163,12 +3176,12 @@ msgstr "Você leu %(read_count)s de %(goal_count)s livros
msgid "%(username)s has read %(read_count)s of %(goal_count)s books ."
msgstr "%(username)s leu %(read_count)s de %(goal_count)s livros ."
-#: bookwyrm/templates/snippets/page_text.html:4
+#: bookwyrm/templates/snippets/page_text.html:8
#, python-format
msgid "page %(page)s of %(total_pages)s"
msgstr "página %(page)s de %(total_pages)s"
-#: bookwyrm/templates/snippets/page_text.html:6
+#: bookwyrm/templates/snippets/page_text.html:14
#, python-format
msgid "page %(page)s"
msgstr "página %(page)s"
@@ -3329,6 +3342,12 @@ msgstr "Abrir imagem em nova janela"
msgid "Hide status"
msgstr "Esconder publicação"
+#: bookwyrm/templates/snippets/status/header.html:45
+#, fuzzy, python-format
+#| msgid "Joined %(date)s"
+msgid "edited %(date)s"
+msgstr "Membro desde %(date)s"
+
#: bookwyrm/templates/snippets/status/headers/comment.html:2
#, python-format
msgid "commented on %(book)s "
@@ -3393,10 +3412,6 @@ msgstr "compartilhado"
msgid "More options"
msgstr "Mais opções"
-#: bookwyrm/templates/snippets/status/status_options.html:26
-msgid "Delete & re-draft"
-msgstr "Excluir e rascunhar"
-
#: bookwyrm/templates/snippets/suggested_users.html:16
#, python-format
msgid "%(mutuals)s follower you follow"
@@ -3585,3 +3600,26 @@ 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}"
+#~ msgid "Compose status"
+#~ msgstr "Escrever publicação"
+
+#~ msgid "%(format)s"
+#~ msgstr "%(format)s"
+
+#~ msgid "rated"
+#~ msgstr "avaliado"
+
+#~ msgid "reviewed"
+#~ msgstr "resenhado"
+
+#~ msgid "commented on"
+#~ msgstr "comentado"
+
+#~ msgid "quoted"
+#~ msgstr "citou"
+
+#~ msgid "About this instance"
+#~ msgstr "Sobre esta instância"
+
+#~ msgid "Delete & re-draft"
+#~ msgstr "Excluir e rascunhar"
diff --git a/locale/zh_Hans/LC_MESSAGES/django.mo b/locale/zh_Hans/LC_MESSAGES/django.mo
index 9eaced00b..1b4f01309 100644
Binary files a/locale/zh_Hans/LC_MESSAGES/django.mo and b/locale/zh_Hans/LC_MESSAGES/django.mo differ
diff --git a/locale/zh_Hans/LC_MESSAGES/django.po b/locale/zh_Hans/LC_MESSAGES/django.po
index 7bbcbcc54..23e19dd05 100644
--- a/locale/zh_Hans/LC_MESSAGES/django.po
+++ b/locale/zh_Hans/LC_MESSAGES/django.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-10-06 23:57+0000\n"
+"POT-Creation-Date: 2021-10-15 22:03+0000\n"
"PO-Revision-Date: 2021-10-08 00:03\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: Chinese Simplified\n"
@@ -54,8 +54,8 @@ msgstr "列表顺序"
msgid "Book Title"
msgstr "书名"
-#: bookwyrm/forms.py:328 bookwyrm/templates/shelf/shelf.html:134
-#: bookwyrm/templates/shelf/shelf.html:165
+#: bookwyrm/forms.py:328 bookwyrm/templates/shelf/shelf.html:136
+#: bookwyrm/templates/shelf/shelf.html:168
#: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating"
msgstr "评价"
@@ -151,45 +151,49 @@ msgstr "用户名"
msgid "A user with that username already exists."
msgstr "已经存在使用该用户名的用户。"
-#: bookwyrm/settings.py:117
+#: bookwyrm/settings.py:118
msgid "Home Timeline"
msgstr "主页时间线"
-#: bookwyrm/settings.py:117
+#: bookwyrm/settings.py:118
msgid "Home"
msgstr "主页"
-#: bookwyrm/settings.py:118
+#: bookwyrm/settings.py:119
msgid "Books Timeline"
msgstr "书目时间线"
-#: bookwyrm/settings.py:118 bookwyrm/templates/search/layout.html:21
+#: bookwyrm/settings.py:119 bookwyrm/templates/search/layout.html:21
#: bookwyrm/templates/search/layout.html:42
#: bookwyrm/templates/user/layout.html:81
msgid "Books"
msgstr "书目"
-#: bookwyrm/settings.py:164
+#: bookwyrm/settings.py:165
msgid "English"
msgstr "English(英语)"
-#: bookwyrm/settings.py:165
+#: bookwyrm/settings.py:166
msgid "Deutsch (German)"
msgstr "Deutsch(德语)"
-#: bookwyrm/settings.py:166
+#: bookwyrm/settings.py:167
msgid "Español (Spanish)"
msgstr "Español(西班牙语)"
-#: bookwyrm/settings.py:167
+#: bookwyrm/settings.py:168
msgid "Français (French)"
msgstr "Français(法语)"
-#: bookwyrm/settings.py:168
+#: bookwyrm/settings.py:169
+msgid "Português - Brasil (Brazilian Portuguese)"
+msgstr ""
+
+#: bookwyrm/settings.py:170
msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文"
-#: bookwyrm/settings.py:169
+#: bookwyrm/settings.py:171
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文(繁体中文)"
@@ -668,11 +672,6 @@ msgstr "语言:"
msgid "Search editions"
msgstr ""
-#: bookwyrm/templates/book/publisher_info.html:21
-#, python-format
-msgid "%(format)s"
-msgstr "%(format)s"
-
#: bookwyrm/templates/book/publisher_info.html:23
#, python-format
msgid "%(format)s, %(pages)s pages"
@@ -752,8 +751,10 @@ msgid "Help"
msgstr ""
#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8
-msgid "Compose status"
-msgstr "撰写状态"
+#, fuzzy
+#| msgid "View status"
+msgid "Edit status"
+msgstr "浏览状态"
#: bookwyrm/templates/confirm_email/confirm_email.html:4
msgid "Confirm email"
@@ -885,6 +886,30 @@ msgstr "BookWyrm 用户"
msgid "All known users"
msgstr "所有已知用户"
+#: bookwyrm/templates/discover/card-header.html:9
+#, fuzzy, python-format
+#| msgid "%(username)s wants to read %(book)s "
+msgid "%(username)s rated %(book_title)s "
+msgstr "%(username)s 想要阅读 %(book)s "
+
+#: bookwyrm/templates/discover/card-header.html:13
+#, fuzzy, python-format
+#| msgid "%(username)s wants to read %(book)s "
+msgid "%(username)s reviewed %(book_title)s "
+msgstr "%(username)s 想要阅读 %(book)s "
+
+#: bookwyrm/templates/discover/card-header.html:17
+#, fuzzy, python-format
+#| msgid "%(username)s wants to read %(book)s "
+msgid "%(username)s commented on %(book_title)s "
+msgstr "%(username)s 想要阅读 %(book)s "
+
+#: bookwyrm/templates/discover/card-header.html:21
+#, fuzzy, python-format
+#| msgid "%(username)s wants to read %(book)s "
+msgid "%(username)s quoted %(book_title)s "
+msgstr "%(username)s 想要阅读 %(book)s "
+
#: bookwyrm/templates/discover/discover.html:4
#: bookwyrm/templates/discover/discover.html:10
#: bookwyrm/templates/layout.html:78
@@ -896,28 +921,8 @@ msgstr "发现"
msgid "See what's new in the local %(site_name)s community"
msgstr "看看本地 %(site_name)s 社区的新消息"
-#: bookwyrm/templates/discover/large-book.html:46
-#: bookwyrm/templates/discover/small-book.html:32
-msgid "rated"
-msgstr "评价了"
-
-#: bookwyrm/templates/discover/large-book.html:48
-#: bookwyrm/templates/discover/small-book.html:34
-msgid "reviewed"
-msgstr "写了书评给"
-
-#: bookwyrm/templates/discover/large-book.html:50
-#: bookwyrm/templates/discover/small-book.html:36
-msgid "commented on"
-msgstr "评论了"
-
#: bookwyrm/templates/discover/large-book.html:52
-#: bookwyrm/templates/discover/small-book.html:38
-msgid "quoted"
-msgstr "引用了"
-
-#: bookwyrm/templates/discover/large-book.html:68
-#: bookwyrm/templates/discover/small-book.html:52
+#: bookwyrm/templates/discover/small-book.html:36
msgid "View status"
msgstr "浏览状态"
@@ -970,8 +975,9 @@ msgid "Join Now"
msgstr "立即加入"
#: bookwyrm/templates/email/invite/html_content.html:15
-#, python-format
-msgid "Learn more about this instance ."
+#, fuzzy, python-format
+#| msgid "Learn more about this instance ."
+msgid "Learn more about %(site_name)s ."
msgstr "了解更多 有关本实例的信息 。"
#: bookwyrm/templates/email/invite/text_content.html:4
@@ -980,7 +986,9 @@ msgid "You're invited to join %(site_name)s! Click the link below to create an a
msgstr "你受邀请加入 %(site_name)s!点击下面的连接来创建帐号。"
#: bookwyrm/templates/email/invite/text_content.html:8
-msgid "Learn more about this instance:"
+#, fuzzy, python-format
+#| msgid "Learn more about this instance:"
+msgid "Learn more about %(site_name)s:"
msgstr "了解更多有关本实例的信息:"
#: bookwyrm/templates/email/password_reset/html_content.html:6
@@ -1320,13 +1328,13 @@ msgstr "书目"
#: bookwyrm/templates/import/import_status.html:122
#: bookwyrm/templates/shelf/shelf.html:128
-#: bookwyrm/templates/shelf/shelf.html:148
+#: bookwyrm/templates/shelf/shelf.html:150
msgid "Title"
msgstr "标题"
#: bookwyrm/templates/import/import_status.html:125
#: bookwyrm/templates/shelf/shelf.html:129
-#: bookwyrm/templates/shelf/shelf.html:151
+#: bookwyrm/templates/shelf/shelf.html:153
msgid "Author"
msgstr "作者"
@@ -1335,7 +1343,7 @@ msgid "Imported"
msgstr "已导入"
#: bookwyrm/templates/import/tooltip.html:6
-msgid "You can download your GoodReads data from the Import/Export page of your GoodReads account."
+msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account."
msgstr ""
#: bookwyrm/templates/invite.html:4 bookwyrm/templates/invite.html:8
@@ -1351,7 +1359,7 @@ msgstr "没有权限"
msgid "Sorry! This invite code is no longer valid."
msgstr "抱歉!此邀请码已不再有效。"
-#: bookwyrm/templates/landing/about.html:7
+#: bookwyrm/templates/landing/about.html:7 bookwyrm/templates/layout.html:230
#, python-format
msgid "About %(site_name)s"
msgstr "关于 %(site_name)s"
@@ -1482,10 +1490,6 @@ msgstr ""
msgid "Error posting status"
msgstr ""
-#: bookwyrm/templates/layout.html:230
-msgid "About this instance"
-msgstr "关于本实例"
-
#: bookwyrm/templates/layout.html:234
msgid "Contact site admin"
msgstr "联系站点管理员"
@@ -1729,23 +1733,27 @@ msgid "boosted your status "
msgstr "转发了你的 状态 "
#: bookwyrm/templates/notifications/items/fav.html:19
-#, python-format
-msgid "favorited your review of %(book_title)s "
+#, fuzzy, python-format
+#| msgid "favorited your review of %(book_title)s "
+msgid "liked your review of %(book_title)s "
msgstr "喜欢了你 对 %(book_title)s 的书评 "
#: bookwyrm/templates/notifications/items/fav.html:25
-#, python-format
-msgid "favorited your comment on%(book_title)s "
-msgstr ""
+#, fuzzy, python-format
+#| msgid "boosted your comment on%(book_title)s "
+msgid "liked your comment on%(book_title)s "
+msgstr "转发了你的 对 %(book_title)s 的评论 "
#: bookwyrm/templates/notifications/items/fav.html:31
-#, python-format
-msgid "favorited your quote from %(book_title)s "
+#, fuzzy, python-format
+#| msgid "favorited your quote from %(book_title)s "
+msgid "liked your quote from %(book_title)s "
msgstr "喜欢了你 来自 %(book_title)s 的引用 "
#: bookwyrm/templates/notifications/items/fav.html:37
-#, python-format
-msgid "favorited your status "
+#, fuzzy, python-format
+#| msgid "favorited your status "
+msgid "liked your status "
msgstr "喜欢了你的 状态 "
#: bookwyrm/templates/notifications/items/follow.html:15
@@ -2291,6 +2299,7 @@ msgid "Notes"
msgstr "备注"
#: bookwyrm/templates/settings/federation/instance.html:75
+#: bookwyrm/templates/snippets/status/status_options.html:24
msgid "Edit"
msgstr "编辑"
@@ -2630,7 +2639,7 @@ msgid "Short description:"
msgstr ""
#: bookwyrm/templates/settings/site.html:37
-msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown."
+msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown."
msgstr ""
#: bookwyrm/templates/settings/site.html:41
@@ -2805,7 +2814,7 @@ msgid "Permanently deleted"
msgstr "已永久删除"
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13
-#: bookwyrm/templates/snippets/status/status_options.html:35
+#: bookwyrm/templates/snippets/status/status_options.html:32
#: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message"
msgstr "发送私信"
@@ -2857,22 +2866,22 @@ msgstr "编辑书架"
msgid "Delete shelf"
msgstr "删除书架"
-#: bookwyrm/templates/shelf/shelf.html:130
-#: bookwyrm/templates/shelf/shelf.html:154
+#: bookwyrm/templates/shelf/shelf.html:132
+#: bookwyrm/templates/shelf/shelf.html:158
msgid "Shelved"
msgstr "上架时间"
-#: bookwyrm/templates/shelf/shelf.html:131
-#: bookwyrm/templates/shelf/shelf.html:158
+#: bookwyrm/templates/shelf/shelf.html:133
+#: bookwyrm/templates/shelf/shelf.html:161
msgid "Started"
msgstr "开始时间"
-#: bookwyrm/templates/shelf/shelf.html:132
-#: bookwyrm/templates/shelf/shelf.html:161
+#: bookwyrm/templates/shelf/shelf.html:134
+#: bookwyrm/templates/shelf/shelf.html:164
msgid "Finished"
msgstr "完成时间"
-#: bookwyrm/templates/shelf/shelf.html:187
+#: bookwyrm/templates/shelf/shelf.html:190
msgid "This shelf is empty."
msgstr "此书架是空的。"
@@ -2918,22 +2927,22 @@ msgstr "引用"
msgid "Some thoughts on the book"
msgstr "对书的一些看法"
-#: bookwyrm/templates/snippets/create_status/comment.html:26
+#: bookwyrm/templates/snippets/create_status/comment.html:27
#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:15
msgid "Progress:"
msgstr "进度:"
-#: bookwyrm/templates/snippets/create_status/comment.html:52
+#: bookwyrm/templates/snippets/create_status/comment.html:53
#: bookwyrm/templates/snippets/progress_field.html:18
msgid "pages"
msgstr "页数"
-#: bookwyrm/templates/snippets/create_status/comment.html:58
+#: bookwyrm/templates/snippets/create_status/comment.html:59
#: bookwyrm/templates/snippets/progress_field.html:23
msgid "percent"
msgstr "百分比"
-#: bookwyrm/templates/snippets/create_status/comment.html:65
+#: bookwyrm/templates/snippets/create_status/comment.html:66
#, python-format
msgid "of %(pages)s pages"
msgstr "全书 %(pages)s 页"
@@ -2961,7 +2970,7 @@ msgstr "前有剧透!"
msgid "Include spoiler alert"
msgstr "加入剧透警告"
-#: bookwyrm/templates/snippets/create_status/layout.html:41
+#: bookwyrm/templates/snippets/create_status/layout.html:48
#: bookwyrm/templates/snippets/reading_modals/form.html:7
msgid "Comment:"
msgstr "评论:"
@@ -3150,12 +3159,12 @@ msgstr "你已经阅读了 %(goal_count)s 本书中的 %(re
msgid "%(username)s has read %(read_count)s of %(goal_count)s books ."
msgstr "%(username)s 已经阅读了 %(goal_count)s 本书中的 %(read_count)s 本 。"
-#: bookwyrm/templates/snippets/page_text.html:4
+#: bookwyrm/templates/snippets/page_text.html:8
#, python-format
msgid "page %(page)s of %(total_pages)s"
msgstr "%(total_pages)s 页中的第 %(page)s 页"
-#: bookwyrm/templates/snippets/page_text.html:6
+#: bookwyrm/templates/snippets/page_text.html:14
#, python-format
msgid "page %(page)s"
msgstr "第 %(page)s 页"
@@ -3316,6 +3325,12 @@ msgstr "在新窗口中打开图像"
msgid "Hide status"
msgstr ""
+#: bookwyrm/templates/snippets/status/header.html:45
+#, fuzzy, python-format
+#| msgid "Joined %(date)s"
+msgid "edited %(date)s"
+msgstr "在 %(date)s 加入"
+
#: bookwyrm/templates/snippets/status/headers/comment.html:2
#, python-format
msgid "commented on %(book)s "
@@ -3380,10 +3395,6 @@ msgstr "转发了"
msgid "More options"
msgstr "更多选项"
-#: bookwyrm/templates/snippets/status/status_options.html:26
-msgid "Delete & re-draft"
-msgstr "删除并重新起草"
-
#: bookwyrm/templates/snippets/suggested_users.html:16
#, python-format
msgid "%(mutuals)s follower you follow"
@@ -3568,3 +3579,26 @@ msgstr "密码重置连接已发送给 {email}"
msgid "Status updates from {obj.display_name}"
msgstr ""
+#~ msgid "Compose status"
+#~ msgstr "撰写状态"
+
+#~ msgid "%(format)s"
+#~ msgstr "%(format)s"
+
+#~ msgid "rated"
+#~ msgstr "评价了"
+
+#~ msgid "reviewed"
+#~ msgstr "写了书评给"
+
+#~ msgid "commented on"
+#~ msgstr "评论了"
+
+#~ msgid "quoted"
+#~ msgstr "引用了"
+
+#~ msgid "About this instance"
+#~ msgstr "关于本实例"
+
+#~ msgid "Delete & re-draft"
+#~ msgstr "删除并重新起草"
diff --git a/locale/zh_Hant/LC_MESSAGES/django.mo b/locale/zh_Hant/LC_MESSAGES/django.mo
index 97c0a9fb7..9cfc176eb 100644
Binary files a/locale/zh_Hant/LC_MESSAGES/django.mo and b/locale/zh_Hant/LC_MESSAGES/django.mo differ
diff --git a/locale/zh_Hant/LC_MESSAGES/django.po b/locale/zh_Hant/LC_MESSAGES/django.po
index bcfcdf06b..d95f0655a 100644
--- a/locale/zh_Hant/LC_MESSAGES/django.po
+++ b/locale/zh_Hant/LC_MESSAGES/django.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2021-10-06 23:57+0000\n"
+"POT-Creation-Date: 2021-10-15 22:03+0000\n"
"PO-Revision-Date: 2021-10-08 00:03\n"
"Last-Translator: Mouse Reeve \n"
"Language-Team: Chinese Traditional\n"
@@ -54,8 +54,8 @@ msgstr "列表順序"
msgid "Book Title"
msgstr "書名"
-#: bookwyrm/forms.py:328 bookwyrm/templates/shelf/shelf.html:134
-#: bookwyrm/templates/shelf/shelf.html:165
+#: bookwyrm/forms.py:328 bookwyrm/templates/shelf/shelf.html:136
+#: bookwyrm/templates/shelf/shelf.html:168
#: bookwyrm/templates/snippets/create_status/review.html:33
msgid "Rating"
msgstr "評價"
@@ -151,45 +151,49 @@ msgstr "使用者名稱"
msgid "A user with that username already exists."
msgstr "已經存在使用該名稱的使用者。"
-#: bookwyrm/settings.py:117
+#: bookwyrm/settings.py:118
msgid "Home Timeline"
msgstr "主頁時間線"
-#: bookwyrm/settings.py:117
+#: bookwyrm/settings.py:118
msgid "Home"
msgstr "主頁"
-#: bookwyrm/settings.py:118
+#: bookwyrm/settings.py:119
msgid "Books Timeline"
msgstr ""
-#: bookwyrm/settings.py:118 bookwyrm/templates/search/layout.html:21
+#: bookwyrm/settings.py:119 bookwyrm/templates/search/layout.html:21
#: bookwyrm/templates/search/layout.html:42
#: bookwyrm/templates/user/layout.html:81
msgid "Books"
msgstr "書目"
-#: bookwyrm/settings.py:164
+#: bookwyrm/settings.py:165
msgid "English"
msgstr "English(英語)"
-#: bookwyrm/settings.py:165
+#: bookwyrm/settings.py:166
msgid "Deutsch (German)"
msgstr "Deutsch(德語)"
-#: bookwyrm/settings.py:166
+#: bookwyrm/settings.py:167
msgid "Español (Spanish)"
msgstr "Español(西班牙語)"
-#: bookwyrm/settings.py:167
+#: bookwyrm/settings.py:168
msgid "Français (French)"
msgstr "Français(法語)"
-#: bookwyrm/settings.py:168
+#: bookwyrm/settings.py:169
+msgid "Português - Brasil (Brazilian Portuguese)"
+msgstr ""
+
+#: bookwyrm/settings.py:170
msgid "简体中文 (Simplified Chinese)"
msgstr "簡體中文"
-#: bookwyrm/settings.py:169
+#: bookwyrm/settings.py:171
msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文"
@@ -668,11 +672,6 @@ msgstr "語言:"
msgid "Search editions"
msgstr ""
-#: bookwyrm/templates/book/publisher_info.html:21
-#, python-format
-msgid "%(format)s"
-msgstr "%(format)s"
-
#: bookwyrm/templates/book/publisher_info.html:23
#, python-format
msgid "%(format)s, %(pages)s pages"
@@ -752,8 +751,10 @@ msgid "Help"
msgstr ""
#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8
-msgid "Compose status"
-msgstr "撰寫狀態"
+#, fuzzy
+#| msgid "Like status"
+msgid "Edit status"
+msgstr "喜歡狀態"
#: bookwyrm/templates/confirm_email/confirm_email.html:4
msgid "Confirm email"
@@ -885,6 +886,30 @@ msgstr "BookWyrm 使用者"
msgid "All known users"
msgstr "所有已知使用者"
+#: bookwyrm/templates/discover/card-header.html:9
+#, fuzzy, python-format
+#| msgid "replied to %(username)s 's status "
+msgid "%(username)s rated %(book_title)s "
+msgstr "回覆了 %(username)s 的 狀態 "
+
+#: bookwyrm/templates/discover/card-header.html:13
+#, fuzzy, python-format
+#| msgid "replied to %(username)s 's status "
+msgid "%(username)s reviewed %(book_title)s "
+msgstr "回覆了 %(username)s 的 狀態 "
+
+#: bookwyrm/templates/discover/card-header.html:17
+#, fuzzy, python-format
+#| msgid "replied to %(username)s 's status "
+msgid "%(username)s commented on %(book_title)s "
+msgstr "回覆了 %(username)s 的 狀態 "
+
+#: bookwyrm/templates/discover/card-header.html:21
+#, fuzzy, python-format
+#| msgid "replied to %(username)s 's status "
+msgid "%(username)s quoted %(book_title)s "
+msgstr "回覆了 %(username)s 的 狀態 "
+
#: bookwyrm/templates/discover/discover.html:4
#: bookwyrm/templates/discover/discover.html:10
#: bookwyrm/templates/layout.html:78
@@ -896,28 +921,8 @@ msgstr ""
msgid "See what's new in the local %(site_name)s community"
msgstr ""
-#: bookwyrm/templates/discover/large-book.html:46
-#: bookwyrm/templates/discover/small-book.html:32
-msgid "rated"
-msgstr "評價了"
-
-#: bookwyrm/templates/discover/large-book.html:48
-#: bookwyrm/templates/discover/small-book.html:34
-msgid "reviewed"
-msgstr "寫了書評給"
-
-#: bookwyrm/templates/discover/large-book.html:50
-#: bookwyrm/templates/discover/small-book.html:36
-msgid "commented on"
-msgstr "評論了"
-
#: bookwyrm/templates/discover/large-book.html:52
-#: bookwyrm/templates/discover/small-book.html:38
-msgid "quoted"
-msgstr "引用了"
-
-#: bookwyrm/templates/discover/large-book.html:68
-#: bookwyrm/templates/discover/small-book.html:52
+#: bookwyrm/templates/discover/small-book.html:36
msgid "View status"
msgstr ""
@@ -970,8 +975,9 @@ msgid "Join Now"
msgstr "立即加入"
#: bookwyrm/templates/email/invite/html_content.html:15
-#, python-format
-msgid "Learn more about this instance ."
+#, fuzzy, python-format
+#| msgid "Learn more about this instance ."
+msgid "Learn more about %(site_name)s ."
msgstr "瞭解更多 有關本實例的資訊 。"
#: bookwyrm/templates/email/invite/text_content.html:4
@@ -980,7 +986,9 @@ msgid "You're invited to join %(site_name)s! Click the link below to create an a
msgstr "你受邀請加入 %(site_name)s!點選下面的連結來建立帳號。"
#: bookwyrm/templates/email/invite/text_content.html:8
-msgid "Learn more about this instance:"
+#, fuzzy, python-format
+#| msgid "Learn more about this instance:"
+msgid "Learn more about %(site_name)s:"
msgstr "瞭解更多有關本實例的資訊:"
#: bookwyrm/templates/email/password_reset/html_content.html:6
@@ -1320,13 +1328,13 @@ msgstr "書目"
#: bookwyrm/templates/import/import_status.html:122
#: bookwyrm/templates/shelf/shelf.html:128
-#: bookwyrm/templates/shelf/shelf.html:148
+#: bookwyrm/templates/shelf/shelf.html:150
msgid "Title"
msgstr "標題"
#: bookwyrm/templates/import/import_status.html:125
#: bookwyrm/templates/shelf/shelf.html:129
-#: bookwyrm/templates/shelf/shelf.html:151
+#: bookwyrm/templates/shelf/shelf.html:153
msgid "Author"
msgstr "作者"
@@ -1335,7 +1343,7 @@ msgid "Imported"
msgstr "已匯入"
#: bookwyrm/templates/import/tooltip.html:6
-msgid "You can download your GoodReads data from the Import/Export page of your GoodReads account."
+msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account."
msgstr ""
#: bookwyrm/templates/invite.html:4 bookwyrm/templates/invite.html:8
@@ -1351,7 +1359,7 @@ msgstr "沒有權限"
msgid "Sorry! This invite code is no longer valid."
msgstr "抱歉!此邀請碼已不再有效。"
-#: bookwyrm/templates/landing/about.html:7
+#: bookwyrm/templates/landing/about.html:7 bookwyrm/templates/layout.html:230
#, python-format
msgid "About %(site_name)s"
msgstr "關於 %(site_name)s"
@@ -1482,10 +1490,6 @@ msgstr ""
msgid "Error posting status"
msgstr ""
-#: bookwyrm/templates/layout.html:230
-msgid "About this instance"
-msgstr "關於本實例"
-
#: bookwyrm/templates/layout.html:234
msgid "Contact site admin"
msgstr "聯絡網站管理員"
@@ -1729,23 +1733,27 @@ msgid "boosted your status "
msgstr "轉發了你的 狀態 "
#: bookwyrm/templates/notifications/items/fav.html:19
-#, python-format
-msgid "favorited your review of %(book_title)s "
+#, fuzzy, python-format
+#| msgid "favorited your review of %(book_title)s "
+msgid "liked your review of %(book_title)s "
msgstr "喜歡了你 對 %(book_title)s 的書評 "
#: bookwyrm/templates/notifications/items/fav.html:25
-#, python-format
-msgid "favorited your comment on%(book_title)s "
-msgstr ""
+#, fuzzy, python-format
+#| msgid "boosted your comment on%(book_title)s "
+msgid "liked your comment on%(book_title)s "
+msgstr "轉發了你的 對 %(book_title)s 的評論 "
#: bookwyrm/templates/notifications/items/fav.html:31
-#, python-format
-msgid "favorited your quote from %(book_title)s "
+#, fuzzy, python-format
+#| msgid "favorited your quote from %(book_title)s "
+msgid "liked your quote from %(book_title)s "
msgstr "喜歡了你 來自 %(book_title)s 的引用 "
#: bookwyrm/templates/notifications/items/fav.html:37
-#, python-format
-msgid "favorited your status "
+#, fuzzy, python-format
+#| msgid "favorited your status "
+msgid "liked your status "
msgstr "喜歡了你的 狀態 "
#: bookwyrm/templates/notifications/items/follow.html:15
@@ -2291,6 +2299,7 @@ msgid "Notes"
msgstr "備註"
#: bookwyrm/templates/settings/federation/instance.html:75
+#: bookwyrm/templates/snippets/status/status_options.html:24
msgid "Edit"
msgstr "編輯"
@@ -2630,7 +2639,7 @@ msgid "Short description:"
msgstr ""
#: bookwyrm/templates/settings/site.html:37
-msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support html or markdown."
+msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown."
msgstr ""
#: bookwyrm/templates/settings/site.html:41
@@ -2805,7 +2814,7 @@ msgid "Permanently deleted"
msgstr ""
#: bookwyrm/templates/settings/users/user_moderation_actions.html:13
-#: bookwyrm/templates/snippets/status/status_options.html:35
+#: bookwyrm/templates/snippets/status/status_options.html:32
#: bookwyrm/templates/snippets/user_options.html:13
msgid "Send direct message"
msgstr "發送私信"
@@ -2857,22 +2866,22 @@ msgstr "編輯書架"
msgid "Delete shelf"
msgstr "刪除書架"
-#: bookwyrm/templates/shelf/shelf.html:130
-#: bookwyrm/templates/shelf/shelf.html:154
+#: bookwyrm/templates/shelf/shelf.html:132
+#: bookwyrm/templates/shelf/shelf.html:158
msgid "Shelved"
msgstr "上架時間"
-#: bookwyrm/templates/shelf/shelf.html:131
-#: bookwyrm/templates/shelf/shelf.html:158
+#: bookwyrm/templates/shelf/shelf.html:133
+#: bookwyrm/templates/shelf/shelf.html:161
msgid "Started"
msgstr "開始時間"
-#: bookwyrm/templates/shelf/shelf.html:132
-#: bookwyrm/templates/shelf/shelf.html:161
+#: bookwyrm/templates/shelf/shelf.html:134
+#: bookwyrm/templates/shelf/shelf.html:164
msgid "Finished"
msgstr "完成時間"
-#: bookwyrm/templates/shelf/shelf.html:187
+#: bookwyrm/templates/shelf/shelf.html:190
msgid "This shelf is empty."
msgstr "此書架是空的。"
@@ -2918,22 +2927,22 @@ msgstr "引用"
msgid "Some thoughts on the book"
msgstr ""
-#: bookwyrm/templates/snippets/create_status/comment.html:26
+#: bookwyrm/templates/snippets/create_status/comment.html:27
#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:15
msgid "Progress:"
msgstr "進度:"
-#: bookwyrm/templates/snippets/create_status/comment.html:52
+#: bookwyrm/templates/snippets/create_status/comment.html:53
#: bookwyrm/templates/snippets/progress_field.html:18
msgid "pages"
msgstr "頁數"
-#: bookwyrm/templates/snippets/create_status/comment.html:58
+#: bookwyrm/templates/snippets/create_status/comment.html:59
#: bookwyrm/templates/snippets/progress_field.html:23
msgid "percent"
msgstr "百分比"
-#: bookwyrm/templates/snippets/create_status/comment.html:65
+#: bookwyrm/templates/snippets/create_status/comment.html:66
#, python-format
msgid "of %(pages)s pages"
msgstr "全書 %(pages)s 頁"
@@ -2961,7 +2970,7 @@ msgstr "前有劇透!"
msgid "Include spoiler alert"
msgstr "加入劇透警告"
-#: bookwyrm/templates/snippets/create_status/layout.html:41
+#: bookwyrm/templates/snippets/create_status/layout.html:48
#: bookwyrm/templates/snippets/reading_modals/form.html:7
msgid "Comment:"
msgstr "評論:"
@@ -3150,12 +3159,12 @@ msgstr "你已經閱讀了 %(goal_count)s 本書中的 %(re
msgid "%(username)s has read %(read_count)s of %(goal_count)s books ."
msgstr "%(username)s 已經閱讀了 %(goal_count)s 本書中的 %(read_count)s 本 。"
-#: bookwyrm/templates/snippets/page_text.html:4
+#: bookwyrm/templates/snippets/page_text.html:8
#, python-format
msgid "page %(page)s of %(total_pages)s"
msgstr "%(total_pages)s 頁中的第 %(page)s 頁"
-#: bookwyrm/templates/snippets/page_text.html:6
+#: bookwyrm/templates/snippets/page_text.html:14
#, python-format
msgid "page %(page)s"
msgstr "第 %(page)s 頁"
@@ -3316,6 +3325,12 @@ msgstr "在新視窗中開啟圖片"
msgid "Hide status"
msgstr ""
+#: bookwyrm/templates/snippets/status/header.html:45
+#, fuzzy, python-format
+#| msgid "Joined %(date)s"
+msgid "edited %(date)s"
+msgstr "在 %(date)s 加入"
+
#: bookwyrm/templates/snippets/status/headers/comment.html:2
#, python-format
msgid "commented on %(book)s "
@@ -3380,10 +3395,6 @@ msgstr "轉發了"
msgid "More options"
msgstr "更多選項"
-#: bookwyrm/templates/snippets/status/status_options.html:26
-msgid "Delete & re-draft"
-msgstr "刪除並重新起草"
-
#: bookwyrm/templates/snippets/suggested_users.html:16
#, python-format
msgid "%(mutuals)s follower you follow"
@@ -3568,3 +3579,26 @@ msgstr "密碼重置連結已傳送給 {email}"
msgid "Status updates from {obj.display_name}"
msgstr ""
+#~ msgid "Compose status"
+#~ msgstr "撰寫狀態"
+
+#~ msgid "%(format)s"
+#~ msgstr "%(format)s"
+
+#~ msgid "rated"
+#~ msgstr "評價了"
+
+#~ msgid "reviewed"
+#~ msgstr "寫了書評給"
+
+#~ msgid "commented on"
+#~ msgstr "評論了"
+
+#~ msgid "quoted"
+#~ msgstr "引用了"
+
+#~ msgid "About this instance"
+#~ msgstr "關於本實例"
+
+#~ msgid "Delete & re-draft"
+#~ msgstr "刪除並重新起草"