From 6d1d62cf2f388040fd618cacdcf30a79059a18b5 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 25 Feb 2022 11:50:25 -0800 Subject: [PATCH 01/85] View for starting to edit a book with existing data --- bookwyrm/views/books/edit_book.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/bookwyrm/views/books/edit_book.py b/bookwyrm/views/books/edit_book.py index 755c25b4c..0b81acf8f 100644 --- a/bookwyrm/views/books/edit_book.py +++ b/bookwyrm/views/books/edit_book.py @@ -9,6 +9,7 @@ from django.shortcuts import get_object_or_404, redirect from django.template.response import TemplateResponse from django.utils.datastructures import MultiValueDictKeyError from django.utils.decorators import method_decorator +from django.views.decorators.http import require_POST from django.views import View from bookwyrm import book_search, forms, models @@ -145,6 +146,15 @@ class EditBook(View): return redirect(f"/book/{book.id}") +@require_POST +@permission_required("bookwyrm.edit_book", raise_exception=True) +def create_book_from_data(request): + """create a book with starter data""" + data = {"form": forms.EditionForm(request.POST)} + return TemplateResponse(request, "book/edit/edit_book.html", data) + + + @method_decorator(login_required, name="dispatch") @method_decorator( permission_required("bookwyrm.edit_book", raise_exception=True), name="dispatch" From 1d99e455e83caac8804ff0a809d0002816b982b7 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 25 Feb 2022 16:40:21 -0800 Subject: [PATCH 02/85] Adds link to add edition to editions page --- .../templates/book/editions/editions.html | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/bookwyrm/templates/book/editions/editions.html b/bookwyrm/templates/book/editions/editions.html index a3ff08022..5d674d47d 100644 --- a/bookwyrm/templates/book/editions/editions.html +++ b/bookwyrm/templates/book/editions/editions.html @@ -46,7 +46,25 @@ {% endfor %} -
+
{% include 'snippets/pagination.html' with page=editions path=request.path %}
+ +
+

+ {% trans "Can't find the edition you're looking for?" %} +

+ +
+ {% csrf_token %} + {{ work_form }} + +
+ +
+
+
+ {% endblock %} From c67f92af465fc12473bc9becbe3a4520c2efd346 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 25 Feb 2022 16:40:34 -0800 Subject: [PATCH 03/85] Add editions view --- bookwyrm/forms.py | 27 ++- bookwyrm/templates/book/edit/edit_book.html | 16 +- .../templates/book/edit/edit_book_form.html | 5 + bookwyrm/urls.py | 3 +- bookwyrm/views/__init__.py | 2 +- bookwyrm/views/books/edit_book.py | 217 ++++++++++++------ bookwyrm/views/books/editions.py | 3 +- 7 files changed, 196 insertions(+), 77 deletions(-) diff --git a/bookwyrm/forms.py b/bookwyrm/forms.py index 7ae4e446f..9e6941569 100644 --- a/bookwyrm/forms.py +++ b/bookwyrm/forms.py @@ -264,17 +264,40 @@ class FileLinkForm(CustomForm): ) +class EditionFromWorkForm(CustomForm): + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + # make all fields hidden + for visible in self.visible_fields(): + visible.field.widget = forms.HiddenInput() + + class Meta: + model = models.Work + fields = [ + "title", + "subtitle", + "authors", + "description", + "languages", + "series", + "series_number", + "subjects", + "subject_places", + "cover", + "first_published_date", + ] + class EditionForm(CustomForm): class Meta: model = models.Edition exclude = [ + "authors", + "parent_work", "remote_id", "origin_id", "created_date", "updated_date", "edition_rank", - "authors", - "parent_work", "shelves", "connector", "search_vector", diff --git a/bookwyrm/templates/book/edit/edit_book.html b/bookwyrm/templates/book/edit/edit_book.html index 3d41058e3..79ed1cc0d 100644 --- a/bookwyrm/templates/book/edit/edit_book.html +++ b/bookwyrm/templates/book/edit/edit_book.html @@ -3,18 +3,24 @@ {% load humanize %} {% load utilities %} -{% block title %}{% if book %}{% blocktrans with book_title=book.title %}Edit "{{ book_title }}"{% endblocktrans %}{% else %}{% trans "Add Book" %}{% endif %}{% endblock %} +{% block title %} + {% if book.title %} + {% blocktrans with book_title=book.title %}Edit "{{ book_title }}"{% endblocktrans %} + {% else %} + {% trans "Add Book" %} + {% endif %} +{% endblock %} {% block content %}

- {% if book %} + {% if book.title %} {% blocktrans with book_title=book.title %}Edit "{{ book_title }}"{% endblocktrans %} {% else %} {% trans "Add Book" %} {% endif %}

- {% if book %} + {% if book.created_date %}
{% trans "Added:" %}
{{ book.created_date | naturaltime }}
@@ -33,7 +39,7 @@
- {% if book %} + {% if book.id %} {% trans "Cancel" %} {% else %} diff --git a/bookwyrm/templates/book/edit/edit_book_form.html b/bookwyrm/templates/book/edit/edit_book_form.html index fd2516a66..e2d7121ff 100644 --- a/bookwyrm/templates/book/edit/edit_book_form.html +++ b/bookwyrm/templates/book/edit/edit_book_form.html @@ -9,6 +9,8 @@ {% csrf_token %} + +
@@ -123,8 +125,11 @@
{% if book.authors.exists %} + {# preserve authors if the book is unsaved #} + {{ form.authors.as_hidden }}
{% for author in book.authors.all %} + {{ form.authors.as_hidden }}
-
+
-
- -
+
+ +
{% endfor %} -
From 26f0501e2f756fd475bee5081c881527b88af0ff Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 17 Mar 2022 07:40:55 -0700 Subject: [PATCH 29/85] SHow editions link on all book pages --- bookwyrm/templates/book/book.html | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/bookwyrm/templates/book/book.html b/bookwyrm/templates/book/book.html index fa098281e..453480f99 100644 --- a/bookwyrm/templates/book/book.html +++ b/bookwyrm/templates/book/book.html @@ -208,9 +208,17 @@ {% endif %} - {% if book.parent_work.editions.count > 1 %} -

{% blocktrans with path=book.parent_work.local_path count=book.parent_work.editions.count %}{{ count }} editions{% endblocktrans %}

- {% endif %} + {% with work=book.parent_work %} +

+ + {% blocktrans trimmed count counter=work.editions.count with count=work.editions.count|intcomma %} + {{ count }} edition + {% plural %} + {{ count }} editions + {% endblocktrans %} + +

+ {% endwith %}
{# user's relationship to the book #} From a684d86d15f5f1715ab49d6f9228ada016aaaf40 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 17 Mar 2022 08:02:59 -0700 Subject: [PATCH 30/85] Fixes subjects in add edition view --- bookwyrm/forms/books.py | 1 - bookwyrm/templates/book/editions/editions.html | 13 ++++++++++++- bookwyrm/views/books/edit_book.py | 1 + 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/bookwyrm/forms/books.py b/bookwyrm/forms/books.py index 20f307fae..d96ad067c 100644 --- a/bookwyrm/forms/books.py +++ b/bookwyrm/forms/books.py @@ -86,7 +86,6 @@ class EditionForm(CustomForm): "ASIN": forms.TextInput(attrs={"aria-describedby": "desc_ASIN"}), } - class EditionFromWorkForm(CustomForm): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) diff --git a/bookwyrm/templates/book/editions/editions.html b/bookwyrm/templates/book/editions/editions.html index 5d674d47d..e15e7a74d 100644 --- a/bookwyrm/templates/book/editions/editions.html +++ b/bookwyrm/templates/book/editions/editions.html @@ -57,7 +57,18 @@
{% csrf_token %} - {{ work_form }} + {{ work_form.title }} + {{ work_form.subtitle }} + {{ work_form.authors }} + {{ work_form.description }} + {{ work_form.languages }} + {{ work_form.series }} + {{ work_form.cover }} + {{ work_form.first_published_date }} + {% for subject in work.subjects %} + + {% endfor %} +
diff --git a/bookwyrm/templates/widgets/addon_multiwidget.html b/bookwyrm/templates/widgets/addon_multiwidget.html new file mode 100644 index 000000000..5c8616b88 --- /dev/null +++ b/bookwyrm/templates/widgets/addon_multiwidget.html @@ -0,0 +1,9 @@ +{% spaceless %} +
+{% for widget in widget.subwidgets %} +
+ {% include widget.template_name %} +
+{% endfor %} +
+{% endspaceless %} diff --git a/bookwyrm/templates/widgets/select.html b/bookwyrm/templates/widgets/select.html new file mode 100644 index 000000000..eb59ebd33 --- /dev/null +++ b/bookwyrm/templates/widgets/select.html @@ -0,0 +1,10 @@ +
+ +
diff --git a/bookwyrm/views/books/edit_book.py b/bookwyrm/views/books/edit_book.py index 40cc44cab..2315cfce2 100644 --- a/bookwyrm/views/books/edit_book.py +++ b/bookwyrm/views/books/edit_book.py @@ -1,13 +1,11 @@ """ the good stuff! the books! """ from re import sub, findall -from dateutil.parser import parse as dateparse from django.contrib.auth.decorators import login_required, permission_required from django.contrib.postgres.search import SearchRank, SearchVector from django.db import transaction from django.http import HttpResponseBadRequest from django.shortcuts import get_object_or_404, redirect from django.template.response import TemplateResponse -from django.utils.datastructures import MultiValueDictKeyError from django.utils.decorators import method_decorator from django.views.decorators.http import require_POST from django.views import View @@ -52,7 +50,6 @@ class EditBook(View): # either of the above cases requires additional confirmation if data.get("add_author"): - data = copy_form(data) return TemplateResponse(request, "book/edit/edit_book.html", data) remove_authors = request.POST.getlist("remove_authors") @@ -118,7 +115,6 @@ class CreateBook(View): # go to confirm mode if not parent_work_id or data.get("add_author"): - data = copy_form(data) return TemplateResponse(request, "book/edit/edit_book.html", data) with transaction.atomic(): @@ -139,21 +135,6 @@ class CreateBook(View): return redirect(f"/book/{book.id}") -def copy_form(data): - """helper to re-create the date fields in the form""" - formcopy = data["form"].data.copy() - try: - formcopy["first_published_date"] = dateparse(formcopy["first_published_date"]) - except (MultiValueDictKeyError, ValueError): - pass - try: - formcopy["published_date"] = dateparse(formcopy["published_date"]) - except (MultiValueDictKeyError, ValueError): - pass - data["form"].data = formcopy - return data - - def add_authors(request, data): """helper for adding authors""" add_author = [author for author in request.POST.getlist("add_author") if author] From dc9f8fccb7bc92704f1231bce92f85aabf2434f3 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 19 Mar 2022 08:48:10 -0700 Subject: [PATCH 40/85] Adds widgets file --- bookwyrm/forms/widgets.py | 70 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 bookwyrm/forms/widgets.py diff --git a/bookwyrm/forms/widgets.py b/bookwyrm/forms/widgets.py new file mode 100644 index 000000000..ee9345aa0 --- /dev/null +++ b/bookwyrm/forms/widgets.py @@ -0,0 +1,70 @@ +""" using django model forms """ +from django import forms + + +class ArrayWidget(forms.widgets.TextInput): + """Inputs for postgres array fields""" + + # pylint: disable=unused-argument + # pylint: disable=no-self-use + def value_from_datadict(self, data, files, name): + """get all values for this name""" + return [i for i in data.getlist(name) if i] + + +class Select(forms.Select): + """custom template for select widget""" + + template_name = "widgets/select.html" + + +class SelectDateWidget(forms.SelectDateWidget): + """ + A widget that splits date input into two boxes and a numerical year. + """ + + template_name = "widgets/addon_multiwidget.html" + select_widget = Select + + def get_context(self, name, value, attrs): + """sets individual widgets""" + context = super().get_context(name, value, attrs) + date_context = {} + year_name = self.year_field % name + date_context["year"] = forms.NumberInput().get_context( + name=year_name, + value=context["widget"]["value"]["year"], + attrs={ + **context["widget"]["attrs"], + "id": f"id_{year_name}", + "class": "input", + }, + ) + month_choices = list(self.months.items()) + if not self.is_required: + month_choices.insert(0, self.month_none_value) + month_name = self.month_field % name + date_context["month"] = self.select_widget( + attrs, choices=month_choices + ).get_context( + name=month_name, + value=context["widget"]["value"]["month"], + attrs={**context["widget"]["attrs"], "id": f"id_{month_name}"}, + ) + day_choices = [(i, i) for i in range(1, 32)] + if not self.is_required: + day_choices.insert(0, self.day_none_value) + day_name = self.day_field % name + date_context["day"] = self.select_widget( + attrs, + choices=day_choices, + ).get_context( + name=day_name, + value=context["widget"]["value"]["day"], + attrs={**context["widget"]["attrs"], "id": f"id_{day_name}"}, + ) + subwidgets = [] + for field in self._parse_date_fmt(): + subwidgets.append(date_context[field]["widget"]) + context["widget"]["subwidgets"] = subwidgets + return context From 1cfe3b3f941f557adadeb99146e7c7fecf08d5b0 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 19 Mar 2022 09:09:25 -0700 Subject: [PATCH 44/85] Re-orders site settings registration toggles Having require email confirm next to allow registration seems better to me --- bookwyrm/templates/settings/site.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/bookwyrm/templates/settings/site.html b/bookwyrm/templates/settings/site.html index d55514b55..4fd147834 100644 --- a/bookwyrm/templates/settings/site.html +++ b/bookwyrm/templates/settings/site.html @@ -139,6 +139,13 @@ {% trans "Allow registration" %}
+
+ +

{% trans "(Recommended if registration is open)" %}

+
-
- -

{% trans "(Recommended if registration is open)" %}

-
{{ site_form.registration_closed_text }} @@ -171,7 +171,7 @@
{{ site_form.invite_request_text }} - + {% include 'snippets/form_errors.html' with errors_list=site_form.invite_request_text.errors id="desc_invite_request_text" %}
From 7f6a98e764eedb8e1781b755f1aa05192cc053ca Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 19 Mar 2022 09:11:59 -0700 Subject: [PATCH 45/85] Don't let site settings form get too wide --- bookwyrm/templates/settings/layout.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/templates/settings/layout.html b/bookwyrm/templates/settings/layout.html index d76c954dc..862de9585 100644 --- a/bookwyrm/templates/settings/layout.html +++ b/bookwyrm/templates/settings/layout.html @@ -93,7 +93,7 @@ {% endif %} -
+
{% block panel %}{% endblock %}
From f0a87e2a2069557cb6a6f1990eadfed557775db6 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 19 Mar 2022 09:13:08 -0700 Subject: [PATCH 46/85] Use fullwidth tables in admin views --- bookwyrm/templates/settings/announcements/announcements.html | 2 +- bookwyrm/templates/settings/automod/rules.html | 2 +- bookwyrm/templates/settings/federation/instance_list.html | 2 +- bookwyrm/templates/settings/themes.html | 2 +- bookwyrm/templates/settings/users/user_admin.html | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bookwyrm/templates/settings/announcements/announcements.html b/bookwyrm/templates/settings/announcements/announcements.html index 6299ba3d9..784fef166 100644 --- a/bookwyrm/templates/settings/announcements/announcements.html +++ b/bookwyrm/templates/settings/announcements/announcements.html @@ -14,7 +14,7 @@ {% block panel %}
- +
{% url 'settings-announcements' as url %} diff --git a/bookwyrm/templates/settings/automod/rules.html b/bookwyrm/templates/settings/automod/rules.html index ef0a49beb..128ff20b7 100644 --- a/bookwyrm/templates/settings/automod/rules.html +++ b/bookwyrm/templates/settings/automod/rules.html @@ -154,7 +154,7 @@
- +
diff --git a/bookwyrm/templates/settings/federation/instance_list.html b/bookwyrm/templates/settings/federation/instance_list.html index 5cbec8761..89c50e5e6 100644 --- a/bookwyrm/templates/settings/federation/instance_list.html +++ b/bookwyrm/templates/settings/federation/instance_list.html @@ -25,7 +25,7 @@ - +
{% url 'settings-federation' as url %}
diff --git a/bookwyrm/templates/settings/themes.html b/bookwyrm/templates/settings/themes.html index 3d4d83dec..afa3f0be4 100644 --- a/bookwyrm/templates/settings/themes.html +++ b/bookwyrm/templates/settings/themes.html @@ -88,7 +88,7 @@

{% trans "Available Themes" %}

- +
{% trans "Theme name" %} diff --git a/bookwyrm/templates/settings/users/user_admin.html b/bookwyrm/templates/settings/users/user_admin.html index e3de77938..fdd9fb7df 100644 --- a/bookwyrm/templates/settings/users/user_admin.html +++ b/bookwyrm/templates/settings/users/user_admin.html @@ -33,7 +33,7 @@
- +
{% url 'settings-users' as url %} {% for user in users %} - + - + {% if status != "local" %} - {% for server in servers %} - + + - {% endfor %} {% if not servers %} diff --git a/bookwyrm/templates/settings/federation/software_filter.html b/bookwyrm/templates/settings/federation/software_filter.html new file mode 100644 index 000000000..5a4575ec4 --- /dev/null +++ b/bookwyrm/templates/settings/federation/software_filter.html @@ -0,0 +1,19 @@ +{% extends 'snippets/filters_panel/filter_field.html' %} +{% load i18n %} + +{% block filter %} + +
+
+ +
+
+{% endblock %} + diff --git a/bookwyrm/tests/management/test_initdb.py b/bookwyrm/tests/management/test_initdb.py index e0a037160..a00c6d674 100644 --- a/bookwyrm/tests/management/test_initdb.py +++ b/bookwyrm/tests/management/test_initdb.py @@ -90,7 +90,6 @@ class InitDB(TestCase): self.assertEqual(Group.objects.count(), 3) self.assertTrue(Permission.objects.exists()) self.assertEqual(models.Connector.objects.count(), 3) - self.assertEqual(models.FederatedServer.objects.count(), 2) self.assertEqual(models.SiteSettings.objects.count(), 1) self.assertEqual(models.LinkDomain.objects.count(), 5) @@ -102,7 +101,6 @@ class InitDB(TestCase): # everything should have been called self.assertEqual(Group.objects.count(), 3) self.assertEqual(models.Connector.objects.count(), 0) - self.assertEqual(models.FederatedServer.objects.count(), 0) self.assertEqual(models.SiteSettings.objects.count(), 0) self.assertEqual(models.LinkDomain.objects.count(), 0) diff --git a/bookwyrm/views/admin/federation.py b/bookwyrm/views/admin/federation.py index d95553491..cb05b779e 100644 --- a/bookwyrm/views/admin/federation.py +++ b/bookwyrm/views/admin/federation.py @@ -25,14 +25,23 @@ class Federation(View): def get(self, request, status="federated"): """list of servers""" - servers = models.FederatedServer.objects.filter(status=status) + + filters = {} + if software := request.GET.get("application_type"): + filters["application_type"] = software + + servers = models.FederatedServer.objects.filter(status=status, **filters) sort = request.GET.get("sort") - sort_fields = ["created_date", "application_type", "server_name"] - # pylint: disable=consider-using-f-string - if not sort in sort_fields + ["-{:s}".format(f) for f in sort_fields]: + sort_fields = [ + "created_date", + "updated_date", + "application_type", + "server_name", + ] + if not sort in sort_fields + [f"-{f}" for f in sort_fields]: sort = "-created_date" - servers = servers.order_by(sort) + servers = servers.order_by(sort, "-created_date") paginated = Paginator(servers, PAGE_LENGTH) page = paginated.get_page(request.GET.get("page")) @@ -49,6 +58,9 @@ class Federation(View): page.number, on_each_side=2, on_ends=1 ), "sort": sort, + "software_options": models.FederatedServer.objects.values_list( + "application_type", flat=True + ).distinct(), "form": forms.ServerForm(), } return TemplateResponse(request, "settings/federation/instance_list.html", data) From b718e01a5c0bff9b4e597614be5661bd0af51433 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Mon, 4 Apr 2022 15:17:18 -0700 Subject: [PATCH 75/85] Adds zsh-specific completions file --- complete_bwdev.sh | 3 --- complete_bwdev.zsh | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 3 deletions(-) create mode 100644 complete_bwdev.zsh diff --git a/complete_bwdev.sh b/complete_bwdev.sh index 6f3253821..5dd025673 100644 --- a/complete_bwdev.sh +++ b/complete_bwdev.sh @@ -1,7 +1,4 @@ #/usr/bin/env bash -# for zsh, run: -# autoload bashcompinit -# bashcompinit complete -W "up service_ports_web initdb diff --git a/complete_bwdev.zsh b/complete_bwdev.zsh new file mode 100644 index 000000000..5f7695ee1 --- /dev/null +++ b/complete_bwdev.zsh @@ -0,0 +1,36 @@ +#/usr/bin/env bash +autoload bashcompinit +bashcompinit +complete -W "up +service_ports_web +initdb +resetdb +makemigrations +migrate +bash +shell +dbshell +restart_celery +pytest +collectstatic +makemessages +compilemessages +update_locales +build +clean +black +prettier +stylelint +formatters +compilescss +collectstatic_watch +populate_streams +populate_lists_streams +populate_suggestions +generate_thumbnails +generate_preview_images +copy_media_to_s3 +set_cors_to_s3 +setup +admin_code +runweb" -o bashdefault -o default bw-dev From bada50cee9b48d23e8b89b0a43dd00336c743d60 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Mon, 4 Apr 2022 15:20:15 -0700 Subject: [PATCH 76/85] Updates locales --- locale/de_DE/LC_MESSAGES/django.mo | Bin 30883 -> 89719 bytes locale/en_US/LC_MESSAGES/django.po | 42 ++++++++++++++++----------- locale/es_ES/LC_MESSAGES/django.mo | Bin 82804 -> 83245 bytes locale/es_ES/LC_MESSAGES/django.po | 4 +-- locale/fi_FI/LC_MESSAGES/django.mo | Bin 92420 -> 92420 bytes locale/fi_FI/LC_MESSAGES/django.po | 2 +- locale/fr_FR/LC_MESSAGES/django.mo | Bin 44850 -> 96177 bytes locale/lt_LT/LC_MESSAGES/django.mo | Bin 83947 -> 84356 bytes locale/lt_LT/LC_MESSAGES/django.po | 4 +-- locale/no_NO/LC_MESSAGES/django.mo | Bin 78958 -> 79362 bytes locale/no_NO/LC_MESSAGES/django.po | 4 +-- locale/ro_RO/LC_MESSAGES/django.mo | Bin 67321 -> 67727 bytes locale/ro_RO/LC_MESSAGES/django.po | 4 +-- locale/zh_Hans/LC_MESSAGES/django.mo | Bin 44096 -> 86751 bytes locale/zh_Hant/LC_MESSAGES/django.mo | Bin 38839 -> 36001 bytes 15 files changed, 34 insertions(+), 26 deletions(-) diff --git a/locale/de_DE/LC_MESSAGES/django.mo b/locale/de_DE/LC_MESSAGES/django.mo index 4ce83f72b3f3850c58528f13afcd23442a75a515..eff8ec81b09cd922d66b7c11dbd91813495c4634 100644 GIT binary patch literal 89719 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

2#Iv*YgZ-I(uy~ll@uQyDgp8*epw?n08 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 literal 30883 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\n" "Language-Team: English \n" @@ -166,14 +166,14 @@ msgstr "" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "" @@ -301,38 +301,42 @@ msgid "Italiano (Italian)" msgstr "" #: bookwyrm/settings.py:287 -msgid "Français (French)" +msgid "Suomi (Finnish)" msgstr "" #: bookwyrm/settings.py:288 -msgid "Lietuvių (Lithuanian)" +msgid "Français (French)" msgstr "" #: bookwyrm/settings.py:289 -msgid "Norsk (Norwegian)" +msgid "Lietuvių (Lithuanian)" msgstr "" #: bookwyrm/settings.py:290 -msgid "Português do Brasil (Brazilian Portuguese)" +msgid "Norsk (Norwegian)" msgstr "" #: bookwyrm/settings.py:291 -msgid "Português Europeu (European Portuguese)" +msgid "Português do Brasil (Brazilian Portuguese)" msgstr "" #: bookwyrm/settings.py:292 -msgid "Română (Romanian)" +msgid "Português Europeu (European Portuguese)" msgstr "" #: bookwyrm/settings.py:293 -msgid "Svenska (Swedish)" +msgid "Română (Romanian)" msgstr "" #: bookwyrm/settings.py:294 -msgid "简体中文 (Simplified Chinese)" +msgid "Svenska (Swedish)" msgstr "" #: bookwyrm/settings.py:295 +msgid "简体中文 (Simplified Chinese)" +msgstr "" + +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "" @@ -1196,7 +1200,6 @@ msgstr "" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -3146,7 +3149,7 @@ msgstr "" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3213,7 +3216,7 @@ msgid "Create Announcement" msgstr "" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "" @@ -3608,16 +3611,21 @@ msgstr "" msgid "Failed:" msgstr "" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "" diff --git a/locale/es_ES/LC_MESSAGES/django.mo b/locale/es_ES/LC_MESSAGES/django.mo index 18e61efbfbb2059705c2e132b8af94b2b278f1b5..8260851e8035db6de4e2ba6986d1996af0f08f0d 100644 GIT binary patch delta 21440 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 delta 21057 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

  • FPq*> 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 I95LYk0J?\n" "Language-Team: Spanish\n" "Language: es\n" @@ -397,7 +397,7 @@ msgstr "Conoce a tus administradores" #: bookwyrm/templates/about/about.html:101 #, python-format msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." -msgstr "" +msgstr "Los moderadores y administradores de %(site_name)s mantienen el sitio en funcionamiento, hacen cumplir el código de conducta y responden cuando los usuarios informan de spam y mal comportamiento." #: bookwyrm/templates/about/about.html:115 msgid "Moderator" diff --git a/locale/fi_FI/LC_MESSAGES/django.mo b/locale/fi_FI/LC_MESSAGES/django.mo index c2e368b1b5321f96e563de5c506da1f61c74fabb..fbde7d10bf1beb48a684ba093a3b8c77bb2a1dfa 100644 GIT binary patch delta 22 ecmZp<#M*L+b;H{m?1l=4rdB2fo4?!;m;eBARSBm6 delta 22 ecmZp<#M*L+b;H{m>;?*kmR81wo4?!;m;eBAYze9W diff --git a/locale/fi_FI/LC_MESSAGES/django.po b/locale/fi_FI/LC_MESSAGES/django.po index a7487574e..6504dc608 100644 --- a/locale/fi_FI/LC_MESSAGES/django.po +++ b/locale/fi_FI/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-30 19:31\n" +"PO-Revision-Date: 2022-03-31 15:40\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Finnish\n" "Language: fi\n" diff --git a/locale/fr_FR/LC_MESSAGES/django.mo b/locale/fr_FR/LC_MESSAGES/django.mo index 4cdcbf8ea2a3ffdeed740317a055f435e5954b7c..6a95660335ffa408c9dece2000ef77ace9af012f 100644 GIT binary patch literal 96177 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\n" "Language-Team: Lithuanian\n" "Language: lt\n" @@ -397,7 +397,7 @@ msgstr "Šio serverio administratoriai" #: bookwyrm/templates/about/about.html:101 #, python-format msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." -msgstr "" +msgstr "Svetainės %(site_name)s moderatoriai ir administratoriai nuolat atnaujina puslapį, laikosi elgsenos susitarimo ir atsako, kai naudotojai praneša apie brukalą ir blogą elgesį." #: bookwyrm/templates/about/about.html:115 msgid "Moderator" diff --git a/locale/no_NO/LC_MESSAGES/django.mo b/locale/no_NO/LC_MESSAGES/django.mo index 46ee1b457c1d4c596b815f3cd4c95039366cc07e..3454c0de3b9c30726d69ca91a51e1519b124f535 100644 GIT binary patch delta 21386 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 RgSo_HhmpRDu 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 Z`10`yn=kEY6Fg&Ds{)$~9KGE8e*j{2`?ml9 diff --git a/locale/no_NO/LC_MESSAGES/django.po b/locale/no_NO/LC_MESSAGES/django.po index 01ab3d422..f2094c48f 100644 --- a/locale/no_NO/LC_MESSAGES/django.po +++ b/locale/no_NO/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-26 22:29\n" +"PO-Revision-Date: 2022-03-31 15:40\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Norwegian\n" "Language: no\n" @@ -397,7 +397,7 @@ msgstr "Møt administratorene" #: bookwyrm/templates/about/about.html:101 #, python-format msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." -msgstr "" +msgstr "%(site_name)s sine moderatorer og administratorer holder nettsida oppe og tilgjengelig, håndhever adferdskoden, og svarer på brukernes rapporterer om spam og dårlig atferd." #: bookwyrm/templates/about/about.html:115 msgid "Moderator" diff --git a/locale/ro_RO/LC_MESSAGES/django.mo b/locale/ro_RO/LC_MESSAGES/django.mo index 91764f8c8cc2a4adc55668017b2bfa69756c34ee..64649bd65f58ed5ceead9a0841c9defcc043b742 100644 GIT binary patch delta 17216 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%0A|OFxEZ}qIL>a|hFZyi zC(V+NN5wNSo!=w38pTlJ!u}^}vGk@BB@&J+DDVwm~gnf6R$XP!C>2z1RPuW|ZKZF+1iVu86sD zFlu0bU|~Fhff)O|c|HjBdgsIlEP9^x*HU$&AQDGl0B%IB#1Yhtu3$X8iE7{}>izwI zI;>wY5&B->OA98)GB^iS?+)tuhp2jQFbVoxWc`zpNq*5h5Qa60yP}qEH>!h^s4cpP z+L~MT{$or|`~kHEi7%NMhg(ac-lBS_52mK53A?D3o~}#|G6zsIe}fvK-(}NbO4I-| zq7GwTEQobb4Ue-h)S=%h#f2z6q1zUJS)csKe+wS4;<~Q4Qoko#K3`4$4?7 z+wxkNg7RprfPGQV?ZI+*1T}%gSIrU!qb3$*<8r9>8z2L7owj7Oq%ro!0MwF>M$LR4 zYUJxtGdqGs@f_yGq}R;ZsetOZFY54)LT%X=OoRJSOMVkmV*KkG0Q(<8MyEU%X2zPR z0rW=AbgXqT<|5vK8psROz(1lo_P$|e8ek1Y-7k!qKp7i1LLKT>==uGB2QsB8=xr-( z#USE+s4cjG>fjz~U~f@N8vk$8K`?5jVW?A`+gcX&n$<^5WCZH@*_ahKpsUyHI+=p_ z9Mw_Qn`Y??pgO9I8c=i8O!}i{HUZVpbX2{)r~zLV}LJe#e>iM&%6}XR8 z@yl)3bXfV0ei_8!K{dP{HL&Z}XP90Opq4o8U1KDw;gYDC*FkmA7_}ua_WnTBz{jIj zZjHUa*(IYT+G7ijqh|?GOLZM}dVTMiQ=19Za1qp&l|wD{5LCkxZ9D_j?n+y}37Zn{ zLJc_WeX|8_PBQAK0A|7#SO7<$-qW2}1drn*jQha6ey_0vaju8vXFv=F6E8)zci6@+ z(U&+W57)+2*c`iHl-~cp$b?d$e?8n4vZ9u1Dz3*(sQ0zw6LUs}V*}#3sDZx637G4t znZRDu51soM8$Y22;PuR`kRR$WC&AS8?}U>%>cyv-tq}0SEO8o)reYTK#*yfQzo0)( zKrQ`D)RL}3eU$G)P2jmT!9V6Kg`>_;5sZsX(2xF|wq(>mH`If}usF`gcz6rr<1^IZ z`iPuEC&^2*MQ<^h*!z`vzBTHQ4o7Xp6x3U=6V=`sRKGW*mZI5f^Fh%MwRB5S1KDo9 zirRvYsQLkK%vR*Uw8WKAhqOKF^I-%g#hK`bYcK>iqXuvtHK9ju?EC+Yf{YaSzBLuX za58aT48WtPCA)#i@F8k%zhZ9mdB<{M0Sv<_SQdAoUhCNZ^0AF2ur+?g7;N>PbIg2<{QsQ%um5(jD<-YFVD~QKvY9%PmQhb#JUfdenlXQ&ze;Opi24mc8Z z=zc?;;#HUh&mbQgo-4bSjO#rGuTd+hYb@y$Da2M>YwPJ=4VBTqlgZx9%FPYrcVjRf z;9foZz+7uO%68iNWLYiqG3-a#YT_9xHBqrdTI0w?y=?F$u}iGg7gddH@JeNb90(l*EZ5L@((EI zay|cXDTabk6qLm^l#U?f(QU4trlKD-Bi7S$OH!#Q(@tI-WPx&{S zFKD0JK>Qo|L0+s&HGA_rEy?8Iq30xBCk+4lvpG3FKb(rTu`jro_$t=pnelj?m``cv z3i-|W{rW(>m*8*e>Hl#P;F1|Zp{`Hlbz=W}?W6233L;RK-u+#qvc#)+E}JdCtUTo_ zNPS74h<_mUAwP+tcTXzZ;_G14RlX*eqNRqDfR9uLSaX6_f>HF24 z{EyVnZ_66uLvH?JjZ87Dj=Gu{{`Y4H_i~YRy~8pjf6{wX1t|2Lp~v?u8sK`;qGQJw4Nk@*LO;b@7wi zb;^^OXA1(z*RXk27)3fmTo6mDfa^yZ?1pD4*Z0!R#67SzDZhO-Ir&tSZzGPvwWN`x z0+e?o-6EN5(u(~4?lEqiCFyEqos0S^0dXnX$zR@q?Tsf%Ii}*BY zCM5}VkDIY6A4_URibY&d_sMg)&PxJauSj=EkIfC|nso8O)|RNvMO#LlD?)H!U+ zPExNj`Fy06lozqjcc%O|$}W&{R2 zm6dNwYD0=kg?IQn_j=(_;!>z<7iD=()_F_*XHs$Q>uN}HiMNp6*)o+!5$n2$T})Q< zr*kSzr*I_s_@s5DO~eaG)kx1tKTxLYU-I3kUlKPFFD3s56A<}=dSr)t3j)!gW9(7`&t|0QW$!8${fV`X0Q~dvbY@{$J>H9T<{CpmmPr*{sV)83Vb0}|1 z+>X?o_`laC;$_@Fgd4CDDUlNKRMHKSu5x<+lX0UhN!ML#OUy&1-jqdzTNX$?U0rdQEjvW~jM($)0wtJ!-UumSNSoJfTq@FDRM#U#%!a(Z}vkWW)+uWjUi zBcIvEgLovIvNOa7F(+QcOQcNPD~3x@*Fr2ue9(kWZ{ol0JzxC5z4kVqgy)I>ip540 zATx&a{i?~$!vr0%FljmYAnw=1cpSAwl<8WEUiRp9C0<0G)TDK`t=HI?@)owfo@r0= zk}4PASzbt#J`U%|$@SB0|mcm%JKijs7#CH+KtPWnP> z$1|_EH&upW;IsZ-xixj-MCA*PiYk\n" "Language-Team: Romanian\n" "Language: ro\n" @@ -397,7 +397,7 @@ msgstr "Întâlniți-vă adminii" #: bookwyrm/templates/about/about.html:101 #, python-format msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." -msgstr "" +msgstr "Moderatorii și administratorii %(site_name)s mențin site-ul în picioare, impun codul de conduită și răspund când utilizatorii raportează spam și comportament neadecvat." #: bookwyrm/templates/about/about.html:115 msgid "Moderator" diff --git a/locale/zh_Hans/LC_MESSAGES/django.mo b/locale/zh_Hans/LC_MESSAGES/django.mo index 1d1227f8092b70c68bb692fb532759090142aa83..f4f8aca7fcac356b1fde757def01ab3d5bdc4052 100644 GIT binary patch literal 86751 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 literal 44096 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 S0TOg?KN0&d0;IH0jQ%f4%`RX7 diff --git a/locale/zh_Hant/LC_MESSAGES/django.mo b/locale/zh_Hant/LC_MESSAGES/django.mo index f9ca27be9b891b3b13c30e68d084e0cd54184a43..a7d44d11b93a0f6f166a72b4bcbd8e2c9c6fa7ff 100644 GIT binary patch delta 13136 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 SIImvG{_TIiy#MD-cK#QLiU=YA delta 15265 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 Date: Mon, 4 Apr 2022 15:24:39 -0700 Subject: [PATCH 77/85] Include test files in pylint --- .github/workflows/pylint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 1b14149f2..08661e9c2 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -24,5 +24,5 @@ jobs: pip install pylint - name: Analysing the code with pylint run: | - pylint bookwyrm/ --ignore=migrations,tests --disable=E1101,E1135,E1136,R0903,R0901,R0902,W0707,W0511,W0406,R0401,R0801 + pylint bookwyrm/ --ignore=migrations --disable=E1101,E1135,E1136,R0903,R0901,R0902,W0707,W0511,W0406,R0401,R0801 From 51f5c9562d523c542a44974a478f147c6000cfe4 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 8 Apr 2022 13:11:41 -0700 Subject: [PATCH 78/85] Uses details for user menu in main navbar --- .../css/bookwyrm/components/_details.scss | 14 ++++ bookwyrm/templates/layout.html | 60 +-------------- bookwyrm/templates/user_menu.html | 73 +++++++++++++++++++ 3 files changed, 89 insertions(+), 58 deletions(-) create mode 100644 bookwyrm/templates/user_menu.html diff --git a/bookwyrm/static/css/bookwyrm/components/_details.scss b/bookwyrm/static/css/bookwyrm/components/_details.scss index 5708c9461..c9a0b33b8 100644 --- a/bookwyrm/static/css/bookwyrm/components/_details.scss +++ b/bookwyrm/static/css/bookwyrm/components/_details.scss @@ -114,3 +114,17 @@ details[open] summary .details-close { padding-bottom: 0.25rem; } } + +/** Navbar details + ******************************************************************************/ + +#navbar-dropdown .navbar-item { + color: $text; + font-size: 0.875rem; + padding: 0.375rem 3rem 0.375rem 1rem; + white-space: nowrap; +} + +#navbar-dropdown .navbar-item:hover { + background-color: $background-secondary; +} diff --git a/bookwyrm/templates/layout.html b/bookwyrm/templates/layout.html index dadf42ab5..6b9e4daa1 100644 --- a/bookwyrm/templates/layout.html +++ b/bookwyrm/templates/layout.html @@ -90,64 +90,8 @@

  • + {% if perms.bookwyrm.create_invites or perms.moderate_user %} - + {% endif %} + {% if perms.bookwyrm.create_invites and not site.allow_registration %}
  • @@ -62,7 +64,9 @@
  • {% endif %} + +
  • {% trans 'Log out' %} From 6455476df7f02cb55c1786f38fe3d499583312a7 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 8 Apr 2022 13:59:10 -0700 Subject: [PATCH 80/85] Consistent formatting for "BookWyrm" name --- README.md | 16 +++++----------- bookwyrm/templates/embed-layout.html | 2 +- 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index bd7344df9..1d3eb5433 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,10 @@ Social reading and reviewing, decentralized with ActivityPub - [What it is and isn't](#what-it-is-and-isnt) - [The role of federation](#the-role-of-federation) - [Features](#features) -- [Book data](#book-data) -- [Set up Bookwyrm](#set-up-bookwyrm) +- [Set up BookWyrm](#set-up-bookwyrm) ## Joining BookWyrm -BookWyrm is still a young piece of software, and isn't at the level of stability and feature-richness that you'd find in a production-ready application. But it does what it says on the box! If you'd like to join an instance, you can check out the [instances](https://joinbookwyrm.com/instances/) list. - -You can request an invite by entering your email address at https://bookwyrm.social. +If you'd like to join an instance, you can check out the [instances](https://joinbookwyrm.com/instances/) list. ## Contributing @@ -23,7 +20,7 @@ See [contributing](https://docs.joinbookwyrm.com/how-to-contribute.html) for cod ## About BookWyrm ### What it is and isn't -BookWyrm is a platform for social reading! You can use it to track what you're reading, review books, and follow your friends. It isn't primarily meant for cataloguing or as a data-source for books, but it does do both of those things to some degree. +BookWyrm is a platform for social reading. You can use it to track what you're reading, review books, and follow your friends. It isn't primarily meant for cataloguing or as a data-source for books, but it does do both of those things to some degree. ### The role of federation BookWyrm is built on [ActivityPub](http://activitypub.rocks/). With ActivityPub, it inter-operates with different instances of BookWyrm, and other ActivityPub compliant services, like Mastodon. This means you can run an instance for your book club, and still follow your friend who posts on a server devoted to 20th century Russian speculative fiction. It also means that your friend on mastodon can read and comment on a book review that you post on your BookWyrm instance. @@ -78,8 +75,5 @@ Deployment - [Nginx](https://nginx.org/en/) HTTP server -## Book data -The application is set up to share book and author data between instances, and get book data from arbitrary outside sources. Right now, the only connector is to OpenLibrary, but other connectors could be written. - -## Set up Bookwyrm -The [documentation website](https://docs.joinbookwyrm.com/) has instruction on how to set up Bookwyrm in a [developer environment](https://docs.joinbookwyrm.com/developer-environment.html) or [production](https://docs.joinbookwyrm.com/installing-in-production.html). +## Set up BookWyrm +The [documentation website](https://docs.joinbookwyrm.com/) has instruction on how to set up BookWyrm in a [developer environment](https://docs.joinbookwyrm.com/developer-environment.html) or [production](https://docs.joinbookwyrm.com/installing-in-production.html). diff --git a/bookwyrm/templates/embed-layout.html b/bookwyrm/templates/embed-layout.html index e0234494c..233ba387f 100644 --- a/bookwyrm/templates/embed-layout.html +++ b/bookwyrm/templates/embed-layout.html @@ -43,7 +43,7 @@ {% endif %}

    - {% trans "Join Bookwyrm" %} + {% trans "Join BookWyrm" %}

    From 3c1f95a83aa118c3109091325d950b254c8bba83 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 8 Apr 2022 14:01:13 -0700 Subject: [PATCH 81/85] Updates locales --- locale/de_DE/LC_MESSAGES/django.mo | Bin 89719 -> 89719 bytes locale/de_DE/LC_MESSAGES/django.po | 44 +++++++++------ locale/en_US/LC_MESSAGES/django.po | 79 ++++++++++++++------------- locale/es_ES/LC_MESSAGES/django.mo | Bin 83245 -> 83245 bytes locale/es_ES/LC_MESSAGES/django.po | 44 +++++++++------ locale/fi_FI/LC_MESSAGES/django.mo | Bin 92420 -> 92554 bytes locale/fi_FI/LC_MESSAGES/django.po | 46 +++++++++------- locale/fr_FR/LC_MESSAGES/django.mo | Bin 96177 -> 96325 bytes locale/fr_FR/LC_MESSAGES/django.po | 44 +++++++++------ locale/gl_ES/LC_MESSAGES/django.mo | Bin 91665 -> 91812 bytes locale/gl_ES/LC_MESSAGES/django.po | 44 +++++++++------ locale/it_IT/LC_MESSAGES/django.mo | Bin 92977 -> 92977 bytes locale/it_IT/LC_MESSAGES/django.po | 44 +++++++++------ locale/lt_LT/LC_MESSAGES/django.mo | Bin 84356 -> 84356 bytes locale/lt_LT/LC_MESSAGES/django.po | 44 +++++++++------ locale/no_NO/LC_MESSAGES/django.mo | Bin 79362 -> 79362 bytes locale/no_NO/LC_MESSAGES/django.po | 44 +++++++++------ locale/pt_BR/LC_MESSAGES/django.mo | Bin 92279 -> 92429 bytes locale/pt_BR/LC_MESSAGES/django.po | 44 +++++++++------ locale/pt_PT/LC_MESSAGES/django.mo | Bin 72489 -> 72489 bytes locale/pt_PT/LC_MESSAGES/django.po | 44 +++++++++------ locale/ro_RO/LC_MESSAGES/django.mo | Bin 67727 -> 67727 bytes locale/ro_RO/LC_MESSAGES/django.po | 44 +++++++++------ locale/sv_SE/LC_MESSAGES/django.mo | Bin 91437 -> 92529 bytes locale/sv_SE/LC_MESSAGES/django.po | 60 +++++++++++--------- locale/zh_Hans/LC_MESSAGES/django.mo | Bin 86751 -> 86751 bytes locale/zh_Hans/LC_MESSAGES/django.po | 44 +++++++++------ locale/zh_Hant/LC_MESSAGES/django.mo | Bin 36001 -> 36001 bytes locale/zh_Hant/LC_MESSAGES/django.po | 44 +++++++++------ 29 files changed, 415 insertions(+), 298 deletions(-) diff --git a/locale/de_DE/LC_MESSAGES/django.mo b/locale/de_DE/LC_MESSAGES/django.mo index eff8ec81b09cd922d66b7c11dbd91813495c4634..ce0b92ea30f08e4fbd480a85ae6e0a0b77b5eb17 100644 GIT binary patch delta 25 hcmeyqhxPj&)(y?)xJ+~nOcacat&A)-_nv#z4*-&A3h@8{ delta 25 hcmeyqhxPj&)(y?)xQum;%oPkxtc=Vz_nv#z4*-&o3iJQ~ diff --git a/locale/de_DE/LC_MESSAGES/django.po b/locale/de_DE/LC_MESSAGES/django.po index 2751f5e1a..c506bfbcb 100644 --- a/locale/de_DE/LC_MESSAGES/django.po +++ b/locale/de_DE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-27 14:27\n" +"POT-Creation-Date: 2022-04-04 22:19+0000\n" +"PO-Revision-Date: 2022-04-04 23:28\n" "Last-Translator: Mouse Reeve \n" "Language-Team: German\n" "Language: de\n" @@ -165,14 +165,14 @@ msgstr "Taschenbuch" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Föderiert" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Blockiert" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano (Italienisch)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (Französisch)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Litauisch)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (Norwegisch)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (brasilianisches Portugiesisch)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portugiesisch)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "Română (Rumänisch)" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Schwedisch)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (vereinfachtes Chinesisch)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Chinesisch, traditionell)" @@ -1195,7 +1199,6 @@ msgstr "Domain" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -3146,7 +3149,7 @@ msgstr "Suchart" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3213,7 +3216,7 @@ msgid "Create Announcement" msgstr "Ankündigung erstellen" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Hinzugefügt am" @@ -3608,16 +3611,21 @@ msgstr "Erfolgreich gesperrt:" msgid "Failed:" msgstr "Fehlgeschlagen:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Name der Instanz" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Software" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Keine Instanzen gefunden" diff --git a/locale/en_US/LC_MESSAGES/django.po b/locale/en_US/LC_MESSAGES/django.po index 4d1f6f360..3f1657754 100644 --- a/locale/en_US/LC_MESSAGES/django.po +++ b/locale/en_US/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-04-04 22:19+0000\n" +"POT-Creation-Date: 2022-04-08 21:00+0000\n" "PO-Revision-Date: 2021-02-28 17:19-0800\n" "Last-Translator: Mouse Reeve \n" "Language-Team: English \n" @@ -188,7 +188,7 @@ msgstr "" msgid "%(value)s is not a valid username" msgstr "" -#: bookwyrm/models/fields.py:181 bookwyrm/templates/layout.html:179 +#: bookwyrm/models/fields.py:181 bookwyrm/templates/layout.html:123 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "" @@ -408,7 +408,7 @@ msgstr "" msgid "Moderator" msgstr "" -#: bookwyrm/templates/about/about.html:117 bookwyrm/templates/layout.html:140 +#: bookwyrm/templates/about/about.html:117 bookwyrm/templates/user_menu.html:63 msgid "Admin" msgstr "" @@ -439,7 +439,7 @@ msgid "Software version:" msgstr "" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "" @@ -1367,7 +1367,7 @@ msgstr "" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "" @@ -1610,12 +1610,12 @@ msgstr "" msgid "%(site_name)s home page" msgstr "" -#: bookwyrm/templates/embed-layout.html:40 bookwyrm/templates/layout.html:242 +#: bookwyrm/templates/embed-layout.html:40 bookwyrm/templates/layout.html:186 msgid "Contact site admin" msgstr "" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" +msgid "Join BookWyrm" msgstr "" #: bookwyrm/templates/feed/direct_messages.html:8 @@ -1624,7 +1624,7 @@ msgid "Direct Messages with %(username)s" msgstr "" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "" @@ -1661,7 +1661,7 @@ msgid "Updates" msgstr "" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" msgstr "" @@ -2222,7 +2222,7 @@ msgid "Login" msgstr "" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "" @@ -2231,7 +2231,7 @@ msgstr "" msgid "Success! Email address confirmed." msgstr "" -#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:178 +#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:122 #: bookwyrm/templates/ostatus/error.html:28 #: bookwyrm/templates/snippets/register_form.html:4 msgid "Username:" @@ -2239,12 +2239,12 @@ msgstr "" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:184 +#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:128 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "" @@ -2288,54 +2288,38 @@ msgstr "" msgid "Feed" msgstr "" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -msgid "Settings" -msgstr "" - -#: bookwyrm/templates/layout.html:133 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 -#: bookwyrm/templates/settings/invites/manage_invites.html:3 -#: bookwyrm/templates/settings/invites/manage_invites.html:15 -#: bookwyrm/templates/settings/layout.html:42 -msgid "Invites" -msgstr "" - -#: bookwyrm/templates/layout.html:147 -msgid "Log out" -msgstr "" - -#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156 +#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "" -#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 +#: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33 msgid "password" msgstr "" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "" -#: bookwyrm/templates/layout.html:257 +#: bookwyrm/templates/layout.html:201 msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." msgstr "" @@ -2916,6 +2900,7 @@ msgstr "" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "" @@ -3636,6 +3621,14 @@ msgstr "" msgid "Invite Requests" msgstr "" +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:56 +msgid "Invites" +msgstr "" + #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 msgid "Ignored Invite Requests" msgstr "" @@ -4292,6 +4285,10 @@ msgstr "" msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." msgstr "" +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45 +msgid "Settings" +msgstr "" + #: bookwyrm/templates/setup/config.html:56 msgid "Instance domain:" msgstr "" @@ -5100,6 +5097,14 @@ msgstr[1] "" msgid "No followers you follow" msgstr "" +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/user_menu.html:72 +msgid "Log out" +msgstr "" + #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 msgid "File exceeds maximum size: 10MB" msgstr "" diff --git a/locale/es_ES/LC_MESSAGES/django.mo b/locale/es_ES/LC_MESSAGES/django.mo index 8260851e8035db6de4e2ba6986d1996af0f08f0d..facf082d359ec4d57abf5eb82323c1956c32eb83 100644 GIT binary patch delta 25 hcmZ46#k#hOb;G3tTqe2(CJIKzRz?<^?;Hqh0RVt~3D*Ds delta 25 hcmZ46#k#hOb;G3tT*kV_h6;wJRwf3U?;Hqh0RVtk3DE!m diff --git a/locale/es_ES/LC_MESSAGES/django.po b/locale/es_ES/LC_MESSAGES/django.po index 0051eb95f..ea7f9448e 100644 --- a/locale/es_ES/LC_MESSAGES/django.po +++ b/locale/es_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-31 15:40\n" +"POT-Creation-Date: 2022-04-04 22:19+0000\n" +"PO-Revision-Date: 2022-04-04 23:28\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Spanish\n" "Language: es\n" @@ -165,14 +165,14 @@ msgstr "Tapa blanda" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federalizado" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Bloqueado" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (Francés)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lituano)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (Noruego)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Portugués brasileño)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portugués europeo)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Sueco)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Chino simplificado)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Chino tradicional)" @@ -1195,7 +1199,6 @@ msgstr "Dominio" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -3144,7 +3147,7 @@ msgstr "Tipo de búsqueda" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3211,7 +3214,7 @@ msgid "Create Announcement" msgstr "Crear anuncio" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Fecha agregada" @@ -3606,16 +3609,21 @@ msgstr "Se bloqueó exitosamente:" msgid "Failed:" msgstr "Falló:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Nombre de instancia" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Software" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "No se encontró ningun anuncio" diff --git a/locale/fi_FI/LC_MESSAGES/django.mo b/locale/fi_FI/LC_MESSAGES/django.mo index fbde7d10bf1beb48a684ba093a3b8c77bb2a1dfa..180f3768e2ccc171eba741f781600eedecaf99c6 100644 GIT binary patch delta 23718 zcmZA81$0zb1FqpSSVHh5I3WoH3l;(dcL;99-6e(K#pywdOVOg`2Li>dxLa{ATC^0` z;w=>J`_10m#l2^(&9mLl%upG5F5$TI3Edn131&Dvl@mBlCaj;uarPv1oCy_`>o{YY zIZg%~i($9~!|^Dl#@85xe$5@HI_AXk*au7E7R-mQu_0z{;W({uAntb@*SSjM5gGGa zI!;C$Lun)~K@D^X(_p;Tj>FuX^jHu}Vp;5gb#OgKV7xYt6O08h1=ho~*bYN*5Z1tX z-h9__9xCE-98X)v38Wx>JIC3I`A`k-qgMDC>tj%R$H|VpQ2Db_?Y5vMcmhN5IcCOG z9n4NeV0zNgHr*PVGrrT8h-P{o3*jB~!*m@@epbvzx*#UUCa9h2jNjr&9D&a zINfoU)u*%LbR*pl>)}0Yjm2ZwePXh2KVCo$`~dy%BPKh6ey9lz zM|C^}Q{sH<8dSSIsE&_f4!n$-xYNsVl0ahAj;BV|ce~qy0ho%6QK$y9umCPZZRI)C zfLBmE@(8u{FHsYEkD6%0-ev+RQT+sCIOas{Ts_pljf}3-hKRPL3#y|*m>fwM0JHVQP%E#5+R@tRulK(p z5uI5KY76^gIvjx-Xdb4GwqdXdfF zfUYjZ79u*!1E{S!it6AZYJeN4yYU1y(NCz3lMONh`=chF6*Yl;SRBh?6C8|ccM+%H zUDSAe2ebbw7(CbvFdkJfA2pH1HoXotz-H?{)TKIs+L?E#EloDWtS}IZkPgG5*c^4I zW}p^y2-W}jA?&|qe2WZi;VaYx5`1qu^h0e~DpYx>&5uOwP%+dUC}*vPI^%k_yaj6K zI-mybXB}npr@2HjP!NZj$X@GtoJ{&2YM{PMR1^6gHQ*#v{w&l=ezxVSkQc$(iTd&? zFw}e-Rz)o=1_Q7=YC`S^BDw=VqK;xdYR0Qj9q&e!AGhgCs1E+JzDJ#P(qZPiqB3?N z-4}!LPt?)G8*V0?7&UMzWE|HCCZY-jP+M0Nb-Bu;&b%^eBH!3_D^v&H+H`-^1V^A2 zFd5Z;0qT8UY|FQz+8xAJmFYn61xum`lyMw`GNgcqzf53>+fvAP+M`F&7WmmWL<6D zit6wHYNBUs{w>sik5LnQhuSg!(Pk&Bqw3ck&Hn4G+mN9h=z&`KFieD#F%!;2o#{qQ zgC|g1e8>6(wU9UHgP&1b?=!~Sfn2D&Q_`mEq9)khC8C-1Ks6j{9fO+K6x0fTMs={t zmhZ!aq>rL6o<>dJGV1mG)A|+@koFsEOo7_zK-BB$2HT7>=u1X5)I{o`I%O*P51_?pQorDeT%vaKI6>J2B9X98|lY&qKIgqQrHOVVi+z*t@spb zhwh+`;1#NV((z`ZA*f516IHJ`CdO*03Dvjhc9?{8tj!;Q-uHhD5j9+ZTKO8(d%GF6 zbw^PvI)xhO5^4eu(GUMat<-mdSz&tA0&<`xPy-8LGh03db#x2R`~AO!ND?x(U?d(u zZSh;w4*Z8&k^e;V7miG*baBjq6;bWGq9)uQli?85LdK)|S%9jy5mj#wx?0&mBJw0^ zW*4p3unOrvQ4`8N$((s4DqYQ57qtV8F)7AiGVF_bTSlUGZZ2v9t5KgP+a_`T+WHGN z<1T6zDI5OY}9wkCiG=|=Nu7r{0A1sCn~@!vrT?(RJtT;>nfpkq7M3FQ)?`0 z!b33zXV~;-)PR9=%tQ-VOQWlfsuR%;G(Zi|40Qw@QAaZn)xj9l*~g*23s#_3cmg$% z8>lV*8@2VmbIn$##k{1WPzz~~K^Qxi{a451$&kOG&h`+d#RsU4oq5Ip)WF$MuU8fH zZZYO3{XJ?yYi#~j>oL^PUc(T4fZ>>UKKrjoq50-)TA?n-AoQL&s>4;Nt=)_|+vBJm zJCC|tS5P~33w0Nsp;r0i%oel}Yjj_F9}N4?)w ztc_83rZZ|n1F#?t!?L&uHNacc1V5t&PPEXN64lPlKtwaof*CLZwe{6ecc2|=C;Hj+ zSX77eF+DCpO>j5n#7mePo&TAE@}TZa6l!NmSgT;9-v0(fw6$YUGn$W@d7MqJv2I3P zs@4xsM3<}qhGA#Sh!ar*Ek{4x zhPp%tQ5~MK`Bza#b{Ez0W7Gs*qE`OF<~xhc1bt8oNr5F8-^olw6`P{As1-(FSJctW zxA`kk4Y#5ub{Mr|mu&e>>l4(`{DW#Au*6I(6qU|t(^2TEqf$1bCMsPYbtLUkD;{9e zqilK(Y9dQf6W)Z{f&Hi*ID(w5a~k!57B9~HW4xlM&xf|C{s+Xd|3O41k)eTBp;o>X zHNZpEgx;f8>bulzZA#Q-O^>;-5T?eKsH5qF8sK}(j?++=bUSLC^QiuBE@l4}c}7Mk z{)ZYUc$pa}2Wo{8m=H_ZbOlUAx{ggZ!bzmtV;+2kJ{aM6iop0-5p!Y{mxwC% z#F97w6X0f4gB_@WPorjj0X3o9sIz>ATJcBJgc2<`JC+P}`-3n9^V@VCRQtB59df%9 zQO6@uA0Sg~g@dS_Ig1+T7HUGzQ1#=jFcVFV*+>VV>K8*Ts0wPJI;a)5z*ua9S@1OS z0mk<~kxXR7Uum{H1a-E#P-kD!=GR9J(8A_-#hj!EqwY)`YNsxuCU6b)TK|O%tTHz#A$G@U>WG8Au$IutAptk%^)IhIMui+;w zkLgyM--69BH|Y_WMeqMwBI@`Ys^L}CjQ>J)_y)BTK5NX*q(!|(kr<3sQ45GcEuar3 z!=b2tC!yNUMBS04HoY2Meb(Hgly|)L*(3xLBHGGZX_z|^|9P7+Lg)s%`GN_5vMh(#1 z=6Ap*q`yP8JB`WlI;#E?)QZnejcI=XCBR8-b8F#G_znb3zgHWH4E3h#h zK@AYP$#EFlDTaag1a;dzo6ST6u_@_Vs0A&@o_GTFww2yuE~VRyh&ot+n%PFwYqT3R z!-J?JId1dMV@lFjP?zly_VutMsGW-4WxwiK8Tw5Sxl_={~i&& zelJi1r`=`FECe<43aBHgiG8si>S&H(4m^vh_YbOl{N3h=lA_WA z_OSojxbK!X|M>jRjW}e-hukyNO8s1lkSAs;zF2^f>!8*9k3?GVlCWZ z(|#w-7B|Ltir*2MBno-F)5}!ZGKpU zVJ*@%u^P_93V0uDV(v30JpgsqyHEps#_H&M*6dV$tUMu!4TYs$?#8`eu3J#RKJ@Eq($vu2r54(=Ei*39Glwo7IdeQafgUz z-uHs}(r_^^>8q&Q?R(LjWhc~Y*bQ6b7}P)yu@L@^9WeVPE-Fqy_3L-p99aOiBOQ&( zUvZiJ*UC1Mq1WLz%z_W_Zx7pd#jNi_Py?^TGMMTbuNKzD zQn(h|;8X01wXgHr0C!$z{}VINgd65Fdge{Dk`0)j3imM()7~H1g~XQMiP zj3uz_sk`aM2*u3d!pNoNJ=8Nups`8x?I`rn-vtq zVx%jej%o<%h^Al{+=#kE!4J&98&Dr;H?cQ1eQ5q;lvCJR@EeU60YrX#;h_of6 z`D1g2d$1enY){M)OvjF-4`OG`{nTvnbWBHjFOI@1m=9Y$GoSI3unp-$7=k&Tn@`Rv z*pKvVY@+u+)eCcJx}Z8-i52l6YUPRlHg81*)XEp2^7mmv{D8jbd1=nn50wtXB$yWi zuo&u2)U@R-(EI)0k%%7!Jy4fr5NaYbQ5~$c?m!>XhcO&aqb}#amSO8;C z{mjLrxEg!mcGSf3zG440V2L;8wpYi*q}yR6#@h5kRD%_m2)Ekw9@LSXMD_Cm)!un) zcFqsONTxxxD}m~#ytU3-&Oa*|Ey>W<499}_BWjBep;qz&^%`Y)XFjOPVif7NxC&=u zc8q>+J_lm)Thhx>M;7>x*`Z9Rqb`8TFXXYq#ynD)^e(OgvhHK_dU7=Z46BAUQOOpW(24Sqxo6!4$VARUU$a2Trnb^IA$q3*&o$HM|#ZJWotf;d#cZcK}Z zP?zaCYNhwBFENPpf2b|Y=<#?boFBE5MKBsGV`ZF#xL{0EM%-(?hMLHGbXAZfzL|Lr z%uKonuE&O`fqWA%Q}jnoFbtI+j+$U0REOnJpY07$N4FjIdY(qre~CJ(k2dX_&}07n zzkforl1!+EIc&Nls$peoUDTF0Lw%rh#}YUg!*MIN!#k*jR8C}$rX#AKZm9PCQ9Cyw zk!w~o%T}0=+TvxXm90Syv=gA~e{}R#4eEmG$-)tFC6$hZUYz*rCorap&a@5K;qju;x=D;hcfjvn)-jDRe zsDAUJCQ#OqA5{8f^=HLN!>1+JSAh{HV>pikiR^oAx9%M;3spACB7U z;;6H(ho!JLYC`K#3p$7adjGH5f@i4L(UZ)aSrDctT>zC|9Ye4aYA42^c4!9b=oX>| zScQ3T532nWYog?)JOnk-g6Jk7Qh|uht_o@=>Y}!&E$Wl7C+c+?Ys-H@)!$~_kGccL zQS~oapQ7$a!W5={QdGaGF&BoV;Qd!dEi!bLEl?}zg6gOrs(dnr;sR8Mdoep6Ms@TI zHSu&Q%|vpcj<6tV;*~H1wnuHfi|S`aO5T5UJdcd2xEmv|ZYuN1H5}DZ9ERW)R0o$) z9Xvzt>xX)6{rt^DLamXgovDC2vYM!cHATIay<8&tGWh|u(j}-f+=$xZ-%tacMxEJ3 zRK0tsoqB^>p(nshECe-R6lzDxVp*(f^QWTvn}_PpT}(tTNiUx~vaS?O!1abe;Dm;&@VFys}$@Ej znt4tls!#%TnQEd2?ush!i|TkRYGi=ZRSDTCz1Iv9$&R1;AXTY~v<8>*v+sLPZu z)Vz)rQT+@;)gO(zr1MZ)z8Up-bJnKa=S1{@;+MsIOQlDheIwM_w?SRLK2{esv2my^ zpM~Dn%z7BRkbeW!zFJmOuLbI;`=Z{4ktXdrGl*!#i%~nV9QAFt12wTrsISp`sIyNL zX3A5bR-PNxaXD1|+NhPc#KPDc_4T_PRqsCPBmWHs>GyxyZ03v$qi*jv7=nXQpVjkG zE8c{P#>Xw**#7r%z&!b8nxxIs0ocm4LlR`;1Vo{XE9pe{{cD7ikhN6g8QNx ztVbQi9@G{eMV;*})Id*A_5QK>J~>T(0BWZ~a0uo?wOeN0Xv_DY8$-bnA{sa{ml-e? zbtL^zM==Do)w5AYv=()?`%nY@j@p6iSOc?$n>*73HNiosof?Z;&}`J_$l`F`f1T}0 zGIS=#QMdCc>I{?QHUoyBb|4bYj2ie1YAgS+`FCvo6VyW9*?dnv`b;^KB7eY<65^92VQSDoz2I_$NWbB4z zaU&MM*QlM%UcmfzEQba3{&yzgJzLC2g>|UgeG|1+FHs#Qi8KQTqE;G$;aCzi;ZCS} zgHd;66c)jGsH6QI^||m4wUAT=QSW~iA|Y51)j@sK*|k7#$EXH_Q6ESXQLkql>UCU+ z%WxNJzz&7Xj?A|%K`m${YU_7n9z1~F|NrL&krHHlL`|S*VbgIr)K=F+bUQrzo&7b`QM^Ij zkG&l~gS4mtbE9^kG-^flQ3LcqZTV!>`#lqNSr?#oZY^p;+faAp5bDw%LtaPMxke-h z8ShXl3NC3XWV04QO`s}j1WCkp_uu~~ zEM?x;OsI|vVgwdPUB)h`of&8yhuZQvsDa~96JLX!@K@9dGnF>)dp^`wS3&Je3)J1} zhKcn4k0zoIj7g|1jzfJA?LeLRBh>5p9=BnkG9K@LQ1lEn(E?@7C2orvU^HgKpHTho zM(x}M)DAsFE%Xh#ihLxZ*CKv7kM}>R%7*%+s)c&(I%6FiYV*(HBGQjhuid2bW~=97 zS<-PBjrUOf=B?oI{wtl@sGZ!6>hDwq-ha(FxT2YP1nQEMLv3j^YKv>2&awfjek;_< zdf*WcD@GkvooLg(6~>TmkNP{}DVu)|wF8%|ccOX!wSwnlXsbV>X6RShY*7YOekke^ zGxg`4ehqKB4Z8Z#8q)nXQqSoBU{-?u8+we?VPQcNr1=`6bMQ z_fZ1}RyPyMhTTa=qIP5v>XNQQZT(Hu>-Y?H+1}cGzZzzz(xWC=0Lx-!WCE@;hKMfP z98|+!Q5BD%CU65az;m1b$r@PGvT_l}hT~cE*Z2QN zBD!QLYMB+JL%kItsD?REXB~;UJk@YJHpHJWRc&(zR-lgJ0BRv8Q9E)QwX+YgF#dz} zF@GJ7M(_VfA`@{Pj=|D(%`ce4SekUwZ_HuxiZ7wwqU)%wzlYk%zfm7- zAFwUvZ*MN+R9vg~{}>VNz`zb>OU7Xt((kbw7VT(0!>J_a-T+c*8TIy#eWTi~c7^(OF9+f;46tM-}$(w5%a%|2; z(tbFbyk3M()QgvZOrEQRQIwq}e0lEJ_)6*qQTHFh8uD`4HnT_tu$=^(EbpH>I(&|fv%jw0{J z^f1yDsC(h7{Oa-9|663_QZ4&Tq=Sm&MbSwn;(;{!|DSb~H>Erf|3{tdga@R%6NVAz zZ(>ds$~uysL}*J$L(o&1{37&OggVc4{(q1$0vp>3s-))t`TMB!hInqus*wKj^(*1avw^$^wth4#BmQ{x%c$ z{yCJ&{2btYPD02=orSjkSd1V~AK7{WXgi1cA?(<4TgQ~} z*Lcb%k@z3w`X!{tJx*p9D(c%!&t}paOw^e{ehxxT@+K1^zM9Bv8{c3DDQVUBeKcji z+O)nszdZb4azY7b2=;NE+*Eu`>b7n0FYzo?h-cHPc$p4AlD8A5kUx~X(O8;Qz9TOJ z>yyqx{yx%yn3ME;+>B39PdVyUqr4rVC;8|2{oynwQkVig1@JC~-!mA$Go9kZ-{Bt0 z{PF820qwp#pNQP1ycqTM=qp&yW%53e_n8nyeSHP%NkP04c|BeJcwswgL|jh*?!-Qr z+UDsiv;>nIPlxYR$v)*te@{Fe>KULm#G4aOZu?D3yKy#thVt8l&EDFa|2;cEAzR@k z1^U_zC7s`P>f%G&;4S$Dh+iQbvTfJedIcyOug<^pNxnbz4%qT#;FrFZ<48s^&4>c+1w=VUO56{R$}0+Fz0G zLj8DztG14QwCyDnC+K-ZzJ3oSq0Tgdp6_sxi8^hG*CjrhFi;;`tB6b>%qDzGm_>#7 zw)0$glR-ZaT2l7j=JzGuim=8`kf>9X3C6eSjHGYSPc-RzD&$!~x&`h1sdvC+@h8`I zHx#AfLn`RWO1v@^r{V%aGr}v<>oF5yF(C)(^q7%0)9^9v@)M4b<`=I14@K{@k3VY> z(otW}a!ie#2+wJ^LpLIT$Z5>W%t}xp34VD-QTCFua;WE|bt-v!<`5Qg^Z94ztWaOpM zMk-`uRRzfFNBm!$PQIR}R+Hjy52U-=PQK*HqvTJaO>Am!okbY0uymI9E6ZE+H zC9kJ8g?Y%VXbXm6FTy19^|ys++t^!~KNj2cNSjfcx+NLpXY#ib!buOtZ492&)>YLE z)M-y%apYnDdCq$OqyRJ1P)|oH-6H-2;WgnB>0eBd_dm>hY&*R}zMfR1tJ=0o*SGQX z#Gg{9J?SaLs}p`Co!C18Grp72Rz8B~DXd6gZ{mKKoQ~&zwSpy-XC*(9@+QQ`(P4bj zC8(2_^eXaOVLHMC%AyHz@T2?;Ub6W_ou7y=z+lSU?@5&Xs!$aU>kpo$ z3^JWcQz)-yvYcN?|3$nIA)ambl=wsC6LPY;M5rebaXo(itdL zm**PsqWalVox*1%%2864aEi2^Z?G%jkx4q;i2q4wLHa-H_r!X1y4;rMCQr{Y>rs44 z;2)v)t1x z+{XW*{0Gv_u_mFst?wqG!dk*iI(tH90E3UQg>A4uAmYiu9Lf z1ocah_Ziz^V(MK%JxOi7#J11=l$Et*Q;8=?!2bV4VJ;TPgx zo=wy%Ox||FL-NN`aErW9EX#mCgc!=EkQYPvOk7VmemQP$ntG?TrROMEO~sFPkRi4~ zUGgHSxt8#R_%8A{65mC=Jfw#czl4XQ#~F zPN5HxSX=O)9bEsQR!^X9ydPsor=wvXEKT}P+WbR251}IQx!98SiEu9EugUY^8S<8r z_cQUGcATuFd0c0|9Z;#}REWj#O7LtX-N;1$@1G-V{Tx~W!B-{Z^@b|cUrRh0`5j45 zRoPchDe?;v&QWg&6WOW*c~2ya%wu0wRJ09Y6=ex+{_ix>?e-^}yAQkI?Y<=JTK)S;6I z+tE=>K%JE6N5y;8`HOTc=~=dp+CL)hvFRR^doN@!D!(P#N@5cQ=@~Qy zp$`RxNq;6kA@O^-p77-3N9ay^0v@K$cee9u zr1udnQ1*#%khq@T33G@Kx9KL-pH6ui(s#f7W2-PShEOpfet8yCv94{DnUyS~Ae^v{ z5M=9B#+0_fS?X6HzQVS7fGr41ZTi?(eftvk(C2)ee_0w0q;VN4rXqfj_`k&epi&m% zTk#DB)1bZWBm^%|wzGM1TKKK7+X97h<1!?b>Xt)NE^1 zk~Y2jgnZYdeVaZV+Hd^uV~Whly2r+ZGt8-;>8DpkYi*Y=@ZMG2KFX99R<5H>S^k-dh%@_l(b)u=jU#v?XsT I&!yb|2gN^8~D+N-F&x7Oa9+N)NL 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 diff --git a/locale/fi_FI/LC_MESSAGES/django.po b/locale/fi_FI/LC_MESSAGES/django.po index 6504dc608..5ee012d14 100644 --- a/locale/fi_FI/LC_MESSAGES/django.po +++ b/locale/fi_FI/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-31 15:40\n" +"POT-Creation-Date: 2022-04-04 22:19+0000\n" +"PO-Revision-Date: 2022-04-07 08:04\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Finnish\n" "Language: fi\n" @@ -165,14 +165,14 @@ msgstr "Pehmeäkantinen" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federoitu" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Estetty" @@ -293,45 +293,49 @@ msgstr "Español (espanja)" #: bookwyrm/settings.py:285 msgid "Galego (Galician)" -msgstr "Galego (galicia)" +msgstr "Galego (galego)" #: bookwyrm/settings.py:286 msgid "Italiano (Italian)" msgstr "Italiano (italia)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "suomi" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (ranska)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (liettua)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (norja)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (brasilianportugali)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (portugali)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "Română (romania)" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (ruotsi)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (yksinkertaistettu kiina)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (perinteinen kiina)" @@ -1195,7 +1199,6 @@ msgstr "Verkkotunnus" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -3146,7 +3149,7 @@ msgstr "Hakutyyppi" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3213,7 +3216,7 @@ msgid "Create Announcement" msgstr "Luo tiedote" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Lisätty" @@ -3608,16 +3611,21 @@ msgstr "Onnistuneesti estetyt:" msgid "Failed:" msgstr "Epäonnistuneet:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Palvelimen nimi" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "Viimeisin päivitys" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Ohjelmisto" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Palvelimia ei löytynyt" diff --git a/locale/fr_FR/LC_MESSAGES/django.mo b/locale/fr_FR/LC_MESSAGES/django.mo index 6a95660335ffa408c9dece2000ef77ace9af012f..69aef9648d7fb82e6d8f63cd86f1070c063cac4a 100644 GIT binary patch delta 23702 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 Jlt=uC{{cZ!&b9ym delta 23565 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 Hc}M&Ym!rm# diff --git a/locale/fr_FR/LC_MESSAGES/django.po b/locale/fr_FR/LC_MESSAGES/django.po index 3fc7bbd3d..0cb6d22f5 100644 --- a/locale/fr_FR/LC_MESSAGES/django.po +++ b/locale/fr_FR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-27 10:08\n" +"POT-Creation-Date: 2022-04-04 22:19+0000\n" +"PO-Revision-Date: 2022-04-06 09:59\n" "Last-Translator: Mouse Reeve \n" "Language-Team: French\n" "Language: fr\n" @@ -165,14 +165,14 @@ msgstr "Couverture souple" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Fédéré" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Bloqué" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano (italien)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "Suomi (finnois)" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lituanien)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (norvégien)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Portugais brésilien)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portugais européen)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "Română (roumain)" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Suédois)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简化字" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "Infos supplémentaires :" @@ -1195,7 +1199,6 @@ msgstr "Domaine" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -3146,7 +3149,7 @@ msgstr "Type de recherche" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3213,7 +3216,7 @@ msgid "Create Announcement" msgstr "Ajouter une annonce" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Date d’ajout" @@ -3608,16 +3611,21 @@ msgstr "Blocage réussi :" msgid "Failed:" msgstr "Échec :" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Nom de l’instance" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "Dernière modification" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Logiciel" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Aucune instance trouvée" diff --git a/locale/gl_ES/LC_MESSAGES/django.mo b/locale/gl_ES/LC_MESSAGES/django.mo index ef8386ae12d0b441c51277cdb77cfa242e340f1b..554d84c05f45b4a7ef812b9389f5b204e7098e79 100644 GIT binary patch delta 23720 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 delta 23564 zcmZA92Yila!}swsganb0h!rFe5<*Bq?7jEidsC{mqBxaWt=dtWnl)-gsa2!2_HM13 zy=!lZQar!^bsV{G?|Xip!}r+xyskvu&$45wrX5Y?UJ3M0ba<+IJ5CO)lG|~TQaR4Y zRg~*EC0aX9b}Wf`un9)vPz=Upm=m{SZ9I>aFi#uDDTCdy5H7=Jcm~^JbX&*S=QytO zC6T*i)NSWDAy|Uacx-|iXgp@dO~~AwLs$gwV+9QB;5ZGiBgWz;48=b&08@5!oGciG zVORj`U>#4s>o{{1@p7Dvn2CZzogC*!yn<@@O=q*h_1J{;F^t6AT}*yWRJ-n&8;4^! zF2Y>67qwH@FdM$G=?q;Rrw!vfkwi4pF<2C5U|KwA^Uq*j(tn~qrs-yODl7IRT@=UQ zB8dpPa);J6o_vZXHU6ET=xkpwc5S5?5j>JZ?RUL8LEYYJ7;k_&273!j#w=btLUE5XYhho{ed7E&AbBRJ;9{29IF?o+L$&LJ>Ubzd;RMtKHefp3hT8E1sQPYbe^ZbjGm?>jYET{H zumNf-N23Ouh}x04sI6aun$UNsiT;3^z#ddTCome%qjoOk05h@)YJun{UqF$q87>IwO?#K&Vf&~YfOLhW_k$#N2#8KQ#_4@^8!fB|TT!E>%f6iti zn(+?Q3=bn0**T7Sk4p_U6KI2KI0dx>3s5Uuj)}MqHIXWx@+ROd)D~YIVs`irD*ZQV zN8e+h-v87?%>=TcwlE)N#UiMI>R>Q7L9U0>6ZOGz2{obDsH5@aozl)^L$xc2-dGgX zUrE$XH?sMi(AA~rPDE!p0JT*^Q5}p!4KNvXH|C>uY8|TMU8sTgp(cI?HGwNw3ZGz0 zEclseHx8$gPDG6tIh_4hhXse50ZO9^>Y^sn*rq$62Iyw(hq_e5Q9H8|wWYgIE8LI8 z@hp}=zY*q6RYfgm5UT$%BiMh8rUSrcr2WtT{H3YwxO($_i$r;wh78Yq&9Y9fVD1C~SOS4XX+zAe`m z3K!q`7_;DY48?y?3(Gdje9nZTCgc_&qB~F#brf|`Gj4NpQ-%i~e6TP@U)c1G>!VAQ}9uq!UZw2beh{latoFXEL{0D_s{L(Ly;ta}z!_@>@<*LzC@Q}dszDFb%!i#Xa9Bf8ONI)2t%zr4pU=!%z@QV zXWAJv<8ag#&#=x%Eo3?R;Cj^7Z$;gK3#hwu-=@7LmML(v!2k0vky^?FXXu0S2hcI$4`PVdK1bWhlfN9aq&Yt%$iPBa~*LrowQ zwW5NkovDYq?M*QZd!r^i8P(4M)a6})x(i!TJ9`W@flEj~u5*)!X8Zt~qt}<_7mb#v z6^}&i&}6iOSE9p7*~55jCub>aZQ^ z%(|hrZYXL+BT)m5M@?W3rp513EBz6*!b6w`&!GnT7mH%LNv6C4>gejB=lj12k#uBq z$9Noo+TsDxQ48yXu2wdX zh#Y~M**NPYtU-D@YC@M#XMV$`Ut7H`{((9oXPP;Re5eJM zMjb&FmxuE=gpew54K-2&uP!stYb?LrA?Z^_$i0e@G_Ml$Vlc@Snu^#@5df#hL zH(TEeHI6%;h&q~u8E^?|N0Klj9zt#9CDe?cqUyi2>6A0fnfu~;@`EuK9>Ci8AJor) zu`|uYzeEk3h%DT7mJ!jV+k`>*BbLUam0c+tpe1mGgdX|~k2GjsM zQAczHGvjI0#O|Pu$oCtyHrSR7}dZu=1|gy&Hm z`^+}&0#IK*;i%hQ2K8Oi0(G>5FazT|BZ(y76kBjW1*DJL^i|ZE-$tG3GYrJH)(msZ zgd^}H@=MtC64ZcOQ4>9Dy^iYVA-dYSS41?xJJb=RnQJa(PE-d4P-kBQb-C)IcBT(% zBA=tScqVG=*Pym~JI3Gz)QWxPnGdiGsD2C0WB(PYO@_|42WG*qP#rI|Zb1!v2=!Xs zLroxHzWKR69JQi`sQlK}-l(H>F$}-LXk2SOH=q3vAtS{CGvi$7IdfEp^-*`BCF*QH zLG9RJ)a4qEdVR;Bws;z9r3`)b^I%8tB+w;JdJv< z?^)lV?nb&rrsEt~gmfOPfGto1%t1|X32Gs$tVyT|?Ltl5JwPNoku#{Re~7vRsTZ4_ z$c{=EM0HpJvtf1A1Uq6r9EJsODQdtIsD)fW?aUSHJ=9zD3fWoLDe$eCQ3ce@YuI!{ zYfIFn>WJEjzL*zB+42?Eb*T1RP)E2MHIY-+OQ;3>g}M{>F;MUSD-; zbucZqK{e=(>TrO~AAvfu38;=Iqb87uTKPhozZA9Qt5FNtgr#vWdNaQBmWZ|}#ZvP( zm;tD>sesC_hicdwHL;$k4u{$D(bg%bqnVFtzXdh1{Wg8XrZ1rSxrVMPJhmAxQMcV^ znOSiT^n4Q9bXn9yYN96A0<{BOQT_Bnoo#>A2ikJXkC#xN52==${&HYW(s9e#e{F4j zGGehcYJf?o8O}qkbPZ~2lTep+C#vIf7>r&k%+X{)O*kAQu^8%-wndFI7}fu1>$DZ@ ze>fS7$_9!0I>md$^O8o*g&@&hm*$xzgtse#(5p{NPCsPB&P zsDb8U8eC)j0mDe|#uMtT{#y!;Kd5L+@Z>?Ej9IE5ys2ypKnow`l#D}A{d@O39 zZ&0t{w^#{xU=+T?0vP$d*@;HzqxXLh5j7lvn(=s4hqF;Tu^P2A+flF4Zy1XAF)jM7 zGYiOq=}AYRCLD)qUlMgkYT9%I)JJ^>bR&rjA)*G0P%B!Ap38)q&>r-|Q?~pHYQncr z9Y3+@SEznctT+9nMZH}?r~wmDuVY=*Yujx-`>&M^CqoUt!Dw8BTFGJ5K<6<4Z=fdf z6gAQJ*b;p=nEIX2pLAbTJr}i;lTbUi5Y_Gn)HpwFVE=V1?~tKSF29Xtpz>IfbbUO9 z6K%TnCiB6Qh%w~vMy>3D%}~gHL>i!us6A?@dRqHoEz(0=8~GUvk>S7Dd^DED z7NlFF2H1>@;T*+G=>A}C`ApPAS7Ix?j#^NeEsoO<+as@;a|(4CAEMgFZ8Z~fs}a%b z(-1Yo=BT4+XY;#Z2GSp+-jWeG*oz%O9f`Bed>&-LrX+(=?|msE$`*1a8ADco{YGzcC2YZZ{q0!px+jY`Prk&Q!PQhN!#L3RSNMs(%-w z_5M#Gq8V;SP2^`(gClqVFQCqF(GHFSSEDXh>Yb)u5GoyRErcPYOWSmF)Wo}>CN>oH z){Q}5z5lC;=**IAh2K#}at#OLP1Mn}-DN&Vx}Z9mgqrv))DbPR=?$2X^fuHbJc8=~ zqD{ZWVA6g+u?w16ZX&s`IBMn1P%G|&>ZlI};^(OPGf_vd3Uw!TSr4J=|Av~_EzF6J zQ7iV}ZFVXFwbPY$v;P{X78zP`Q(Mp)vytwMn&}9ff-`UyM(i;Y-HzIcgQzn-jq2wH zY9Y6=7{0&;7_-;x;7A-rdc|JXY;n{+^ApQLjHci$HpchJaXXEFHviE$U_WmL={A@P zcVIkT#EO{y0RMRf>thTq!B9Mj;rJMbVc;+3yWne=NGuuKP%FKQT8Zj8;8NrT70S5g#&MVO?~N zn!mBAhe|I%ZSg%!fw_+H>4o9g2^(V|Zb3S94xx7N1p4AtOu*aN4RakgU+-hlPw)R~ zBKauTiuLds*22Ok9H%l4!@BsBP5YfRXWalbz;vvQ^DrIW!aDfOTH%x_{~BY-zku4Y zw5O5ro%Teu^_#H-`kpZ>s)%8vn_zkzWYc3%D_w?~z-rVECfWQQSb+3iY=aMMy4G1H zOL{P>U7Fw6|5ii-iNs)U)a{;!I?LCn*U;;CeptW|)Ih_rD1L!maT|`n&~v8a1sG3y z1$M>@Hoxq7v#@HYx1r^E_CGg~&&YV{#rHGnD5hOB9~j%QAnEIv8T~Jr%aa$ig$=L) zF2}0)0yVKRf0%#q&<_WYzJ|P^PLs>LVVLcTd40XFvj1ujan+nn3(Q1%B1YmuERF}T z628SoSm7G~2@YpqD4xbZe2Q5x)pgT8C#rrG)Iz_(Y+iiVpcZu2y}=(u?x7m)`O|cG z9<{Pp7>+gnV{UCPRKuy57gwUr`WR{=|DZl{v;AcTERMmXTVZSLi+VebVi|P*Ad;3y zwwq=Jc`!fe;;4!pQ62WfPjCuOz;~Dj$KNtrycSg+cH5+*Dv!KQifpZAt%vg)z^4Gr=Y}g>-j}!k4I{2z|g08Q2aZ@C;T{ zIl5TxAzx_t6IQ{9NBXj&qz94GWDLV1xCJ%vUDOI|JT_<98&i>d2O%5AL-2 z`!NIQR-0yk5PBx9eV!zU#6$#taDrAF$WbYVMc6k)BRAFZ!&72<(L(d zFdmQE{P*ZbI{hf^j7GVNZOHI_vf?&6amZEnpaGVPkCm*EWB#OJpDgt1vI-dS!l|uYv)jN1{5M zjOu6>F2_Z<9;^Ptmku8&f1~b<*BdioKU6vdwG)x3kMe?;39H$1w>1&1v>R%mahM$^ z;}^IJ!?4i5X3OehX3`xoD-J=mn}#}qIhYFrB)Fme};VlwPi9t9ROhW7Z3{!e6Mfd}dAM?dACiDGL@NzXA3}7jxnR)P&QeGCLED zdVRyJg;95*9I9T`RIZoja@8k8Ti+D5!XBtI8-hBkv8a{IvH2@e^*5s~=dY+8IEH$? zZlU`57sJpmwU_7e#-Q#{HPnu_afxV#U9AJHV^C){9d)LwQI~Qrs^ilbiZ?I}Q}~#H zBdjGbiu}6R7YCuX{w8W+Pf-(a-xJYR`1+a^1){bnFKX)xVo5BAx`aclV^HlTTW6z= zWQk3mLQVJ*>Mq6IHxf00NvQhE zY0qjt2v%^!^#Zw7k){oh<7s<^_s4K?GVs3W+ETFFDy z5j?lPMXe-tdUK{BsCtD_^%79Gy&UGpCa4LIL``sNdftBx@U1Oah1${`sGT^BDu0C9 z@|UQO;sAfsQ5 zsN4D}Y9e3R^bFLFtwdeg?WhSHKuzeZ^)jm7P1MBxK}{f222(G;OGFjoQDV#weq|f&5MhPDAdB>&!I~XEEw) zbOmaw?_wA}MNKd$$aIh$wF42T6_!O!v@U8QU2OR<)I?`u3@%00JB2#(+n7e*|LHQB z_c|C4QV@Z9&F-US{0g-*Ucu%JGo!XT4s|K3qTc(qs3RMSI?}ID?G{>-P!m6hn&=Iw z_x}|UHT2JHE>oDb04l#2Y9cjID`<%N4X20ApM+tg6H!OB1vP=|sD(U7?V$cw4(iXx znhjlbSb&JmsuHSUebfIC&5*ueV6CH-0oj@H) z5^5s*vhx0`!?R>)B9E;;{En=FbD=(Rqii|>Rj(ZGz^163$e7*B^H(ql*q!v}sJn3o zHSj;Eh53h=e#24u(ILG5x^(5q(AkVZ?Zg7qC)R2_fM;hLw{ zN4ONB=2nMd80ktFj-62hjz!g*fz@#X>hs2ZMMN`95oR*{QR%GKJg85uSZi(6k#)n5 zaWv|^e}o#)H{6_Yw6!FvzZ$3&H$fduE2N$4^dzFoFb1^~iKw&RjOuU~>a4D!8a_vT z5_;!0`N62~ifGh(ULQ5!2-L(Uq9(k|ruU%gU&0)E|D6c4wK>tVQq-lYjd9oqwT0he zF_7l&rG-#i zRt|N!s-Rw<+NcS&LQSLxPQihwJK-H^>ieO}gRnn_qVCRgTYdmN|NiGF5v}AjY9$X) zTkb@e_dFPNBn42vY8A!$_^HkR6?K_Tq6WN(TF^~f{tR_w|Dv`&eLizp$Pi2 zhAQ+y4Ll09l0@|UB!rsaPSn<&Lv8JQ)Yosp{AR%7sI#tudYd|+j%*0(lCDQh>>z4E zzvXw$%&(B4ncub*pQ9$0KH6+q6ly}PP)E@T)xk%o0sEtNU@~e#vu*iO)PQSIpP1WF zci{x;F1&JWL2v=numEZz#ZVnqLfwHnsISpRHr?Eow?$2?JE~nD)E)T@b%(yhCO8+> z{t;@2pJQos(-br_tBPvS8uba*3w0MpqgIrNI-

    m2X6Sjc!Lx^s>#rg{uD;wNr0U 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 NWr|q2th85w{{x}Kt%(2t diff --git a/locale/gl_ES/LC_MESSAGES/django.po b/locale/gl_ES/LC_MESSAGES/django.po index c9b11af06..24ea6a68b 100644 --- a/locale/gl_ES/LC_MESSAGES/django.po +++ b/locale/gl_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-29 07:20\n" +"POT-Creation-Date: 2022-04-04 22:19+0000\n" +"PO-Revision-Date: 2022-04-06 16:33\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Galician\n" "Language: gl\n" @@ -165,14 +165,14 @@ msgstr "En rústica" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federado" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Bloqueado" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano (Italian)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "Suomi (Finés)" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Francés (Francia)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lithuanian)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Noruegués (Norwegian)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Portugués brasileiro)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portugués europeo)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "Română (Rumanés)" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Sueco (Swedish)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Chinés simplificado)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Chinés tradicional)" @@ -1195,7 +1199,6 @@ msgstr "Dominio" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -3146,7 +3149,7 @@ msgstr "Tipo de busca" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3213,7 +3216,7 @@ msgid "Create Announcement" msgstr "Crear Anuncio" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Data engadida" @@ -3608,16 +3611,21 @@ msgstr "Bloqueaches a:" msgid "Failed:" msgstr "Fallou:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Nome da instancia" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "Última actualización" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Software" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Non hai instancias" diff --git a/locale/it_IT/LC_MESSAGES/django.mo b/locale/it_IT/LC_MESSAGES/django.mo index 984232707aeb766e46032a8e5e1c97abd16df679..6681914525d734c224f67c1852a56dc2e99094ae 100644 GIT binary patch delta 25 hcmdmZjdkNS)(t0baGB^Dm?#(-TNznwzI-EY5&)0a3a|hG delta 25 hcmdmZjdkNS)(t0ba2e|wnJX9?S{a#bzI-EY5&)0h3a\n" "Language-Team: Italian\n" "Language: it\n" @@ -165,14 +165,14 @@ msgstr "Brossura" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federato" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Bloccato" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano (Italiano)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (Francese)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lituano)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (Norvegese)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Portoghese Brasiliano)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portoghese europeo)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "Rumeno (Romanian)" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Svedese)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Cinese Semplificato)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Cinese Tradizionale)" @@ -1195,7 +1199,6 @@ msgstr "Dominio" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -3146,7 +3149,7 @@ msgstr "Tipo di ricerca" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3213,7 +3216,7 @@ msgid "Create Announcement" msgstr "Crea annuncio" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Data inserimento" @@ -3608,16 +3611,21 @@ msgstr "Bloccato con successo:" msgid "Failed:" msgstr "Non riuscito:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Nome dell'istanza" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Software" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Nessun istanza trovata" diff --git a/locale/lt_LT/LC_MESSAGES/django.mo b/locale/lt_LT/LC_MESSAGES/django.mo index fbd6af4e79a044e1521338d3854604ca663f2fc6..8523368d896f16958bae3e5c6308fc3e1e3e90ad 100644 GIT binary patch delta 25 hcmZpf%-S-Ub;J4nTqe2(CJIKzRz?<^Z|+~+2>^QT3GM&@ delta 25 hcmZpf%-S-Ub;J4nT*kV_h6;wJRwf3UZ|+~+2>^P?3FrU- diff --git a/locale/lt_LT/LC_MESSAGES/django.po b/locale/lt_LT/LC_MESSAGES/django.po index 80a5b32f7..c3d9d3818 100644 --- a/locale/lt_LT/LC_MESSAGES/django.po +++ b/locale/lt_LT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-31 15:40\n" +"POT-Creation-Date: 2022-04-04 22:19+0000\n" +"PO-Revision-Date: 2022-04-04 23:28\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Lithuanian\n" "Language: lt\n" @@ -165,14 +165,14 @@ msgstr "Knyga minkštais viršeliais" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Susijungę" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Užblokuoti" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italų (Italian)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (Prancūzų)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norvegų (Norwegian)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português brasileiro (Brazilijos portugalų)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Europos portugalų)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Švedų)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Supaprastinta kinų)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Tradicinė kinų)" @@ -1207,7 +1211,6 @@ msgstr "Domenas" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -3168,7 +3171,7 @@ msgstr "Paieškos tipas" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3235,7 +3238,7 @@ msgid "Create Announcement" msgstr "Sukurti pranešimą" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Pridėjimo data" @@ -3638,16 +3641,21 @@ msgstr "Sėkmingai užblokuota:" msgid "Failed:" msgstr "Nepavyko:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Serverio pavadinimas" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Programinė įranga" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Serverių nerasta" diff --git a/locale/no_NO/LC_MESSAGES/django.mo b/locale/no_NO/LC_MESSAGES/django.mo index 3454c0de3b9c30726d69ca91a51e1519b124f535..dc632f5cfa44e8165c9f168f2df7fab9ef3f8acd 100644 GIT binary patch delta 25 hcmZpA!_xGIWyAUXTqe2(CJIKzRz?<^Z|>JD0|1Eg3IzZF delta 25 hcmZpA!_xGIWyAUXT*kV_h6;wJRwf3UZ|>JD0|1E43I6~9 diff --git a/locale/no_NO/LC_MESSAGES/django.po b/locale/no_NO/LC_MESSAGES/django.po index f2094c48f..9021297ec 100644 --- a/locale/no_NO/LC_MESSAGES/django.po +++ b/locale/no_NO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-31 15:40\n" +"POT-Creation-Date: 2022-04-04 22:19+0000\n" +"PO-Revision-Date: 2022-04-04 23:28\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Norwegian\n" "Language: no\n" @@ -165,14 +165,14 @@ msgstr "Paperback" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Føderert" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Blokkert" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano (Italiensk)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (Fransk)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Litauisk)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (Norsk)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português - Brasil (Brasiliansk portugisisk)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Europeisk Portugisisk)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Svensk)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Forenklet kinesisk)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Tradisjonelt kinesisk)" @@ -1195,7 +1199,6 @@ msgstr "Domene" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -3144,7 +3147,7 @@ msgstr "Søketype" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3211,7 +3214,7 @@ msgid "Create Announcement" msgstr "Opprett en kunngjøring" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Dato lagt til" @@ -3606,16 +3609,21 @@ msgstr "Klarte å blokkere:" msgid "Failed:" msgstr "Mislyktes:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Instansnavn" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Programvare" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Ingen instanser funnet" diff --git a/locale/pt_BR/LC_MESSAGES/django.mo b/locale/pt_BR/LC_MESSAGES/django.mo index fc9e39308c5369422468a90c36b0daeea28787d1..cc9f705c7998da3bcf363bf3c17a24cf76117962 100644 GIT binary patch delta 23727 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 delta 23559 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 z\n" "Language-Team: Portuguese, Brazilian\n" "Language: pt\n" @@ -165,14 +165,14 @@ msgstr "Capa mole" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federado" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Bloqueado" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano (Italiano)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "Suomi (Finlandês)" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (Francês)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lituano)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (Norueguês)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Português do Brasil)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Português Europeu)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "Română (Romeno)" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Sueco)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Chinês simplificado)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Chinês tradicional)" @@ -1195,7 +1199,6 @@ msgstr "Domínio" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -3146,7 +3149,7 @@ msgstr "Tipo de pesquisa" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3213,7 +3216,7 @@ msgid "Create Announcement" msgstr "Criar aviso" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Adicionada em" @@ -3608,16 +3611,21 @@ msgstr "Bloqueada com sucesso:" msgid "Failed:" msgstr "Falhou:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Nome da instância" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "Última atualização" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Software" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Nenhuma instância encontrada" diff --git a/locale/pt_PT/LC_MESSAGES/django.mo b/locale/pt_PT/LC_MESSAGES/django.mo index 961732abd6f16c0d9eb46bf3d1a08d42b2c80f2e..94cdaf4a00a8837a5cc9c2813d30d7b510e667c1 100644 GIT binary patch delta 25 hcmZ3vjb-IFmJLR$xlD8oOcacat&A)-+pK<@4*+=)2|@q> delta 25 hcmZ3vjb-IFmJLR$xr}v<%oL1_tc)x-+pK<@4*+>F2}J+^ diff --git a/locale/pt_PT/LC_MESSAGES/django.po b/locale/pt_PT/LC_MESSAGES/django.po index ab1399ff9..d1988b7c1 100644 --- a/locale/pt_PT/LC_MESSAGES/django.po +++ b/locale/pt_PT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-26 22:29\n" +"POT-Creation-Date: 2022-04-04 22:19+0000\n" +"PO-Revision-Date: 2022-04-04 23:28\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Portuguese\n" "Language: pt\n" @@ -165,14 +165,14 @@ msgstr "Capa mole" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federado" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Bloqueado" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano (Italiano)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (Francês)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (lituano)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (Norueguês)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Português brasileiro)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português (Português Europeu)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Chinês simplificado)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Chinês tradicional)" @@ -1195,7 +1199,6 @@ msgstr "Domínio" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -3144,7 +3147,7 @@ msgstr "Tipo de pesquisa" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3211,7 +3214,7 @@ msgid "Create Announcement" msgstr "Criar comunicado" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Data de adição" @@ -3606,16 +3609,21 @@ msgstr "Bloqueado com sucesso:" msgid "Failed:" msgstr "Falha:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Nome do domínio" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Software" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Nenhum domínio encontrado" diff --git a/locale/ro_RO/LC_MESSAGES/django.mo b/locale/ro_RO/LC_MESSAGES/django.mo index 64649bd65f58ed5ceead9a0841c9defcc043b742..12e5a70f1d4fe891a5c3c33d5fbb1274ce27a812 100644 GIT binary patch delta 25 hcmeC5$kIQNWy8eTTqe2(CJIKzRz?<^XV3nU0|0ct31$EQ delta 25 hcmeC5$kIQNWy8eTT*kV_h6;wJRwf3UXV3nU0|0cH319#K diff --git a/locale/ro_RO/LC_MESSAGES/django.po b/locale/ro_RO/LC_MESSAGES/django.po index 73a0d4001..0ae2d5250 100644 --- a/locale/ro_RO/LC_MESSAGES/django.po +++ b/locale/ro_RO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-31 15:40\n" +"POT-Creation-Date: 2022-04-04 22:19+0000\n" +"PO-Revision-Date: 2022-04-04 23:28\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Romanian\n" "Language: ro\n" @@ -165,14 +165,14 @@ msgstr "Broșură" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federat" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Blocat" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano (italiană)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (franceză)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (lituaniană)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (norvegiană)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (portugheză braziliană)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (portugheză europeană)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (suedeză)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (chineză simplificată)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (chineză tradițională)" @@ -1201,7 +1205,6 @@ msgstr "Domeniu" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -3157,7 +3160,7 @@ msgstr "Tipul căutării" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3224,7 +3227,7 @@ msgid "Create Announcement" msgstr "Creați anunț" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Dată adăugată" @@ -3623,16 +3626,21 @@ msgstr "" msgid "Failed:" msgstr "" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "" diff --git a/locale/sv_SE/LC_MESSAGES/django.mo b/locale/sv_SE/LC_MESSAGES/django.mo index 9a87866d922e44cc6eb16ae20a0549c82966c407..9cd0a3d01e2dcd03c113b82158622decfb3177de 100644 GIT binary patch delta 24559 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 EKO$`TzW@LL delta 23517 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 y$W2Y|<%`\n" "Language-Team: Swedish\n" "Language: sv\n" @@ -165,14 +165,14 @@ msgstr "Pocketbok" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federerad" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Blockerad" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italienska (Italiensk)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "Finland (Finska)" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Franska (Fransk)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Litauiska (Litauisk)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norska (Norska)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português d Brasil (Brasiliansk Portugisiska)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Europeisk Portugisiska)" -#: bookwyrm/settings.py:292 -msgid "Română (Romanian)" -msgstr "" - #: bookwyrm/settings.py:293 +msgid "Română (Romanian)" +msgstr "Rumänien (Rumänska)" + +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Svenska)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Förenklad Kinesiska)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Traditionell Kinesiska)" @@ -397,7 +401,7 @@ msgstr "Träffa dina administratörer" #: bookwyrm/templates/about/about.html:101 #, python-format msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." -msgstr "" +msgstr "%(site_name)s's moderatorer och administratörer håller hemsidan uppe och fungerande, upprätthåller uppförandekoden och svarar när användarna rapporterar skräppost och dåligt uppförande." #: bookwyrm/templates/about/about.html:115 msgid "Moderator" @@ -786,7 +790,7 @@ msgstr "Bekräfta" #: bookwyrm/templates/book/book.html:19 msgid "Unable to connect to remote source." -msgstr "" +msgstr "Kunde inte ansluta till fjärrkälla." #: bookwyrm/templates/book/book.html:64 bookwyrm/templates/book/book.html:65 msgid "Edit Book" @@ -825,8 +829,8 @@ msgstr "Beskrivning:" #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%(count)s utgåva" +msgstr[1] "%(count)s utgåvor" #: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" @@ -1195,7 +1199,6 @@ msgstr "Domän" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -1341,7 +1344,7 @@ msgstr "E-postadress:" #: bookwyrm/templates/confirm_email/resend_modal.html:28 msgid "No user matching this email address found." -msgstr "" +msgstr "Ingen användare hittades med den här e-postadressen." #: bookwyrm/templates/confirm_email/resend_modal.html:38 msgid "Resend link" @@ -1667,7 +1670,7 @@ msgstr "Det finns inga böcker här ännu! Försök att söka efter en bok för #: bookwyrm/templates/feed/suggested_books.html:13 msgid "Do you have book data from another service like GoodReads?" -msgstr "" +msgstr "Har du bok-data från en annan tjänst liknande som GoodReads?" #: bookwyrm/templates/feed/suggested_books.html:16 msgid "Import your reading history" @@ -3146,7 +3149,7 @@ msgstr "Typ av sökning" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3213,7 +3216,7 @@ msgid "Create Announcement" msgstr "Skapa ett tillkännagivande" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Datumet lades till" @@ -3608,16 +3611,21 @@ msgstr "Blockerades framgångsrikt:" msgid "Failed:" msgstr "Misslyckades:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Namn på instans" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "Uppdaterades senast" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Mjukvara" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Inga instanser hittades" diff --git a/locale/zh_Hans/LC_MESSAGES/django.mo b/locale/zh_Hans/LC_MESSAGES/django.mo index f4f8aca7fcac356b1fde757def01ab3d5bdc4052..69e67feace85cfdb2d4b1d9dfdca0e3ac7bddf82 100644 GIT binary patch delta 25 hcmcb=l=c2n)(x+2aGB^Dm?#(-TNznw{&M4WB>L diff --git a/locale/zh_Hans/LC_MESSAGES/django.po b/locale/zh_Hans/LC_MESSAGES/django.po index b92e80b32..78cb6db71 100644 --- a/locale/zh_Hans/LC_MESSAGES/django.po +++ b/locale/zh_Hans/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-27 01:36\n" +"POT-Creation-Date: 2022-04-04 22:19+0000\n" +"PO-Revision-Date: 2022-04-04 23:28\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Chinese Simplified\n" "Language: zh\n" @@ -165,14 +165,14 @@ msgstr "平装" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "跨站" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "已屏蔽" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano(意大利语)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français(法语)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių(立陶宛语)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk(挪威语)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil(巴西葡萄牙语)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu(欧洲葡萄牙语)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "Română (罗马尼亚语)" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska(瑞典语)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文(繁体中文)" @@ -1189,7 +1193,6 @@ msgstr "域名" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -3134,7 +3137,7 @@ msgstr "搜索类型" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3201,7 +3204,7 @@ msgid "Create Announcement" msgstr "创建公告" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "添加日期:" @@ -3592,16 +3595,21 @@ msgstr "成功屏蔽了" msgid "Failed:" msgstr "已失败:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "实例名称" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "软件" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "未找到实例" diff --git a/locale/zh_Hant/LC_MESSAGES/django.mo b/locale/zh_Hant/LC_MESSAGES/django.mo index a7d44d11b93a0f6f166a72b4bcbd8e2c9c6fa7ff..df3d0173f30d8a2a994a4e1e190500196edbc860 100644 GIT binary patch delta 25 gcmZ2DlWE~hrVTo=Tqe2(CJIKzRz?<^&0@3l0cuJIiU0rr delta 25 gcmZ2DlWE~hrVTo=T*kUaW(r0|Rz{Ya&0@3l0cvUojQ{`u diff --git a/locale/zh_Hant/LC_MESSAGES/django.po b/locale/zh_Hant/LC_MESSAGES/django.po index be4549e45..91329e37c 100644 --- a/locale/zh_Hant/LC_MESSAGES/django.po +++ b/locale/zh_Hant/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-26 22:29\n" +"POT-Creation-Date: 2022-04-04 22:19+0000\n" +"PO-Revision-Date: 2022-04-04 23:28\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Chinese Traditional\n" "Language: zh\n" @@ -165,14 +165,14 @@ msgstr "" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "跨站" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "已封鎖" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français(法語)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "簡體中文" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文" @@ -1189,7 +1193,6 @@ msgstr "" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -3132,7 +3135,7 @@ msgstr "搜尋類別" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3199,7 +3202,7 @@ msgid "Create Announcement" msgstr "建立公告" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "新增日期:" @@ -3590,16 +3593,21 @@ msgstr "成功封鎖了" msgid "Failed:" msgstr "已失敗:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "實例名稱" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "軟體" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "" From a92bf785dd88a07b7d0cb77f4d6d5fb7c70d6b87 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 8 Apr 2022 14:16:05 -0700 Subject: [PATCH 82/85] Updates init files for pylint --- bookwyrm/tests/__init__.py | 3 ++- bookwyrm/tests/activitypub/__init__.py | 3 ++- bookwyrm/tests/activitystreams/__init__.py | 3 ++- bookwyrm/tests/connectors/__init__.py | 3 ++- bookwyrm/tests/importers/__init__.py | 3 ++- bookwyrm/tests/lists_stream/__init__.py | 3 ++- bookwyrm/tests/management/__init__.py | 3 ++- bookwyrm/tests/models/__init__.py | 3 ++- bookwyrm/tests/templatetags/__init__.py | 3 ++- bookwyrm/tests/views/__init__.py | 3 ++- bookwyrm/tests/views/admin/__init__.py | 3 ++- bookwyrm/tests/views/books/__init__.py | 3 ++- bookwyrm/tests/views/imports/__init__.py | 3 ++- bookwyrm/tests/views/inbox/__init__.py | 3 ++- bookwyrm/tests/views/landing/__init__.py | 3 ++- bookwyrm/tests/views/lists/__init__.py | 3 ++- bookwyrm/tests/views/preferences/__init__.py | 3 ++- bookwyrm/tests/views/shelf/__init__.py | 3 ++- 18 files changed, 36 insertions(+), 18 deletions(-) diff --git a/bookwyrm/tests/__init__.py b/bookwyrm/tests/__init__.py index b6e690fd5..fd96fb7b6 100644 --- a/bookwyrm/tests/__init__.py +++ b/bookwyrm/tests/__init__.py @@ -1 +1,2 @@ -from . import * +""" import ALL the tests """ +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/activitypub/__init__.py b/bookwyrm/tests/activitypub/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/activitypub/__init__.py +++ b/bookwyrm/tests/activitypub/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/activitystreams/__init__.py b/bookwyrm/tests/activitystreams/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/activitystreams/__init__.py +++ b/bookwyrm/tests/activitystreams/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/connectors/__init__.py b/bookwyrm/tests/connectors/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/connectors/__init__.py +++ b/bookwyrm/tests/connectors/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/importers/__init__.py b/bookwyrm/tests/importers/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/importers/__init__.py +++ b/bookwyrm/tests/importers/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/lists_stream/__init__.py b/bookwyrm/tests/lists_stream/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/lists_stream/__init__.py +++ b/bookwyrm/tests/lists_stream/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/management/__init__.py b/bookwyrm/tests/management/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/management/__init__.py +++ b/bookwyrm/tests/management/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/models/__init__.py b/bookwyrm/tests/models/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/models/__init__.py +++ b/bookwyrm/tests/models/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/templatetags/__init__.py b/bookwyrm/tests/templatetags/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/templatetags/__init__.py +++ b/bookwyrm/tests/templatetags/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/__init__.py b/bookwyrm/tests/views/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/views/__init__.py +++ b/bookwyrm/tests/views/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/admin/__init__.py b/bookwyrm/tests/views/admin/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/views/admin/__init__.py +++ b/bookwyrm/tests/views/admin/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/books/__init__.py b/bookwyrm/tests/views/books/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/views/books/__init__.py +++ b/bookwyrm/tests/views/books/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/imports/__init__.py b/bookwyrm/tests/views/imports/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/views/imports/__init__.py +++ b/bookwyrm/tests/views/imports/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/inbox/__init__.py b/bookwyrm/tests/views/inbox/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/views/inbox/__init__.py +++ b/bookwyrm/tests/views/inbox/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/landing/__init__.py b/bookwyrm/tests/views/landing/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/views/landing/__init__.py +++ b/bookwyrm/tests/views/landing/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/lists/__init__.py b/bookwyrm/tests/views/lists/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/views/lists/__init__.py +++ b/bookwyrm/tests/views/lists/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/preferences/__init__.py b/bookwyrm/tests/views/preferences/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/views/preferences/__init__.py +++ b/bookwyrm/tests/views/preferences/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/shelf/__init__.py b/bookwyrm/tests/views/shelf/__init__.py index b6e690fd5..b1753c3a0 100644 --- a/bookwyrm/tests/views/shelf/__init__.py +++ b/bookwyrm/tests/views/shelf/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self From 9921a1e75458e47a6c25bd7d615d6443d2b20366 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 8 Apr 2022 14:23:37 -0700 Subject: [PATCH 83/85] Various pylint complaince fixes --- bookwyrm/models/fields.py | 2 +- bookwyrm/tests/activitypub/test_author.py | 4 ++++ bookwyrm/tests/models/test_base_model.py | 2 +- bookwyrm/tests/models/test_fields.py | 2 +- bookwyrm/tests/models/test_user_model.py | 10 +++++----- bookwyrm/tests/test_signing.py | 4 ++-- bookwyrm/tests/views/inbox/test_inbox_announce.py | 4 ++-- bookwyrm/tests/views/test_author.py | 2 +- bookwyrm/tests/views/test_helpers.py | 2 +- bookwyrm/tests/views/test_user.py | 2 +- 10 files changed, 19 insertions(+), 15 deletions(-) diff --git a/bookwyrm/models/fields.py b/bookwyrm/models/fields.py index 5a03df015..62c61cc40 100644 --- a/bookwyrm/models/fields.py +++ b/bookwyrm/models/fields.py @@ -125,7 +125,7 @@ class ActivitypubFieldMixin: """model_field_name to activitypubFieldName""" if self.activitypub_field: return self.activitypub_field - name = self.name.split(".")[-1] + name = self.name.rsplit(".", maxsplit=1)[-1] components = name.split("_") return components[0] + "".join(x.title() for x in components[1:]) diff --git a/bookwyrm/tests/activitypub/test_author.py b/bookwyrm/tests/activitypub/test_author.py index 0a344340a..04439d137 100644 --- a/bookwyrm/tests/activitypub/test_author.py +++ b/bookwyrm/tests/activitypub/test_author.py @@ -4,7 +4,10 @@ from bookwyrm import models class Author(TestCase): + """ serialize author tests """ + def setUp(self): + """ initial data """ self.book = models.Edition.objects.create( title="Example Edition", remote_id="https://example.com/book/1", @@ -16,6 +19,7 @@ class Author(TestCase): ) def test_serialize_model(self): + """ check presense of author fields """ activity = self.author.to_activity() self.assertEqual(activity["id"], self.author.remote_id) self.assertIsInstance(activity["aliases"], list) diff --git a/bookwyrm/tests/models/test_base_model.py b/bookwyrm/tests/models/test_base_model.py index ae6d12077..8a8be2148 100644 --- a/bookwyrm/tests/models/test_base_model.py +++ b/bookwyrm/tests/models/test_base_model.py @@ -38,7 +38,7 @@ class BaseModel(TestCase): def test_remote_id(self): """these should be generated""" - self.test_model.id = 1 + self.test_model.id = 1 # pylint: disable=invalid-name expected = self.test_model.get_remote_id() self.assertEqual(expected, f"https://{DOMAIN}/bookwyrmtestmodel/1") diff --git a/bookwyrm/tests/models/test_fields.py b/bookwyrm/tests/models/test_fields.py index f7386c2e4..ed50d708e 100644 --- a/bookwyrm/tests/models/test_fields.py +++ b/bookwyrm/tests/models/test_fields.py @@ -161,7 +161,7 @@ class ModelFields(TestCase): @dataclass(init=False) class TestActivity(ActivityObject): """real simple mock""" - + # pylint: disbale=invalid-name to: List[str] cc: List[str] id: str = "http://hi.com" diff --git a/bookwyrm/tests/models/test_user_model.py b/bookwyrm/tests/models/test_user_model.py index aa62dce3a..adcee8fb9 100644 --- a/bookwyrm/tests/models/test_user_model.py +++ b/bookwyrm/tests/models/test_user_model.py @@ -17,7 +17,7 @@ class User(TestCase): "bookwyrm.activitystreams.populate_stream_task.delay" ), patch("bookwyrm.lists_stream.populate_lists_task.delay"): self.user = models.User.objects.create_user( - "mouse@%s" % DOMAIN, + f"mouse@{DOMAIN}", "mouse@mouse.mouse", "mouseword", local=True, @@ -107,7 +107,7 @@ class User(TestCase): def test_get_or_create_remote_server(self): responses.add( responses.GET, - "https://%s/.well-known/nodeinfo" % DOMAIN, + f"https://{DOMAIN}/.well-known/nodeinfo", json={"links": [{"href": "http://www.example.com"}, {}]}, ) responses.add( @@ -124,7 +124,7 @@ class User(TestCase): @responses.activate def test_get_or_create_remote_server_no_wellknown(self): responses.add( - responses.GET, "https://%s/.well-known/nodeinfo" % DOMAIN, status=404 + responses.GET, f"https://{DOMAIN}/.well-known/nodeinfo", status=404 ) server = models.user.get_or_create_remote_server(DOMAIN) @@ -136,7 +136,7 @@ class User(TestCase): def test_get_or_create_remote_server_no_links(self): responses.add( responses.GET, - "https://%s/.well-known/nodeinfo" % DOMAIN, + f"https://{DOMAIN}/.well-known/nodeinfo", json={"links": [{"href": "http://www.example.com"}, {}]}, ) responses.add(responses.GET, "http://www.example.com", status=404) @@ -150,7 +150,7 @@ class User(TestCase): def test_get_or_create_remote_server_unknown_format(self): responses.add( responses.GET, - "https://%s/.well-known/nodeinfo" % DOMAIN, + f"https://{DOMAIN}/.well-known/nodeinfo", json={"links": [{"href": "http://www.example.com"}, {}]}, ) responses.add(responses.GET, "http://www.example.com", json={"fish": "salmon"}) diff --git a/bookwyrm/tests/test_signing.py b/bookwyrm/tests/test_signing.py index da67a8de3..26d5e99a9 100644 --- a/bookwyrm/tests/test_signing.py +++ b/bookwyrm/tests/test_signing.py @@ -64,8 +64,8 @@ class Signature(TestCase): def send(self, signature, now, data, digest): """test request""" - c = Client() - return c.post( + client = Client() + return client.post( urlsplit(self.rat.inbox).path, data=data, content_type="application/json", diff --git a/bookwyrm/tests/views/inbox/test_inbox_announce.py b/bookwyrm/tests/views/inbox/test_inbox_announce.py index 01580c922..c77c18bc5 100644 --- a/bookwyrm/tests/views/inbox/test_inbox_announce.py +++ b/bookwyrm/tests/views/inbox/test_inbox_announce.py @@ -61,7 +61,7 @@ class InboxActivities(TestCase): self.assertEqual(models.Notification.objects.count(), 0) activity = { "type": "Announce", - "id": "%s/boost" % self.status.remote_id, + "id": f"{self.status.remote_id}/boost", "actor": self.remote_user.remote_id, "object": self.status.remote_id, "to": ["https://www.w3.org/ns/activitystreams#public"], @@ -94,7 +94,7 @@ class InboxActivities(TestCase): self.assertEqual(models.Notification.objects.count(), 0) activity = { "type": "Announce", - "id": "%s/boost" % self.status.remote_id, + "id": f"{self.status.remote_id}/boost", "actor": self.remote_user.remote_id, "object": "https://remote.com/status/1", "to": ["https://www.w3.org/ns/activitystreams#public"], diff --git a/bookwyrm/tests/views/test_author.py b/bookwyrm/tests/views/test_author.py index 71daef2a4..1f8fc51c5 100644 --- a/bookwyrm/tests/views/test_author.py +++ b/bookwyrm/tests/views/test_author.py @@ -66,7 +66,7 @@ class AuthorViews(TestCase): def test_author_page_edition_author(self): """there are so many views, this just makes sure it LOADS""" view = views.Author.as_view() - another_book = models.Edition.objects.create( + models.Edition.objects.create( title="Example Edition", remote_id="https://example.com/book/1", parent_work=self.work, diff --git a/bookwyrm/tests/views/test_helpers.py b/bookwyrm/tests/views/test_helpers.py index 8fe04f513..a092a4c9a 100644 --- a/bookwyrm/tests/views/test_helpers.py +++ b/bookwyrm/tests/views/test_helpers.py @@ -139,7 +139,7 @@ class ViewsHelpers(TestCase): } responses.add( responses.GET, - "https://example.com/.well-known/webfinger?resource=acct:%s" % username, + f"https://example.com/.well-known/webfinger?resource=acct:{username}", json=wellknown, status=200, ) diff --git a/bookwyrm/tests/views/test_user.py b/bookwyrm/tests/views/test_user.py index f65ffa514..e632819b5 100644 --- a/bookwyrm/tests/views/test_user.py +++ b/bookwyrm/tests/views/test_user.py @@ -83,7 +83,7 @@ class UserViews(TestCase): def test_user_page_domain(self): """when the user domain has dashes in it""" with patch("bookwyrm.models.user.set_remote_server"): - self.remote_user = models.User.objects.create_user( + models.User.objects.create_user( "nutria", "", "nutriaword", From 8ea11717648b99526502ab106c692f244c6a0ac4 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 8 Apr 2022 14:24:14 -0700 Subject: [PATCH 84/85] Python formatting --- bookwyrm/tests/__init__.py | 2 +- bookwyrm/tests/activitypub/test_author.py | 6 +++--- bookwyrm/tests/models/test_fields.py | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/bookwyrm/tests/__init__.py b/bookwyrm/tests/__init__.py index fd96fb7b6..0879d4ecd 100644 --- a/bookwyrm/tests/__init__.py +++ b/bookwyrm/tests/__init__.py @@ -1,2 +1,2 @@ """ import ALL the tests """ -from . import * # pylint: disable=import-self +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/activitypub/test_author.py b/bookwyrm/tests/activitypub/test_author.py index 04439d137..61d525fc0 100644 --- a/bookwyrm/tests/activitypub/test_author.py +++ b/bookwyrm/tests/activitypub/test_author.py @@ -4,10 +4,10 @@ from bookwyrm import models class Author(TestCase): - """ serialize author tests """ + """serialize author tests""" def setUp(self): - """ initial data """ + """initial data""" self.book = models.Edition.objects.create( title="Example Edition", remote_id="https://example.com/book/1", @@ -19,7 +19,7 @@ class Author(TestCase): ) def test_serialize_model(self): - """ check presense of author fields """ + """check presense of author fields""" activity = self.author.to_activity() self.assertEqual(activity["id"], self.author.remote_id) self.assertIsInstance(activity["aliases"], list) diff --git a/bookwyrm/tests/models/test_fields.py b/bookwyrm/tests/models/test_fields.py index ed50d708e..13ba6f2c9 100644 --- a/bookwyrm/tests/models/test_fields.py +++ b/bookwyrm/tests/models/test_fields.py @@ -161,6 +161,7 @@ class ModelFields(TestCase): @dataclass(init=False) class TestActivity(ActivityObject): """real simple mock""" + # pylint: disbale=invalid-name to: List[str] cc: List[str] From 2c394a2518b4f134ed79bfd1eb64e7c966c0f39e Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 8 Apr 2022 14:29:42 -0700 Subject: [PATCH 85/85] Fixes typo --- bookwyrm/tests/models/test_fields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/tests/models/test_fields.py b/bookwyrm/tests/models/test_fields.py index 13ba6f2c9..961fbd522 100644 --- a/bookwyrm/tests/models/test_fields.py +++ b/bookwyrm/tests/models/test_fields.py @@ -162,7 +162,7 @@ class ModelFields(TestCase): class TestActivity(ActivityObject): """real simple mock""" - # pylint: disbale=invalid-name + # pylint: disable=invalid-name to: List[str] cc: List[str] id: str = "http://hi.com"
  • From 4386d2ddb9b923a92c5fd0f5f1817faadb625055 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 19 Mar 2022 12:00:16 -0700 Subject: [PATCH 47/85] Switches resend email to modal --- .../confirm_email/confirm_email.html | 11 +++-- bookwyrm/templates/confirm_email/resend.html | 10 +++++ .../templates/confirm_email/resend_form.html | 20 --------- .../templates/confirm_email/resend_modal.html | 42 +++++++++++++++++++ bookwyrm/urls.py | 2 +- bookwyrm/views/__init__.py | 3 +- bookwyrm/views/landing/register.py | 28 ++++++++----- 7 files changed, 81 insertions(+), 35 deletions(-) create mode 100644 bookwyrm/templates/confirm_email/resend.html delete mode 100644 bookwyrm/templates/confirm_email/resend_form.html create mode 100644 bookwyrm/templates/confirm_email/resend_modal.html diff --git a/bookwyrm/templates/confirm_email/confirm_email.html b/bookwyrm/templates/confirm_email/confirm_email.html index 8c8adcdd9..65d40829f 100644 --- a/bookwyrm/templates/confirm_email/confirm_email.html +++ b/bookwyrm/templates/confirm_email/confirm_email.html @@ -29,9 +29,14 @@
    - {% trans "Can't find your code?" as button_text %} - {% include "snippets/toggle/open_button.html" with text=button_text controls_text="resend_form" focus="resend_form_header" %} - {% include "confirm_email/resend_form.html" with controls_text="resend_form" %} + + {% include "confirm_email/resend_modal.html" with id="resend_form" %}
    diff --git a/bookwyrm/templates/confirm_email/resend.html b/bookwyrm/templates/confirm_email/resend.html new file mode 100644 index 000000000..0b5ded068 --- /dev/null +++ b/bookwyrm/templates/confirm_email/resend.html @@ -0,0 +1,10 @@ +{% extends 'landing/layout.html' %} +{% load i18n %} + +{% block title %} +{% trans "Resend confirmation link" %} +{% endblock %} + +{% block content %} +{% include "confirm_email/resend_modal.html" with active=True static=True %} +{% endblock %} diff --git a/bookwyrm/templates/confirm_email/resend_form.html b/bookwyrm/templates/confirm_email/resend_form.html deleted file mode 100644 index 7c0c10980..000000000 --- a/bookwyrm/templates/confirm_email/resend_form.html +++ /dev/null @@ -1,20 +0,0 @@ -{% extends "components/inline_form.html" %} -{% load i18n %} -{% block header %} -{% trans "Resend confirmation link" %} -{% endblock %} - -{% block form %} - - {% csrf_token %} -
    - -
    - -
    -
    -
    - -
    - -{% endblock %} diff --git a/bookwyrm/templates/confirm_email/resend_modal.html b/bookwyrm/templates/confirm_email/resend_modal.html new file mode 100644 index 000000000..713fe6445 --- /dev/null +++ b/bookwyrm/templates/confirm_email/resend_modal.html @@ -0,0 +1,42 @@ +{% extends "components/modal.html" %} +{% load i18n %} + +{% block modal-title %} +{% trans "Resend confirmation link" %} +{% endblock %} + +{% block modal-form-open %} +
    +{% endblock %} + +{% block modal-body %} +{% csrf_token %} +
    + +
    + +
    +

    + {% trans "No user matching this email address found." %} +

    +
    +
    +
    +{% endblock %} + +{% block modal-footer %} +
    + +
    +{% endblock %} + +{% block modal-form-close %} +
    +{% endblock %} diff --git a/bookwyrm/urls.py b/bookwyrm/urls.py index 040b479cd..d73327f15 100644 --- a/bookwyrm/urls.py +++ b/bookwyrm/urls.py @@ -71,7 +71,7 @@ urlpatterns = [ views.ConfirmEmailCode.as_view(), name="confirm-email-code", ), - re_path(r"^resend-link/?$", views.resend_link, name="resend-link"), + re_path(r"^resend-link/?$", views.ResendConfirmEmail.as_view(), name="resend-link"), re_path(r"^logout/?$", views.Logout.as_view(), name="logout"), re_path( r"^password-reset/?$", diff --git a/bookwyrm/views/__init__.py b/bookwyrm/views/__init__.py index 36423feed..eadf423d2 100644 --- a/bookwyrm/views/__init__.py +++ b/bookwyrm/views/__init__.py @@ -52,7 +52,8 @@ from .books.links import BookFileLinks, AddFileLink, delete_link from .landing.about import about, privacy, conduct from .landing.landing import Home, Landing from .landing.login import Login, Logout -from .landing.register import Register, ConfirmEmail, ConfirmEmailCode, resend_link +from .landing.register import Register +from .landing.register import ConfirmEmail, ConfirmEmailCode, ResendConfirmEmail from .landing.password import PasswordResetRequest, PasswordReset # shelves diff --git a/bookwyrm/views/landing/register.py b/bookwyrm/views/landing/register.py index 86cd96ea9..681ce0a5e 100644 --- a/bookwyrm/views/landing/register.py +++ b/bookwyrm/views/landing/register.py @@ -5,7 +5,6 @@ from django.shortcuts import get_object_or_404, redirect from django.template.response import TemplateResponse from django.utils.decorators import method_decorator from django.views import View -from django.views.decorators.http import require_POST from django.views.decorators.debug import sensitive_variables, sensitive_post_parameters from bookwyrm import emailing, forms, models @@ -129,12 +128,21 @@ class ConfirmEmail(View): return ConfirmEmailCode().get(request, code) -@require_POST -def resend_link(request): - """resend confirmation link""" - email = request.POST.get("email") - user = get_object_or_404(models.User, email=email) - emailing.email_confirmation_email(user) - return TemplateResponse( - request, "confirm_email/confirm_email.html", {"valid": True} - ) +class ResendConfirmEmail(View): + """you probably didn't get the email because celery is slow but you can try this""" + def get(self, request, error=False): + """resend link landing page""" + return TemplateResponse(request, "confirm_email/resend.html", {"error": error}) + + def post(self, request): + """resend confirmation link""" + email = request.POST.get("email") + try: + user = models.User.objects.get(email=email) + except models.User.DoesNotExist: + return self.get(request, error=True) + + emailing.email_confirmation_email(user) + return TemplateResponse( + request, "confirm_email/confirm_email.html", {"valid": True} + ) From f2ab890b5af49d1d80583ca5c66dd799e4d986a8 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 19 Mar 2022 12:07:07 -0700 Subject: [PATCH 48/85] Adds fallback form to modal --- .../templates/confirm_email/confirm_email.html | 16 +++++++++------- .../templates/confirm_email/resend_modal.html | 2 ++ 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/bookwyrm/templates/confirm_email/confirm_email.html b/bookwyrm/templates/confirm_email/confirm_email.html index 65d40829f..abdd3a734 100644 --- a/bookwyrm/templates/confirm_email/confirm_email.html +++ b/bookwyrm/templates/confirm_email/confirm_email.html @@ -29,13 +29,15 @@
    - +
    + +
    {% include "confirm_email/resend_modal.html" with id="resend_form" %}
    diff --git a/bookwyrm/templates/confirm_email/resend_modal.html b/bookwyrm/templates/confirm_email/resend_modal.html index 713fe6445..beb9318a9 100644 --- a/bookwyrm/templates/confirm_email/resend_modal.html +++ b/bookwyrm/templates/confirm_email/resend_modal.html @@ -22,11 +22,13 @@ aria-described-by="id_email_errors" required > + {% if error %}

    {% trans "No user matching this email address found." %}

    + {% endif %} {% endblock %} From 78ac252daecf813b6c1a51e9c6ff3aa29d94008d Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 19 Mar 2022 12:08:57 -0700 Subject: [PATCH 49/85] Python formatting --- bookwyrm/views/landing/register.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bookwyrm/views/landing/register.py b/bookwyrm/views/landing/register.py index 681ce0a5e..f9a3cecb8 100644 --- a/bookwyrm/views/landing/register.py +++ b/bookwyrm/views/landing/register.py @@ -130,6 +130,7 @@ class ConfirmEmail(View): class ResendConfirmEmail(View): """you probably didn't get the email because celery is slow but you can try this""" + def get(self, request, error=False): """resend link landing page""" return TemplateResponse(request, "confirm_email/resend.html", {"error": error}) From 1b53c81351b1d952e666e5a8d3ff43d6fb059d07 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 19 Mar 2022 15:16:20 -0700 Subject: [PATCH 50/85] Updates tests --- bookwyrm/templates/confirm_email/resend.html | 2 +- bookwyrm/tests/views/landing/test_register.py | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/bookwyrm/templates/confirm_email/resend.html b/bookwyrm/templates/confirm_email/resend.html index 0b5ded068..221f07565 100644 --- a/bookwyrm/templates/confirm_email/resend.html +++ b/bookwyrm/templates/confirm_email/resend.html @@ -6,5 +6,5 @@ {% endblock %} {% block content %} -{% include "confirm_email/resend_modal.html" with active=True static=True %} +{% include "confirm_email/resend_modal.html" with active=True static=True id="resend-modal" %} {% endblock %} diff --git a/bookwyrm/tests/views/landing/test_register.py b/bookwyrm/tests/views/landing/test_register.py index dd2c5e971..24360a646 100644 --- a/bookwyrm/tests/views/landing/test_register.py +++ b/bookwyrm/tests/views/landing/test_register.py @@ -360,10 +360,17 @@ class RegisterViews(TestCase): result = view(request) validate_html(result.render()) - def test_resend_link(self, *_): + def test_resend_link_get(self, *_): + """try again""" + request = self.factory.get("") + request.user = self.anonymous_user + result = views.ResendConfirmEmail.as_view()(request) + validate_html(result.render()) + + def test_resend_link_post(self, *_): """try again""" request = self.factory.post("", {"email": "mouse@mouse.com"}) request.user = self.anonymous_user with patch("bookwyrm.emailing.send_email.delay") as mock: - views.resend_link(request) + views.ResendConfirmEmail.as_view()(request) self.assertEqual(mock.call_count, 1) From 3f7afc901487377de5aff901bc0ee6458fdc2e4e Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Mon, 21 Mar 2022 12:24:31 -0700 Subject: [PATCH 51/85] Adds prompt to import books in null state of suggested books --- bookwyrm/templates/feed/suggested_books.html | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/bookwyrm/templates/feed/suggested_books.html b/bookwyrm/templates/feed/suggested_books.html index 2582dcf06..12e478201 100644 --- a/bookwyrm/templates/feed/suggested_books.html +++ b/bookwyrm/templates/feed/suggested_books.html @@ -5,7 +5,19 @@

    {% trans "Your Books" %}

    {% if not suggested_books %} -

    {% trans "There are no books here right now! Try searching for a book to get started" %}

    + +
    +

    {% trans "There are no books here right now! Try searching for a book to get started" %}

    + + +
    + {% else %} {% with active_book=request.GET.book %}
    From 34166b8a2fbeeb82fe12c2fffc84306f380041f7 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Mon, 21 Mar 2022 12:24:47 -0700 Subject: [PATCH 52/85] Uses help instead of tooltip for goodreads export info --- bookwyrm/templates/import/import.html | 40 ++++++++++++++------------ bookwyrm/templates/import/tooltip.html | 8 ------ 2 files changed, 22 insertions(+), 26 deletions(-) delete mode 100644 bookwyrm/templates/import/tooltip.html diff --git a/bookwyrm/templates/import/import.html b/bookwyrm/templates/import/import.html index fdeb0e55b..1475acc06 100644 --- a/bookwyrm/templates/import/import.html +++ b/bookwyrm/templates/import/import.html @@ -14,28 +14,32 @@
    -
    -
    - -
    {{ import_form.csv_file }} diff --git a/bookwyrm/templates/import/tooltip.html b/bookwyrm/templates/import/tooltip.html deleted file mode 100644 index f2712b7e9..000000000 --- a/bookwyrm/templates/import/tooltip.html +++ /dev/null @@ -1,8 +0,0 @@ -{% extends 'components/tooltip.html' %} -{% load i18n %} - -{% block tooltip_content %} - -{% trans 'You can download your Goodreads data from the Import/Export page of your Goodreads account.' %} - -{% endblock %} From 9e792a89016210427c0bef3e132aa3c5b1c06426 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Mon, 21 Mar 2022 12:26:07 -0700 Subject: [PATCH 53/85] Italics for null state text on import page, to be consistent --- bookwyrm/templates/import/import.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/templates/import/import.html b/bookwyrm/templates/import/import.html index 1475acc06..6df7c0843 100644 --- a/bookwyrm/templates/import/import.html +++ b/bookwyrm/templates/import/import.html @@ -67,7 +67,7 @@

    {% trans "Recent Imports" %}

    {% if not jobs %} -

    {% trans "No recent imports" %}

    +

    {% trans "No recent imports" %}

    {% endif %}
      {% for job in jobs %} From 43cc017b44ccbef6dd54d0a10d462ee99d2a7d4b Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Mon, 21 Mar 2022 12:32:53 -0700 Subject: [PATCH 54/85] Removes tooltip component --- bookwyrm/static/css/bookwyrm/_all.scss | 8 -------- bookwyrm/templates/components/tooltip.html | 11 ----------- .../settings/ip_blocklist/ip_address_form.html | 1 + .../templates/settings/ip_blocklist/ip_tooltip.html | 8 -------- 4 files changed, 1 insertion(+), 27 deletions(-) delete mode 100644 bookwyrm/templates/components/tooltip.html delete mode 100644 bookwyrm/templates/settings/ip_blocklist/ip_tooltip.html diff --git a/bookwyrm/static/css/bookwyrm/_all.scss b/bookwyrm/static/css/bookwyrm/_all.scss index 6002785f7..79e5cf52c 100644 --- a/bookwyrm/static/css/bookwyrm/_all.scss +++ b/bookwyrm/static/css/bookwyrm/_all.scss @@ -129,14 +129,6 @@ button:focus-visible .button-invisible-overlay { } - -/** Tooltips - ******************************************************************************/ - -.tooltip { - width: 100%; -} - /** States ******************************************************************************/ diff --git a/bookwyrm/templates/components/tooltip.html b/bookwyrm/templates/components/tooltip.html deleted file mode 100644 index 3176a6399..000000000 --- a/bookwyrm/templates/components/tooltip.html +++ /dev/null @@ -1,11 +0,0 @@ -{% load i18n %} - -{% trans "Help" as button_text %} -{% include 'snippets/toggle/open_button.html' with text=button_text class="ml-3 is-rounded is-small has-background-body p-0 pb-1" icon="question-circle is-size-6" controls_text=controls_text controls_uid=controls_uid %} - - diff --git a/bookwyrm/templates/settings/ip_blocklist/ip_address_form.html b/bookwyrm/templates/settings/ip_blocklist/ip_address_form.html index 4a776987f..2afc00b4e 100644 --- a/bookwyrm/templates/settings/ip_blocklist/ip_address_form.html +++ b/bookwyrm/templates/settings/ip_blocklist/ip_address_form.html @@ -21,6 +21,7 @@
      +

      {% trans "You can block IP ranges using CIDR syntax." %}

      {% include 'snippets/form_errors.html' with errors_list=form.address.errors id="desc_address" %} diff --git a/bookwyrm/templates/settings/ip_blocklist/ip_tooltip.html b/bookwyrm/templates/settings/ip_blocklist/ip_tooltip.html deleted file mode 100644 index 3a2bf543a..000000000 --- a/bookwyrm/templates/settings/ip_blocklist/ip_tooltip.html +++ /dev/null @@ -1,8 +0,0 @@ -{% extends 'components/tooltip.html' %} -{% load i18n %} - -{% block tooltip_content %} - -{% trans "You can block IP ranges using CIDR syntax." %} - -{% endblock %} From 951b611881a800107143f01d25601c7b69c01f51 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 24 Mar 2022 10:40:42 -0700 Subject: [PATCH 55/85] Paginates results --- bookwyrm/templates/settings/reports/reports.html | 1 + bookwyrm/views/admin/reports.py | 11 ++++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/bookwyrm/templates/settings/reports/reports.html b/bookwyrm/templates/settings/reports/reports.html index 99cca1a75..64db2f26b 100644 --- a/bookwyrm/templates/settings/reports/reports.html +++ b/bookwyrm/templates/settings/reports/reports.html @@ -44,5 +44,6 @@ {% endfor %}
    +{% include 'snippets/pagination.html' with page=reports path=request.path %} {% endblock %} diff --git a/bookwyrm/views/admin/reports.py b/bookwyrm/views/admin/reports.py index bf9553e52..c19e3db4a 100644 --- a/bookwyrm/views/admin/reports.py +++ b/bookwyrm/views/admin/reports.py @@ -1,5 +1,6 @@ """ moderation via flagged posts and users """ from django.contrib.auth.decorators import login_required, permission_required +from django.core.paginator import Paginator from django.core.exceptions import PermissionDenied from django.shortcuts import get_object_or_404, redirect from django.template.response import TemplateResponse @@ -7,6 +8,7 @@ from django.utils.decorators import method_decorator from django.views import View from bookwyrm import forms, models +from bookwyrm.settings import PAGE_LENGTH # pylint: disable=no-self-use @@ -34,10 +36,17 @@ class ReportsAdmin(View): if username: filters["user__username__icontains"] = username filters["resolved"] = resolved + + reports = models.Report.objects.filter(**filters) + paginated = Paginator(reports, PAGE_LENGTH) + page = paginated.get_page(request.GET.get("page")) data = { "resolved": resolved, "server": server, - "reports": models.Report.objects.filter(**filters), + "reports": page, + "page_range": paginated.get_elided_page_range( + page.number, on_each_side=2, on_ends=1 + ), } return TemplateResponse(request, "settings/reports/reports.html", data) From 533642bf7e7ff23d85f476180240a47998863970 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 24 Mar 2022 10:43:17 -0700 Subject: [PATCH 56/85] Adds link to admin view --- bookwyrm/templates/settings/users/user_info.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bookwyrm/templates/settings/users/user_info.html b/bookwyrm/templates/settings/users/user_info.html index a5447931c..81b3a219b 100644 --- a/bookwyrm/templates/settings/users/user_info.html +++ b/bookwyrm/templates/settings/users/user_info.html @@ -14,6 +14,10 @@ {% endif %}

    {% trans "View user profile" %}

    + {% url 'settings-user' user.id as url %} + {% if not request.path == url %} +

    {% trans "Go to user admin" %}

    + {% endif %}
    From 82f87a3ff59f1cc6bd28dbfb037df3bda24913a8 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 24 Mar 2022 10:55:32 -0700 Subject: [PATCH 57/85] Adds colored icon for user status in admin table --- .../templates/settings/users/user_admin.html | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/bookwyrm/templates/settings/users/user_admin.html b/bookwyrm/templates/settings/users/user_admin.html index fdd9fb7df..4144f0bde 100644 --- a/bookwyrm/templates/settings/users/user_admin.html +++ b/bookwyrm/templates/settings/users/user_admin.html @@ -61,10 +61,25 @@
    {{ user|username }} + {{ user|username }} + {{ user.created_date }} {{ user.last_active_date }}{% if user.is_active %}{% trans "Active" %}{% else %}{% trans "Inactive" %}{% endif %} + {% if user.is_active %} + + {% trans "Active" %} + {% else %} + + {% trans "Inactive" %} + ({{ user.get_deactivation_reason_display }}) + {% endif %} + {% if user.federated_server %} From 0166cca0b75d841633af936d9c40f11c8522fad0 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 24 Mar 2022 11:01:02 -0700 Subject: [PATCH 58/85] Show created date and follower counts in admin view Adds "admin_mode" to user_preview --- bookwyrm/templates/settings/users/user_info.html | 5 ++++- bookwyrm/templates/user/user_preview.html | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/bookwyrm/templates/settings/users/user_info.html b/bookwyrm/templates/settings/users/user_info.html index 81b3a219b..a04db3b8e 100644 --- a/bookwyrm/templates/settings/users/user_info.html +++ b/bookwyrm/templates/settings/users/user_info.html @@ -6,7 +6,7 @@

    {% trans "Profile" %}

    - {% include 'user/user_preview.html' with user=user %} + {% include 'user/user_preview.html' with user=user admin_mode=True %} {% if user.summary %}
    {{ user.summary|to_markdown|safe }} @@ -71,6 +71,9 @@
    {% trans "Blocked by count:" %}
    {{ user.blocked_by.count }}
    +
    {% trans "Date added:" %}
    +
    {{ user.created_date }}
    +
    {% trans "Last active date:" %}
    {{ user.last_active_date }}
    diff --git a/bookwyrm/templates/user/user_preview.html b/bookwyrm/templates/user/user_preview.html index 0ed7c8ccd..c6bc180cb 100755 --- a/bookwyrm/templates/user/user_preview.html +++ b/bookwyrm/templates/user/user_preview.html @@ -21,7 +21,7 @@

    {{ user.username }}

    {% blocktrans with date=user.created_date|naturaltime %}Joined {{ date }}{% endblocktrans %}

    - {% if request.user.id == user.id %} + {% if request.user.id == user.id or admin_mode %} {% blocktrans count counter=user.followers.count %}{{ counter }} follower{% plural %}{{ counter }} followers{% endblocktrans %}, {% blocktrans with counter=user.following.count %}{{ counter }} following{% endblocktrans %} From a3b9c621afe964ff3b2f77046ee4cd4dabc26c59 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 24 Mar 2022 11:25:42 -0700 Subject: [PATCH 59/85] Trigger rebroadcast of follow requests --- bookwyrm/models/relationship.py | 4 +++- bookwyrm/views/follow.py | 19 ++++++++----------- 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/bookwyrm/models/relationship.py b/bookwyrm/models/relationship.py index e95c38fa5..cd72c756b 100644 --- a/bookwyrm/models/relationship.py +++ b/bookwyrm/models/relationship.py @@ -133,7 +133,9 @@ class UserFollowRequest(ActivitypubMixin, UserRelationship): user_object=self.user_subject, ) ).exists(): - raise IntegrityError() + raise IntegrityError( + "Attempting to follow blocked user", self.user_subject, self.user_object + ) super().save(*args, **kwargs) if broadcast and self.user_subject.local and not self.user_object.local: diff --git a/bookwyrm/views/follow.py b/bookwyrm/views/follow.py index 6e58a2b22..3ee392e32 100644 --- a/bookwyrm/views/follow.py +++ b/bookwyrm/views/follow.py @@ -2,7 +2,6 @@ import urllib.parse import re from django.contrib.auth.decorators import login_required -from django.db import IntegrityError from django.shortcuts import get_object_or_404, redirect from django.template.response import TemplateResponse from django.views.decorators.http import require_POST @@ -23,16 +22,14 @@ def follow(request): username = request.POST["user"] to_follow = get_user_from_username(request.user, username) - try: - models.UserFollowRequest.objects.create( - user_subject=request.user, - user_object=to_follow, - ) - except IntegrityError: - pass - - if request.GET.get("next"): - return redirect(request.GET.get("next", "/")) + follow_request, created = models.UserFollowRequest.objects.get_or_create( + user_subject=request.user, + user_object=to_follow, + ) + if not created: + # this request probably failed to connect with the remote + # that means we should save to trigger a re-broadcast + follow_request.save() return redirect(to_follow.local_path) From 4f24b05d60e271c684773a1dbee73120208cc54a Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 24 Mar 2022 13:10:49 -0700 Subject: [PATCH 60/85] Clear cache regardless of view success --- bookwyrm/models/relationship.py | 28 +++++++++++++++++++++------- bookwyrm/views/follow.py | 7 +++++-- 2 files changed, 26 insertions(+), 9 deletions(-) diff --git a/bookwyrm/models/relationship.py b/bookwyrm/models/relationship.py index cd72c756b..a0939b4b1 100644 --- a/bookwyrm/models/relationship.py +++ b/bookwyrm/models/relationship.py @@ -39,15 +39,14 @@ class UserRelationship(BookWyrmModel): def save(self, *args, **kwargs): """clear the template cache""" - # invalidate the template cache - cache.delete_many( - [ - f"relationship-{self.user_subject.id}-{self.user_object.id}", - f"relationship-{self.user_object.id}-{self.user_subject.id}", - ] - ) + clear_cache(self.user_subject, self.user_subject) super().save(*args, **kwargs) + def delete(self, *args, **kwargs): + """clear the template cache""" + clear_cache(self.user_subject, self.user_subject) + super().delete(*args, **kwargs) + class Meta: """relationships should be unique""" @@ -98,6 +97,7 @@ class UserFollows(ActivityMixin, UserRelationship): @classmethod def from_request(cls, follow_request): """converts a follow request into a follow relationship""" + print("from!!", cls) return cls.objects.create( user_subject=follow_request.user_subject, user_object=follow_request.user_object, @@ -115,6 +115,7 @@ class UserFollowRequest(ActivitypubMixin, UserRelationship): """make sure the follow or block relationship doesn't already exist""" # if there's a request for a follow that already exists, accept it # without changing the local database state + print("UHHH????") if UserFollows.objects.filter( user_subject=self.user_subject, user_object=self.user_object, @@ -136,6 +137,7 @@ class UserFollowRequest(ActivitypubMixin, UserRelationship): raise IntegrityError( "Attempting to follow blocked user", self.user_subject, self.user_object ) + print("super save!") super().save(*args, **kwargs) if broadcast and self.user_subject.local and not self.user_object.local: @@ -144,10 +146,12 @@ class UserFollowRequest(ActivitypubMixin, UserRelationship): if self.user_object.local: manually_approves = self.user_object.manually_approves_followers if not manually_approves: + print("accept") self.accept() model = apps.get_model("bookwyrm.Notification", require_ready=True) notification_type = "FOLLOW_REQUEST" if manually_approves else "FOLLOW" + print("notification") model.objects.create( user=self.user_object, related_user=self.user_subject, @@ -175,6 +179,7 @@ class UserFollowRequest(ActivitypubMixin, UserRelationship): return with transaction.atomic(): + print("from request") UserFollows.from_request(self) self.delete() @@ -209,3 +214,12 @@ class UserBlocks(ActivityMixin, UserRelationship): Q(user_subject=self.user_subject, user_object=self.user_object) | Q(user_subject=self.user_object, user_object=self.user_subject) ).delete() + +def clear_cache(user_subject, user_object): + """clear relationship cache""" + cache.delete_many( + [ + f"relationship-{user_subject.id}-{user_object.id}", + f"relationship-{user_object.id}-{user_subject.id}", + ] + ) diff --git a/bookwyrm/views/follow.py b/bookwyrm/views/follow.py index 3ee392e32..8bbcfca86 100644 --- a/bookwyrm/views/follow.py +++ b/bookwyrm/views/follow.py @@ -7,6 +7,7 @@ from django.template.response import TemplateResponse from django.views.decorators.http import require_POST from bookwyrm import models +from bookwyrm.models.relationship import clear_cache from .helpers import ( get_user_from_username, handle_remote_webfinger, @@ -21,11 +22,13 @@ def follow(request): """follow another user, here or abroad""" username = request.POST["user"] to_follow = get_user_from_username(request.user, username) + clear_cache(request.user, to_follow) follow_request, created = models.UserFollowRequest.objects.get_or_create( user_subject=request.user, user_object=to_follow, ) + if not created: # this request probably failed to connect with the remote # that means we should save to trigger a re-broadcast @@ -46,14 +49,14 @@ def unfollow(request): user_subject=request.user, user_object=to_unfollow ).delete() except models.UserFollows.DoesNotExist: - pass + clear_cache(request.user, to_unfollow) try: models.UserFollowRequest.objects.get( user_subject=request.user, user_object=to_unfollow ).delete() except models.UserFollowRequest.DoesNotExist: - pass + clear_cache(request.user, to_unfollow) # this is handled with ajax so it shouldn't really matter return redirect(request.headers.get("Referer", "/")) From 27e23e76ae7c61d958fac1527283942892276c53 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 26 Mar 2022 09:43:49 -0700 Subject: [PATCH 61/85] Fixes typo in about link --- bookwyrm/templates/about/about.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/templates/about/about.html b/bookwyrm/templates/about/about.html index f1ddd2f38..b04e21b17 100644 --- a/bookwyrm/templates/about/about.html +++ b/bookwyrm/templates/about/about.html @@ -99,7 +99,7 @@

    {% url "conduct" as coc_path %} {% blocktrans trimmed with site_name=site.name %} - {{ site_name }}'s moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior. + {{ site_name }}'s moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior. {% endblocktrans %}

    From a6ae55608a6ed6a1b0d1d7d70dcb84322581a4ec Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 26 Mar 2022 10:03:50 -0700 Subject: [PATCH 62/85] Adds Romanian locale --- .../0147_alter_user_preferred_language.py | 18 + bookwyrm/settings.py | 1 + bw-dev | 1 + locale/de_DE/LC_MESSAGES/django.mo | Bin 30883 -> 88055 bytes locale/de_DE/LC_MESSAGES/django.po | 308 +- locale/en_US/LC_MESSAGES/django.po | 216 +- locale/es_ES/LC_MESSAGES/django.mo | Bin 83383 -> 83264 bytes locale/es_ES/LC_MESSAGES/django.po | 218 +- locale/fr_FR/LC_MESSAGES/django.mo | Bin 44850 -> 95243 bytes locale/fr_FR/LC_MESSAGES/django.po | 248 +- locale/gl_ES/LC_MESSAGES/django.mo | Bin 90452 -> 90810 bytes locale/gl_ES/LC_MESSAGES/django.po | 220 +- locale/it_IT/LC_MESSAGES/django.mo | Bin 91821 -> 92062 bytes locale/it_IT/LC_MESSAGES/django.po | 218 +- locale/lt_LT/LC_MESSAGES/django.mo | Bin 84525 -> 84385 bytes locale/lt_LT/LC_MESSAGES/django.po | 220 +- locale/no_NO/LC_MESSAGES/django.mo | Bin 79522 -> 79389 bytes locale/no_NO/LC_MESSAGES/django.po | 218 +- locale/pt_BR/LC_MESSAGES/django.mo | Bin 91084 -> 91435 bytes locale/pt_BR/LC_MESSAGES/django.po | 218 +- locale/pt_PT/LC_MESSAGES/django.mo | Bin 72651 -> 72516 bytes locale/pt_PT/LC_MESSAGES/django.po | 218 +- locale/ro_RO/LC_MESSAGES/django.mo | Bin 0 -> 67747 bytes locale/ro_RO/LC_MESSAGES/django.po | 5119 +++++++++++++++++ locale/sv_SE/LC_MESSAGES/django.mo | Bin 87525 -> 89210 bytes locale/sv_SE/LC_MESSAGES/django.po | 268 +- locale/zh_Hans/LC_MESSAGES/django.mo | Bin 44096 -> 85895 bytes locale/zh_Hans/LC_MESSAGES/django.po | 269 +- locale/zh_Hant/LC_MESSAGES/django.mo | Bin 38839 -> 36001 bytes locale/zh_Hant/LC_MESSAGES/django.po | 223 +- 30 files changed, 6815 insertions(+), 1386 deletions(-) create mode 100644 bookwyrm/migrations/0147_alter_user_preferred_language.py create mode 100644 locale/ro_RO/LC_MESSAGES/django.mo create mode 100644 locale/ro_RO/LC_MESSAGES/django.po diff --git a/bookwyrm/migrations/0147_alter_user_preferred_language.py b/bookwyrm/migrations/0147_alter_user_preferred_language.py new file mode 100644 index 000000000..2d1b94b6f --- /dev/null +++ b/bookwyrm/migrations/0147_alter_user_preferred_language.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.12 on 2022-03-26 16:59 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('bookwyrm', '0146_auto_20220316_2352'), + ] + + operations = [ + migrations.AlterField( + model_name='user', + name='preferred_language', + field=models.CharField(blank=True, choices=[('en-us', 'English'), ('de-de', 'Deutsch (German)'), ('es-es', 'Español (Spanish)'), ('gl-es', 'Galego (Galician)'), ('it-it', 'Italiano (Italian)'), ('fr-fr', 'Français (French)'), ('lt-lt', 'Lietuvių (Lithuanian)'), ('no-no', 'Norsk (Norwegian)'), ('pt-br', 'Português do Brasil (Brazilian Portuguese)'), ('pt-pt', 'Português Europeu (European Portuguese)'), ('ro-ro', 'Română (Romanian)'), ('sv-se', 'Svenska (Swedish)'), ('zh-hans', '简体中文 (Simplified Chinese)'), ('zh-hant', '繁體中文 (Traditional Chinese)')], max_length=255, null=True), + ), + ] diff --git a/bookwyrm/settings.py b/bookwyrm/settings.py index f8d4c397f..409bcedf2 100644 --- a/bookwyrm/settings.py +++ b/bookwyrm/settings.py @@ -289,6 +289,7 @@ LANGUAGES = [ ("no-no", _("Norsk (Norwegian)")), ("pt-br", _("Português do Brasil (Brazilian Portuguese)")), ("pt-pt", _("Português Europeu (European Portuguese)")), + ("ro-ro", _("Română (Romanian)")), ("sv-se", _("Svenska (Swedish)")), ("zh-hans", _("简体中文 (Simplified Chinese)")), ("zh-hant", _("繁體中文 (Traditional Chinese)")), diff --git a/bw-dev b/bw-dev index ed695934b..6e2c450b9 100755 --- a/bw-dev +++ b/bw-dev @@ -123,6 +123,7 @@ case "$CMD" in git checkout l10n_main locale/no_NO git checkout l10n_main locale/pt_PT git checkout l10n_main locale/pt_BR + git checkout l10n_main locale/ro_RO git checkout l10n_main locale/sv_SE git checkout l10n_main locale/zh_Hans git checkout l10n_main locale/zh_Hant diff --git a/locale/de_DE/LC_MESSAGES/django.mo b/locale/de_DE/LC_MESSAGES/django.mo index 4ce83f72b3f3850c58528f13afcd23442a75a515..4ce7be0f7b55431fd795b0b87ba64a8fbfeb7102 100644 GIT binary patch literal 88055 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 Oz!$EEHa|VR*ZnWOxjmHt literal 30883 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\n" "Language-Team: German\n" "Language: de\n" @@ -60,7 +60,7 @@ msgstr "Diese Domain ist blockiert. Bitte kontaktiere einen Administrator, wenn #: bookwyrm/forms/links.py:46 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." -msgstr "" +msgstr "Dieser Link mit dem Dateityp wurde bereits für dieses Buch hinzugefügt. Falls es nicht sichtbar ist, befindet sich die Domain noch in der Freischaltung." #: bookwyrm/forms/lists.py:26 msgid "List Order" @@ -119,7 +119,7 @@ msgstr "Gefahr" #: bookwyrm/models/antispam.py:106 bookwyrm/models/antispam.py:140 msgid "Automatically generated report" -msgstr "" +msgstr "Automatisch generierter Report" #: bookwyrm/models/base_model.py:17 bookwyrm/models/link.py:72 #: bookwyrm/templates/import/import_status.html:200 @@ -245,7 +245,7 @@ msgstr "Zum Liehen erhältlich" msgid "Approved" msgstr "Bestätigt" -#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:281 +#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:289 msgid "Reviews" msgstr "Besprechungen" @@ -554,8 +554,8 @@ msgstr "… und das längste" #, python-format msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" -msgstr[0] "%(display_name)s hat sich als Ziel gesetzt, %(year)s %(goal)s Buch zu lesen
    und hat %(goal_percent)s% % dieses Ziels erreicht" -msgstr[1] "%(display_name)s hat sich als Ziel gesetzt, %(year)s %(goal)s Bücher zu lesen
    und hat %(goal_percent)s% % dieses Ziels erreicht" +msgstr[0] "%(display_name)s hat sich als Ziel gesetzt, %(year)s %(goal)s Buch zu lesen
    und hat %(goal_percent)s %% dieses Ziels erreicht" +msgstr[1] "%(display_name)s hat sich als Ziel gesetzt, %(year)s %(goal)s Bücher zu lesen
    und hat %(goal_percent)s %% dieses Ziels erreicht" #: bookwyrm/templates/annual_summary/layout.html:209 msgid "Way to go!" @@ -651,22 +651,22 @@ msgid "Edit Author:" msgstr "Autor*in bearbeiten:" #: bookwyrm/templates/author/edit_author.html:13 -#: bookwyrm/templates/book/edit/edit_book.html:19 +#: bookwyrm/templates/book/edit/edit_book.html:25 msgid "Added:" msgstr "Hinzugefügt:" #: bookwyrm/templates/author/edit_author.html:14 -#: bookwyrm/templates/book/edit/edit_book.html:22 +#: bookwyrm/templates/book/edit/edit_book.html:28 msgid "Updated:" msgstr "Aktualisiert:" #: bookwyrm/templates/author/edit_author.html:16 -#: bookwyrm/templates/book/edit/edit_book.html:26 +#: bookwyrm/templates/book/edit/edit_book.html:32 msgid "Last edited by:" msgstr "Zuletzt bearbeitet von:" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/book/edit/edit_book_form.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:19 msgid "Metadata" msgstr "Metadaten" @@ -678,8 +678,8 @@ msgid "Name:" msgstr "Name:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:76 -#: bookwyrm/templates/book/edit/edit_book_form.html:146 +#: bookwyrm/templates/book/edit/edit_book_form.html:78 +#: bookwyrm/templates/book/edit/edit_book_form.html:148 msgid "Separate multiple values with commas." msgstr "Mehrere Werte durch Kommas getrennt eingeben." @@ -708,7 +708,7 @@ msgid "Openlibrary key:" msgstr "Openlibrary-Schlüssel:" #: bookwyrm/templates/author/edit_author.html:84 -#: bookwyrm/templates/book/edit/edit_book_form.html:322 +#: bookwyrm/templates/book/edit/edit_book_form.html:326 msgid "Inventaire ID:" msgstr "Inventaire-ID:" @@ -726,7 +726,7 @@ msgstr "ISNI:" #: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/book/book.html:202 -#: bookwyrm/templates/book/edit/edit_book.html:121 +#: bookwyrm/templates/book/edit/edit_book.html:127 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:82 #: bookwyrm/templates/groups/form.html:32 @@ -738,7 +738,7 @@ msgstr "ISNI:" #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:105 -#: bookwyrm/templates/settings/site.html:169 +#: bookwyrm/templates/settings/site.html:181 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -749,8 +749,8 @@ msgstr "Speichern" #: bookwyrm/templates/author/sync_modal.html:23 #: bookwyrm/templates/book/book.html:203 #: bookwyrm/templates/book/cover_add_modal.html:33 -#: bookwyrm/templates/book/edit/edit_book.html:123 -#: bookwyrm/templates/book/edit/edit_book.html:126 +#: bookwyrm/templates/book/edit/edit_book.html:129 +#: bookwyrm/templates/book/edit/edit_book.html:132 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 #: bookwyrm/templates/book/file_links/verification_modal.html:25 #: bookwyrm/templates/book/sync_modal.html:23 @@ -772,7 +772,7 @@ msgid "Loading data will connect to %(source_name)s and check f msgstr "Das Laden von Daten wird eine Verbindung zu %(source_name)s aufbauen und überprüfen, ob Autor*in-Informationen vorliegen, die hier noch nicht bekannt sind. Bestehende Informationen werden nicht überschrieben." #: bookwyrm/templates/author/sync_modal.html:24 -#: bookwyrm/templates/book/edit/edit_book.html:108 +#: bookwyrm/templates/book/edit/edit_book.html:114 #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:42 @@ -782,7 +782,7 @@ msgstr "Bestätigen" #: bookwyrm/templates/book/book.html:19 msgid "Unable to connect to remote source." -msgstr "" +msgstr "Verbindung zum Server konnte nicht hergestellt werden." #: bookwyrm/templates/book/book.html:64 bookwyrm/templates/book/book.html:65 msgid "Edit Book" @@ -812,58 +812,60 @@ msgid "Add Description" msgstr "Beschreibung hinzufügen" #: bookwyrm/templates/book/book.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:40 +#: bookwyrm/templates/book/edit/edit_book_form.html:42 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Beschreibung:" -#: bookwyrm/templates/book/book.html:212 +#: bookwyrm/templates/book/book.html:214 #, python-format -msgid "%(count)s editions" -msgstr "%(count)s Ausgaben" +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" msgstr "Du hast diese Ausgabe im folgenden Regal:" -#: bookwyrm/templates/book/book.html:235 +#: bookwyrm/templates/book/book.html:243 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "Eine andere Ausgabe dieses Buches befindet sich in deinem %(shelf_name)s Regal." -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:254 msgid "Your reading activity" msgstr "Deine Leseaktivität" -#: bookwyrm/templates/book/book.html:252 +#: bookwyrm/templates/book/book.html:260 msgid "Add read dates" msgstr "Lesedaten hinzufügen" -#: bookwyrm/templates/book/book.html:260 +#: bookwyrm/templates/book/book.html:268 msgid "You don't have any reading activity for this book." msgstr "Du hast keine Leseaktivität für dieses Buch." -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:294 msgid "Your reviews" msgstr "Deine Besprechungen" -#: bookwyrm/templates/book/book.html:292 +#: bookwyrm/templates/book/book.html:300 msgid "Your comments" msgstr "Deine Kommentare" -#: bookwyrm/templates/book/book.html:298 +#: bookwyrm/templates/book/book.html:306 msgid "Your quotes" msgstr "Deine Zitate" -#: bookwyrm/templates/book/book.html:334 +#: bookwyrm/templates/book/book.html:342 msgid "Subjects" msgstr "Themen" -#: bookwyrm/templates/book/book.html:346 +#: bookwyrm/templates/book/book.html:354 msgid "Places" msgstr "Orte" -#: bookwyrm/templates/book/book.html:357 +#: bookwyrm/templates/book/book.html:365 #: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83 #: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 @@ -873,11 +875,11 @@ msgstr "Orte" msgid "Lists" msgstr "Listen" -#: bookwyrm/templates/book/book.html:369 +#: bookwyrm/templates/book/book.html:377 msgid "Add to list" msgstr "Zur Liste hinzufügen" -#: bookwyrm/templates/book/book.html:379 +#: bookwyrm/templates/book/book.html:387 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -891,12 +893,12 @@ msgid "ISBN:" msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:15 -#: bookwyrm/templates/book/edit/edit_book_form.html:331 +#: bookwyrm/templates/book/edit/edit_book_form.html:335 msgid "OCLC Number:" msgstr "OCLC-Nummer:" #: bookwyrm/templates/book/book_identifiers.html:22 -#: bookwyrm/templates/book/edit/edit_book_form.html:340 +#: bookwyrm/templates/book/edit/edit_book_form.html:344 msgid "ASIN:" msgstr "ASIN:" @@ -905,12 +907,12 @@ msgid "Add cover" msgstr "Titelbild hinzufügen" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:230 +#: bookwyrm/templates/book/edit/edit_book_form.html:234 msgid "Upload cover:" msgstr "Titelbild hochladen:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:236 +#: bookwyrm/templates/book/edit/edit_book_form.html:240 msgid "Load cover from url:" msgstr "Titelbild von URL laden:" @@ -929,177 +931,177 @@ msgstr "Vorschau des Titelbilds" msgid "Close" msgstr "Schließen" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:12 +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 #, python-format msgid "Edit \"%(book_title)s\"" msgstr "„%(book_title)s“ bearbeiten" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 msgid "Add Book" msgstr "Buch hinzufügen" -#: bookwyrm/templates/book/edit/edit_book.html:48 +#: bookwyrm/templates/book/edit/edit_book.html:54 msgid "Confirm Book Info" msgstr "Buchinfo bestätigen" -#: bookwyrm/templates/book/edit/edit_book.html:56 +#: bookwyrm/templates/book/edit/edit_book.html:62 #, python-format msgid "Is \"%(name)s\" one of these authors?" msgstr "Ist „%(name)s“ einer dieser Autor*innen?" -#: bookwyrm/templates/book/edit/edit_book.html:67 -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:73 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Author of " msgstr "Autor*in von " -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Find more information at isni.org" msgstr "Weitere Informationen auf isni.org finden" -#: bookwyrm/templates/book/edit/edit_book.html:79 +#: bookwyrm/templates/book/edit/edit_book.html:85 msgid "This is a new author" msgstr "Neue*r Autor*in" -#: bookwyrm/templates/book/edit/edit_book.html:86 +#: bookwyrm/templates/book/edit/edit_book.html:92 #, python-format msgid "Creating a new author: %(name)s" msgstr "Als neue*r Autor*in erstellen: %(name)s" -#: bookwyrm/templates/book/edit/edit_book.html:93 +#: bookwyrm/templates/book/edit/edit_book.html:99 msgid "Is this an edition of an existing work?" msgstr "Ist das eine Ausgabe eines vorhandenen Werkes?" -#: bookwyrm/templates/book/edit/edit_book.html:101 +#: bookwyrm/templates/book/edit/edit_book.html:107 msgid "This is a new work" msgstr "Dies ist ein neues Werk." -#: bookwyrm/templates/book/edit/edit_book.html:110 +#: bookwyrm/templates/book/edit/edit_book.html:116 #: bookwyrm/templates/feed/status.html:21 msgid "Back" msgstr "Zurück" -#: bookwyrm/templates/book/edit/edit_book_form.html:22 +#: bookwyrm/templates/book/edit/edit_book_form.html:24 #: bookwyrm/templates/snippets/create_status/review.html:15 msgid "Title:" msgstr "Titel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:31 +#: bookwyrm/templates/book/edit/edit_book_form.html:33 msgid "Subtitle:" msgstr "Untertitel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:51 +#: bookwyrm/templates/book/edit/edit_book_form.html:53 msgid "Series:" msgstr "Serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:61 +#: bookwyrm/templates/book/edit/edit_book_form.html:63 msgid "Series number:" msgstr "Nummer in der Serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:72 +#: bookwyrm/templates/book/edit/edit_book_form.html:74 msgid "Languages:" msgstr "Sprachen:" -#: bookwyrm/templates/book/edit/edit_book_form.html:84 +#: bookwyrm/templates/book/edit/edit_book_form.html:86 msgid "Subjects:" -msgstr "" +msgstr "Betreff:" -#: bookwyrm/templates/book/edit/edit_book_form.html:88 +#: bookwyrm/templates/book/edit/edit_book_form.html:90 msgid "Add subject" -msgstr "" +msgstr "Betreff hinzufügen" -#: bookwyrm/templates/book/edit/edit_book_form.html:106 +#: bookwyrm/templates/book/edit/edit_book_form.html:108 msgid "Remove subject" -msgstr "" +msgstr "Betreff entfernen" -#: bookwyrm/templates/book/edit/edit_book_form.html:129 +#: bookwyrm/templates/book/edit/edit_book_form.html:131 msgid "Add Another Subject" -msgstr "" +msgstr "Weiteren Betreff hinzufügen" -#: bookwyrm/templates/book/edit/edit_book_form.html:137 +#: bookwyrm/templates/book/edit/edit_book_form.html:139 msgid "Publication" msgstr "Veröffentlichung" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Publisher:" msgstr "Verlag:" -#: bookwyrm/templates/book/edit/edit_book_form.html:154 +#: bookwyrm/templates/book/edit/edit_book_form.html:156 msgid "First published date:" msgstr "Erstveröffentlichungsdatum:" -#: bookwyrm/templates/book/edit/edit_book_form.html:163 +#: bookwyrm/templates/book/edit/edit_book_form.html:165 msgid "Published date:" msgstr "Veröffentlichungsdatum:" -#: bookwyrm/templates/book/edit/edit_book_form.html:174 +#: bookwyrm/templates/book/edit/edit_book_form.html:176 msgid "Authors" msgstr "Autor*innen" -#: bookwyrm/templates/book/edit/edit_book_form.html:183 +#: bookwyrm/templates/book/edit/edit_book_form.html:187 #, python-format msgid "Remove %(name)s" msgstr "%(name)s entfernen" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:190 #, python-format msgid "Author page for %(name)s" msgstr "Autor*inseite für %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:194 +#: bookwyrm/templates/book/edit/edit_book_form.html:198 msgid "Add Authors:" msgstr "Autor*innen hinzufügen:" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:204 msgid "Add Author" msgstr "Autor*in hinzufügen" -#: bookwyrm/templates/book/edit/edit_book_form.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#: bookwyrm/templates/book/edit/edit_book_form.html:205 msgid "Jane Doe" msgstr "Lisa Musterfrau" -#: bookwyrm/templates/book/edit/edit_book_form.html:207 +#: bookwyrm/templates/book/edit/edit_book_form.html:211 msgid "Add Another Author" msgstr "Weitere*n Autor*in hinzufügen" -#: bookwyrm/templates/book/edit/edit_book_form.html:217 +#: bookwyrm/templates/book/edit/edit_book_form.html:221 #: bookwyrm/templates/shelf/shelf.html:146 msgid "Cover" msgstr "Titelbild" -#: bookwyrm/templates/book/edit/edit_book_form.html:249 +#: bookwyrm/templates/book/edit/edit_book_form.html:253 msgid "Physical Properties" msgstr "Physikalische Eigenschaften" -#: bookwyrm/templates/book/edit/edit_book_form.html:256 +#: bookwyrm/templates/book/edit/edit_book_form.html:260 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Format:" -#: bookwyrm/templates/book/edit/edit_book_form.html:268 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 msgid "Format details:" msgstr "Formatdetails:" -#: bookwyrm/templates/book/edit/edit_book_form.html:279 +#: bookwyrm/templates/book/edit/edit_book_form.html:283 msgid "Pages:" msgstr "Seiten:" -#: bookwyrm/templates/book/edit/edit_book_form.html:290 +#: bookwyrm/templates/book/edit/edit_book_form.html:294 msgid "Book Identifiers" msgstr "Buch-Identifikatoren" -#: bookwyrm/templates/book/edit/edit_book_form.html:295 +#: bookwyrm/templates/book/edit/edit_book_form.html:299 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:304 +#: bookwyrm/templates/book/edit/edit_book_form.html:308 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:313 +#: bookwyrm/templates/book/edit/edit_book_form.html:317 msgid "Openlibrary ID:" msgstr "OpenLibrary-ID:" @@ -1113,6 +1115,14 @@ msgstr "Ausgaben von %(book_title)s" msgid "Editions of \"%(work_title)s\"" msgstr "Ausgaben von \"%(work_title)s\"" +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:75 +msgid "Add another edition" +msgstr "" + #: bookwyrm/templates/book/editions/format_filter.html:9 #: bookwyrm/templates/book/editions/language_filter.html:9 msgid "Any" @@ -1156,7 +1166,7 @@ msgstr "Links bearbeiten" #: bookwyrm/templates/book/file_links/edit_links.html:11 #, python-format msgid "Links for \"%(title)s\"" -msgstr "" +msgstr "Links zu \"%(title)s\"" #: bookwyrm/templates/book/file_links/edit_links.html:32 #: bookwyrm/templates/settings/link_domains/link_table.html:6 @@ -1183,7 +1193,7 @@ msgstr "Domain" #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/federation/instance_list.html:46 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_info.html:20 @@ -1307,7 +1317,7 @@ msgid "Confirmation code:" msgstr "Bestätigungscode:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 -#: bookwyrm/templates/landing/layout.html:73 +#: bookwyrm/templates/landing/layout.html:81 #: bookwyrm/templates/settings/dashboard/dashboard.html:116 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" @@ -2186,7 +2196,7 @@ msgstr "%(name)s erlaubt keine Selbtregistrierung" msgid "Thank you! Your request has been received." msgstr "Danke! Deine Anfrage ist eingegangen." -#: bookwyrm/templates/landing/layout.html:82 +#: bookwyrm/templates/landing/layout.html:90 msgid "Your Account" msgstr "Dein Benutzer*inkonto" @@ -2251,7 +2261,7 @@ msgstr "Nach einem Buch, einem*r Benutzer*in oder einer Liste suchen" #: bookwyrm/templates/layout.html:61 bookwyrm/templates/layout.html:62 msgid "Scan Barcode" -msgstr "" +msgstr "Barcode scannen" #: bookwyrm/templates/layout.html:72 msgid "Main navigation menu" @@ -2464,7 +2474,7 @@ msgstr "Eine optionale Notiz die zusammen mit dem Buch angezeigt wird." #: bookwyrm/templates/lists/list.html:37 msgid "That book is already on this list." -msgstr "" +msgstr "Dieses Buch ist bereits auf dieser Liste." #: bookwyrm/templates/lists/list.html:45 msgid "You successfully suggested a book for this list!" @@ -2898,7 +2908,7 @@ msgstr "Profil" #: bookwyrm/templates/settings/site.html:77 #: bookwyrm/templates/setup/config.html:91 msgid "Display" -msgstr "" +msgstr "Anzeige" #: bookwyrm/templates/preferences/edit_user.html:14 #: bookwyrm/templates/preferences/edit_user.html:112 @@ -2928,7 +2938,7 @@ msgstr "Bevorzugte Zeitzone:" #: bookwyrm/templates/preferences/edit_user.html:101 msgid "Theme:" -msgstr "" +msgstr "Thema:" #: bookwyrm/templates/preferences/edit_user.html:117 msgid "Manually approve followers" @@ -3040,38 +3050,40 @@ msgstr "Melden" msgid "\n" " Scan Barcode\n" " " -msgstr "" +msgstr "\n" +" Barcode scannen\n" +" " #: bookwyrm/templates/search/barcode_modal.html:23 msgid "Requesting camera..." -msgstr "" +msgstr "Kamera wird angefragt..." #: bookwyrm/templates/search/barcode_modal.html:24 msgid "Grant access to the camera to scan a book's barcode." -msgstr "" +msgstr "Erlaube Zugriff auf die Kamera, um den Barcode eines Buches zu scannen." #: bookwyrm/templates/search/barcode_modal.html:29 msgid "Could not access camera" -msgstr "" +msgstr "Konnte nicht auf die Kamera zugreifen" #: bookwyrm/templates/search/barcode_modal.html:33 msgctxt "barcode scanner" msgid "Scanning..." -msgstr "" +msgstr "Scannen..." #: bookwyrm/templates/search/barcode_modal.html:34 msgid "Align your book's barcode with the camera." -msgstr "" +msgstr "Richten Sie den Barcode Ihres Buches mit der Kamera aus." #: bookwyrm/templates/search/barcode_modal.html:38 msgctxt "barcode scanner" msgid "ISBN scanned" -msgstr "" +msgstr "ISBN gescannt" #: bookwyrm/templates/search/barcode_modal.html:39 msgctxt "followed by ISBN" msgid "Searching for book:" -msgstr "" +msgstr "Nach Buch suchen:" #: bookwyrm/templates/search/book.html:44 msgid "Results from" @@ -3235,7 +3247,7 @@ msgstr "" #: bookwyrm/templates/settings/automod/rules.html:19 msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." -msgstr "" +msgstr "Benutzer oder Status, die bereits gemeldet wurden (unabhängig davon, ob der Bericht gelöst wurde) werden nicht markiert." #: bookwyrm/templates/settings/automod/rules.html:26 msgid "Schedule:" @@ -3276,7 +3288,7 @@ msgstr "" #: bookwyrm/templates/settings/automod/rules.html:107 msgid "Add Rule" -msgstr "" +msgstr "Regel hinzufügen" #: bookwyrm/templates/settings/automod/rules.html:116 #: bookwyrm/templates/settings/automod/rules.html:160 @@ -3286,28 +3298,28 @@ msgstr "" #: bookwyrm/templates/settings/automod/rules.html:126 #: bookwyrm/templates/settings/automod/rules.html:163 msgid "Flag users" -msgstr "" +msgstr "Benutzer markieren" #: bookwyrm/templates/settings/automod/rules.html:133 #: bookwyrm/templates/settings/automod/rules.html:166 msgid "Flag statuses" -msgstr "" +msgstr "Status markieren" #: bookwyrm/templates/settings/automod/rules.html:140 msgid "Add rule" -msgstr "" +msgstr "Regel hinzufügen" #: bookwyrm/templates/settings/automod/rules.html:147 msgid "Current Rules" -msgstr "" +msgstr "Aktuelle Regeln" #: bookwyrm/templates/settings/automod/rules.html:151 msgid "Show rules" -msgstr "" +msgstr "Regeln anzeigen" #: bookwyrm/templates/settings/automod/rules.html:188 msgid "Remove rule" -msgstr "" +msgstr "Regel entfernen" #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 @@ -3484,7 +3496,7 @@ msgstr "Version:" #: bookwyrm/templates/settings/federation/instance.html:17 msgid "Refresh data" -msgstr "" +msgstr "Daten aktualisieren" #: bookwyrm/templates/settings/federation/instance.html:37 msgid "Details" @@ -3603,50 +3615,54 @@ msgstr "Datum der Bestätigung" msgid "Email" msgstr "E-Mail" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +msgid "Answer" +msgstr "Antwort" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 msgid "Action" msgstr "Aktion" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:53 msgid "No requests" msgstr "Keine Anfragen" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:65 #: bookwyrm/templates/settings/invites/status_filter.html:16 msgid "Accepted" msgstr "Bestätigt" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:67 #: bookwyrm/templates/settings/invites/status_filter.html:12 msgid "Sent" msgstr "Gesendet" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:69 #: bookwyrm/templates/settings/invites/status_filter.html:8 msgid "Requested" msgstr "Angefragt" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:79 msgid "Send invite" msgstr "Einladung senden" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:81 msgid "Re-send invite" msgstr "Einladung erneut senden" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:101 msgid "Ignore" msgstr "Ignorieren" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:103 msgid "Un-ignore" msgstr "Doch nicht ignorieren" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:114 msgid "Back to pending requests" msgstr "Zurück zu den ausstehenden Anfragen" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 msgid "View ignored requests" msgstr "Zeige ignorierte Anfragen" @@ -3756,7 +3772,7 @@ msgstr "Seiteneinstellungen" #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 msgid "Themes" -msgstr "" +msgstr "Themen" #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format @@ -3801,11 +3817,11 @@ msgstr "" #: bookwyrm/templates/settings/reports/report.html:28 msgid "Update on your report:" -msgstr "" +msgstr "Aktualisieren Sie Ihren Bericht:" #: bookwyrm/templates/settings/reports/report.html:36 msgid "Reported status" -msgstr "" +msgstr "Gemeldete Statusmeldungen" #: bookwyrm/templates/settings/reports/report.html:38 msgid "Status has been deleted" @@ -3978,18 +3994,26 @@ msgid "Allow invite requests" msgstr "Einladungsanfragen zulassen" #: bookwyrm/templates/settings/site.html:151 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/site.html:156 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:163 msgid "Require users to confirm email address" msgstr "Benutzer*innen müssen ihre E-Mail-Adresse bestätigen" -#: bookwyrm/templates/settings/site.html:153 +#: bookwyrm/templates/settings/site.html:165 msgid "(Recommended if registration is open)" msgstr "(empfohlen, falls Selbstregistrierung zulässig ist)" -#: bookwyrm/templates/settings/site.html:156 +#: bookwyrm/templates/settings/site.html:168 msgid "Registration closed text:" msgstr "Hinweis, wenn Selbtregistrierung nicht erlaubt ist:" -#: bookwyrm/templates/settings/site.html:160 +#: bookwyrm/templates/settings/site.html:172 msgid "Invite request text:" msgstr "Hinweis für Einladungsanfragen:" @@ -4244,31 +4268,31 @@ msgstr "" #: bookwyrm/templates/setup/config.html:109 msgid "Enable preview images:" -msgstr "" +msgstr "Vorschaubilder aktivieren:" #: bookwyrm/templates/setup/config.html:116 msgid "Enable image thumbnails:" -msgstr "" +msgstr "Miniaturbilder aktivieren:" #: bookwyrm/templates/setup/config.html:128 msgid "Does everything look right?" -msgstr "" +msgstr "Sieht alles richtig aus?" #: bookwyrm/templates/setup/config.html:130 msgid "This is your last chance to set your domain and protocol." -msgstr "" +msgstr "Dies ist Ihre letzte Chance, Ihre Domain und Ihr Protokoll zu setzen." #: bookwyrm/templates/setup/config.html:144 msgid "You can change your instance settings in the .env file on your server." -msgstr "" +msgstr "Sie können Ihre Instanz-Einstellungen in der Datei .env auf Ihrem Server ändern." #: bookwyrm/templates/setup/config.html:148 msgid "View installation instructions" -msgstr "" +msgstr "Zur Installationsanleitung" #: bookwyrm/templates/setup/layout.html:5 msgid "Instance Setup" -msgstr "" +msgstr "Instanzeinstellungen" #: bookwyrm/templates/setup/layout.html:15 msgid "Installing BookWyrm" @@ -4276,7 +4300,7 @@ msgstr "" #: bookwyrm/templates/setup/layout.html:18 msgid "Need help?" -msgstr "" +msgstr "Benötigen Sie Hilfe?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 #: bookwyrm/templates/shelf/shelf.html:72 @@ -4425,7 +4449,7 @@ msgstr "Spoileralarm aktivieren" #: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 msgid "Spoilers/content warnings:" -msgstr "" +msgstr "Spoiler/Inhaltswarnungen:" #: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 msgid "Spoilers ahead!" @@ -4677,7 +4701,7 @@ msgstr "„%(book_title)s“ auf Leseliste setzen" #: bookwyrm/templates/snippets/register_form.html:18 msgid "Choose wisely! Your username cannot be changed." -msgstr "" +msgstr "Wählen Sie weise! Ihr Benutzername kann nicht geändert werden." #: bookwyrm/templates/snippets/register_form.html:64 msgid "Sign Up" diff --git a/locale/en_US/LC_MESSAGES/django.po b/locale/en_US/LC_MESSAGES/django.po index 1358c68d2..70976ed7d 100644 --- a/locale/en_US/LC_MESSAGES/django.po +++ b/locale/en_US/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-17 16:15+0000\n" +"POT-Creation-Date: 2022-03-26 17:00+0000\n" "PO-Revision-Date: 2021-02-28 17:19-0800\n" "Last-Translator: Mouse Reeve \n" "Language-Team: English \n" @@ -321,14 +321,18 @@ msgid "Português Europeu (European Portuguese)" msgstr "" #: bookwyrm/settings.py:292 -msgid "Svenska (Swedish)" +msgid "Română (Romanian)" msgstr "" #: bookwyrm/settings.py:293 -msgid "简体中文 (Simplified Chinese)" +msgid "Svenska (Swedish)" msgstr "" #: bookwyrm/settings.py:294 +msgid "简体中文 (Simplified Chinese)" +msgstr "" + +#: bookwyrm/settings.py:295 msgid "繁體中文 (Traditional Chinese)" msgstr "" @@ -709,7 +713,7 @@ msgid "Openlibrary key:" msgstr "" #: bookwyrm/templates/author/edit_author.html:84 -#: bookwyrm/templates/book/edit/edit_book_form.html:326 +#: bookwyrm/templates/book/edit/edit_book_form.html:323 msgid "Inventaire ID:" msgstr "" @@ -735,7 +739,7 @@ msgstr "" #: bookwyrm/templates/lists/edit_item_form.html:15 #: bookwyrm/templates/lists/form.html:130 #: bookwyrm/templates/preferences/edit_user.html:136 -#: bookwyrm/templates/readthrough/readthrough_modal.html:74 +#: bookwyrm/templates/readthrough/readthrough_modal.html:81 #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:105 @@ -759,7 +763,7 @@ msgstr "" #: bookwyrm/templates/lists/add_item_modal.html:36 #: bookwyrm/templates/lists/delete_list_modal.html:16 #: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 -#: bookwyrm/templates/readthrough/readthrough_modal.html:73 +#: bookwyrm/templates/readthrough/readthrough_modal.html:80 #: bookwyrm/templates/search/barcode_modal.html:45 #: bookwyrm/templates/settings/federation/instance.html:106 #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 @@ -885,7 +889,7 @@ msgstr "" #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 #: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 -#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:32 msgid "Add" msgstr "" @@ -894,12 +898,12 @@ msgid "ISBN:" msgstr "" #: bookwyrm/templates/book/book_identifiers.html:15 -#: bookwyrm/templates/book/edit/edit_book_form.html:335 +#: bookwyrm/templates/book/edit/edit_book_form.html:332 msgid "OCLC Number:" msgstr "" #: bookwyrm/templates/book/book_identifiers.html:22 -#: bookwyrm/templates/book/edit/edit_book_form.html:344 +#: bookwyrm/templates/book/edit/edit_book_form.html:341 msgid "ASIN:" msgstr "" @@ -908,12 +912,12 @@ msgid "Add cover" msgstr "" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:234 +#: bookwyrm/templates/book/edit/edit_book_form.html:233 msgid "Upload cover:" msgstr "" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:240 +#: bookwyrm/templates/book/edit/edit_book_form.html:239 msgid "Load cover from url:" msgstr "" @@ -925,8 +929,7 @@ msgstr "" #: bookwyrm/templates/components/inline_form.html:8 #: bookwyrm/templates/components/modal.html:13 #: bookwyrm/templates/components/modal.html:30 -#: bookwyrm/templates/components/tooltip.html:7 -#: bookwyrm/templates/feed/suggested_books.html:55 +#: bookwyrm/templates/feed/suggested_books.html:67 #: bookwyrm/templates/get_started/layout.html:25 #: bookwyrm/templates/get_started/layout.html:58 msgid "Close" @@ -1032,77 +1035,77 @@ msgstr "" msgid "First published date:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:165 +#: bookwyrm/templates/book/edit/edit_book_form.html:164 msgid "Published date:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:176 +#: bookwyrm/templates/book/edit/edit_book_form.html:175 msgid "Authors" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:187 +#: bookwyrm/templates/book/edit/edit_book_form.html:186 #, python-format msgid "Remove %(name)s" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:190 +#: bookwyrm/templates/book/edit/edit_book_form.html:189 #, python-format msgid "Author page for %(name)s" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:198 +#: bookwyrm/templates/book/edit/edit_book_form.html:197 msgid "Add Authors:" msgstr "" +#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:203 +msgid "Add Author" +msgstr "" + #: bookwyrm/templates/book/edit/edit_book_form.html:201 #: bookwyrm/templates/book/edit/edit_book_form.html:204 -msgid "Add Author" -msgstr "" - -#: bookwyrm/templates/book/edit/edit_book_form.html:202 -#: bookwyrm/templates/book/edit/edit_book_form.html:205 msgid "Jane Doe" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:211 +#: bookwyrm/templates/book/edit/edit_book_form.html:210 msgid "Add Another Author" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/book/edit/edit_book_form.html:220 #: bookwyrm/templates/shelf/shelf.html:146 msgid "Cover" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:253 +#: bookwyrm/templates/book/edit/edit_book_form.html:252 msgid "Physical Properties" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:260 +#: bookwyrm/templates/book/edit/edit_book_form.html:259 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:272 +#: bookwyrm/templates/book/edit/edit_book_form.html:269 msgid "Format details:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:283 +#: bookwyrm/templates/book/edit/edit_book_form.html:280 msgid "Pages:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:294 +#: bookwyrm/templates/book/edit/edit_book_form.html:291 msgid "Book Identifiers" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:299 +#: bookwyrm/templates/book/edit/edit_book_form.html:296 msgid "ISBN 13:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:308 +#: bookwyrm/templates/book/edit/edit_book_form.html:305 msgid "ISBN 10:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:317 +#: bookwyrm/templates/book/edit/edit_book_form.html:314 msgid "Openlibrary ID:" msgstr "" @@ -1197,7 +1200,7 @@ msgstr "" #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 -#: bookwyrm/templates/settings/users/user_info.html:20 +#: bookwyrm/templates/settings/users/user_info.html:24 msgid "Status" msgstr "" @@ -1288,10 +1291,6 @@ msgstr "" msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." msgstr "" -#: bookwyrm/templates/components/tooltip.html:3 -msgid "Help" -msgstr "" - #: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 msgid "Edit status" msgstr "" @@ -1313,7 +1312,7 @@ msgid "Sorry! We couldn't find that code." msgstr "" #: bookwyrm/templates/confirm_email/confirm_email.html:19 -#: bookwyrm/templates/settings/users/user_info.html:85 +#: bookwyrm/templates/settings/users/user_info.html:92 msgid "Confirmation code:" msgstr "" @@ -1324,15 +1323,16 @@ msgstr "" msgid "Submit" msgstr "" -#: bookwyrm/templates/confirm_email/confirm_email.html:32 +#: bookwyrm/templates/confirm_email/confirm_email.html:38 msgid "Can't find your code?" msgstr "" -#: bookwyrm/templates/confirm_email/resend_form.html:4 +#: bookwyrm/templates/confirm_email/resend.html:5 +#: bookwyrm/templates/confirm_email/resend_modal.html:5 msgid "Resend confirmation link" msgstr "" -#: bookwyrm/templates/confirm_email/resend_form.html:11 +#: bookwyrm/templates/confirm_email/resend_modal.html:15 #: bookwyrm/templates/landing/layout.html:68 #: bookwyrm/templates/landing/password_reset_request.html:18 #: bookwyrm/templates/preferences/edit_user.html:53 @@ -1340,7 +1340,11 @@ msgstr "" msgid "Email address:" msgstr "" -#: bookwyrm/templates/confirm_email/resend_form.html:17 +#: bookwyrm/templates/confirm_email/resend_modal.html:28 +msgid "No user matching this email address found." +msgstr "" + +#: bookwyrm/templates/confirm_email/resend_modal.html:38 msgid "Resend link" msgstr "" @@ -1658,10 +1662,18 @@ msgstr "" msgid "Your Books" msgstr "" -#: bookwyrm/templates/feed/suggested_books.html:8 +#: bookwyrm/templates/feed/suggested_books.html:10 msgid "There are no books here right now! Try searching for a book to get started" msgstr "" +#: bookwyrm/templates/feed/suggested_books.html:13 +msgid "Do you have book data from another service like GoodReads?" +msgstr "" + +#: bookwyrm/templates/feed/suggested_books.html:16 +msgid "Import your reading history" +msgstr "" + #: bookwyrm/templates/feed/suggested_users.html:5 #: bookwyrm/templates/get_started/users.html:6 msgid "Who to follow" @@ -1956,28 +1968,32 @@ msgstr "" msgid "Data source:" msgstr "" -#: bookwyrm/templates/import/import.html:40 +#: bookwyrm/templates/import/import.html:39 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "" + +#: bookwyrm/templates/import/import.html:44 msgid "Data file:" msgstr "" -#: bookwyrm/templates/import/import.html:48 +#: bookwyrm/templates/import/import.html:52 msgid "Include reviews" msgstr "" -#: bookwyrm/templates/import/import.html:53 +#: bookwyrm/templates/import/import.html:57 msgid "Privacy setting for imported reviews:" msgstr "" -#: bookwyrm/templates/import/import.html:59 +#: bookwyrm/templates/import/import.html:63 #: bookwyrm/templates/settings/federation/instance_blocklist.html:76 msgid "Import" msgstr "" -#: bookwyrm/templates/import/import.html:64 +#: bookwyrm/templates/import/import.html:68 msgid "Recent Imports" msgstr "" -#: bookwyrm/templates/import/import.html:66 +#: bookwyrm/templates/import/import.html:70 msgid "No recent imports" msgstr "" @@ -2117,10 +2133,6 @@ msgstr "" msgid "Reject" msgstr "" -#: bookwyrm/templates/import/tooltip.html:6 -msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." -msgstr "" - #: bookwyrm/templates/import/troubleshoot.html:7 msgid "Failed items" msgstr "" @@ -2992,19 +3004,19 @@ msgid "Update read dates for \"%(title)s\"" msgstr "" #: bookwyrm/templates/readthrough/readthrough_form.html:10 -#: bookwyrm/templates/readthrough/readthrough_modal.html:31 +#: bookwyrm/templates/readthrough/readthrough_modal.html:38 #: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 #: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 msgid "Started reading" msgstr "" #: bookwyrm/templates/readthrough/readthrough_form.html:18 -#: bookwyrm/templates/readthrough/readthrough_modal.html:49 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 msgid "Progress" msgstr "" #: bookwyrm/templates/readthrough/readthrough_form.html:24 -#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/readthrough/readthrough_modal.html:63 #: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 msgid "Finished reading" msgstr "" @@ -3478,19 +3490,19 @@ msgstr "" #: bookwyrm/templates/settings/federation/edit_instance.html:52 #: bookwyrm/templates/settings/federation/instance.html:46 -#: bookwyrm/templates/settings/users/user_info.html:106 +#: bookwyrm/templates/settings/users/user_info.html:113 msgid "Status:" msgstr "" #: bookwyrm/templates/settings/federation/edit_instance.html:66 #: bookwyrm/templates/settings/federation/instance.html:40 -#: bookwyrm/templates/settings/users/user_info.html:100 +#: bookwyrm/templates/settings/users/user_info.html:107 msgid "Software:" msgstr "" #: bookwyrm/templates/settings/federation/edit_instance.html:76 #: bookwyrm/templates/settings/federation/instance.html:43 -#: bookwyrm/templates/settings/users/user_info.html:103 +#: bookwyrm/templates/settings/users/user_info.html:110 msgid "Version:" msgstr "" @@ -3517,7 +3529,7 @@ msgid "View all" msgstr "" #: bookwyrm/templates/settings/federation/instance.html:62 -#: bookwyrm/templates/settings/users/user_info.html:56 +#: bookwyrm/templates/settings/users/user_info.html:60 msgid "Reports:" msgstr "" @@ -3534,7 +3546,7 @@ msgid "Blocked by us:" msgstr "" #: bookwyrm/templates/settings/federation/instance.html:90 -#: bookwyrm/templates/settings/users/user_info.html:110 +#: bookwyrm/templates/settings/users/user_info.html:117 msgid "Notes" msgstr "" @@ -3711,6 +3723,10 @@ msgstr "" msgid "IP Address:" msgstr "" +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:24 +msgid "You can block IP ranges using CIDR syntax." +msgstr "" + #: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 #: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 #: bookwyrm/templates/settings/layout.html:69 @@ -3729,10 +3745,6 @@ msgstr "" msgid "No IP addresses currently blocked" msgstr "" -#: bookwyrm/templates/settings/ip_blocklist/ip_tooltip.html:6 -msgid "You can block IP ranges using CIDR syntax." -msgstr "" - #: bookwyrm/templates/settings/layout.html:4 msgid "Administration" msgstr "" @@ -3990,25 +4002,25 @@ msgid "Allow registration" msgstr "" #: bookwyrm/templates/settings/site.html:145 -msgid "Allow invite requests" -msgstr "" - -#: bookwyrm/templates/settings/site.html:151 -msgid "Set a question for invite requests" -msgstr "" - -#: bookwyrm/templates/settings/site.html:156 -msgid "Question:" -msgstr "" - -#: bookwyrm/templates/settings/site.html:163 msgid "Require users to confirm email address" msgstr "" -#: bookwyrm/templates/settings/site.html:165 +#: bookwyrm/templates/settings/site.html:147 msgid "(Recommended if registration is open)" msgstr "" +#: bookwyrm/templates/settings/site.html:152 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/site.html:158 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/site.html:163 +msgid "Question:" +msgstr "" + #: bookwyrm/templates/settings/site.html:168 msgid "Registration closed text:" msgstr "" @@ -4107,18 +4119,18 @@ msgstr "" msgid "Remote instance" msgstr "" -#: bookwyrm/templates/settings/users/user_admin.html:67 -#: bookwyrm/templates/settings/users/user_info.html:24 +#: bookwyrm/templates/settings/users/user_admin.html:74 +#: bookwyrm/templates/settings/users/user_info.html:28 msgid "Active" msgstr "" -#: bookwyrm/templates/settings/users/user_admin.html:67 -#: bookwyrm/templates/settings/users/user_info.html:28 +#: bookwyrm/templates/settings/users/user_admin.html:79 +#: bookwyrm/templates/settings/users/user_info.html:32 msgid "Inactive" msgstr "" -#: bookwyrm/templates/settings/users/user_admin.html:73 -#: bookwyrm/templates/settings/users/user_info.html:120 +#: bookwyrm/templates/settings/users/user_admin.html:88 +#: bookwyrm/templates/settings/users/user_info.html:127 msgid "Not set" msgstr "" @@ -4126,51 +4138,59 @@ msgstr "" msgid "View user profile" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:36 +#: bookwyrm/templates/settings/users/user_info.html:19 +msgid "Go to user admin" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:40 msgid "Local" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:38 +#: bookwyrm/templates/settings/users/user_info.html:42 msgid "Remote" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:47 +#: bookwyrm/templates/settings/users/user_info.html:51 msgid "User details" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:51 +#: bookwyrm/templates/settings/users/user_info.html:55 msgid "Email:" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:61 +#: bookwyrm/templates/settings/users/user_info.html:65 msgid "(View reports)" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:67 +#: bookwyrm/templates/settings/users/user_info.html:71 msgid "Blocked by count:" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:70 +#: bookwyrm/templates/settings/users/user_info.html:74 +msgid "Date added:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:77 msgid "Last active date:" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:73 +#: bookwyrm/templates/settings/users/user_info.html:80 msgid "Manually approved followers:" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:76 +#: bookwyrm/templates/settings/users/user_info.html:83 msgid "Discoverable:" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:80 +#: bookwyrm/templates/settings/users/user_info.html:87 msgid "Deactivation reason:" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:95 +#: bookwyrm/templates/settings/users/user_info.html:102 msgid "Instance details" msgstr "" -#: bookwyrm/templates/settings/users/user_info.html:117 +#: bookwyrm/templates/settings/users/user_info.html:124 msgid "View instance" msgstr "" @@ -4413,7 +4433,7 @@ msgid "Some thoughts on the book" msgstr "" #: bookwyrm/templates/snippets/create_status/comment.html:27 -#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:17 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:18 msgid "Progress:" msgstr "" diff --git a/locale/es_ES/LC_MESSAGES/django.mo b/locale/es_ES/LC_MESSAGES/django.mo index bff67a2ce318006ac112735733c1f1e9cbdb24d6..d0687222a3d920df7ecf398a8cf8133c30b02933 100644 GIT binary patch delta 21072 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 pUNCO!lLJ>%XZ!!(*_PJY_u\n" "Language-Team: Spanish\n" "Language: es\n" @@ -245,7 +245,7 @@ msgstr "Disponible para préstamo" msgid "Approved" msgstr "Aprobado" -#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:281 +#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:289 msgid "Reviews" msgstr "Reseñas" @@ -651,22 +651,22 @@ msgid "Edit Author:" msgstr "Editar Autor/Autora/Autore:" #: bookwyrm/templates/author/edit_author.html:13 -#: bookwyrm/templates/book/edit/edit_book.html:19 +#: bookwyrm/templates/book/edit/edit_book.html:25 msgid "Added:" msgstr "Agregado:" #: bookwyrm/templates/author/edit_author.html:14 -#: bookwyrm/templates/book/edit/edit_book.html:22 +#: bookwyrm/templates/book/edit/edit_book.html:28 msgid "Updated:" msgstr "Actualizado:" #: bookwyrm/templates/author/edit_author.html:16 -#: bookwyrm/templates/book/edit/edit_book.html:26 +#: bookwyrm/templates/book/edit/edit_book.html:32 msgid "Last edited by:" msgstr "Editado más recientemente por:" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/book/edit/edit_book_form.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:19 msgid "Metadata" msgstr "Metadatos" @@ -678,8 +678,8 @@ msgid "Name:" msgstr "Nombre:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:76 -#: bookwyrm/templates/book/edit/edit_book_form.html:146 +#: bookwyrm/templates/book/edit/edit_book_form.html:78 +#: bookwyrm/templates/book/edit/edit_book_form.html:148 msgid "Separate multiple values with commas." msgstr "Separar varios valores con comas." @@ -708,7 +708,7 @@ msgid "Openlibrary key:" msgstr "Clave OpenLibrary:" #: bookwyrm/templates/author/edit_author.html:84 -#: bookwyrm/templates/book/edit/edit_book_form.html:322 +#: bookwyrm/templates/book/edit/edit_book_form.html:326 msgid "Inventaire ID:" msgstr "ID Inventaire:" @@ -726,7 +726,7 @@ msgstr "ISNI:" #: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/book/book.html:202 -#: bookwyrm/templates/book/edit/edit_book.html:121 +#: bookwyrm/templates/book/edit/edit_book.html:127 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:82 #: bookwyrm/templates/groups/form.html:32 @@ -738,7 +738,7 @@ msgstr "ISNI:" #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:105 -#: bookwyrm/templates/settings/site.html:169 +#: bookwyrm/templates/settings/site.html:181 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -749,8 +749,8 @@ msgstr "Guardar" #: bookwyrm/templates/author/sync_modal.html:23 #: bookwyrm/templates/book/book.html:203 #: bookwyrm/templates/book/cover_add_modal.html:33 -#: bookwyrm/templates/book/edit/edit_book.html:123 -#: bookwyrm/templates/book/edit/edit_book.html:126 +#: bookwyrm/templates/book/edit/edit_book.html:129 +#: bookwyrm/templates/book/edit/edit_book.html:132 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 #: bookwyrm/templates/book/file_links/verification_modal.html:25 #: bookwyrm/templates/book/sync_modal.html:23 @@ -772,7 +772,7 @@ msgid "Loading data will connect to %(source_name)s and check f msgstr "La carga de datos se conectará a %(source_name)s y comprobará si hay metadatos sobre este autor que no están presentes aquí. Los metadatos existentes no serán sobrescritos." #: bookwyrm/templates/author/sync_modal.html:24 -#: bookwyrm/templates/book/edit/edit_book.html:108 +#: bookwyrm/templates/book/edit/edit_book.html:114 #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:42 @@ -812,58 +812,60 @@ msgid "Add Description" msgstr "Agregar descripción" #: bookwyrm/templates/book/book.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:40 +#: bookwyrm/templates/book/edit/edit_book_form.html:42 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Descripción:" -#: bookwyrm/templates/book/book.html:212 +#: bookwyrm/templates/book/book.html:214 #, python-format -msgid "%(count)s editions" -msgstr "%(count)s ediciones" +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" msgstr "Has guardado esta edición en la estantería de:" -#: bookwyrm/templates/book/book.html:235 +#: bookwyrm/templates/book/book.html:243 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "Una edición diferente de este libro está en tu estantería %(shelf_name)s." -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:254 msgid "Your reading activity" msgstr "Tu actividad de lectura" -#: bookwyrm/templates/book/book.html:252 +#: bookwyrm/templates/book/book.html:260 msgid "Add read dates" msgstr "Agregar fechas de lectura" -#: bookwyrm/templates/book/book.html:260 +#: bookwyrm/templates/book/book.html:268 msgid "You don't have any reading activity for this book." msgstr "No tienes ninguna actividad de lectura para este libro." -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:294 msgid "Your reviews" msgstr "Tus reseñas" -#: bookwyrm/templates/book/book.html:292 +#: bookwyrm/templates/book/book.html:300 msgid "Your comments" msgstr "Tus comentarios" -#: bookwyrm/templates/book/book.html:298 +#: bookwyrm/templates/book/book.html:306 msgid "Your quotes" msgstr "Tus citas" -#: bookwyrm/templates/book/book.html:334 +#: bookwyrm/templates/book/book.html:342 msgid "Subjects" msgstr "Sujetos" -#: bookwyrm/templates/book/book.html:346 +#: bookwyrm/templates/book/book.html:354 msgid "Places" msgstr "Lugares" -#: bookwyrm/templates/book/book.html:357 +#: bookwyrm/templates/book/book.html:365 #: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83 #: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 @@ -873,11 +875,11 @@ msgstr "Lugares" msgid "Lists" msgstr "Listas" -#: bookwyrm/templates/book/book.html:369 +#: bookwyrm/templates/book/book.html:377 msgid "Add to list" msgstr "Agregar a lista" -#: bookwyrm/templates/book/book.html:379 +#: bookwyrm/templates/book/book.html:387 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -891,12 +893,12 @@ msgid "ISBN:" msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:15 -#: bookwyrm/templates/book/edit/edit_book_form.html:331 +#: bookwyrm/templates/book/edit/edit_book_form.html:335 msgid "OCLC Number:" msgstr "Número OCLC:" #: bookwyrm/templates/book/book_identifiers.html:22 -#: bookwyrm/templates/book/edit/edit_book_form.html:340 +#: bookwyrm/templates/book/edit/edit_book_form.html:344 msgid "ASIN:" msgstr "ASIN:" @@ -905,12 +907,12 @@ msgid "Add cover" msgstr "Agregar portada" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:230 +#: bookwyrm/templates/book/edit/edit_book_form.html:234 msgid "Upload cover:" msgstr "Subir portada:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:236 +#: bookwyrm/templates/book/edit/edit_book_form.html:240 msgid "Load cover from url:" msgstr "Agregar portada de url:" @@ -929,177 +931,177 @@ msgstr "Vista previa de la portada del libro" msgid "Close" msgstr "Cerrar" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:12 +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 #, python-format msgid "Edit \"%(book_title)s\"" msgstr "Editar \"%(book_title)s\"" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 msgid "Add Book" msgstr "Agregar libro" -#: bookwyrm/templates/book/edit/edit_book.html:48 +#: bookwyrm/templates/book/edit/edit_book.html:54 msgid "Confirm Book Info" msgstr "Confirmar información de libro" -#: bookwyrm/templates/book/edit/edit_book.html:56 +#: bookwyrm/templates/book/edit/edit_book.html:62 #, python-format msgid "Is \"%(name)s\" one of these authors?" msgstr "¿Es \"%(name)s\" uno de estos autores?" -#: bookwyrm/templates/book/edit/edit_book.html:67 -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:73 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Author of " msgstr "Autor/a de " -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Find more information at isni.org" msgstr "Más información en isni.org" -#: bookwyrm/templates/book/edit/edit_book.html:79 +#: bookwyrm/templates/book/edit/edit_book.html:85 msgid "This is a new author" msgstr "Este es un autor nuevo" -#: bookwyrm/templates/book/edit/edit_book.html:86 +#: bookwyrm/templates/book/edit/edit_book.html:92 #, python-format msgid "Creating a new author: %(name)s" msgstr "Creando un autor nuevo: %(name)s" -#: bookwyrm/templates/book/edit/edit_book.html:93 +#: bookwyrm/templates/book/edit/edit_book.html:99 msgid "Is this an edition of an existing work?" msgstr "¿Es esta una edición de una obra ya existente?" -#: bookwyrm/templates/book/edit/edit_book.html:101 +#: bookwyrm/templates/book/edit/edit_book.html:107 msgid "This is a new work" msgstr "Esta es una obra nueva" -#: bookwyrm/templates/book/edit/edit_book.html:110 +#: bookwyrm/templates/book/edit/edit_book.html:116 #: bookwyrm/templates/feed/status.html:21 msgid "Back" msgstr "Volver" -#: bookwyrm/templates/book/edit/edit_book_form.html:22 +#: bookwyrm/templates/book/edit/edit_book_form.html:24 #: bookwyrm/templates/snippets/create_status/review.html:15 msgid "Title:" msgstr "Título:" -#: bookwyrm/templates/book/edit/edit_book_form.html:31 +#: bookwyrm/templates/book/edit/edit_book_form.html:33 msgid "Subtitle:" msgstr "Subtítulo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:51 +#: bookwyrm/templates/book/edit/edit_book_form.html:53 msgid "Series:" msgstr "Serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:61 +#: bookwyrm/templates/book/edit/edit_book_form.html:63 msgid "Series number:" msgstr "Número de serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:72 +#: bookwyrm/templates/book/edit/edit_book_form.html:74 msgid "Languages:" msgstr "Idiomas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:84 +#: bookwyrm/templates/book/edit/edit_book_form.html:86 msgid "Subjects:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:88 +#: bookwyrm/templates/book/edit/edit_book_form.html:90 msgid "Add subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:106 +#: bookwyrm/templates/book/edit/edit_book_form.html:108 msgid "Remove subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:129 +#: bookwyrm/templates/book/edit/edit_book_form.html:131 msgid "Add Another Subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:137 +#: bookwyrm/templates/book/edit/edit_book_form.html:139 msgid "Publication" msgstr "Publicación" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Publisher:" msgstr "Editorial:" -#: bookwyrm/templates/book/edit/edit_book_form.html:154 +#: bookwyrm/templates/book/edit/edit_book_form.html:156 msgid "First published date:" msgstr "Fecha de primera publicación:" -#: bookwyrm/templates/book/edit/edit_book_form.html:163 +#: bookwyrm/templates/book/edit/edit_book_form.html:165 msgid "Published date:" msgstr "Fecha de publicación:" -#: bookwyrm/templates/book/edit/edit_book_form.html:174 +#: bookwyrm/templates/book/edit/edit_book_form.html:176 msgid "Authors" msgstr "Autores" -#: bookwyrm/templates/book/edit/edit_book_form.html:183 +#: bookwyrm/templates/book/edit/edit_book_form.html:187 #, python-format msgid "Remove %(name)s" msgstr "Quitar %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:190 #, python-format msgid "Author page for %(name)s" msgstr "Página de autor por %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:194 +#: bookwyrm/templates/book/edit/edit_book_form.html:198 msgid "Add Authors:" msgstr "Agregar Autores:" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:204 msgid "Add Author" msgstr "Añadir Autor" -#: bookwyrm/templates/book/edit/edit_book_form.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#: bookwyrm/templates/book/edit/edit_book_form.html:205 msgid "Jane Doe" msgstr "María López García" -#: bookwyrm/templates/book/edit/edit_book_form.html:207 +#: bookwyrm/templates/book/edit/edit_book_form.html:211 msgid "Add Another Author" msgstr "Añadir Otro Autor" -#: bookwyrm/templates/book/edit/edit_book_form.html:217 +#: bookwyrm/templates/book/edit/edit_book_form.html:221 #: bookwyrm/templates/shelf/shelf.html:146 msgid "Cover" msgstr "Portada" -#: bookwyrm/templates/book/edit/edit_book_form.html:249 +#: bookwyrm/templates/book/edit/edit_book_form.html:253 msgid "Physical Properties" msgstr "Propiedades físicas" -#: bookwyrm/templates/book/edit/edit_book_form.html:256 +#: bookwyrm/templates/book/edit/edit_book_form.html:260 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:268 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 msgid "Format details:" msgstr "Detalles del formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:279 +#: bookwyrm/templates/book/edit/edit_book_form.html:283 msgid "Pages:" msgstr "Páginas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:290 +#: bookwyrm/templates/book/edit/edit_book_form.html:294 msgid "Book Identifiers" msgstr "Identificadores de libro" -#: bookwyrm/templates/book/edit/edit_book_form.html:295 +#: bookwyrm/templates/book/edit/edit_book_form.html:299 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:304 +#: bookwyrm/templates/book/edit/edit_book_form.html:308 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:313 +#: bookwyrm/templates/book/edit/edit_book_form.html:317 msgid "Openlibrary ID:" msgstr "ID OpenLibrary:" @@ -1113,6 +1115,14 @@ msgstr "Ediciones de %(book_title)s" msgid "Editions of \"%(work_title)s\"" msgstr "Ediciones de \"%(work_title)s\"" +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:75 +msgid "Add another edition" +msgstr "" + #: bookwyrm/templates/book/editions/format_filter.html:9 #: bookwyrm/templates/book/editions/language_filter.html:9 msgid "Any" @@ -1183,7 +1193,7 @@ msgstr "Dominio" #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/federation/instance_list.html:46 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_info.html:20 @@ -1307,7 +1317,7 @@ msgid "Confirmation code:" msgstr "Código de confirmación:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 -#: bookwyrm/templates/landing/layout.html:73 +#: bookwyrm/templates/landing/layout.html:81 #: bookwyrm/templates/settings/dashboard/dashboard.html:116 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" @@ -2186,7 +2196,7 @@ msgstr "El registro de %(name)s está cerrado" msgid "Thank you! Your request has been received." msgstr "¡Gracias! Tu solicitud ha sido recibido." -#: bookwyrm/templates/landing/layout.html:82 +#: bookwyrm/templates/landing/layout.html:90 msgid "Your Account" msgstr "Tu cuenta" @@ -3603,50 +3613,54 @@ msgstr "Fecha de aceptación" msgid "Email" msgstr "Correo electronico" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 msgid "Action" msgstr "Acción" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:53 msgid "No requests" msgstr "Sin solicitudes" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:65 #: bookwyrm/templates/settings/invites/status_filter.html:16 msgid "Accepted" msgstr "Aceptado" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:67 #: bookwyrm/templates/settings/invites/status_filter.html:12 msgid "Sent" msgstr "Enviado" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:69 #: bookwyrm/templates/settings/invites/status_filter.html:8 msgid "Requested" msgstr "Solicitado" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:79 msgid "Send invite" msgstr "Enviar invitación" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:81 msgid "Re-send invite" msgstr "Re-enviar invitación" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:101 msgid "Ignore" msgstr "Ignorar" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:103 msgid "Un-ignore" msgstr "Des-ignorar" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:114 msgid "Back to pending requests" msgstr "Volver a las solicitudes pendientes" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 msgid "View ignored requests" msgstr "Ver solicitudes ignoradas" @@ -3978,18 +3992,26 @@ msgid "Allow invite requests" msgstr "Permitir solicitudes de invitación" #: bookwyrm/templates/settings/site.html:151 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/site.html:156 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:163 msgid "Require users to confirm email address" msgstr "Requerir a usuarios a confirmar dirección de correo electrónico" -#: bookwyrm/templates/settings/site.html:153 +#: bookwyrm/templates/settings/site.html:165 msgid "(Recommended if registration is open)" msgstr "(Recomendado si la registración es abierta)" -#: bookwyrm/templates/settings/site.html:156 +#: bookwyrm/templates/settings/site.html:168 msgid "Registration closed text:" msgstr "Texto de registración cerrada:" -#: bookwyrm/templates/settings/site.html:160 +#: bookwyrm/templates/settings/site.html:172 msgid "Invite request text:" msgstr "Texto de solicitud de invitación:" diff --git a/locale/fr_FR/LC_MESSAGES/django.mo b/locale/fr_FR/LC_MESSAGES/django.mo index 4cdcbf8ea2a3ffdeed740317a055f435e5954b7c..a63e2c60049964412363eb72e2ddb6931179b0ec 100644 GIT binary patch literal 95243 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 TN;k`b;~a`O$HPfp9^(H8L?0=b literal 44850 zcmchg2b^4Gx&Mzy388n8c9NKoKze9~KuCo^5@I$51PQYXv9AP@_BMO5^9#V&Fcd%G&u|M&Mi?>Td3vzr9}e(rua`M&ME{e9l&Eob=N z{yX0k@z=jo6deIyen1qR`rIh`#RR!V(GO-t(XsG{@F2M7@liAyj)jNADez#p1fC8r zf-B&=;B@#qxDOn6LKGbWXTcbr4VS`7aQ_5668l%-D)?)tEG#_H-Pgkdv0o3z!du}O z_z*k@J_!$l&p?ul4miovI}?t_ei57ruYooAiNHxGM^P2~&9DoOdO;Lzf)~K^;5Xsv zaK>yeXC0EY=z2H_emd}JsQeyqN)+t^XG5woIz4a|+!cEt90hA|FL){34PF!cUmNT< z1^e5B{Whrg?uIl^^ijAc{6uj79NZoIV^H<|tzdsT@b^&R{|@(tqvu4?9`Gt@^K4Py0=25dnZ)*d!gd}EL6S!396lrJvEBw>C>i=g7KLdAPIRQp~9_5ORH!u=Oief=0J-CscE`;SoZ{vGPQeNT&`L*Y!Q@Mi~h z!JV<650#&bpz^T+D*Vf!%JDX+^zMcVe;-tReHyA>{u3(RuR?|U7F7O!0u}y`Q1$p% zsPVGrT<=eZK!v*m-T<$Jif_NudEg;X_DN9rnilMHpz=E(s=Vhy<#QcW`ZcKVmqWe( zN~mx*K!tlVRDSM&%J;oc?f4*6J$?ZyUynoi{|G8SKZA<@Z-Jxdx%;8;dAJ`7Rqu-e z&xLw_Jybp#Q27{y8V^@O#rH<2`g}K3zTXd(-Y0|mqrv@KQ1AT@WQaw7fm7iL^P}i! zSb|FL7; zeBk`xz5?!y`$bUwB7rLZOQ6d08mRPdhKm38zz+o87yLg1mEW%h`*)zyeLA>51J%wu zFY^2z4ONbFq3Z8KsD9NC)t|0_O7B{za@-hrGgSC@LDlC6g8OITF4!N1djD~#_rC+J z-2?vucgB71#oq1*K$UM6RC}EcV|WHsI(<;_ZG_6-l~DC`Bit3<0aecTL)F^@!TuGf z^nU;q&(DJWnP7kJ86MC6Q01ElmCkgi{JsFHK9@nY+qqEj^uQxw3o8CMK;{4KQ02M{ zD*QcA@!cQzIk*e<$KaXp8*o>66c+Wr@lf_t0~bP-_iU*6FMx`-3{}pJQ2pcjV802f z9`1mL!H>gH@T-AOK>0rjRe!&Sif{KNUamu+;++8He==11%b~)pgS*3isCw8472h>* zH~1zv2Hpyffe%9UkDo%-%ip2m+376L*S=8i9|q5dli=>~6>v0s9aQ;lfeLp!Tn;}5 zB`mWK{y3| zA1WVvQP~QAFjTw~gMDV;La1`Cfidic%HPZ2vG6TW<=O%j|M#Kd`3F?EQRjHQ9SN1+ z@lf@89NY`egeu?ZQ1!bE>iyMF`CA7shJA1ksComO~xM?uN+z2H7@0^Ap#2=)FM zQ0c9Jigztkx&^3m*P!~tRZ!t>f*MzEgNpZKQ1$v4R6f5R_(M1o`>&wNIp&3){}Z9o zJq_*+&w$F;8aN*IK$Y{=fp3Hg|2DWEd@oc!KMs|jhoIW=5%_%gZK(Q=R(iZgK=t>@ zQ1x;W)O)8w#k&wH|I32=N~rYDgUVka_zyspuLV^(8O$|1(s3?Yzd{+Xu>h98`SMp!&)2Q2Bll zR6fg4@mvC*3$K9v@M@_1|0eJmsPH?j^>Hv7>b=9E`qjk1nNaD>fePOZ)s7cKrF$t< zyw^g#cLO{I-U5$<4@1e#UqQXU-?<*{Ft{)FaZvSeJXF6~3?wq(`*(N{Jo-H62~hE$4V7LO)O!V} z^wvYw(@UV@zYg+WbR+*L{Li84He>YTneh@1C&jpz?n&R6RTl5%tm6;0bWtI^PdD58@Qv z4rjt$F7keUGTemyT&VH#IGhgu36;+Dg2%fUY8PyY-UgM8p!&&g;0$=q zdT;-$;PbHG2q(b1q3YprsP`vUynoDtE3x;&BjJ5;Ec|bHF#Ib#4({LY`8o|MAN}z8 z@Or3ve1Gu&37m%g;3{)5TnsOTn_v_EKCrKb&V>ED@H%+H0DT%h0GGl;F7bXarEov^W_S|Z3{QkVgyZ3%Esy^+sB)eMRbK_D z_bv|h%itvJuYil;J@6p-N2q$(bA#vOV5odefQtVFsQ1o?s+U(lmGezd^>`OlzCQ|M z_$jzQ{4P8S{syWX`)qXgW1#Xm8!G+z!G3PwMNsMV1^+>)dV5{4-vpJv_d$(|`=G)f zMkjm=JQgZHTcGm!MX37t9#p=50{4P{ff@&+20cH=!9%dmf_m?4sQOz672hRL`Mwk? zy({5?@J6V1z8$I^KNRc_L#6j+sQUdOoB)3g4}<$}a!!UCmy4nNOYl(mDyZ>y8&tYq zfU57WLgnW>Q2BfksviFYm9M>C;`urX%04S_VQ^m!_1?vB4!iq z{z*{vatb^cc0twu#ZcuN4E9$Cz7;C|yMp}zsQ4a*>QCQ)x-LgnvlsP;b}s{VVR`bi6_USA94{}H$|{4~`2pMk26uRz87 z1XTWh1C`(1u5$h2c~J444OI^%cr5IPYR|U>_q(C$<)cvL`XW?1KY?n`-$T{U9#?z( zM?(2ehl+m=RQ^{(g)as7%b@aq6I6Y?6OMtmL&f(9JQ6+umG3{p{5Q4ta&A6GP=|B2+(^3ssNjL)FKn!Tkn!H1@lp>g`KV=|2TE-#r7B z-mcg9dt;!=`2x5QE`l@QE1}}~6jVR>4pja957hh5K$Y*nYgx;|nb6t+D!z9@rF%Ej zICv1g5Ply%AI`YW>wgVY|LTPbe>qgVH^NilJ#c6EOQ`z#9aQ;uzTWF6hPz^)1XT~y z;Y4^QoD464yTDta`p<1p_3&YMB76{Pocsyy4tIN{=W9PW3j0{7{2T{g1eZY7!)?L+ zbRk_0|o?!^@%M$$Oy6{Sl~mAA!5UZ$q`;lTi8iTd?o) zYJdMIsP`7a$?#lwGJFM8Jv{*B{}s3g{4rF${RS!@d%ni&;~1#=IuWWJ*1_4Z1vQR7 z0H?sOLB*p@3iZQ1q3q+J>TMd_3%(%m45;$0hAK}_U=`}U4UnuvS3~u?eO~9~Tm=>W z#qcJDEaXpQ0YA!_$8=x{tL$NCs5@Wb%W>gD5&;70ZxFYK*iS$mChAV^>GbU zdEW(3fLox(>oZW{4!F_#&EZh(G7)P0&4a3+3!(bqs{`KvRnA-BKJfOyj|KnF!F_Rm z6pn-6gUZKFulI5u3HQW46RQ2^2K$-8z8b1r7ebAX5>&mEp~}&KJHeZv+T|^9KX^M- ze(r^8$48*@@qMWL{sx`|{{|J`@o(_=PJ^n46;R>Ng$KYgRJhBb@_8*(yWId)PoIL* z;Wwbt-}Q}Nu0x^X84t(86X6Va9@IE~6;%1(1J8mVfEq`Cg{r3sH+i^uf#<p2-W%*s!S`bS71X@{#y5F7Uxs?`+feoJ6jVR?EmS;vz1j1BFx(&eL@4)D zg8RbYz6Pq_l;OefWzhNoRK45|mH)57(eRh>Aoypf^!I)XV-Fq*RX?wVdjB18Z}>ha zIddO85IzCbF29D#&!3>uiEj3Go(vDbIwx=iRJamU{q{rE&n9>RyaTE~e-|o0d)(sb z9t01={(Pu@e;QQz&WB2`4wb)Kq3Y*9pz`-1R6O5+D(Cm1#>xLe)$iY+>fzA0y8Ae& z@*E3Q{+UqkFM!kFGN|%g4i*26!Ti<86D(~;$1@NCx{qBOd`F!+J zsCaLKhr@fJ;{Q5S{+@=ar$0c+t1)k9u7o{sCA=G||NRp#gR^e+`RgjEbUqC=E`J2i zhdaN+$Hzs1gHYr7^-$$~3sgP48)|&t1(lC`pz8NNsB!!#RKC9(_*ed>(uyR6D*GD&CJkwbvt1={^SK|0AgPehW3O{|S}f{odv2 z9R^ij|GzTXhs?}19^A*l4f4%Kgd3KjkzQ0X7=Zck?{oQr)b zR613tbgqC$!|R~lyAvwj`-A^ipz{9&TmpXzyWq_C(6`_7f(Xv{|`{@w$o;}9|?EGejJ<$X9jx$6@LY;g&U#D`&i((yF5P|;d60+ zKUBZ@5G=q40^|32|GyfJ!u|7bclZ@J6+RK%cfZ@)Z-1!wC%_Bfb%9U8)3MM04-fY; zsPeoS9s}PCH69*?d&0+|()&TMKMi-o{>Q+7z&)_<`hH*E?+*{fehJijuY{A}8{oO{ zeyDsOe2@3X7(NHP(%OF~^b;(f=2?mTi*PD@E4+heHs;^)=#S=!77$*4-{Sc>{-^OY zc+$THhF|kYzPQXJvSI z3+%yv0sIkO`@tLFXjlsGeGIeyx`X{9sDAz+&kX!N8T`+|{cpiM9rG!{OfdWVL!jD} zt{*k=r%LUwO!%H){x955$F9HWm=T}R7kMV*wn~otEe&x$fq5*C`u$P3UBg4O+IsC; z%so5@@ZK!=7asi`hW!JQ?QT5{2TZ`@EM-pg)m>n{7;?_^L&Hnis1ejdiyp0xiM{7=C=R(AY;jN1pH{tn@pVkTq&{#W5QiRU}vz2KGMAxxhQ zezP$DjpqoS$8qcDsqttGb;Co5?_|uQF!y5K8}l)kr((Vfu7Piazry{OJo7Q1!J{#G zw!-s#8}qKXrGMWK2FWM=9ZwkjjfV4h%7k6Q^CO=5xF3Yu3e4j$UjXOuq<^~v^Bf!& z@w^zj7~=UeoWL_J*nb%KJi`0~^T%N?JeK(M_i~<# zv5&&OFVC6~UVc0C9E{s%;6CtTcs>5F=lL||@4-(({jKAfK^Xl#pXUHG`9I4+oo8I| zzgXlsE0@-P`(D% zPFc*Oznghph}$oC-o~T9E}lbqj^lZGaJvfgS|0s9m$(+XG5hy0Ob-(FW}eStejxLq zf8q8i?3#OCgZXOs#^8T0oI-rh!~J`~tqS+Yek6Pk)ZcyZzk~VJQ0GDVEAgDg^N1|` zEyDc+Zj7#hV|e}-w-ezDNoOkN*JIv?=Pj7^_maR3nE$~e-E082vBCX>z}MogzjtH5 z1@3P)|K}p`++hDJ{$CH~MWlH@_S1RZ%ai^+g84$8ALDQz&v?S=k15#hnajKy|Lfoq z{JxI)j1cDcxZQ&N9q=xm*_hM6&*jY52gjp$uNlm%;UR>%HH4du-*U|BgS~+Nb8s8O zb98XKB)oe}ps+8`Nx^?D{1eZA2LFwi7xOG54*l(kc?ISRc*bGw!>x!pF<)dF<`3eo zzmEqFVE#|cFT(FO%vT0?h1nhR5x9Q`^E95dnDzHQo`>;^vF{ziPsZ&S>{nxdJJ08N zeu~@OJTJri1E{|cg_$4Y---Br&TO0;U>^FnJ1@L5I7&DFNeJ^p%)LD41;3BM2k?6> z&kJ~7iT%Lf_Xg~5!h9*bj^|vSg~a=J+`4%V$NVMSCc=r>4}=%;9FDogvkT^%;IV`` zl4n2cKZC#KIiKfc_`LwP_3(dret_GzdHxIYeB7VUvyLbI+c}s|fDaK)e-m>4w*@!3 z|C#42*k8%>U7o{(-xqLyALePiHv{wEF~19@e=&wv@I1xyYMwXqq<=5P&`0zSxvazJ-X<8%$snl1bY|ueXtMmY{czgxCCCwa|7l}q5ftPPJfs4+>QIw zJP%`@4D)}dV)-U+ALc3WPCxcNFki&88T0R<{>}`P`H5gY5bnx5hrt@|zs-gD7UrMf z_62x+aQ_MReK9`@cjCP-WBv@!SF!(wXC~$gq5j^5`APV8p3?|>K0Jdb|92Ud3VuWX z&cp46!SN_~G|!iU{oS(T|7PO9H@JNR^P70~!v0a7ZwB`ikK(tP=RBTEcs|7w^PEnA zJ42x3u#XDn)8Mf@m*aL0dk_NDD)-`Vm0DdDO7t~!7Vl8+}~=p3Ka!RlaB{$tza3}zcFlp zb)|A+pi&szUPQx$8xmo)(4P=XU!hSwrWrSqW?YEtNufk(Z!jrPX;aDK z(2@=$^4jp)&$YKTvcjRXR{W!21*6`1nw&ndPsj#EhVM6+(VGw za-*q^LAz6^+CWmB6m8W2(~?qIL98XxMo8UM>-kqmmc&Zy(zdH71C?@8QZVJkdRIpZ zbvkbr+OyYG2b+`h)9|YLb)h@WnTFH9H@!<*v|QX%ul4`mr00#N9{hh&JcfR=)vzj? zmmgSGt7!|B$~`@aS|JW?YHdXpn|<^N1+~5rBtx$4BqVyWrjtOC-AB8{VGdKHdB~+| zPg!zX9j#a^C6ae>cal_*cqB~6X!a#>(qAZ7;zFsUu5WUeabsQBdumem{!=JgFI3Ex za&^64=M6-s^{#d3Rg{%QX}rCFg}2kn=EP1j%98mB~1(Y5=;GZLP{Wz!Db%?FEq`nii-;siMqi! zxs;KKyzdN2dxZQC4c4_}`Rr((6@Z2)BaXZsf}1sExk`Vi7L#aRv6u`r1Co*%sPIa% zA*m3H*Dh3Z1vHEs^lr1fAyFt;ZVpECN<>g9#q(OtzFNJ350?4#n#{nvI4w*X#d>+b zF~*!) zuJ+XA&|ju}`q!&9IAt<1npY_o8i~qOspv^FjcI+gwy_!}6Z!PhWu?) z=CdwYN(!n!NlMz7*SGsdJ(<$^N^K*>pal{t>XKGMZ&5_J=B0WxuUbXpDkcbhsxD_C zbhTNYvY=L{N0Se%v}JX$R!!n!p{h~nrS-u{&-2=EhiJ5VDR0w5O^%uNFHVX!mTjOF z1_tUiCdg>sz(8d%?kQK$`$*NCNv?s`A}uHKjuQ|sDUs81Puap+m)eH3Oka{t6cnYj z+k0<}=26E5zLTC`D6Y4ERGhS%d6DELS1Vs?VJ0*cEUVkp!zDl?i_01=nqQ_r%`ev( z&+4(5D>Wske;Htb@oLjOQX74^Mc=ZqqJKKdZVs!YRat#vdQ6k^_xOzS4;jg)chX=jw1XSTYPy{T4msv19Li@|vO#L&99APMYW zskh8=SnAc;(Sm}s=$>-5WYD$$nq+A7uR#nmwrvai$b4e7M2yr&XDq6e*X_UDv z(j1uCOxkC*bb3*W{{ApiTJUPmwHCUG@QBs?3~Wg~LNz547MSc^fUHFXIO4pRNZpp0 zs7Y;0C5S`lF3tL>g$|KUAHmy3RWO@AkOsA^BO(wCY04!O^io`GNgfRq@#zel*YB+l zd)&`1xUB_jjxU&;(6S|Ttp%QX1f>(v>4T;oEku&2w=lZR=tIOTNo=!{+^JxjT^aRm z)8ymEAWLMWx>HH9Fwyd@&PrmF`Dpz{03n{hfSOXO7kZkh3+oPqW6@f-kve+4hIhhv z2sYFzdS7lT9l?EW8kfyiG>a`i!qNf1Oj_rraf+Ta>8<1g4If*%t_fgSIuj1DySkIp zA4hCbe^JVZn`-qzOpRipPSuqg{fL)zzLi}I@mS4A7HY+ohM?6CHiXb}R%(kb9UyPf zBGxhXPt4-7o1vGkEXKNPN5@y-pwt9k?<#K5z;%-?;4H9>3Nx{MvuOm=la^fSm8(W{-SwIBL&3}*mP})9h`3C#e^c#xcI4IpmfBMO(Fzwa z_DT{1sev$7Zw=?*>}WBq?FzZpmP4#e1=8a@jKWqBp^FO}%EcOzd2wQjGF?0~A^2P& zZRFgT82VjwE=IwQ7Ly>#aM6|R!lmW@RzGrVQ!+cAF@4#5{K<7sz07n?Eahss(H9Vp z9bt(zHVvQ#kOJbbSz>yh0=9kXC^!SHZlsvpRXr5NcCG>t4?+8KXBS)yyZ$twyJ)5l zA<%*{)0A4ZG8n9uml_MwdYp>q#kG1b{nuq>n78H zGgwmvrAA#e9;l;l7HPyYYBd&E1r{&s6Rc+zHY7^Gg+%ALm>Zp0*2=7&Ovc14NUt_6 z?#x<$66v3KRk=T5os&dMy5=vZO=btfEI06PkHuapmozm88K|rcvt*lWL8Vrdd#km2 z;@Y!Kf>Wa<<`hs0#cWsql73UamoVSfn~@_nRm-NJ)IqvL>f7b2L-6XBvgTS~>Y_m& z%=Am!T0_nS7y53Uc`9eudXu$8Dm}@vWrm)$q-x4LwNx!uT2!QO1dx+pZw%Dv>2=nB ziEOZh5+6r#slCP`TWwdD(wT!~W#+Ab8zeH3knxg*W|f|h z^=t1>q|%Vs^l5S|GqtZ#Z7Ma%I9DNT`jDTCF-fs}NXe$T(OI>=YK(B69G_KSxzW{+ zPKYCFiT-KN#b#Sx+i1=VBa~S>IeWinwfYCtg|unVU28U3XW4#5V$CO?1{0_jBLrZh z*u+-0gGTB48}Y`zaPLoo9mDY+haE&`_@P=As)Wj3vi_Ws{gW4&k-5++8o!2dQ`VH*G*K zEw4{-UY{wQOBtTj0+KShR9m!j*z>DZd)ZyfHr9fRE7`6SQO&%#o_{F%Id!DB8%;f9 z8X_n1LA$jH%WQgug{agitth;&L`$^~X_JF5iCcAc8O#w8(5f`UO1UOM!@J8wdjHA4*i9SCECk6ZCQbrt4vJ2rY4|D zR9iSwVR@Z2W{cl4t@V!5^89JyZ!ejq@?KSoPhZ(#;dns{rLcOIcX07_Z+rV&`M6Z& zYDCKzewx@ZGz)a`LbS}cl_*zOQ{bl#mg^Bx=G{@d8F?RHgb}~qsM(H7cwH)nw)K}W zQ`@>da*?8GqrJFTo?P0DmJ_A*cWPR@42{f%=0>d=OqyflBn?HUDXnU0h}9P4NDQXO zItL|Vhk7%G6|L85kXj(gmwaefC`bgYmn4y^8<>PFozVO7L+7OW!tk|Rh9$aZYO0bA zvrh00eNI^(E|17k7L=st@pyXb&bj?Mo03vpD%KXC)qo|Ypbf2J!urAH747qo5%;sO z!zA5|7l(RmA1)Ld8*I_R+jcx8T4V6-)ic$~waUsxD4E@QRV zXQs7Dvfd08Ni?<-2G}9xh{;uei(UNYwh6|>D_AA7gg}YY%GHNRXYpB?7c1rBdPyL) zrEPn5bNsMTxnML%yU?VrQK1!{4opG^WX6yfPq&xOsSPy7MCY*kV*k*p8eAH#^w5n+ zFeU@}R$S`Ye3iGG05oBRD2rA|BbW_*Ll{%o)zKhsV5@5>!N`jjCRLU&(Tcvo28*jo zi~`TOnmT&4qEaXtMyQ5pMQxx}VIzTPI=5a|Xp=(!q`H?|C~%KdTlu(dm`xilHnTY* zFGWp}Ut!uhr*@`xZDOx(b{yfT10p9|Di}=Di&xZW6>6cwN+kq48|IoptRMR1N4!BV z389cM)PyZ%pr1&khIq9dE2(~i7ba=SMTaTO*^F&I9Zo*iq`I{oZngv2X3q$Iu7syy z>FF=jA&&n$J6hS*<<+}VOBw#rB)Kw~LVH$4w&JzVERlwlMU4JYHP|{Xwe+Gf6PJq? z?=8XNDqSP^Nz}Vmurha+hG*_zt*E^uPBDL&Ft*4%bD?! zDqE@D_LFmtY^&mB>aHUmr_(|?a2V-_u@X388V+Gj&-beE{#M;^#HG1MLikilh8R>9 zB}{in4dg#9Sb7+ddCjp284YAeh&j{TgGg*uCFRldPph=lmBAx_DXcC~8B(cy>JUu? zv-S?27Kw?c)I*}m%+2<;px$A~rn`i0HO-)7cz1-TF|8^dQJHJj2V;6zzpBLsr$bsQ zbDZYPZ0jNBh!<5un;7eSR-5E!_LHPW`FKnNhuEG~G>vB$&xnbtVO5ky)WwR?{)s0P z`Ug%?)icUkxcTO(!{kcAwTuoIHCYJi(|&4c4h|>|Q{2&_Ffvq2zNr+BSKKWOU;LXm z3>2ugB<@F(EVD$@p}aPq?Ql)I2?dVPx)PSkoZ5%E(XF%P%$7yGs9vurONvc1uSUOR zzmMaTeq9=HEr(8U3`;z=m)Q6^ozhPqyie%{&&8sV?aoY0bWRt<~G714d1e z3a(r=EiD-&r>I&}&`OY$se`ZqCl4Ib)wfwHx*lLAEj`@it1myl)2tbeXc(?GPAD+z zY6Lf=#@eZ_FSDG|BrJs>>ZxVIMSFKJzPj%8llM=~g zOuR~Qc`MO7{0O1SW(03h-F9mt3%gdjMXO@F1Jo>nQU{`X%YroH`GbnK8Ea`_CW=$Y z_9NwmgI2yixkp{Tly1a@K3Zr@)TMR$Hg<#DU$aUG>JyARhemcEhPJtqUd~;o4>*JN zsdmZsZ!I|P)Sn-Y5wO+GYFDtemwebRZlLs}hIo-q05aV&h%V`mAw*A0D~zC3W)Zk+ zI*$|94(C$FK8FQYmBalh$q*muO90n9Y^^rlHE4YVu9mpDsvU1(2flmr)fC#BesnFB38oL zZO!*M#wfH_Up#bU7Y621FZcE}aob3rXDImTQL0qA@KY>Qh$c++)OJ)#MzX~e2wzkU ziLS>s8Wml^2JkRZp_waJ4Q<7tp9h`Zv}z@)!i9uYWJYDWF@q6>)r3?|{cO+sS}G2A znZt)RgDZD@;xQAWJ8F~1ohsTPz`eZ~O8N&l6|+d{rZ6C<5p%g)8XbL&lgMzxf~y54 zl6^u9g|SR30gDz#HX|FVDyrFzPVHa%MJ<+Q7pvB6^oJ4nRE_Z#I@(e?>! zv~rzrH7gI259jOFsR-i^7%F83HHpe3r9N`qINJ#fcJ>N`(hTi(maTAcr5P;_GuC~l zNymqH)Z^MM9(Q)5s`2Zg{ChB8}V;cDz822rC?E0&p# zN?HF&)qtrMVY-xdIkd5lTU6ONr}HbBjzYBGVl!xpR1g&j$~thstJ z)fS;Dld^!THr|SUs%~+pU`pN;s4N9rw`?yB$>J>fQcc3KPbU+KC5<*nN-mR-uGOTf zz>8;r5zgs7oH&!E?jL$5l}a1e+qcC!YAVy|r^XAkqd_A1?F_xDQoEQN2rC3@!b-L! zX$9pBn4KIHB2`wyr+A;C*#jXD?Ww_vA*nHD>#%M0Erid?oxN}jolAORv4D2TJ+c9d zCUqsVncdYfEB-LsJW5<|Z9CM6wNj*s&?vRXlPmc#w4d6py)XW+-RUK7b-HxN6yC>nKACLT&rvj!8G44@1yNhmX@=iAw$!(kWETIw7`F>)OUAR4mea1ihB6NwTwW7C z%{HR2yP=peeL=IXc9C8Fq*_FWtNd&t4BSe@480~C@<$pYoZ6af*wNT_@LKPVM(35G zRrkLmbLeBN3A{XmQ7Ab5gzFAHg$=d3G>Prj*AA9&$0OXaGVXYMxl;Oi8Lh~tOD|n& zu`9hnwaVN&zL6-WXQ#Gh9Xg~gd7!L#TpFT<`~V%fcWtu;pIxLo*aXim(j9AtXBTI# zDd@sOzaX(ikUOH_b=cJ7IV7xcBFCPzePCk&6wJ5Oqww`f#4#Yk#j2zfX+I|X%Pv@i zqOVT?BnWdtR7%{4JKgC0xu9NvEO4$oUR@;SD=&Z!I4GqnbSWgUYwJF5n_^-L0JBp5 zYa~Pg*W9&(@3RasX`bI^cx`dyUI^!AGi4=PY*NCfETjr&$1|tToH1qk@l&Rs5YL!7`}pIJn?7Uu z^wBzup0cW5s5aP3*5%K|g>Eju#PbVmo|YR3lUvZy==*{MeY30m^yv*0>3&qWfj|Xvu#^@ z8k?8pDjR`(QAE9+x_Z^(DJQqXDW_aAnzE?Mt`6$q?D%A^+mBvR;i_F_iY~LTJgE+t zwQ=gqQ(`xsI6Fn?zNy%6s#dpbo|sG;!CBw$*i>)dnOShV|15VjsQ$wC zJ|DBHN`7?ZJ=zRq7bE?WjQ86gkhQa+UCej`^@*m(=E9~Cf;C1Cm-|d?N1`1z_;Att z&VO9}(UmtB;zFy~s>Y=)n|sP!^)EJCsCxr>&1!pJmvQrltD{>sQ!yPMm~GkI)a4b5 zo$X%-C)N0n&&(?24W!#Z1=~<-#DpvKZn+bEe1wpy(_w;!tt9Q8bMHLZ)F0B($2!VO zjiic8Du2G$O?ZI#O7+r}~vPn#KS+y6wIaeBsC) zAv@7S66wuhd&@8%pz(c2v&>)^?&Gx7PoJl8l!m0}O*X}q0tMoP*ZLtAcA1-Wk1g+v zFQ#Xzqh(*Mad5n4Ggtq}jRbG@F$p~cfy9LmcJetB-_h^awrma;Elm;2O*TVy2X5MI z**u`D-U_L#ZKx@axmP%WVBX2*r=Zf=g(~%%Z7GepSpE$Omr*T4oBiJ<8X8?4<^L>E zQvvKdEcVs0d^xe>O}dGVBK<;GQycxnL@TRORg90L{!#dAA>S9^b`j9*?$Msm(OBR8?2Uo=>M& z5doAtkY~?;FXa-xPBVjP9o!;fmZzp{S}7K{+}W@s7MOe`q=sMs-#cOLv41z1M&U-) zRWuJ7XK_2p8JmB&wAkvF3ftnt8qS6+@(>o$@4YsC*t6#g^hAdxKV)t5oj|P6ZeN znoUCeWp?jr99uAZGdME$bZ@ckl7=KJojpf`QPUD#xnWCI$oWK?;&$I-?6hB-*Fw!N z6Qkv}MCa!!C(Xd2I+7b-tP@?BrGW*>e!>6NUWkpX0*pPvt4geq$j?QSjO z<>qjVh{9S%i($i9JCTx~^?WDV;gEbBSZi_Bsy%ty$AR4;-!!wd1}~k?xTOx-cY^Ae z5!bm8FvWU}yIO4VtDLm+v@krP^n*dXyk|KN`q(kbr6~qq*YcxtJ zwa#bO)vegcF;f`V59uuF@c(ywr(l} z*R5*`HUp#CuTgQ^wxhi)_Xu&WX0^yrR4V?~MAoVwakq)Uf zT%IMQeqV%ca2GvnF)KPE5zsv77jzx|qsB@sV77L!Zb4(DGFd$-HD`XUD#MRnwo=-c z?t9QauCEc?^djXuHCYaIgE{;>fHenSo|;TfgSqxV&Lr<`?%%$TRu`R>VmVxsv^a3~ zZlMdUBd8cj#p+@tYe*Rm-cL%2mIv#E6f5}k6Vld0zD zLXgVtWvjZJIM2EIw3>6smd$)jsc2QjMOQyE2UVeFUi&#hE+O zUKaJ>+#02=|F+k$Hhn9VXB$4WD%D8#P5tEBONVe*jkgC7m*PEFd~#vi7o7X6+~`Yu z!^K^4DncFDwui!0--R!|X{fWyNj0E!FaJD~Ft#@KS!vi1>V0VO01Z? z!GzR-kIR$d4)rzvC{%T}l9f5CYYmakY8sdlF$7`L}HgS0PlkE^D3&L>DUNgt7G?5X!LtttAmdAFm zR2Jr4sQ;dFF8NgT&W8!Zy6x1_b=uAha=S{Ai!O8=4VzTaZ-?)QX3O>I_o{^LtfHvH zFDFDgK3ENPoBwFl>ei%+>G}LZM@}+Z`PW} z-?q_wwpJ*9Ln+HzufC+p?WEN7 z9fJvr^kZAk!eIYEAv$BrW;VgK7Sbf{^A?Seo4V)GDE0hOK&keieX;8D237JlhArL& z^uYH0D07;J=E?%iP8Haowo$UJHsYnZtOA%1$qH4W?bFG8Vb<7sVO1=)5`JQWZ-R88 zcxX=xpYd8I+&n8Yo1v?W+JJV=xVjmUy@^JW&ZgxHrSLgz$hHr4y!Cd~WRE5&>3)ff z?X7fkhmU9Nd*3=^hmSRE=(6uCH-?=);njg;`h_i_{8L+R6w`dvw5)K7glqe1ESPH9 z@H@NK=#srY?p;FcU|crx(DU^Hxe^-^jn&pdmP4$cNAO+RnXs*9SWT+&a=MLYhoRUenJ`G(o003~rYB4lx_bm%fvm z^oM1t4ALqwN_qTC#a<=A}h$z~#C~w5ZY4&W3$b=sJ3b zN|{dPzH>{g4}UV<0jB@5?TFLdb|k8&_AW9OR8=O0x(+RDFP#Zf_X zGG8}qVZh+Sh4W8+6QWyJ%w%rrtuk`5rJ*EZQVl=cL<4e+D=B5W9jw;$CRgHZhj#;e zAG}y9*k(GbBK!S<}$ zhoSyKbWp4pa?0%z-u9_%mTJ58n-1kaQz9vDt+$AEAQxQ9+}*4oKAr$xebV+_iZqha6F#g~EZh3FT9X-Hf!nw8+_YGVuuipU##T;)V{$P$WJ4#oTNe3Z zknMEz-lbaEDGI^T&F`mbQ-ISoTVUigm{Ky(Vh>J}*6Ni=9(KjEfOHPTsy>V@XhVeV zNIs=qZS^^JI-N?eqV9CrZb6lPmaw>`Y?|ZHo;OXgNy3gSyfcv>ZEA-aZOdW4Yd}k2 zrJ#Ol(J)z78Cxo6t(VK1j6ZfGEW>gz!!nlFs-N6v+^n{$#qt23?&P*Yb45Y@U|wL{ zg#Go@Zkz0iE8A3JGutx6IH$Av)a5$zRL%aH`c3k>W|8$0M1xH&`edk;paYoxL8auj zWnJ%)2RGYu!K_foVRo-@_n$dY-qTD{8(K2ir6&v$uIW10)W{$uH4~fA+p?Lx+W}kn zG8WSwHT;0_J&R$-5?Qw3}?f4dnF5k%o{eV9CjsiIl$K7E@?Z@CvA=h2brN-Lq@{JQ@WX~*2;H& z-8l)7hxbO#;1YIEm|XRP3)zOwg03~TF7s;(Xb<5EOSQ~I%2!G>L8EO7eJsCs!uRlW z|5~h%}?QQa@zvF%0Mx6+}9Vl*|98N8?y8RQ~oB_`7&+Xm+7$_0t4P3m?kK@p~P^4EDL z!*Yww3~xYFf}?X<1B#80>TM~Th>~ii0NU5}_DaW6rYEV|DmTCPZ(m_(cbyNztQu_= z&3$`sj;r|0lIgvmO>We4bIY%+%wef-j#K1t(xFPtOQ|3-!-z)+eI5y+=j9?aLOC3ibnA8 z2HR>4s`)+K-e74JHa3;RMVTH4Zl*1j{>X|p6khgK8OKIx*=y07U~CehI*brnGB z3_r(essXz~)W82E?kavB02vduDLK%pYw2!!2Gd&_EL?W7pA_)XwKDxdfou`QhN?E3 zR7{r-DXDp1^<)kdv+d@$oLHcA`JB(jb$jw3^3wt;Hm|l10n)J2^iLngBeZF57jVR* zgf88WM?FesC|2t2d~{l@_Vd0WU#<`ovmZg;D#&(!e<18j`F28XrRnbB9!M5QtAbQh zGxd^PjMSc~mngX5z^S4&T*v&{?uRtFc5!H#5I$Q9q#ZKrvhAR$7y3M3SZ{Ukm7Nk2 zYhLlvILNkY7zA5y(hMUed50Ow7P2y-4=NgMwP)ifr_ZPyh#8imev^X@xFB&dgUUM6 z4*RqEafCGHe<{Moq|kT#N_qB+3p*0&w%@c)nnuHKDYn=7dGnCpQqajRH#2xLgAVyz znNGdr;<^utOr4oSi(Oy<)m58XNR`Yvri*R}CS z+cWvHRfTe9l-QOgv7ub=MQxcHrOKD-7%0$W0}a7yglJMDzrUanQQYzo=62nj(I$ue zZnUO&Hi;#FIcC*nHd(IvGKoT3b=XF$rgW-;?-^^|x^<7BwY6t@!FIBaHMy0G29>Sn z(pif|y-(#tsFkm7my`E31^(v_j0zne+HuQ@_NhZSUr=Z*XtkNja+!}3?PiflZ5E7a z0*L-}YfkG%CRDAhX)}EnVa0Pp7K$W;&K&eP$^f%i@<9f|50pNd%DuAILu6{2FcjU6!Qi}t7MT6rT-Qk&SF@IwZdUqnhEqQo*(5Wx9W-2II~W zjYw7LBt@a^n;u*4Ak0|en)-i9 z=mgIDe13z2OH*DeF7Himw9JGl#^kL_S*w@ObrD)&6Jp!DF|nV@WhYr|tdY^mB`ta+ zf_zAnYii1l2cSQ>z_M#x$gu3zL?*rwqq;S$`?_gu+X0FeXC6o~*w-b)Un|)93b*Q4 zgM}+!wh3yJ4eRFgUW#@wZC4I)X*!oqU$s-pslB((@Na9e!PrW(Yb$fhYksqYS+m6E zG;*M=?rwFbTkSOb-X4vPMxGxyR=svH+jb(;)Z4WpnQe)NjYneWVMipWu5_QshJ^oX zLzHXO6{gx~4INO^vfUt5Z}97A8WRJ4yDeIdQS$+X;rEH`f@HQ?k?yZE{Oy?9R?}fH zWl#OzluYt5pp%tiP6V%xpFU^OU*Cs<#Rmp4nCqeSMWcFD^!i93%BGfpSKA!FjwkP9k z8^NXqIvv{%s3(M_qx%9C)u%&hwBxjigel9EVCs#bU;|qJFPB~_&~7+rehKG0Cb?N( zYHNdfw!x59suNnD??(m5Jco+^X+m+H*Wn(&pI;JX`7e z?3G`sTSuHz){kkiBc1&}w#uiORw3z=#Uf=+zth1yY8wHzouHME_L?m}R(Yz{bb1?d z9;5yjI!ri{Qw@8jTyTX>;uWO@5E&q{Y&n+OfVKf+RTMhBeMqpK@IkrArdUo(I8^lG zWQ#Db!*uQ=+w#L|a!AUiL)q%Iy`7_SZDTjzo7VFEFTB0&Mkvzq3?XW5>ni@g8hYjg6m=X;c2pzwhV)drM;5Sjy8(nH{z2-T^(ukMZ9=;h(o6$_s4&rKyPsDyC zfsh?$^ic=t{Y_8Rdnli=`7JyD85O@-L{t4Mhq;}3A2wsTT&U}tIQ=*0AZ-h)Fqgx2 zt3}nuk|Atdra&TH6%wm;%L?^J)rAVNYP1O$(dMFZ zTeY}jrImP+R+_5Ie8V4v?eCFK_i<)n0lI#OAcuWR1V6I@5BY? zt$(>7`^lH~S!^~YJXU=wZkHk0t8)oszk88hC(_sZo&O)wXVY;li^HUl`#5Nr1a_=V zN6h}VBj2&+95HhCy|&RE+f5lsU_6^&i1F|pKM`Xa68=jv`accWkvV%0{Lg?SS#=f` z*}\n" "Language-Team: French\n" "Language: fr\n" @@ -245,7 +245,7 @@ msgstr "Disponible à l’emprunt" msgid "Approved" msgstr "Approuvé" -#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:281 +#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:289 msgid "Reviews" msgstr "Critiques" @@ -651,22 +651,22 @@ msgid "Edit Author:" msgstr "Modifier l’auteur ou l’autrice :" #: bookwyrm/templates/author/edit_author.html:13 -#: bookwyrm/templates/book/edit/edit_book.html:19 +#: bookwyrm/templates/book/edit/edit_book.html:25 msgid "Added:" msgstr "Ajouté :" #: bookwyrm/templates/author/edit_author.html:14 -#: bookwyrm/templates/book/edit/edit_book.html:22 +#: bookwyrm/templates/book/edit/edit_book.html:28 msgid "Updated:" msgstr "Mis à jour :" #: bookwyrm/templates/author/edit_author.html:16 -#: bookwyrm/templates/book/edit/edit_book.html:26 +#: bookwyrm/templates/book/edit/edit_book.html:32 msgid "Last edited by:" msgstr "Dernière modification par :" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/book/edit/edit_book_form.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:19 msgid "Metadata" msgstr "Métadonnées" @@ -678,8 +678,8 @@ msgid "Name:" msgstr "Nom :" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:76 -#: bookwyrm/templates/book/edit/edit_book_form.html:146 +#: bookwyrm/templates/book/edit/edit_book_form.html:78 +#: bookwyrm/templates/book/edit/edit_book_form.html:148 msgid "Separate multiple values with commas." msgstr "Séparez plusieurs valeurs par une virgule." @@ -708,7 +708,7 @@ msgid "Openlibrary key:" msgstr "Clé Openlibrary :" #: bookwyrm/templates/author/edit_author.html:84 -#: bookwyrm/templates/book/edit/edit_book_form.html:322 +#: bookwyrm/templates/book/edit/edit_book_form.html:326 msgid "Inventaire ID:" msgstr "Identifiant Inventaire :" @@ -726,7 +726,7 @@ msgstr "ISNI :" #: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/book/book.html:202 -#: bookwyrm/templates/book/edit/edit_book.html:121 +#: bookwyrm/templates/book/edit/edit_book.html:127 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:82 #: bookwyrm/templates/groups/form.html:32 @@ -738,7 +738,7 @@ msgstr "ISNI :" #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:105 -#: bookwyrm/templates/settings/site.html:169 +#: bookwyrm/templates/settings/site.html:181 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -749,8 +749,8 @@ msgstr "Enregistrer" #: bookwyrm/templates/author/sync_modal.html:23 #: bookwyrm/templates/book/book.html:203 #: bookwyrm/templates/book/cover_add_modal.html:33 -#: bookwyrm/templates/book/edit/edit_book.html:123 -#: bookwyrm/templates/book/edit/edit_book.html:126 +#: bookwyrm/templates/book/edit/edit_book.html:129 +#: bookwyrm/templates/book/edit/edit_book.html:132 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 #: bookwyrm/templates/book/file_links/verification_modal.html:25 #: bookwyrm/templates/book/sync_modal.html:23 @@ -772,7 +772,7 @@ msgid "Loading data will connect to %(source_name)s and check f msgstr "Le chargement des données se connectera à %(source_name)s et vérifiera les métadonnées de cet auteur ou autrice qui ne sont pas présentes ici. Les métadonnées existantes ne seront pas écrasées." #: bookwyrm/templates/author/sync_modal.html:24 -#: bookwyrm/templates/book/edit/edit_book.html:108 +#: bookwyrm/templates/book/edit/edit_book.html:114 #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:42 @@ -812,58 +812,60 @@ msgid "Add Description" msgstr "Ajouter une description" #: bookwyrm/templates/book/book.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:40 +#: bookwyrm/templates/book/edit/edit_book_form.html:42 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Description :" -#: bookwyrm/templates/book/book.html:212 +#: bookwyrm/templates/book/book.html:214 #, python-format -msgid "%(count)s editions" -msgstr "%(count)s éditions" +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "%(count)s édition" +msgstr[1] "%(count)s éditions" -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" msgstr "Vous avez rangé cette édition dans :" -#: bookwyrm/templates/book/book.html:235 +#: bookwyrm/templates/book/book.html:243 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "Une édition différente de ce livre existe sur votre étagère %(shelf_name)s." -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:254 msgid "Your reading activity" msgstr "Votre activité de lecture" -#: bookwyrm/templates/book/book.html:252 +#: bookwyrm/templates/book/book.html:260 msgid "Add read dates" msgstr "Ajouter des dates de lecture" -#: bookwyrm/templates/book/book.html:260 +#: bookwyrm/templates/book/book.html:268 msgid "You don't have any reading activity for this book." msgstr "Vous n’avez aucune activité de lecture pour ce livre" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:294 msgid "Your reviews" msgstr "Vos critiques" -#: bookwyrm/templates/book/book.html:292 +#: bookwyrm/templates/book/book.html:300 msgid "Your comments" msgstr "Vos commentaires" -#: bookwyrm/templates/book/book.html:298 +#: bookwyrm/templates/book/book.html:306 msgid "Your quotes" msgstr "Vos citations" -#: bookwyrm/templates/book/book.html:334 +#: bookwyrm/templates/book/book.html:342 msgid "Subjects" msgstr "Sujets" -#: bookwyrm/templates/book/book.html:346 +#: bookwyrm/templates/book/book.html:354 msgid "Places" msgstr "Lieux" -#: bookwyrm/templates/book/book.html:357 +#: bookwyrm/templates/book/book.html:365 #: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83 #: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 @@ -873,11 +875,11 @@ msgstr "Lieux" msgid "Lists" msgstr "Listes" -#: bookwyrm/templates/book/book.html:369 +#: bookwyrm/templates/book/book.html:377 msgid "Add to list" msgstr "Ajouter à la liste" -#: bookwyrm/templates/book/book.html:379 +#: bookwyrm/templates/book/book.html:387 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -891,12 +893,12 @@ msgid "ISBN:" msgstr "ISBN :" #: bookwyrm/templates/book/book_identifiers.html:15 -#: bookwyrm/templates/book/edit/edit_book_form.html:331 +#: bookwyrm/templates/book/edit/edit_book_form.html:335 msgid "OCLC Number:" msgstr "Numéro OCLC :" #: bookwyrm/templates/book/book_identifiers.html:22 -#: bookwyrm/templates/book/edit/edit_book_form.html:340 +#: bookwyrm/templates/book/edit/edit_book_form.html:344 msgid "ASIN:" msgstr "ASIN :" @@ -905,12 +907,12 @@ msgid "Add cover" msgstr "Ajouter une couverture" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:230 +#: bookwyrm/templates/book/edit/edit_book_form.html:234 msgid "Upload cover:" msgstr "Charger une couverture :" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:236 +#: bookwyrm/templates/book/edit/edit_book_form.html:240 msgid "Load cover from url:" msgstr "Charger la couverture depuis une URL :" @@ -929,177 +931,177 @@ msgstr "Aperçu de la couverture" msgid "Close" msgstr "Fermer" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:12 +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 #, python-format msgid "Edit \"%(book_title)s\"" msgstr "Modifier « %(book_title)s »" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 msgid "Add Book" msgstr "Ajouter un livre" -#: bookwyrm/templates/book/edit/edit_book.html:48 +#: bookwyrm/templates/book/edit/edit_book.html:54 msgid "Confirm Book Info" msgstr "Confirmer les informations de ce livre" -#: bookwyrm/templates/book/edit/edit_book.html:56 +#: bookwyrm/templates/book/edit/edit_book.html:62 #, python-format msgid "Is \"%(name)s\" one of these authors?" msgstr "Est-ce que \"%(name)s\" fait partie de ces auteurs ou autrices ?" -#: bookwyrm/templates/book/edit/edit_book.html:67 -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:73 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Author of " msgstr "Auteur ou autrice de " -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Find more information at isni.org" msgstr "Trouver plus d’informations sur isni.org" -#: bookwyrm/templates/book/edit/edit_book.html:79 +#: bookwyrm/templates/book/edit/edit_book.html:85 msgid "This is a new author" msgstr "Il s’agit d’un nouvel auteur ou d’une nouvelle autrice." -#: bookwyrm/templates/book/edit/edit_book.html:86 +#: bookwyrm/templates/book/edit/edit_book.html:92 #, python-format msgid "Creating a new author: %(name)s" msgstr "Création d’un nouvel auteur/autrice : %(name)s" -#: bookwyrm/templates/book/edit/edit_book.html:93 +#: bookwyrm/templates/book/edit/edit_book.html:99 msgid "Is this an edition of an existing work?" msgstr "Est‑ce l’édition d’un ouvrage existant ?" -#: bookwyrm/templates/book/edit/edit_book.html:101 +#: bookwyrm/templates/book/edit/edit_book.html:107 msgid "This is a new work" msgstr "Il s’agit d’un nouvel ouvrage." -#: bookwyrm/templates/book/edit/edit_book.html:110 +#: bookwyrm/templates/book/edit/edit_book.html:116 #: bookwyrm/templates/feed/status.html:21 msgid "Back" msgstr "Retour" -#: bookwyrm/templates/book/edit/edit_book_form.html:22 +#: bookwyrm/templates/book/edit/edit_book_form.html:24 #: bookwyrm/templates/snippets/create_status/review.html:15 msgid "Title:" msgstr "Titre :" -#: bookwyrm/templates/book/edit/edit_book_form.html:31 +#: bookwyrm/templates/book/edit/edit_book_form.html:33 msgid "Subtitle:" msgstr "Sous‑titre :" -#: bookwyrm/templates/book/edit/edit_book_form.html:51 +#: bookwyrm/templates/book/edit/edit_book_form.html:53 msgid "Series:" msgstr "Série :" -#: bookwyrm/templates/book/edit/edit_book_form.html:61 +#: bookwyrm/templates/book/edit/edit_book_form.html:63 msgid "Series number:" msgstr "Numéro dans la série :" -#: bookwyrm/templates/book/edit/edit_book_form.html:72 +#: bookwyrm/templates/book/edit/edit_book_form.html:74 msgid "Languages:" msgstr "Langues :" -#: bookwyrm/templates/book/edit/edit_book_form.html:84 +#: bookwyrm/templates/book/edit/edit_book_form.html:86 msgid "Subjects:" msgstr "Sujets :" -#: bookwyrm/templates/book/edit/edit_book_form.html:88 +#: bookwyrm/templates/book/edit/edit_book_form.html:90 msgid "Add subject" -msgstr "" +msgstr "Ajouter un sujet" -#: bookwyrm/templates/book/edit/edit_book_form.html:106 +#: bookwyrm/templates/book/edit/edit_book_form.html:108 msgid "Remove subject" -msgstr "" +msgstr "Retirer le sujet" -#: bookwyrm/templates/book/edit/edit_book_form.html:129 +#: bookwyrm/templates/book/edit/edit_book_form.html:131 msgid "Add Another Subject" -msgstr "" +msgstr "Ajouter un autre sujet" -#: bookwyrm/templates/book/edit/edit_book_form.html:137 +#: bookwyrm/templates/book/edit/edit_book_form.html:139 msgid "Publication" msgstr "Publication" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Publisher:" msgstr "Éditeur :" -#: bookwyrm/templates/book/edit/edit_book_form.html:154 +#: bookwyrm/templates/book/edit/edit_book_form.html:156 msgid "First published date:" msgstr "Première date de parution :" -#: bookwyrm/templates/book/edit/edit_book_form.html:163 +#: bookwyrm/templates/book/edit/edit_book_form.html:165 msgid "Published date:" msgstr "Date de parution :" -#: bookwyrm/templates/book/edit/edit_book_form.html:174 +#: bookwyrm/templates/book/edit/edit_book_form.html:176 msgid "Authors" msgstr "Auteurs ou autrices" -#: bookwyrm/templates/book/edit/edit_book_form.html:183 +#: bookwyrm/templates/book/edit/edit_book_form.html:187 #, python-format msgid "Remove %(name)s" msgstr "Retirer %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:190 #, python-format msgid "Author page for %(name)s" msgstr "Page de %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:194 +#: bookwyrm/templates/book/edit/edit_book_form.html:198 msgid "Add Authors:" msgstr "Ajouter des auteurs ou autrices :" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:204 msgid "Add Author" msgstr "Ajouter un auteur ou une autrice" -#: bookwyrm/templates/book/edit/edit_book_form.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#: bookwyrm/templates/book/edit/edit_book_form.html:205 msgid "Jane Doe" msgstr "Camille Dupont" -#: bookwyrm/templates/book/edit/edit_book_form.html:207 +#: bookwyrm/templates/book/edit/edit_book_form.html:211 msgid "Add Another Author" msgstr "Ajouter un autre auteur ou autrice" -#: bookwyrm/templates/book/edit/edit_book_form.html:217 +#: bookwyrm/templates/book/edit/edit_book_form.html:221 #: bookwyrm/templates/shelf/shelf.html:146 msgid "Cover" msgstr "Couverture" -#: bookwyrm/templates/book/edit/edit_book_form.html:249 +#: bookwyrm/templates/book/edit/edit_book_form.html:253 msgid "Physical Properties" msgstr "Propriétés physiques" -#: bookwyrm/templates/book/edit/edit_book_form.html:256 +#: bookwyrm/templates/book/edit/edit_book_form.html:260 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Format :" -#: bookwyrm/templates/book/edit/edit_book_form.html:268 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 msgid "Format details:" msgstr "Détails du format :" -#: bookwyrm/templates/book/edit/edit_book_form.html:279 +#: bookwyrm/templates/book/edit/edit_book_form.html:283 msgid "Pages:" msgstr "Pages :" -#: bookwyrm/templates/book/edit/edit_book_form.html:290 +#: bookwyrm/templates/book/edit/edit_book_form.html:294 msgid "Book Identifiers" msgstr "Identifiants du livre" -#: bookwyrm/templates/book/edit/edit_book_form.html:295 +#: bookwyrm/templates/book/edit/edit_book_form.html:299 msgid "ISBN 13:" msgstr "ISBN 13 :" -#: bookwyrm/templates/book/edit/edit_book_form.html:304 +#: bookwyrm/templates/book/edit/edit_book_form.html:308 msgid "ISBN 10:" msgstr "ISBN 10 :" -#: bookwyrm/templates/book/edit/edit_book_form.html:313 +#: bookwyrm/templates/book/edit/edit_book_form.html:317 msgid "Openlibrary ID:" msgstr "Identifiant Openlibrary :" @@ -1113,6 +1115,14 @@ msgstr "Éditions de %(book_title)s" msgid "Editions of \"%(work_title)s\"" msgstr "Éditions de « %(work_title)s »" +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "Vous ne trouvez pas l’édition que vous cherchez ?" + +#: bookwyrm/templates/book/editions/editions.html:75 +msgid "Add another edition" +msgstr "Ajouter une nouvelle édition" + #: bookwyrm/templates/book/editions/format_filter.html:9 #: bookwyrm/templates/book/editions/language_filter.html:9 msgid "Any" @@ -1156,7 +1166,7 @@ msgstr "Modifier les liens" #: bookwyrm/templates/book/file_links/edit_links.html:11 #, python-format msgid "Links for \"%(title)s\"" -msgstr "" +msgstr "Liens pour “%(title)s”" #: bookwyrm/templates/book/file_links/edit_links.html:32 #: bookwyrm/templates/settings/link_domains/link_table.html:6 @@ -1183,7 +1193,7 @@ msgstr "Domaine" #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/federation/instance_list.html:46 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_info.html:20 @@ -1307,7 +1317,7 @@ msgid "Confirmation code:" msgstr "Code de confirmation :" #: bookwyrm/templates/confirm_email/confirm_email.html:25 -#: bookwyrm/templates/landing/layout.html:73 +#: bookwyrm/templates/landing/layout.html:81 #: bookwyrm/templates/settings/dashboard/dashboard.html:116 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" @@ -1359,7 +1369,7 @@ msgstr "Autoriser d’autres utilisateurs ou utilisatrices de BookWyrm à décou #: bookwyrm/templates/directory/directory.html:21 msgid "Join Directory" -msgstr "Rejoindre le répertoire" +msgstr "Rejoindre l’annuaire" #: bookwyrm/templates/directory/directory.html:24 #, python-format @@ -1662,7 +1672,7 @@ msgstr "Ne pas afficher les utilisateurs suggérés" #: bookwyrm/templates/feed/suggested_users.html:14 msgid "View directory" -msgstr "Voir le répertoire" +msgstr "Voir l’annuaire" #: bookwyrm/templates/feed/summary_card.html:21 msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" @@ -2186,7 +2196,7 @@ msgstr "L'inscription à %(name)s est fermée" msgid "Thank you! Your request has been received." msgstr "Merci ! Votre demande a bien été reçue." -#: bookwyrm/templates/landing/layout.html:82 +#: bookwyrm/templates/landing/layout.html:90 msgid "Your Account" msgstr "Votre compte" @@ -3241,36 +3251,36 @@ msgstr "Les comptes ou statuts qui ont déjà été signalés (que le rapport ai #: bookwyrm/templates/settings/automod/rules.html:26 msgid "Schedule:" -msgstr "" +msgstr "Planification :" #: bookwyrm/templates/settings/automod/rules.html:33 msgid "Last run:" -msgstr "" +msgstr "Dernière exécution :" #: bookwyrm/templates/settings/automod/rules.html:40 msgid "Total run count:" -msgstr "" +msgstr "Nombre total d’exécutions :" #: bookwyrm/templates/settings/automod/rules.html:47 msgid "Enabled:" -msgstr "" +msgstr "Activé :" #: bookwyrm/templates/settings/automod/rules.html:59 msgid "Delete schedule" -msgstr "" +msgstr "Supprimer la planification" #: bookwyrm/templates/settings/automod/rules.html:63 msgid "Run now" -msgstr "" +msgstr "Lancer maintenant" #: bookwyrm/templates/settings/automod/rules.html:64 msgid "Last run date will not be updated" -msgstr "" +msgstr "La date de dernière exécution ne sera pas mise à jour" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 msgid "Schedule scan" -msgstr "" +msgstr "Planifier une analyse" #: bookwyrm/templates/settings/automod/rules.html:101 msgid "Successfully added rule" @@ -3605,50 +3615,54 @@ msgstr "Date de validation" msgid "Email" msgstr "Email" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +msgid "Answer" +msgstr "Réponse" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 msgid "Action" msgstr "Action" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:53 msgid "No requests" msgstr "Aucune demande" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:65 #: bookwyrm/templates/settings/invites/status_filter.html:16 msgid "Accepted" msgstr "Accepté(e)s" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:67 #: bookwyrm/templates/settings/invites/status_filter.html:12 msgid "Sent" msgstr "Envoyé(e)s" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:69 #: bookwyrm/templates/settings/invites/status_filter.html:8 msgid "Requested" msgstr "Demandé(e)s" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:79 msgid "Send invite" msgstr "Envoyer l’invitation" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:81 msgid "Re-send invite" msgstr "Envoyer l’invitation de nouveau" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:101 msgid "Ignore" msgstr "Ignorer" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:103 msgid "Un-ignore" msgstr "Ne plus ignorer" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:114 msgid "Back to pending requests" msgstr "Retour aux demandes en attente" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 msgid "View ignored requests" msgstr "Voir les demandes ignorées" @@ -3980,18 +3994,26 @@ msgid "Allow invite requests" msgstr "Autoriser les demandes d’invitation" #: bookwyrm/templates/settings/site.html:151 +msgid "Set a question for invite requests" +msgstr "Définir une question pour les demandes d’invitation" + +#: bookwyrm/templates/settings/site.html:156 +msgid "Question:" +msgstr "Question :" + +#: bookwyrm/templates/settings/site.html:163 msgid "Require users to confirm email address" msgstr "Demander aux utilisateurs et utilisatrices de confirmer leur adresse email" -#: bookwyrm/templates/settings/site.html:153 +#: bookwyrm/templates/settings/site.html:165 msgid "(Recommended if registration is open)" msgstr "(Recommandé si les inscriptions sont ouvertes)" -#: bookwyrm/templates/settings/site.html:156 +#: bookwyrm/templates/settings/site.html:168 msgid "Registration closed text:" msgstr "Texte affiché lorsque les inscriptions sont closes :" -#: bookwyrm/templates/settings/site.html:160 +#: bookwyrm/templates/settings/site.html:172 msgid "Invite request text:" msgstr "Texte de la demande d'invitation :" @@ -4601,7 +4623,7 @@ msgstr "Valider ce défi" #: bookwyrm/templates/snippets/goal_progress.html:7 msgctxt "Goal successfully completed" msgid "Success!" -msgstr "" +msgstr "Succès !" #: bookwyrm/templates/snippets/goal_progress.html:9 #, python-format diff --git a/locale/gl_ES/LC_MESSAGES/django.mo b/locale/gl_ES/LC_MESSAGES/django.mo index 103aefc2bdd625df637c78b58e0931eaedba92e2..6d94e812caa7c14dce70bd84660e89be6a3cb609 100644 GIT binary patch delta 23708 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 delta 23366 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 diff --git a/locale/gl_ES/LC_MESSAGES/django.po b/locale/gl_ES/LC_MESSAGES/django.po index fab2a5a2a..34c554e1e 100644 --- a/locale/gl_ES/LC_MESSAGES/django.po +++ b/locale/gl_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-16 23:12+0000\n" -"PO-Revision-Date: 2022-03-17 04:57\n" +"POT-Creation-Date: 2022-03-17 16:15+0000\n" +"PO-Revision-Date: 2022-03-18 06:29\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Galician\n" "Language: gl\n" @@ -245,7 +245,7 @@ msgstr "Dispoñible para aluguer" msgid "Approved" msgstr "Aprobado" -#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:281 +#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:289 msgid "Reviews" msgstr "Recensións" @@ -651,22 +651,22 @@ msgid "Edit Author:" msgstr "Editar autora:" #: bookwyrm/templates/author/edit_author.html:13 -#: bookwyrm/templates/book/edit/edit_book.html:19 +#: bookwyrm/templates/book/edit/edit_book.html:25 msgid "Added:" msgstr "Engadida:" #: bookwyrm/templates/author/edit_author.html:14 -#: bookwyrm/templates/book/edit/edit_book.html:22 +#: bookwyrm/templates/book/edit/edit_book.html:28 msgid "Updated:" msgstr "Actualizada:" #: bookwyrm/templates/author/edit_author.html:16 -#: bookwyrm/templates/book/edit/edit_book.html:26 +#: bookwyrm/templates/book/edit/edit_book.html:32 msgid "Last edited by:" msgstr "Última edición por:" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/book/edit/edit_book_form.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:19 msgid "Metadata" msgstr "Metadatos" @@ -678,8 +678,8 @@ msgid "Name:" msgstr "Nome:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:76 -#: bookwyrm/templates/book/edit/edit_book_form.html:146 +#: bookwyrm/templates/book/edit/edit_book_form.html:78 +#: bookwyrm/templates/book/edit/edit_book_form.html:148 msgid "Separate multiple values with commas." msgstr "Separa múltiples valores con vírgulas." @@ -708,7 +708,7 @@ msgid "Openlibrary key:" msgstr "Chave en Openlibrary:" #: bookwyrm/templates/author/edit_author.html:84 -#: bookwyrm/templates/book/edit/edit_book_form.html:322 +#: bookwyrm/templates/book/edit/edit_book_form.html:326 msgid "Inventaire ID:" msgstr "ID en Inventaire:" @@ -726,7 +726,7 @@ msgstr "ISNI:" #: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/book/book.html:202 -#: bookwyrm/templates/book/edit/edit_book.html:121 +#: bookwyrm/templates/book/edit/edit_book.html:127 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:82 #: bookwyrm/templates/groups/form.html:32 @@ -738,7 +738,7 @@ msgstr "ISNI:" #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:105 -#: bookwyrm/templates/settings/site.html:169 +#: bookwyrm/templates/settings/site.html:181 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -749,8 +749,8 @@ msgstr "Gardar" #: bookwyrm/templates/author/sync_modal.html:23 #: bookwyrm/templates/book/book.html:203 #: bookwyrm/templates/book/cover_add_modal.html:33 -#: bookwyrm/templates/book/edit/edit_book.html:123 -#: bookwyrm/templates/book/edit/edit_book.html:126 +#: bookwyrm/templates/book/edit/edit_book.html:129 +#: bookwyrm/templates/book/edit/edit_book.html:132 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 #: bookwyrm/templates/book/file_links/verification_modal.html:25 #: bookwyrm/templates/book/sync_modal.html:23 @@ -772,7 +772,7 @@ msgid "Loading data will connect to %(source_name)s and check f msgstr "Ao cargar os datos vas conectar con %(source_name)s e comprobar se existen metadatos desta persoa autora que non están aquí presentes. Non se sobrescribirán os datos existentes." #: bookwyrm/templates/author/sync_modal.html:24 -#: bookwyrm/templates/book/edit/edit_book.html:108 +#: bookwyrm/templates/book/edit/edit_book.html:114 #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:42 @@ -812,58 +812,60 @@ msgid "Add Description" msgstr "Engadir descrición" #: bookwyrm/templates/book/book.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:40 +#: bookwyrm/templates/book/edit/edit_book_form.html:42 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Descrición:" -#: bookwyrm/templates/book/book.html:212 +#: bookwyrm/templates/book/book.html:214 #, python-format -msgid "%(count)s editions" -msgstr "%(count)s edicións" +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "%(count)s edición" +msgstr[1] "%(count)s edicións" -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" msgstr "Puxeches esta edición no estante:" -#: bookwyrm/templates/book/book.html:235 +#: bookwyrm/templates/book/book.html:243 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "Hai unha edición diferente deste libro no teu estante %(shelf_name)s." -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:254 msgid "Your reading activity" msgstr "Actividade lectora" -#: bookwyrm/templates/book/book.html:252 +#: bookwyrm/templates/book/book.html:260 msgid "Add read dates" msgstr "Engadir datas de lectura" -#: bookwyrm/templates/book/book.html:260 +#: bookwyrm/templates/book/book.html:268 msgid "You don't have any reading activity for this book." msgstr "Non tes actividade lectora neste libro." -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:294 msgid "Your reviews" msgstr "As túas recensións" -#: bookwyrm/templates/book/book.html:292 +#: bookwyrm/templates/book/book.html:300 msgid "Your comments" msgstr "Os teus comentarios" -#: bookwyrm/templates/book/book.html:298 +#: bookwyrm/templates/book/book.html:306 msgid "Your quotes" msgstr "As túas citas" -#: bookwyrm/templates/book/book.html:334 +#: bookwyrm/templates/book/book.html:342 msgid "Subjects" msgstr "Temas" -#: bookwyrm/templates/book/book.html:346 +#: bookwyrm/templates/book/book.html:354 msgid "Places" msgstr "Lugares" -#: bookwyrm/templates/book/book.html:357 +#: bookwyrm/templates/book/book.html:365 #: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83 #: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 @@ -873,11 +875,11 @@ msgstr "Lugares" msgid "Lists" msgstr "Listaxes" -#: bookwyrm/templates/book/book.html:369 +#: bookwyrm/templates/book/book.html:377 msgid "Add to list" msgstr "Engadir a listaxe" -#: bookwyrm/templates/book/book.html:379 +#: bookwyrm/templates/book/book.html:387 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -891,12 +893,12 @@ msgid "ISBN:" msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:15 -#: bookwyrm/templates/book/edit/edit_book_form.html:331 +#: bookwyrm/templates/book/edit/edit_book_form.html:335 msgid "OCLC Number:" msgstr "Número OCLC:" #: bookwyrm/templates/book/book_identifiers.html:22 -#: bookwyrm/templates/book/edit/edit_book_form.html:340 +#: bookwyrm/templates/book/edit/edit_book_form.html:344 msgid "ASIN:" msgstr "ASIN:" @@ -905,12 +907,12 @@ msgid "Add cover" msgstr "Engadir portada" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:230 +#: bookwyrm/templates/book/edit/edit_book_form.html:234 msgid "Upload cover:" msgstr "Subir portada:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:236 +#: bookwyrm/templates/book/edit/edit_book_form.html:240 msgid "Load cover from url:" msgstr "Cargar portada desde url:" @@ -929,177 +931,177 @@ msgstr "Vista previa da portada" msgid "Close" msgstr "Pechar" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:12 +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 #, python-format msgid "Edit \"%(book_title)s\"" msgstr "Editar \"%(book_title)s\"" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 msgid "Add Book" msgstr "Engadir libro" -#: bookwyrm/templates/book/edit/edit_book.html:48 +#: bookwyrm/templates/book/edit/edit_book.html:54 msgid "Confirm Book Info" msgstr "Confirma info do libro" -#: bookwyrm/templates/book/edit/edit_book.html:56 +#: bookwyrm/templates/book/edit/edit_book.html:62 #, python-format msgid "Is \"%(name)s\" one of these authors?" msgstr "É \"%(name)s\" un destas autoras?" -#: bookwyrm/templates/book/edit/edit_book.html:67 -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:73 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Author of " msgstr "Autora de " -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Find more information at isni.org" msgstr "Atopa máis información en isni.org" -#: bookwyrm/templates/book/edit/edit_book.html:79 +#: bookwyrm/templates/book/edit/edit_book.html:85 msgid "This is a new author" msgstr "Esta é unha nova autora" -#: bookwyrm/templates/book/edit/edit_book.html:86 +#: bookwyrm/templates/book/edit/edit_book.html:92 #, python-format msgid "Creating a new author: %(name)s" msgstr "Creando nova autora: %(name)s" -#: bookwyrm/templates/book/edit/edit_book.html:93 +#: bookwyrm/templates/book/edit/edit_book.html:99 msgid "Is this an edition of an existing work?" msgstr "É esta a edición dun traballo existente?" -#: bookwyrm/templates/book/edit/edit_book.html:101 +#: bookwyrm/templates/book/edit/edit_book.html:107 msgid "This is a new work" msgstr "Este é un novo traballo" -#: bookwyrm/templates/book/edit/edit_book.html:110 +#: bookwyrm/templates/book/edit/edit_book.html:116 #: bookwyrm/templates/feed/status.html:21 msgid "Back" msgstr "Atrás" -#: bookwyrm/templates/book/edit/edit_book_form.html:22 +#: bookwyrm/templates/book/edit/edit_book_form.html:24 #: bookwyrm/templates/snippets/create_status/review.html:15 msgid "Title:" msgstr "Título:" -#: bookwyrm/templates/book/edit/edit_book_form.html:31 +#: bookwyrm/templates/book/edit/edit_book_form.html:33 msgid "Subtitle:" msgstr "Subtítulo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:51 +#: bookwyrm/templates/book/edit/edit_book_form.html:53 msgid "Series:" msgstr "Serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:61 +#: bookwyrm/templates/book/edit/edit_book_form.html:63 msgid "Series number:" msgstr "Número da serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:72 +#: bookwyrm/templates/book/edit/edit_book_form.html:74 msgid "Languages:" msgstr "Idiomas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:84 +#: bookwyrm/templates/book/edit/edit_book_form.html:86 msgid "Subjects:" msgstr "Temas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:88 +#: bookwyrm/templates/book/edit/edit_book_form.html:90 msgid "Add subject" msgstr "Engadir tema" -#: bookwyrm/templates/book/edit/edit_book_form.html:106 +#: bookwyrm/templates/book/edit/edit_book_form.html:108 msgid "Remove subject" msgstr "Eliminar tema" -#: bookwyrm/templates/book/edit/edit_book_form.html:129 +#: bookwyrm/templates/book/edit/edit_book_form.html:131 msgid "Add Another Subject" msgstr "Engadir outro tema" -#: bookwyrm/templates/book/edit/edit_book_form.html:137 +#: bookwyrm/templates/book/edit/edit_book_form.html:139 msgid "Publication" msgstr "Publicación" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Publisher:" msgstr "Editorial:" -#: bookwyrm/templates/book/edit/edit_book_form.html:154 +#: bookwyrm/templates/book/edit/edit_book_form.html:156 msgid "First published date:" msgstr "Data da primeira edición:" -#: bookwyrm/templates/book/edit/edit_book_form.html:163 +#: bookwyrm/templates/book/edit/edit_book_form.html:165 msgid "Published date:" msgstr "Data de publicación:" -#: bookwyrm/templates/book/edit/edit_book_form.html:174 +#: bookwyrm/templates/book/edit/edit_book_form.html:176 msgid "Authors" msgstr "Autoras" -#: bookwyrm/templates/book/edit/edit_book_form.html:183 +#: bookwyrm/templates/book/edit/edit_book_form.html:187 #, python-format msgid "Remove %(name)s" msgstr "Eliminar %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:190 #, python-format msgid "Author page for %(name)s" msgstr "Páxina de autora para %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:194 +#: bookwyrm/templates/book/edit/edit_book_form.html:198 msgid "Add Authors:" msgstr "Engadir autoras:" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:204 msgid "Add Author" msgstr "Engadir Autora" -#: bookwyrm/templates/book/edit/edit_book_form.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#: bookwyrm/templates/book/edit/edit_book_form.html:205 msgid "Jane Doe" msgstr "Xoana Pedre" -#: bookwyrm/templates/book/edit/edit_book_form.html:207 +#: bookwyrm/templates/book/edit/edit_book_form.html:211 msgid "Add Another Author" msgstr "Engade outra Autora" -#: bookwyrm/templates/book/edit/edit_book_form.html:217 +#: bookwyrm/templates/book/edit/edit_book_form.html:221 #: bookwyrm/templates/shelf/shelf.html:146 msgid "Cover" msgstr "Portada" -#: bookwyrm/templates/book/edit/edit_book_form.html:249 +#: bookwyrm/templates/book/edit/edit_book_form.html:253 msgid "Physical Properties" msgstr "Propiedades físicas" -#: bookwyrm/templates/book/edit/edit_book_form.html:256 +#: bookwyrm/templates/book/edit/edit_book_form.html:260 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:268 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 msgid "Format details:" msgstr "Detalles do formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:279 +#: bookwyrm/templates/book/edit/edit_book_form.html:283 msgid "Pages:" msgstr "Páxinas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:290 +#: bookwyrm/templates/book/edit/edit_book_form.html:294 msgid "Book Identifiers" msgstr "Identificadores do libro" -#: bookwyrm/templates/book/edit/edit_book_form.html:295 +#: bookwyrm/templates/book/edit/edit_book_form.html:299 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:304 +#: bookwyrm/templates/book/edit/edit_book_form.html:308 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:313 +#: bookwyrm/templates/book/edit/edit_book_form.html:317 msgid "Openlibrary ID:" msgstr "ID en Openlibrary:" @@ -1113,6 +1115,14 @@ msgstr "Edicións de %(book_title)s" msgid "Editions of \"%(work_title)s\"" msgstr "Edicións de %(work_title)s" +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "Non atopas a edición que buscas?" + +#: bookwyrm/templates/book/editions/editions.html:75 +msgid "Add another edition" +msgstr "Engade outra edición" + #: bookwyrm/templates/book/editions/format_filter.html:9 #: bookwyrm/templates/book/editions/language_filter.html:9 msgid "Any" @@ -1183,7 +1193,7 @@ msgstr "Dominio" #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/federation/instance_list.html:46 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_info.html:20 @@ -1307,7 +1317,7 @@ msgid "Confirmation code:" msgstr "Código de confirmación:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 -#: bookwyrm/templates/landing/layout.html:73 +#: bookwyrm/templates/landing/layout.html:81 #: bookwyrm/templates/settings/dashboard/dashboard.html:116 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" @@ -2186,7 +2196,7 @@ msgstr "%(name)s ten o rexistro pechado" msgid "Thank you! Your request has been received." msgstr "Grazas! A solicitude foi recibida." -#: bookwyrm/templates/landing/layout.html:82 +#: bookwyrm/templates/landing/layout.html:90 msgid "Your Account" msgstr "A túa Conta" @@ -2898,7 +2908,7 @@ msgstr "Perfil" #: bookwyrm/templates/settings/site.html:77 #: bookwyrm/templates/setup/config.html:91 msgid "Display" -msgstr "" +msgstr "Mostrar" #: bookwyrm/templates/preferences/edit_user.html:14 #: bookwyrm/templates/preferences/edit_user.html:112 @@ -3605,50 +3615,54 @@ msgstr "Data de aceptación" msgid "Email" msgstr "Email" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +msgid "Answer" +msgstr "Responder" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 msgid "Action" msgstr "Acción" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:53 msgid "No requests" msgstr "Sen solicitudes" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:65 #: bookwyrm/templates/settings/invites/status_filter.html:16 msgid "Accepted" msgstr "Aceptadas" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:67 #: bookwyrm/templates/settings/invites/status_filter.html:12 msgid "Sent" msgstr "Enviadas" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:69 #: bookwyrm/templates/settings/invites/status_filter.html:8 msgid "Requested" msgstr "Solicitadas" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:79 msgid "Send invite" msgstr "Enviar convite" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:81 msgid "Re-send invite" msgstr "Volver a enviar" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:101 msgid "Ignore" msgstr "Ignorar" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:103 msgid "Un-ignore" msgstr "Non ignorar" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:114 msgid "Back to pending requests" msgstr "Volver a solicitudes pendentes" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 msgid "View ignored requests" msgstr "Ver solicitudes ignoradas" @@ -3980,18 +3994,26 @@ msgid "Allow invite requests" msgstr "Permitir solicitudes de convite" #: bookwyrm/templates/settings/site.html:151 +msgid "Set a question for invite requests" +msgstr "Escribe a pregunta para as solicitudes de convite" + +#: bookwyrm/templates/settings/site.html:156 +msgid "Question:" +msgstr "Pregunta:" + +#: bookwyrm/templates/settings/site.html:163 msgid "Require users to confirm email address" msgstr "Requerir que a usuaria confirme o enderezo de email" -#: bookwyrm/templates/settings/site.html:153 +#: bookwyrm/templates/settings/site.html:165 msgid "(Recommended if registration is open)" msgstr "(Recomendable se o rexistro está aberto)" -#: bookwyrm/templates/settings/site.html:156 +#: bookwyrm/templates/settings/site.html:168 msgid "Registration closed text:" msgstr "Texto se o rexistro está pechado:" -#: bookwyrm/templates/settings/site.html:160 +#: bookwyrm/templates/settings/site.html:172 msgid "Invite request text:" msgstr "Texto para a solicitude do convite:" diff --git a/locale/it_IT/LC_MESSAGES/django.mo b/locale/it_IT/LC_MESSAGES/django.mo index 0ca10e9754a7df201fa321a3b2df4465d4f41988..ffaf9a4e88f747ff8eb1552b777d21a9a7613183 100644 GIT binary patch delta 23610 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 diff --git a/locale/it_IT/LC_MESSAGES/django.po b/locale/it_IT/LC_MESSAGES/django.po index 784c05ceb..0986f7740 100644 --- a/locale/it_IT/LC_MESSAGES/django.po +++ b/locale/it_IT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-16 23:12+0000\n" -"PO-Revision-Date: 2022-03-17 00:48\n" +"POT-Creation-Date: 2022-03-17 16:15+0000\n" +"PO-Revision-Date: 2022-03-18 00:41\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Italian\n" "Language: it\n" @@ -245,7 +245,7 @@ msgstr "Disponibile per il prestito" msgid "Approved" msgstr "Approvato" -#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:281 +#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:289 msgid "Reviews" msgstr "Recensioni" @@ -651,22 +651,22 @@ msgid "Edit Author:" msgstr "Modifica autore:" #: bookwyrm/templates/author/edit_author.html:13 -#: bookwyrm/templates/book/edit/edit_book.html:19 +#: bookwyrm/templates/book/edit/edit_book.html:25 msgid "Added:" msgstr "Aggiunto:" #: bookwyrm/templates/author/edit_author.html:14 -#: bookwyrm/templates/book/edit/edit_book.html:22 +#: bookwyrm/templates/book/edit/edit_book.html:28 msgid "Updated:" msgstr "Aggiornato:" #: bookwyrm/templates/author/edit_author.html:16 -#: bookwyrm/templates/book/edit/edit_book.html:26 +#: bookwyrm/templates/book/edit/edit_book.html:32 msgid "Last edited by:" msgstr "Ultima modifica di:" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/book/edit/edit_book_form.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:19 msgid "Metadata" msgstr "Metadati" @@ -678,8 +678,8 @@ msgid "Name:" msgstr "Nome:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:76 -#: bookwyrm/templates/book/edit/edit_book_form.html:146 +#: bookwyrm/templates/book/edit/edit_book_form.html:78 +#: bookwyrm/templates/book/edit/edit_book_form.html:148 msgid "Separate multiple values with commas." msgstr "Separa valori multipli con la virgola (,)" @@ -708,7 +708,7 @@ msgid "Openlibrary key:" msgstr "Chiave OpenLibrary:" #: bookwyrm/templates/author/edit_author.html:84 -#: bookwyrm/templates/book/edit/edit_book_form.html:322 +#: bookwyrm/templates/book/edit/edit_book_form.html:326 msgid "Inventaire ID:" msgstr "Inventaire ID:" @@ -726,7 +726,7 @@ msgstr "ISNI:" #: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/book/book.html:202 -#: bookwyrm/templates/book/edit/edit_book.html:121 +#: bookwyrm/templates/book/edit/edit_book.html:127 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:82 #: bookwyrm/templates/groups/form.html:32 @@ -738,7 +738,7 @@ msgstr "ISNI:" #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:105 -#: bookwyrm/templates/settings/site.html:169 +#: bookwyrm/templates/settings/site.html:181 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -749,8 +749,8 @@ msgstr "Salva" #: bookwyrm/templates/author/sync_modal.html:23 #: bookwyrm/templates/book/book.html:203 #: bookwyrm/templates/book/cover_add_modal.html:33 -#: bookwyrm/templates/book/edit/edit_book.html:123 -#: bookwyrm/templates/book/edit/edit_book.html:126 +#: bookwyrm/templates/book/edit/edit_book.html:129 +#: bookwyrm/templates/book/edit/edit_book.html:132 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 #: bookwyrm/templates/book/file_links/verification_modal.html:25 #: bookwyrm/templates/book/sync_modal.html:23 @@ -772,7 +772,7 @@ msgid "Loading data will connect to %(source_name)s and check f msgstr "Il caricamento dei dati si collegherà a %(source_name)s e verificherà eventuali metadati relativi a questo autore che non sono presenti qui. I metadati esistenti non vengono sovrascritti." #: bookwyrm/templates/author/sync_modal.html:24 -#: bookwyrm/templates/book/edit/edit_book.html:108 +#: bookwyrm/templates/book/edit/edit_book.html:114 #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:42 @@ -812,58 +812,60 @@ msgid "Add Description" msgstr "Aggiungi descrizione" #: bookwyrm/templates/book/book.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:40 +#: bookwyrm/templates/book/edit/edit_book_form.html:42 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Descrizione:" -#: bookwyrm/templates/book/book.html:212 +#: bookwyrm/templates/book/book.html:214 #, python-format -msgid "%(count)s editions" -msgstr "%(count)s edizioni" +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "%(count)s edizioni" -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" msgstr "Hai salvato questa edizione in:" -#: bookwyrm/templates/book/book.html:235 +#: bookwyrm/templates/book/book.html:243 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "Una diversa edizione di questo libro è sul tuo scaffale %(shelf_name)s." -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:254 msgid "Your reading activity" msgstr "Le tue attività di lettura" -#: bookwyrm/templates/book/book.html:252 +#: bookwyrm/templates/book/book.html:260 msgid "Add read dates" msgstr "Aggiungi data di lettura" -#: bookwyrm/templates/book/book.html:260 +#: bookwyrm/templates/book/book.html:268 msgid "You don't have any reading activity for this book." msgstr "Non hai alcuna attività di lettura per questo libro." -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:294 msgid "Your reviews" msgstr "Le tue recensioni" -#: bookwyrm/templates/book/book.html:292 +#: bookwyrm/templates/book/book.html:300 msgid "Your comments" msgstr "I tuoi commenti" -#: bookwyrm/templates/book/book.html:298 +#: bookwyrm/templates/book/book.html:306 msgid "Your quotes" msgstr "Le tue citazioni" -#: bookwyrm/templates/book/book.html:334 +#: bookwyrm/templates/book/book.html:342 msgid "Subjects" msgstr "Argomenti" -#: bookwyrm/templates/book/book.html:346 +#: bookwyrm/templates/book/book.html:354 msgid "Places" msgstr "Luoghi" -#: bookwyrm/templates/book/book.html:357 +#: bookwyrm/templates/book/book.html:365 #: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83 #: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 @@ -873,11 +875,11 @@ msgstr "Luoghi" msgid "Lists" msgstr "Liste" -#: bookwyrm/templates/book/book.html:369 +#: bookwyrm/templates/book/book.html:377 msgid "Add to list" msgstr "Aggiungi all'elenco" -#: bookwyrm/templates/book/book.html:379 +#: bookwyrm/templates/book/book.html:387 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -891,12 +893,12 @@ msgid "ISBN:" msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:15 -#: bookwyrm/templates/book/edit/edit_book_form.html:331 +#: bookwyrm/templates/book/edit/edit_book_form.html:335 msgid "OCLC Number:" msgstr "Numero OCLC:" #: bookwyrm/templates/book/book_identifiers.html:22 -#: bookwyrm/templates/book/edit/edit_book_form.html:340 +#: bookwyrm/templates/book/edit/edit_book_form.html:344 msgid "ASIN:" msgstr "ASIN:" @@ -905,12 +907,12 @@ msgid "Add cover" msgstr "Aggiungi copertina" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:230 +#: bookwyrm/templates/book/edit/edit_book_form.html:234 msgid "Upload cover:" msgstr "Carica la copertina:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:236 +#: bookwyrm/templates/book/edit/edit_book_form.html:240 msgid "Load cover from url:" msgstr "Carica la copertina dall'url:" @@ -929,177 +931,177 @@ msgstr "Anteprima copertina del libro" msgid "Close" msgstr "Chiudi" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:12 +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 #, python-format msgid "Edit \"%(book_title)s\"" msgstr "Modifica \"%(book_title)s\"" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 msgid "Add Book" msgstr "Aggiungi libro" -#: bookwyrm/templates/book/edit/edit_book.html:48 +#: bookwyrm/templates/book/edit/edit_book.html:54 msgid "Confirm Book Info" msgstr "Conferma informazioni sul libro" -#: bookwyrm/templates/book/edit/edit_book.html:56 +#: bookwyrm/templates/book/edit/edit_book.html:62 #, python-format msgid "Is \"%(name)s\" one of these authors?" msgstr "È \"%(name)s\" uno di questi autori?" -#: bookwyrm/templates/book/edit/edit_book.html:67 -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:73 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Author of " msgstr "Autore di " -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Find more information at isni.org" msgstr "Trova maggiori informazioni su isni.org" -#: bookwyrm/templates/book/edit/edit_book.html:79 +#: bookwyrm/templates/book/edit/edit_book.html:85 msgid "This is a new author" msgstr "Questo è un nuovo autore" -#: bookwyrm/templates/book/edit/edit_book.html:86 +#: bookwyrm/templates/book/edit/edit_book.html:92 #, python-format msgid "Creating a new author: %(name)s" msgstr "Creazione di un nuovo autore: %(name)s" -#: bookwyrm/templates/book/edit/edit_book.html:93 +#: bookwyrm/templates/book/edit/edit_book.html:99 msgid "Is this an edition of an existing work?" msgstr "È un'edizione di un'opera esistente?" -#: bookwyrm/templates/book/edit/edit_book.html:101 +#: bookwyrm/templates/book/edit/edit_book.html:107 msgid "This is a new work" msgstr "Si tratta di un nuovo lavoro" -#: bookwyrm/templates/book/edit/edit_book.html:110 +#: bookwyrm/templates/book/edit/edit_book.html:116 #: bookwyrm/templates/feed/status.html:21 msgid "Back" msgstr "Indietro" -#: bookwyrm/templates/book/edit/edit_book_form.html:22 +#: bookwyrm/templates/book/edit/edit_book_form.html:24 #: bookwyrm/templates/snippets/create_status/review.html:15 msgid "Title:" msgstr "Titolo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:31 +#: bookwyrm/templates/book/edit/edit_book_form.html:33 msgid "Subtitle:" msgstr "Sottotitolo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:51 +#: bookwyrm/templates/book/edit/edit_book_form.html:53 msgid "Series:" msgstr "Collana:" -#: bookwyrm/templates/book/edit/edit_book_form.html:61 +#: bookwyrm/templates/book/edit/edit_book_form.html:63 msgid "Series number:" msgstr "Numero collana:" -#: bookwyrm/templates/book/edit/edit_book_form.html:72 +#: bookwyrm/templates/book/edit/edit_book_form.html:74 msgid "Languages:" msgstr "Lingue:" -#: bookwyrm/templates/book/edit/edit_book_form.html:84 +#: bookwyrm/templates/book/edit/edit_book_form.html:86 msgid "Subjects:" msgstr "Argomenti:" -#: bookwyrm/templates/book/edit/edit_book_form.html:88 +#: bookwyrm/templates/book/edit/edit_book_form.html:90 msgid "Add subject" msgstr "Aggiungi argomento" -#: bookwyrm/templates/book/edit/edit_book_form.html:106 +#: bookwyrm/templates/book/edit/edit_book_form.html:108 msgid "Remove subject" msgstr "Rimuovi argomento" -#: bookwyrm/templates/book/edit/edit_book_form.html:129 +#: bookwyrm/templates/book/edit/edit_book_form.html:131 msgid "Add Another Subject" msgstr "Aggiungi argomento" -#: bookwyrm/templates/book/edit/edit_book_form.html:137 +#: bookwyrm/templates/book/edit/edit_book_form.html:139 msgid "Publication" msgstr "Data di pubblicazione" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Publisher:" msgstr "Editore:" -#: bookwyrm/templates/book/edit/edit_book_form.html:154 +#: bookwyrm/templates/book/edit/edit_book_form.html:156 msgid "First published date:" msgstr "Prima data di pubblicazione:" -#: bookwyrm/templates/book/edit/edit_book_form.html:163 +#: bookwyrm/templates/book/edit/edit_book_form.html:165 msgid "Published date:" msgstr "Data di pubblicazione:" -#: bookwyrm/templates/book/edit/edit_book_form.html:174 +#: bookwyrm/templates/book/edit/edit_book_form.html:176 msgid "Authors" msgstr "Autori" -#: bookwyrm/templates/book/edit/edit_book_form.html:183 +#: bookwyrm/templates/book/edit/edit_book_form.html:187 #, python-format msgid "Remove %(name)s" msgstr "Rimuovi %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:190 #, python-format msgid "Author page for %(name)s" msgstr "Pagina autore per %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:194 +#: bookwyrm/templates/book/edit/edit_book_form.html:198 msgid "Add Authors:" msgstr "Aggiungi Autori:" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:204 msgid "Add Author" msgstr "Aggiungi Autore" -#: bookwyrm/templates/book/edit/edit_book_form.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#: bookwyrm/templates/book/edit/edit_book_form.html:205 msgid "Jane Doe" msgstr "Jane Doe" -#: bookwyrm/templates/book/edit/edit_book_form.html:207 +#: bookwyrm/templates/book/edit/edit_book_form.html:211 msgid "Add Another Author" msgstr "Aggiungi un altro autore" -#: bookwyrm/templates/book/edit/edit_book_form.html:217 +#: bookwyrm/templates/book/edit/edit_book_form.html:221 #: bookwyrm/templates/shelf/shelf.html:146 msgid "Cover" msgstr "Copertina" -#: bookwyrm/templates/book/edit/edit_book_form.html:249 +#: bookwyrm/templates/book/edit/edit_book_form.html:253 msgid "Physical Properties" msgstr "Caratteristiche" -#: bookwyrm/templates/book/edit/edit_book_form.html:256 +#: bookwyrm/templates/book/edit/edit_book_form.html:260 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:268 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 msgid "Format details:" msgstr "Dettagli del formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:279 +#: bookwyrm/templates/book/edit/edit_book_form.html:283 msgid "Pages:" msgstr "Pagine:" -#: bookwyrm/templates/book/edit/edit_book_form.html:290 +#: bookwyrm/templates/book/edit/edit_book_form.html:294 msgid "Book Identifiers" msgstr "Identificativi del Libro" -#: bookwyrm/templates/book/edit/edit_book_form.html:295 +#: bookwyrm/templates/book/edit/edit_book_form.html:299 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:304 +#: bookwyrm/templates/book/edit/edit_book_form.html:308 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:313 +#: bookwyrm/templates/book/edit/edit_book_form.html:317 msgid "Openlibrary ID:" msgstr "OpenLibrary ID:" @@ -1113,6 +1115,14 @@ msgstr "Edizioni di %(book_title)s" msgid "Editions of \"%(work_title)s\"" msgstr "Edizioni di \"%(work_title)s\"" +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "Non trovi l'edizione che stai cercando?" + +#: bookwyrm/templates/book/editions/editions.html:75 +msgid "Add another edition" +msgstr "Aggiungi un'altra edizione" + #: bookwyrm/templates/book/editions/format_filter.html:9 #: bookwyrm/templates/book/editions/language_filter.html:9 msgid "Any" @@ -1183,7 +1193,7 @@ msgstr "Dominio" #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/federation/instance_list.html:46 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_info.html:20 @@ -1307,7 +1317,7 @@ msgid "Confirmation code:" msgstr "Codice di conferma:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 -#: bookwyrm/templates/landing/layout.html:73 +#: bookwyrm/templates/landing/layout.html:81 #: bookwyrm/templates/settings/dashboard/dashboard.html:116 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" @@ -2186,7 +2196,7 @@ msgstr "%(name)s registrazione chiusa" msgid "Thank you! Your request has been received." msgstr "Grazie! La tua richiesta è stata ricevuta." -#: bookwyrm/templates/landing/layout.html:82 +#: bookwyrm/templates/landing/layout.html:90 msgid "Your Account" msgstr "Il tuo account" @@ -3605,50 +3615,54 @@ msgstr "Data di approvazione" msgid "Email" msgstr "Email" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +msgid "Answer" +msgstr "Risposta" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 msgid "Action" msgstr "Azione" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:53 msgid "No requests" msgstr "Nessuna richiesta" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:65 #: bookwyrm/templates/settings/invites/status_filter.html:16 msgid "Accepted" msgstr "Accettato" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:67 #: bookwyrm/templates/settings/invites/status_filter.html:12 msgid "Sent" msgstr "Inviato" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:69 #: bookwyrm/templates/settings/invites/status_filter.html:8 msgid "Requested" msgstr "Richiesto" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:79 msgid "Send invite" msgstr "Manda invito" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:81 msgid "Re-send invite" msgstr "Invia nuovamente invito" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:101 msgid "Ignore" msgstr "Ignora" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:103 msgid "Un-ignore" msgstr "Annulla ignora" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:114 msgid "Back to pending requests" msgstr "Torna alle richieste in sospeso" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 msgid "View ignored requests" msgstr "Visualizza richieste ignorate" @@ -3980,18 +3994,26 @@ msgid "Allow invite requests" msgstr "Consenti richieste di invito" #: bookwyrm/templates/settings/site.html:151 +msgid "Set a question for invite requests" +msgstr "Imposta una domanda per le richieste di invito" + +#: bookwyrm/templates/settings/site.html:156 +msgid "Question:" +msgstr "Domanda:" + +#: bookwyrm/templates/settings/site.html:163 msgid "Require users to confirm email address" msgstr "Richiedi agli utenti per confermare l'indirizzo email" -#: bookwyrm/templates/settings/site.html:153 +#: bookwyrm/templates/settings/site.html:165 msgid "(Recommended if registration is open)" msgstr "(Raccomandato se la registrazione è aperta)" -#: bookwyrm/templates/settings/site.html:156 +#: bookwyrm/templates/settings/site.html:168 msgid "Registration closed text:" msgstr "Registrazioni chiuse:" -#: bookwyrm/templates/settings/site.html:160 +#: bookwyrm/templates/settings/site.html:172 msgid "Invite request text:" msgstr "Testo della richiesta di invito:" diff --git a/locale/lt_LT/LC_MESSAGES/django.mo b/locale/lt_LT/LC_MESSAGES/django.mo index 62cd8ef173ca75351b66d847c4e395be92cf7477..7662558e58bd68fd6d7616850afb4f97e0fc4f2f 100644 GIT binary patch delta 21064 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 diff --git a/locale/lt_LT/LC_MESSAGES/django.po b/locale/lt_LT/LC_MESSAGES/django.po index 5a4f7c9b3..0fba2b60a 100644 --- a/locale/lt_LT/LC_MESSAGES/django.po +++ b/locale/lt_LT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-16 23:12+0000\n" -"PO-Revision-Date: 2022-03-16 23:33\n" +"POT-Creation-Date: 2022-03-17 16:15+0000\n" +"PO-Revision-Date: 2022-03-17 17:06\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Lithuanian\n" "Language: lt\n" @@ -245,7 +245,7 @@ msgstr "Galima pasiskolinti" msgid "Approved" msgstr "Patvirtinti puslapiai" -#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:281 +#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:289 msgid "Reviews" msgstr "Apžvalgos" @@ -659,22 +659,22 @@ msgid "Edit Author:" msgstr "Keisti autorių:" #: bookwyrm/templates/author/edit_author.html:13 -#: bookwyrm/templates/book/edit/edit_book.html:19 +#: bookwyrm/templates/book/edit/edit_book.html:25 msgid "Added:" msgstr "Pridėta:" #: bookwyrm/templates/author/edit_author.html:14 -#: bookwyrm/templates/book/edit/edit_book.html:22 +#: bookwyrm/templates/book/edit/edit_book.html:28 msgid "Updated:" msgstr "Atnaujinta:" #: bookwyrm/templates/author/edit_author.html:16 -#: bookwyrm/templates/book/edit/edit_book.html:26 +#: bookwyrm/templates/book/edit/edit_book.html:32 msgid "Last edited by:" msgstr "Pastarąjį kartą redagavo:" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/book/edit/edit_book_form.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:19 msgid "Metadata" msgstr "Meta duomenys" @@ -686,8 +686,8 @@ msgid "Name:" msgstr "Vardas:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:76 -#: bookwyrm/templates/book/edit/edit_book_form.html:146 +#: bookwyrm/templates/book/edit/edit_book_form.html:78 +#: bookwyrm/templates/book/edit/edit_book_form.html:148 msgid "Separate multiple values with commas." msgstr "Reikšmes atskirkite kableliais." @@ -716,7 +716,7 @@ msgid "Openlibrary key:" msgstr "„Openlibrary“ raktas:" #: bookwyrm/templates/author/edit_author.html:84 -#: bookwyrm/templates/book/edit/edit_book_form.html:322 +#: bookwyrm/templates/book/edit/edit_book_form.html:326 msgid "Inventaire ID:" msgstr "„Inventaire“ ID:" @@ -734,7 +734,7 @@ msgstr "ISNI:" #: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/book/book.html:202 -#: bookwyrm/templates/book/edit/edit_book.html:121 +#: bookwyrm/templates/book/edit/edit_book.html:127 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:82 #: bookwyrm/templates/groups/form.html:32 @@ -746,7 +746,7 @@ msgstr "ISNI:" #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:105 -#: bookwyrm/templates/settings/site.html:169 +#: bookwyrm/templates/settings/site.html:181 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -757,8 +757,8 @@ msgstr "Išsaugoti" #: bookwyrm/templates/author/sync_modal.html:23 #: bookwyrm/templates/book/book.html:203 #: bookwyrm/templates/book/cover_add_modal.html:33 -#: bookwyrm/templates/book/edit/edit_book.html:123 -#: bookwyrm/templates/book/edit/edit_book.html:126 +#: bookwyrm/templates/book/edit/edit_book.html:129 +#: bookwyrm/templates/book/edit/edit_book.html:132 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 #: bookwyrm/templates/book/file_links/verification_modal.html:25 #: bookwyrm/templates/book/sync_modal.html:23 @@ -780,7 +780,7 @@ msgid "Loading data will connect to %(source_name)s and check f msgstr "Duomenų įkėlimas prisijungs prie %(source_name)s ir patikrins ar nėra naujos informacijos. Esantys metaduomenys nebus perrašomi." #: bookwyrm/templates/author/sync_modal.html:24 -#: bookwyrm/templates/book/edit/edit_book.html:108 +#: bookwyrm/templates/book/edit/edit_book.html:114 #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:42 @@ -822,58 +822,62 @@ msgid "Add Description" msgstr "Pridėti aprašymą" #: bookwyrm/templates/book/book.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:40 +#: bookwyrm/templates/book/edit/edit_book_form.html:42 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Aprašymas:" -#: bookwyrm/templates/book/book.html:212 +#: bookwyrm/templates/book/book.html:214 #, python-format -msgid "%(count)s editions" -msgstr "%(count)s leidimai (-ų)" +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" msgstr "Šis leidimas įdėtas į:" -#: bookwyrm/templates/book/book.html:235 +#: bookwyrm/templates/book/book.html:243 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "kitas šios knygos leidimas yra jūsų %(shelf_name)s lentynoje." -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:254 msgid "Your reading activity" msgstr "Jūsų skaitymo veikla" -#: bookwyrm/templates/book/book.html:252 +#: bookwyrm/templates/book/book.html:260 msgid "Add read dates" msgstr "Pridėti skaitymo datas" -#: bookwyrm/templates/book/book.html:260 +#: bookwyrm/templates/book/book.html:268 msgid "You don't have any reading activity for this book." msgstr "Šios knygos neskaitote." -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:294 msgid "Your reviews" msgstr "Tavo atsiliepimai" -#: bookwyrm/templates/book/book.html:292 +#: bookwyrm/templates/book/book.html:300 msgid "Your comments" msgstr "Tavo komentarai" -#: bookwyrm/templates/book/book.html:298 +#: bookwyrm/templates/book/book.html:306 msgid "Your quotes" msgstr "Jūsų citatos" -#: bookwyrm/templates/book/book.html:334 +#: bookwyrm/templates/book/book.html:342 msgid "Subjects" msgstr "Temos" -#: bookwyrm/templates/book/book.html:346 +#: bookwyrm/templates/book/book.html:354 msgid "Places" msgstr "Vietos" -#: bookwyrm/templates/book/book.html:357 +#: bookwyrm/templates/book/book.html:365 #: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83 #: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 @@ -883,11 +887,11 @@ msgstr "Vietos" msgid "Lists" msgstr "Sąrašai" -#: bookwyrm/templates/book/book.html:369 +#: bookwyrm/templates/book/book.html:377 msgid "Add to list" msgstr "Pridėti prie sąrašo" -#: bookwyrm/templates/book/book.html:379 +#: bookwyrm/templates/book/book.html:387 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -901,12 +905,12 @@ msgid "ISBN:" msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:15 -#: bookwyrm/templates/book/edit/edit_book_form.html:331 +#: bookwyrm/templates/book/edit/edit_book_form.html:335 msgid "OCLC Number:" msgstr "OCLC numeris:" #: bookwyrm/templates/book/book_identifiers.html:22 -#: bookwyrm/templates/book/edit/edit_book_form.html:340 +#: bookwyrm/templates/book/edit/edit_book_form.html:344 msgid "ASIN:" msgstr "ASIN:" @@ -915,12 +919,12 @@ msgid "Add cover" msgstr "Pridėti viršelį" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:230 +#: bookwyrm/templates/book/edit/edit_book_form.html:234 msgid "Upload cover:" msgstr "Įkelti viršelį:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:236 +#: bookwyrm/templates/book/edit/edit_book_form.html:240 msgid "Load cover from url:" msgstr "Įkelti viršelį iš url:" @@ -939,177 +943,177 @@ msgstr "Peržiūrėti knygos viršelį" msgid "Close" msgstr "Uždaryti" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:12 +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 #, python-format msgid "Edit \"%(book_title)s\"" msgstr "Redaguoti „%(book_title)s“" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 msgid "Add Book" msgstr "Pridėti knygą" -#: bookwyrm/templates/book/edit/edit_book.html:48 +#: bookwyrm/templates/book/edit/edit_book.html:54 msgid "Confirm Book Info" msgstr "Patvirtinti knygos informaciją" -#: bookwyrm/templates/book/edit/edit_book.html:56 +#: bookwyrm/templates/book/edit/edit_book.html:62 #, python-format msgid "Is \"%(name)s\" one of these authors?" msgstr "Ar \"%(name)s\" yra vienas iš šių autorių?" -#: bookwyrm/templates/book/edit/edit_book.html:67 -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:73 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Author of " msgstr "Autorius " -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Find more information at isni.org" msgstr "Daugiau informacijos isni.org" -#: bookwyrm/templates/book/edit/edit_book.html:79 +#: bookwyrm/templates/book/edit/edit_book.html:85 msgid "This is a new author" msgstr "Tai naujas autorius" -#: bookwyrm/templates/book/edit/edit_book.html:86 +#: bookwyrm/templates/book/edit/edit_book.html:92 #, python-format msgid "Creating a new author: %(name)s" msgstr "Kuriamas naujas autorius: %(name)s" -#: bookwyrm/templates/book/edit/edit_book.html:93 +#: bookwyrm/templates/book/edit/edit_book.html:99 msgid "Is this an edition of an existing work?" msgstr "Ar tai egzistuojančio darbo leidimas?" -#: bookwyrm/templates/book/edit/edit_book.html:101 +#: bookwyrm/templates/book/edit/edit_book.html:107 msgid "This is a new work" msgstr "Tai naujas darbas" -#: bookwyrm/templates/book/edit/edit_book.html:110 +#: bookwyrm/templates/book/edit/edit_book.html:116 #: bookwyrm/templates/feed/status.html:21 msgid "Back" msgstr "Atgal" -#: bookwyrm/templates/book/edit/edit_book_form.html:22 +#: bookwyrm/templates/book/edit/edit_book_form.html:24 #: bookwyrm/templates/snippets/create_status/review.html:15 msgid "Title:" msgstr "Pavadinimas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:31 +#: bookwyrm/templates/book/edit/edit_book_form.html:33 msgid "Subtitle:" msgstr "Paantraštė:" -#: bookwyrm/templates/book/edit/edit_book_form.html:51 +#: bookwyrm/templates/book/edit/edit_book_form.html:53 msgid "Series:" msgstr "Serija:" -#: bookwyrm/templates/book/edit/edit_book_form.html:61 +#: bookwyrm/templates/book/edit/edit_book_form.html:63 msgid "Series number:" msgstr "Serijos numeris:" -#: bookwyrm/templates/book/edit/edit_book_form.html:72 +#: bookwyrm/templates/book/edit/edit_book_form.html:74 msgid "Languages:" msgstr "Kalbos:" -#: bookwyrm/templates/book/edit/edit_book_form.html:84 +#: bookwyrm/templates/book/edit/edit_book_form.html:86 msgid "Subjects:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:88 +#: bookwyrm/templates/book/edit/edit_book_form.html:90 msgid "Add subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:106 +#: bookwyrm/templates/book/edit/edit_book_form.html:108 msgid "Remove subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:129 +#: bookwyrm/templates/book/edit/edit_book_form.html:131 msgid "Add Another Subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:137 +#: bookwyrm/templates/book/edit/edit_book_form.html:139 msgid "Publication" msgstr "Leidimas" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Publisher:" msgstr "Leidėjas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:154 +#: bookwyrm/templates/book/edit/edit_book_form.html:156 msgid "First published date:" msgstr "Pirmoji publikavimo data:" -#: bookwyrm/templates/book/edit/edit_book_form.html:163 +#: bookwyrm/templates/book/edit/edit_book_form.html:165 msgid "Published date:" msgstr "Publikavimo data:" -#: bookwyrm/templates/book/edit/edit_book_form.html:174 +#: bookwyrm/templates/book/edit/edit_book_form.html:176 msgid "Authors" msgstr "Autoriai" -#: bookwyrm/templates/book/edit/edit_book_form.html:183 +#: bookwyrm/templates/book/edit/edit_book_form.html:187 #, python-format msgid "Remove %(name)s" msgstr "Pašalinti %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:190 #, python-format msgid "Author page for %(name)s" msgstr "Autoriaus puslapis %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:194 +#: bookwyrm/templates/book/edit/edit_book_form.html:198 msgid "Add Authors:" msgstr "Pridėti autorius:" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:204 msgid "Add Author" msgstr "Pridėti autorių" -#: bookwyrm/templates/book/edit/edit_book_form.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#: bookwyrm/templates/book/edit/edit_book_form.html:205 msgid "Jane Doe" msgstr "Jonas Jonaitė" -#: bookwyrm/templates/book/edit/edit_book_form.html:207 +#: bookwyrm/templates/book/edit/edit_book_form.html:211 msgid "Add Another Author" msgstr "Pridėti dar vieną autorių" -#: bookwyrm/templates/book/edit/edit_book_form.html:217 +#: bookwyrm/templates/book/edit/edit_book_form.html:221 #: bookwyrm/templates/shelf/shelf.html:146 msgid "Cover" msgstr "Viršelis" -#: bookwyrm/templates/book/edit/edit_book_form.html:249 +#: bookwyrm/templates/book/edit/edit_book_form.html:253 msgid "Physical Properties" msgstr "Fizinės savybės" -#: bookwyrm/templates/book/edit/edit_book_form.html:256 +#: bookwyrm/templates/book/edit/edit_book_form.html:260 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Formatas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:268 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 msgid "Format details:" msgstr "Informacija apie formatą:" -#: bookwyrm/templates/book/edit/edit_book_form.html:279 +#: bookwyrm/templates/book/edit/edit_book_form.html:283 msgid "Pages:" msgstr "Puslapiai:" -#: bookwyrm/templates/book/edit/edit_book_form.html:290 +#: bookwyrm/templates/book/edit/edit_book_form.html:294 msgid "Book Identifiers" msgstr "Knygos identifikatoriai" -#: bookwyrm/templates/book/edit/edit_book_form.html:295 +#: bookwyrm/templates/book/edit/edit_book_form.html:299 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:304 +#: bookwyrm/templates/book/edit/edit_book_form.html:308 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:313 +#: bookwyrm/templates/book/edit/edit_book_form.html:317 msgid "Openlibrary ID:" msgstr "„Openlibrary“ ID:" @@ -1123,6 +1127,14 @@ msgstr "Knygos %(book_title)s leidimai" msgid "Editions of \"%(work_title)s\"" msgstr "\"%(work_title)s\" leidimai" +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:75 +msgid "Add another edition" +msgstr "" + #: bookwyrm/templates/book/editions/format_filter.html:9 #: bookwyrm/templates/book/editions/language_filter.html:9 msgid "Any" @@ -1193,7 +1205,7 @@ msgstr "Domenas" #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/federation/instance_list.html:46 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_info.html:20 @@ -1317,7 +1329,7 @@ msgid "Confirmation code:" msgstr "Patvirtinimo kodas:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 -#: bookwyrm/templates/landing/layout.html:73 +#: bookwyrm/templates/landing/layout.html:81 #: bookwyrm/templates/settings/dashboard/dashboard.html:116 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" @@ -2208,7 +2220,7 @@ msgstr "%(name)s – registracija uždaryta" msgid "Thank you! Your request has been received." msgstr "Dėkojame, jūsų prašymas gautas." -#: bookwyrm/templates/landing/layout.html:82 +#: bookwyrm/templates/landing/layout.html:90 msgid "Your Account" msgstr "Jūsų paskyra" @@ -3633,50 +3645,54 @@ msgstr "Priėmimo data" msgid "Email" msgstr "El. paštas" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 msgid "Action" msgstr "Veiksmas" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:53 msgid "No requests" msgstr "Prašymų nėra" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:65 #: bookwyrm/templates/settings/invites/status_filter.html:16 msgid "Accepted" msgstr "Priimta" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:67 #: bookwyrm/templates/settings/invites/status_filter.html:12 msgid "Sent" msgstr "Išsiųsta" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:69 #: bookwyrm/templates/settings/invites/status_filter.html:8 msgid "Requested" msgstr "Užklausta" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:79 msgid "Send invite" msgstr "Siųsti pakvietimą" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:81 msgid "Re-send invite" msgstr "Pakartotinai siųsti pakvietimą" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:101 msgid "Ignore" msgstr "Ignoruoti" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:103 msgid "Un-ignore" msgstr "Nebeignoruoti" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:114 msgid "Back to pending requests" msgstr "Grįžti į laukiančius prašymus" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 msgid "View ignored requests" msgstr "Žiūrėti ignoruotus prašymus" @@ -4008,18 +4024,26 @@ msgid "Allow invite requests" msgstr "Leisti prašyti kvietimų" #: bookwyrm/templates/settings/site.html:151 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/site.html:156 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:163 msgid "Require users to confirm email address" msgstr "Reikalauti el. pašto patvirtinimo" -#: bookwyrm/templates/settings/site.html:153 +#: bookwyrm/templates/settings/site.html:165 msgid "(Recommended if registration is open)" msgstr "(Rekomenduojama, jei leidžiama registruotis)" -#: bookwyrm/templates/settings/site.html:156 +#: bookwyrm/templates/settings/site.html:168 msgid "Registration closed text:" msgstr "Užrakintos registracijos tekstas:" -#: bookwyrm/templates/settings/site.html:160 +#: bookwyrm/templates/settings/site.html:172 msgid "Invite request text:" msgstr "Kvietimo prašymo tekstas:" diff --git a/locale/no_NO/LC_MESSAGES/django.mo b/locale/no_NO/LC_MESSAGES/django.mo index ffc66534f984e300c35d0730da28943538d06357..007b4d59619fe35fddcca08475dcbab562ad0b3c 100644 GIT binary patch delta 21065 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 delta 21146 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�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 E2M+NTaR2}S diff --git a/locale/no_NO/LC_MESSAGES/django.po b/locale/no_NO/LC_MESSAGES/django.po index d40e90ef1..d26d72558 100644 --- a/locale/no_NO/LC_MESSAGES/django.po +++ b/locale/no_NO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-16 23:12+0000\n" -"PO-Revision-Date: 2022-03-16 23:34\n" +"POT-Creation-Date: 2022-03-17 16:15+0000\n" +"PO-Revision-Date: 2022-03-17 17:06\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Norwegian\n" "Language: no\n" @@ -245,7 +245,7 @@ msgstr "Tilgjengelig for utlån" msgid "Approved" msgstr "Godkjent" -#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:281 +#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:289 msgid "Reviews" msgstr "Anmeldelser" @@ -651,22 +651,22 @@ msgid "Edit Author:" msgstr "Rediger forfatter:" #: bookwyrm/templates/author/edit_author.html:13 -#: bookwyrm/templates/book/edit/edit_book.html:19 +#: bookwyrm/templates/book/edit/edit_book.html:25 msgid "Added:" msgstr "Lagt til:" #: bookwyrm/templates/author/edit_author.html:14 -#: bookwyrm/templates/book/edit/edit_book.html:22 +#: bookwyrm/templates/book/edit/edit_book.html:28 msgid "Updated:" msgstr "Oppdatert:" #: bookwyrm/templates/author/edit_author.html:16 -#: bookwyrm/templates/book/edit/edit_book.html:26 +#: bookwyrm/templates/book/edit/edit_book.html:32 msgid "Last edited by:" msgstr "Sist endret av:" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/book/edit/edit_book_form.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:19 msgid "Metadata" msgstr "Metadata" @@ -678,8 +678,8 @@ msgid "Name:" msgstr "Navn:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:76 -#: bookwyrm/templates/book/edit/edit_book_form.html:146 +#: bookwyrm/templates/book/edit/edit_book_form.html:78 +#: bookwyrm/templates/book/edit/edit_book_form.html:148 msgid "Separate multiple values with commas." msgstr "Adskill flere verdier med komma." @@ -708,7 +708,7 @@ msgid "Openlibrary key:" msgstr "Openlibrary nøkkel:" #: bookwyrm/templates/author/edit_author.html:84 -#: bookwyrm/templates/book/edit/edit_book_form.html:322 +#: bookwyrm/templates/book/edit/edit_book_form.html:326 msgid "Inventaire ID:" msgstr "Inventaire ID:" @@ -726,7 +726,7 @@ msgstr "ISNI:" #: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/book/book.html:202 -#: bookwyrm/templates/book/edit/edit_book.html:121 +#: bookwyrm/templates/book/edit/edit_book.html:127 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:82 #: bookwyrm/templates/groups/form.html:32 @@ -738,7 +738,7 @@ msgstr "ISNI:" #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:105 -#: bookwyrm/templates/settings/site.html:169 +#: bookwyrm/templates/settings/site.html:181 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -749,8 +749,8 @@ msgstr "Lagre" #: bookwyrm/templates/author/sync_modal.html:23 #: bookwyrm/templates/book/book.html:203 #: bookwyrm/templates/book/cover_add_modal.html:33 -#: bookwyrm/templates/book/edit/edit_book.html:123 -#: bookwyrm/templates/book/edit/edit_book.html:126 +#: bookwyrm/templates/book/edit/edit_book.html:129 +#: bookwyrm/templates/book/edit/edit_book.html:132 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 #: bookwyrm/templates/book/file_links/verification_modal.html:25 #: bookwyrm/templates/book/sync_modal.html:23 @@ -772,7 +772,7 @@ msgid "Loading data will connect to %(source_name)s and check f msgstr "Laster inn data kobler til %(source_name)s og finner metadata om denne forfatteren som enda ikke finnes her. Eksisterende metadata vil ikke bli overskrevet." #: bookwyrm/templates/author/sync_modal.html:24 -#: bookwyrm/templates/book/edit/edit_book.html:108 +#: bookwyrm/templates/book/edit/edit_book.html:114 #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:42 @@ -812,58 +812,60 @@ msgid "Add Description" msgstr "Legg til beskrivelse" #: bookwyrm/templates/book/book.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:40 +#: bookwyrm/templates/book/edit/edit_book_form.html:42 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Beskrivelse:" -#: bookwyrm/templates/book/book.html:212 +#: bookwyrm/templates/book/book.html:214 #, python-format -msgid "%(count)s editions" -msgstr "%(count)s utgaver" +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" msgstr "Du har lagt denne utgaven i hylla:" -#: bookwyrm/templates/book/book.html:235 +#: bookwyrm/templates/book/book.html:243 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "En annen utgave av denne boken ligger i hylla %(shelf_name)s." -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:254 msgid "Your reading activity" msgstr "Din leseaktivitet" -#: bookwyrm/templates/book/book.html:252 +#: bookwyrm/templates/book/book.html:260 msgid "Add read dates" msgstr "Legg til lesedatoer" -#: bookwyrm/templates/book/book.html:260 +#: bookwyrm/templates/book/book.html:268 msgid "You don't have any reading activity for this book." msgstr "Du har ikke lagt inn leseaktivitet for denne boka." -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:294 msgid "Your reviews" msgstr "Dine anmeldelser" -#: bookwyrm/templates/book/book.html:292 +#: bookwyrm/templates/book/book.html:300 msgid "Your comments" msgstr "Dine kommentarer" -#: bookwyrm/templates/book/book.html:298 +#: bookwyrm/templates/book/book.html:306 msgid "Your quotes" msgstr "Dine sitater" -#: bookwyrm/templates/book/book.html:334 +#: bookwyrm/templates/book/book.html:342 msgid "Subjects" msgstr "Emner" -#: bookwyrm/templates/book/book.html:346 +#: bookwyrm/templates/book/book.html:354 msgid "Places" msgstr "Steder" -#: bookwyrm/templates/book/book.html:357 +#: bookwyrm/templates/book/book.html:365 #: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83 #: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 @@ -873,11 +875,11 @@ msgstr "Steder" msgid "Lists" msgstr "Lister" -#: bookwyrm/templates/book/book.html:369 +#: bookwyrm/templates/book/book.html:377 msgid "Add to list" msgstr "Legg til i liste" -#: bookwyrm/templates/book/book.html:379 +#: bookwyrm/templates/book/book.html:387 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -891,12 +893,12 @@ msgid "ISBN:" msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:15 -#: bookwyrm/templates/book/edit/edit_book_form.html:331 +#: bookwyrm/templates/book/edit/edit_book_form.html:335 msgid "OCLC Number:" msgstr "OCLC Nummer:" #: bookwyrm/templates/book/book_identifiers.html:22 -#: bookwyrm/templates/book/edit/edit_book_form.html:340 +#: bookwyrm/templates/book/edit/edit_book_form.html:344 msgid "ASIN:" msgstr "ASIN:" @@ -905,12 +907,12 @@ msgid "Add cover" msgstr "Legg til et omslag" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:230 +#: bookwyrm/templates/book/edit/edit_book_form.html:234 msgid "Upload cover:" msgstr "Last opp omslag:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:236 +#: bookwyrm/templates/book/edit/edit_book_form.html:240 msgid "Load cover from url:" msgstr "Last bilde av omslag fra nettadresse:" @@ -929,177 +931,177 @@ msgstr "Bokomslag forhåndsvisning" msgid "Close" msgstr "Lukk" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:12 +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 #, python-format msgid "Edit \"%(book_title)s\"" msgstr "Rediger \"%(book_title)s" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 msgid "Add Book" msgstr "Legg til bok" -#: bookwyrm/templates/book/edit/edit_book.html:48 +#: bookwyrm/templates/book/edit/edit_book.html:54 msgid "Confirm Book Info" msgstr "Bekreft bokinformasjon" -#: bookwyrm/templates/book/edit/edit_book.html:56 +#: bookwyrm/templates/book/edit/edit_book.html:62 #, python-format msgid "Is \"%(name)s\" one of these authors?" msgstr "Er \"%(name)s\" en av disse forfatterne?" -#: bookwyrm/templates/book/edit/edit_book.html:67 -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:73 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Author of " msgstr "Forfatter av " -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Find more information at isni.org" msgstr "Finn mer informasjon på isni.org" -#: bookwyrm/templates/book/edit/edit_book.html:79 +#: bookwyrm/templates/book/edit/edit_book.html:85 msgid "This is a new author" msgstr "Dette er en ny forfatter" -#: bookwyrm/templates/book/edit/edit_book.html:86 +#: bookwyrm/templates/book/edit/edit_book.html:92 #, python-format msgid "Creating a new author: %(name)s" msgstr "Oppretter en ny forfatter: %(name)s" -#: bookwyrm/templates/book/edit/edit_book.html:93 +#: bookwyrm/templates/book/edit/edit_book.html:99 msgid "Is this an edition of an existing work?" msgstr "Er dette en utgave av et eksisterende verk?" -#: bookwyrm/templates/book/edit/edit_book.html:101 +#: bookwyrm/templates/book/edit/edit_book.html:107 msgid "This is a new work" msgstr "Dette er et nytt verk" -#: bookwyrm/templates/book/edit/edit_book.html:110 +#: bookwyrm/templates/book/edit/edit_book.html:116 #: bookwyrm/templates/feed/status.html:21 msgid "Back" msgstr "Tilbake" -#: bookwyrm/templates/book/edit/edit_book_form.html:22 +#: bookwyrm/templates/book/edit/edit_book_form.html:24 #: bookwyrm/templates/snippets/create_status/review.html:15 msgid "Title:" msgstr "Tittel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:31 +#: bookwyrm/templates/book/edit/edit_book_form.html:33 msgid "Subtitle:" msgstr "Undertittel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:51 +#: bookwyrm/templates/book/edit/edit_book_form.html:53 msgid "Series:" msgstr "Serie:" -#: bookwyrm/templates/book/edit/edit_book_form.html:61 +#: bookwyrm/templates/book/edit/edit_book_form.html:63 msgid "Series number:" msgstr "Serienummer:" -#: bookwyrm/templates/book/edit/edit_book_form.html:72 +#: bookwyrm/templates/book/edit/edit_book_form.html:74 msgid "Languages:" msgstr "Språk:" -#: bookwyrm/templates/book/edit/edit_book_form.html:84 +#: bookwyrm/templates/book/edit/edit_book_form.html:86 msgid "Subjects:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:88 +#: bookwyrm/templates/book/edit/edit_book_form.html:90 msgid "Add subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:106 +#: bookwyrm/templates/book/edit/edit_book_form.html:108 msgid "Remove subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:129 +#: bookwyrm/templates/book/edit/edit_book_form.html:131 msgid "Add Another Subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:137 +#: bookwyrm/templates/book/edit/edit_book_form.html:139 msgid "Publication" msgstr "Publikasjon" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Publisher:" msgstr "Forlag:" -#: bookwyrm/templates/book/edit/edit_book_form.html:154 +#: bookwyrm/templates/book/edit/edit_book_form.html:156 msgid "First published date:" msgstr "Først utgitt:" -#: bookwyrm/templates/book/edit/edit_book_form.html:163 +#: bookwyrm/templates/book/edit/edit_book_form.html:165 msgid "Published date:" msgstr "Publiseringsdato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:174 +#: bookwyrm/templates/book/edit/edit_book_form.html:176 msgid "Authors" msgstr "Forfattere" -#: bookwyrm/templates/book/edit/edit_book_form.html:183 +#: bookwyrm/templates/book/edit/edit_book_form.html:187 #, python-format msgid "Remove %(name)s" msgstr "Fjern %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:190 #, python-format msgid "Author page for %(name)s" msgstr "Forfatterside for %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:194 +#: bookwyrm/templates/book/edit/edit_book_form.html:198 msgid "Add Authors:" msgstr "Legg til forfattere:" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:204 msgid "Add Author" msgstr "Legg til forfatter" -#: bookwyrm/templates/book/edit/edit_book_form.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#: bookwyrm/templates/book/edit/edit_book_form.html:205 msgid "Jane Doe" msgstr "Kari Nordmann" -#: bookwyrm/templates/book/edit/edit_book_form.html:207 +#: bookwyrm/templates/book/edit/edit_book_form.html:211 msgid "Add Another Author" msgstr "Legg til enda en forfatter" -#: bookwyrm/templates/book/edit/edit_book_form.html:217 +#: bookwyrm/templates/book/edit/edit_book_form.html:221 #: bookwyrm/templates/shelf/shelf.html:146 msgid "Cover" msgstr "Omslag" -#: bookwyrm/templates/book/edit/edit_book_form.html:249 +#: bookwyrm/templates/book/edit/edit_book_form.html:253 msgid "Physical Properties" msgstr "Fysiske egenskaper" -#: bookwyrm/templates/book/edit/edit_book_form.html:256 +#: bookwyrm/templates/book/edit/edit_book_form.html:260 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Format:" -#: bookwyrm/templates/book/edit/edit_book_form.html:268 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 msgid "Format details:" msgstr "Formatdetaljer:" -#: bookwyrm/templates/book/edit/edit_book_form.html:279 +#: bookwyrm/templates/book/edit/edit_book_form.html:283 msgid "Pages:" msgstr "Sider:" -#: bookwyrm/templates/book/edit/edit_book_form.html:290 +#: bookwyrm/templates/book/edit/edit_book_form.html:294 msgid "Book Identifiers" msgstr "Boknøkler" -#: bookwyrm/templates/book/edit/edit_book_form.html:295 +#: bookwyrm/templates/book/edit/edit_book_form.html:299 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:304 +#: bookwyrm/templates/book/edit/edit_book_form.html:308 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:313 +#: bookwyrm/templates/book/edit/edit_book_form.html:317 msgid "Openlibrary ID:" msgstr "Openlibrary nøkkel:" @@ -1113,6 +1115,14 @@ msgstr "Utgaver av %(book_title)s" msgid "Editions of \"%(work_title)s\"" msgstr "Utgaver av \"%(work_title)s\"" +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:75 +msgid "Add another edition" +msgstr "" + #: bookwyrm/templates/book/editions/format_filter.html:9 #: bookwyrm/templates/book/editions/language_filter.html:9 msgid "Any" @@ -1183,7 +1193,7 @@ msgstr "Domene" #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/federation/instance_list.html:46 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_info.html:20 @@ -1307,7 +1317,7 @@ msgid "Confirmation code:" msgstr "Bekreftelseskode:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 -#: bookwyrm/templates/landing/layout.html:73 +#: bookwyrm/templates/landing/layout.html:81 #: bookwyrm/templates/settings/dashboard/dashboard.html:116 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" @@ -2186,7 +2196,7 @@ msgstr "%(name)s registrering er stengt" msgid "Thank you! Your request has been received." msgstr "Takk! Vi har mottatt forespørselen din." -#: bookwyrm/templates/landing/layout.html:82 +#: bookwyrm/templates/landing/layout.html:90 msgid "Your Account" msgstr "Kontoen din" @@ -3603,50 +3613,54 @@ msgstr "Akseptert dato" msgid "Email" msgstr "E-post" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 msgid "Action" msgstr "Handling" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:53 msgid "No requests" msgstr "Ingen forespørsler" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:65 #: bookwyrm/templates/settings/invites/status_filter.html:16 msgid "Accepted" msgstr "Akseptert" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:67 #: bookwyrm/templates/settings/invites/status_filter.html:12 msgid "Sent" msgstr "Sendt" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:69 #: bookwyrm/templates/settings/invites/status_filter.html:8 msgid "Requested" msgstr "Forespurt" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:79 msgid "Send invite" msgstr "Send invitasjon" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:81 msgid "Re-send invite" msgstr "Gjenta invitasjon" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:101 msgid "Ignore" msgstr "Ignorer" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:103 msgid "Un-ignore" msgstr "Fjern ignorering" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:114 msgid "Back to pending requests" msgstr "Tilbake til ventende forespørsler" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 msgid "View ignored requests" msgstr "Vis ignorerte forespørsler" @@ -3978,18 +3992,26 @@ msgid "Allow invite requests" msgstr "Tillat invitasjonsforespørsler" #: bookwyrm/templates/settings/site.html:151 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/site.html:156 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:163 msgid "Require users to confirm email address" msgstr "Medlemmer må bekrefte e-postadresse" -#: bookwyrm/templates/settings/site.html:153 +#: bookwyrm/templates/settings/site.html:165 msgid "(Recommended if registration is open)" msgstr "(anbefales for åpen registrering)" -#: bookwyrm/templates/settings/site.html:156 +#: bookwyrm/templates/settings/site.html:168 msgid "Registration closed text:" msgstr "Registrering lukket tekst:" -#: bookwyrm/templates/settings/site.html:160 +#: bookwyrm/templates/settings/site.html:172 msgid "Invite request text:" msgstr "Invitasjonsforespørsel tekst:" diff --git a/locale/pt_BR/LC_MESSAGES/django.mo b/locale/pt_BR/LC_MESSAGES/django.mo index 9a3d8ce7e916c1441141380ed94fa801ce751bef..540e4ef6180b582dd95f34f5cafe6f2c67a5ae25 100644 GIT binary patch delta 23727 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 delta 23364 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\n" "Language-Team: Portuguese, Brazilian\n" "Language: pt\n" @@ -245,7 +245,7 @@ msgstr "Disponível para empréstimo" msgid "Approved" msgstr "Aprovado" -#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:281 +#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:289 msgid "Reviews" msgstr "Resenhas" @@ -651,22 +651,22 @@ msgid "Edit Author:" msgstr "Editar autor/a:" #: bookwyrm/templates/author/edit_author.html:13 -#: bookwyrm/templates/book/edit/edit_book.html:19 +#: bookwyrm/templates/book/edit/edit_book.html:25 msgid "Added:" msgstr "Adicionado:" #: bookwyrm/templates/author/edit_author.html:14 -#: bookwyrm/templates/book/edit/edit_book.html:22 +#: bookwyrm/templates/book/edit/edit_book.html:28 msgid "Updated:" msgstr "Atualizado:" #: bookwyrm/templates/author/edit_author.html:16 -#: bookwyrm/templates/book/edit/edit_book.html:26 +#: bookwyrm/templates/book/edit/edit_book.html:32 msgid "Last edited by:" msgstr "Editado pela última vez por:" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/book/edit/edit_book_form.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:19 msgid "Metadata" msgstr "Metadados" @@ -678,8 +678,8 @@ msgid "Name:" msgstr "Nome:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:76 -#: bookwyrm/templates/book/edit/edit_book_form.html:146 +#: bookwyrm/templates/book/edit/edit_book_form.html:78 +#: bookwyrm/templates/book/edit/edit_book_form.html:148 msgid "Separate multiple values with commas." msgstr "Separe com vírgulas." @@ -708,7 +708,7 @@ msgid "Openlibrary key:" msgstr "Chave Openlibrary:" #: bookwyrm/templates/author/edit_author.html:84 -#: bookwyrm/templates/book/edit/edit_book_form.html:322 +#: bookwyrm/templates/book/edit/edit_book_form.html:326 msgid "Inventaire ID:" msgstr "ID Inventaire:" @@ -726,7 +726,7 @@ msgstr "ISNI:" #: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/book/book.html:202 -#: bookwyrm/templates/book/edit/edit_book.html:121 +#: bookwyrm/templates/book/edit/edit_book.html:127 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:82 #: bookwyrm/templates/groups/form.html:32 @@ -738,7 +738,7 @@ msgstr "ISNI:" #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:105 -#: bookwyrm/templates/settings/site.html:169 +#: bookwyrm/templates/settings/site.html:181 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -749,8 +749,8 @@ msgstr "Salvar" #: bookwyrm/templates/author/sync_modal.html:23 #: bookwyrm/templates/book/book.html:203 #: bookwyrm/templates/book/cover_add_modal.html:33 -#: bookwyrm/templates/book/edit/edit_book.html:123 -#: bookwyrm/templates/book/edit/edit_book.html:126 +#: bookwyrm/templates/book/edit/edit_book.html:129 +#: bookwyrm/templates/book/edit/edit_book.html:132 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 #: bookwyrm/templates/book/file_links/verification_modal.html:25 #: bookwyrm/templates/book/sync_modal.html:23 @@ -772,7 +772,7 @@ msgid "Loading data will connect to %(source_name)s and check f msgstr "Para carregar informações nos conectaremos a %(source_name)s e buscaremos metadados que ainda não temos sobre este/a autor/a. Metadados já existentes não serão substituídos." #: bookwyrm/templates/author/sync_modal.html:24 -#: bookwyrm/templates/book/edit/edit_book.html:108 +#: bookwyrm/templates/book/edit/edit_book.html:114 #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:42 @@ -812,58 +812,60 @@ msgid "Add Description" msgstr "Adicionar descrição" #: bookwyrm/templates/book/book.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:40 +#: bookwyrm/templates/book/edit/edit_book_form.html:42 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Descrição:" -#: bookwyrm/templates/book/book.html:212 +#: bookwyrm/templates/book/book.html:214 #, python-format -msgid "%(count)s editions" -msgstr "%(count)s edições" +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "%(count)s edição" +msgstr[1] "%(count)s edições" -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" msgstr "Você colocou esta edição na estante em:" -#: bookwyrm/templates/book/book.html:235 +#: bookwyrm/templates/book/book.html:243 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "Uma edição diferente deste livro está em sua estante %(shelf_name)s." -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:254 msgid "Your reading activity" msgstr "Andamento da sua leitura" -#: bookwyrm/templates/book/book.html:252 +#: bookwyrm/templates/book/book.html:260 msgid "Add read dates" msgstr "Adicionar registro de leitura" -#: bookwyrm/templates/book/book.html:260 +#: bookwyrm/templates/book/book.html:268 msgid "You don't have any reading activity for this book." msgstr "Você ainda não registrou sua leitura." -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:294 msgid "Your reviews" msgstr "Suas resenhas" -#: bookwyrm/templates/book/book.html:292 +#: bookwyrm/templates/book/book.html:300 msgid "Your comments" msgstr "Seus comentários" -#: bookwyrm/templates/book/book.html:298 +#: bookwyrm/templates/book/book.html:306 msgid "Your quotes" msgstr "Suas citações" -#: bookwyrm/templates/book/book.html:334 +#: bookwyrm/templates/book/book.html:342 msgid "Subjects" msgstr "Assuntos" -#: bookwyrm/templates/book/book.html:346 +#: bookwyrm/templates/book/book.html:354 msgid "Places" msgstr "Lugares" -#: bookwyrm/templates/book/book.html:357 +#: bookwyrm/templates/book/book.html:365 #: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83 #: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 @@ -873,11 +875,11 @@ msgstr "Lugares" msgid "Lists" msgstr "Listas" -#: bookwyrm/templates/book/book.html:369 +#: bookwyrm/templates/book/book.html:377 msgid "Add to list" msgstr "Adicionar à lista" -#: bookwyrm/templates/book/book.html:379 +#: bookwyrm/templates/book/book.html:387 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -891,12 +893,12 @@ msgid "ISBN:" msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:15 -#: bookwyrm/templates/book/edit/edit_book_form.html:331 +#: bookwyrm/templates/book/edit/edit_book_form.html:335 msgid "OCLC Number:" msgstr "Número OCLC:" #: bookwyrm/templates/book/book_identifiers.html:22 -#: bookwyrm/templates/book/edit/edit_book_form.html:340 +#: bookwyrm/templates/book/edit/edit_book_form.html:344 msgid "ASIN:" msgstr "ASIN:" @@ -905,12 +907,12 @@ msgid "Add cover" msgstr "Adicionar capa" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:230 +#: bookwyrm/templates/book/edit/edit_book_form.html:234 msgid "Upload cover:" msgstr "Enviar capa:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:236 +#: bookwyrm/templates/book/edit/edit_book_form.html:240 msgid "Load cover from url:" msgstr "Carregar capa do endereço:" @@ -929,177 +931,177 @@ msgstr "Pré-visualização da capa" msgid "Close" msgstr "Fechar" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:12 +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 #, python-format msgid "Edit \"%(book_title)s\"" msgstr "Editar \"%(book_title)s\"" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 msgid "Add Book" msgstr "Adicionar livro" -#: bookwyrm/templates/book/edit/edit_book.html:48 +#: bookwyrm/templates/book/edit/edit_book.html:54 msgid "Confirm Book Info" msgstr "Confirmar informações do livro" -#: bookwyrm/templates/book/edit/edit_book.html:56 +#: bookwyrm/templates/book/edit/edit_book.html:62 #, python-format msgid "Is \"%(name)s\" one of these authors?" msgstr "\"%(name)s\" é uma das pessoas citadas abaixo?" -#: bookwyrm/templates/book/edit/edit_book.html:67 -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:73 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Author of " msgstr "Autor/a de " -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Find more information at isni.org" msgstr "Conheça mais em isni.org" -#: bookwyrm/templates/book/edit/edit_book.html:79 +#: bookwyrm/templates/book/edit/edit_book.html:85 msgid "This is a new author" msgstr "É um/a novo/a autor/a" -#: bookwyrm/templates/book/edit/edit_book.html:86 +#: bookwyrm/templates/book/edit/edit_book.html:92 #, python-format msgid "Creating a new author: %(name)s" msgstr "Criando um/a novo/a autor/a: %(name)s" -#: bookwyrm/templates/book/edit/edit_book.html:93 +#: bookwyrm/templates/book/edit/edit_book.html:99 msgid "Is this an edition of an existing work?" msgstr "É uma edição de uma obra já registrada?" -#: bookwyrm/templates/book/edit/edit_book.html:101 +#: bookwyrm/templates/book/edit/edit_book.html:107 msgid "This is a new work" msgstr "É uma nova obra" -#: bookwyrm/templates/book/edit/edit_book.html:110 +#: bookwyrm/templates/book/edit/edit_book.html:116 #: bookwyrm/templates/feed/status.html:21 msgid "Back" msgstr "Voltar" -#: bookwyrm/templates/book/edit/edit_book_form.html:22 +#: bookwyrm/templates/book/edit/edit_book_form.html:24 #: bookwyrm/templates/snippets/create_status/review.html:15 msgid "Title:" msgstr "Título:" -#: bookwyrm/templates/book/edit/edit_book_form.html:31 +#: bookwyrm/templates/book/edit/edit_book_form.html:33 msgid "Subtitle:" msgstr "Subtítulo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:51 +#: bookwyrm/templates/book/edit/edit_book_form.html:53 msgid "Series:" msgstr "Série:" -#: bookwyrm/templates/book/edit/edit_book_form.html:61 +#: bookwyrm/templates/book/edit/edit_book_form.html:63 msgid "Series number:" msgstr "Número na série:" -#: bookwyrm/templates/book/edit/edit_book_form.html:72 +#: bookwyrm/templates/book/edit/edit_book_form.html:74 msgid "Languages:" msgstr "Idiomas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:84 +#: bookwyrm/templates/book/edit/edit_book_form.html:86 msgid "Subjects:" msgstr "Assuntos:" -#: bookwyrm/templates/book/edit/edit_book_form.html:88 +#: bookwyrm/templates/book/edit/edit_book_form.html:90 msgid "Add subject" msgstr "Adicionar assunto" -#: bookwyrm/templates/book/edit/edit_book_form.html:106 +#: bookwyrm/templates/book/edit/edit_book_form.html:108 msgid "Remove subject" msgstr "Excluir assunto" -#: bookwyrm/templates/book/edit/edit_book_form.html:129 +#: bookwyrm/templates/book/edit/edit_book_form.html:131 msgid "Add Another Subject" msgstr "Adicionar outro assunto" -#: bookwyrm/templates/book/edit/edit_book_form.html:137 +#: bookwyrm/templates/book/edit/edit_book_form.html:139 msgid "Publication" msgstr "Publicação" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Publisher:" msgstr "Editora:" -#: bookwyrm/templates/book/edit/edit_book_form.html:154 +#: bookwyrm/templates/book/edit/edit_book_form.html:156 msgid "First published date:" msgstr "Data da primeira publicação:" -#: bookwyrm/templates/book/edit/edit_book_form.html:163 +#: bookwyrm/templates/book/edit/edit_book_form.html:165 msgid "Published date:" msgstr "Data de publicação:" -#: bookwyrm/templates/book/edit/edit_book_form.html:174 +#: bookwyrm/templates/book/edit/edit_book_form.html:176 msgid "Authors" msgstr "Autores/as" -#: bookwyrm/templates/book/edit/edit_book_form.html:183 +#: bookwyrm/templates/book/edit/edit_book_form.html:187 #, python-format msgid "Remove %(name)s" msgstr "Remover %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:190 #, python-format msgid "Author page for %(name)s" msgstr "Página de autor/a de %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:194 +#: bookwyrm/templates/book/edit/edit_book_form.html:198 msgid "Add Authors:" msgstr "Adicionar autores/as:" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:204 msgid "Add Author" msgstr "Adicionar autor/a" -#: bookwyrm/templates/book/edit/edit_book_form.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#: bookwyrm/templates/book/edit/edit_book_form.html:205 msgid "Jane Doe" msgstr "Fulana" -#: bookwyrm/templates/book/edit/edit_book_form.html:207 +#: bookwyrm/templates/book/edit/edit_book_form.html:211 msgid "Add Another Author" msgstr "Adicionar outro/a autor/a" -#: bookwyrm/templates/book/edit/edit_book_form.html:217 +#: bookwyrm/templates/book/edit/edit_book_form.html:221 #: bookwyrm/templates/shelf/shelf.html:146 msgid "Cover" msgstr "Capa" -#: bookwyrm/templates/book/edit/edit_book_form.html:249 +#: bookwyrm/templates/book/edit/edit_book_form.html:253 msgid "Physical Properties" msgstr "Propriedades físicas" -#: bookwyrm/templates/book/edit/edit_book_form.html:256 +#: bookwyrm/templates/book/edit/edit_book_form.html:260 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:268 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 msgid "Format details:" msgstr "Detalhes do formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:279 +#: bookwyrm/templates/book/edit/edit_book_form.html:283 msgid "Pages:" msgstr "Páginas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:290 +#: bookwyrm/templates/book/edit/edit_book_form.html:294 msgid "Book Identifiers" msgstr "Identificadores do livro" -#: bookwyrm/templates/book/edit/edit_book_form.html:295 +#: bookwyrm/templates/book/edit/edit_book_form.html:299 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:304 +#: bookwyrm/templates/book/edit/edit_book_form.html:308 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:313 +#: bookwyrm/templates/book/edit/edit_book_form.html:317 msgid "Openlibrary ID:" msgstr "Openlibrary ID:" @@ -1113,6 +1115,14 @@ msgstr "Edições de %(book_title)s" msgid "Editions of \"%(work_title)s\"" msgstr "Edições de \"%(work_title)s\"" +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "Não conseguiu encontrar a edição que está procurando?" + +#: bookwyrm/templates/book/editions/editions.html:75 +msgid "Add another edition" +msgstr "Adicionar outra edição" + #: bookwyrm/templates/book/editions/format_filter.html:9 #: bookwyrm/templates/book/editions/language_filter.html:9 msgid "Any" @@ -1183,7 +1193,7 @@ msgstr "Domínio" #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/federation/instance_list.html:46 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_info.html:20 @@ -1307,7 +1317,7 @@ msgid "Confirmation code:" msgstr "Código de confirmação:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 -#: bookwyrm/templates/landing/layout.html:73 +#: bookwyrm/templates/landing/layout.html:81 #: bookwyrm/templates/settings/dashboard/dashboard.html:116 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" @@ -2186,7 +2196,7 @@ msgstr "O cadastro em %(name)s está fechado" msgid "Thank you! Your request has been received." msgstr "Obrigado! Sua solicitação foi recebida." -#: bookwyrm/templates/landing/layout.html:82 +#: bookwyrm/templates/landing/layout.html:90 msgid "Your Account" msgstr "Sua conta" @@ -3605,50 +3615,54 @@ msgstr "Data de aceitação" msgid "Email" msgstr "E-mail" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +msgid "Answer" +msgstr "Responder" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 msgid "Action" msgstr "Ação" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:53 msgid "No requests" msgstr "Nenhuma solicitação" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:65 #: bookwyrm/templates/settings/invites/status_filter.html:16 msgid "Accepted" msgstr "Aceita" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:67 #: bookwyrm/templates/settings/invites/status_filter.html:12 msgid "Sent" msgstr "Enviada" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:69 #: bookwyrm/templates/settings/invites/status_filter.html:8 msgid "Requested" msgstr "Solicitada" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:79 msgid "Send invite" msgstr "Enviar convite" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:81 msgid "Re-send invite" msgstr "Reenviar convite" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:101 msgid "Ignore" msgstr "Ignora" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:103 msgid "Un-ignore" msgstr "Não ignorar" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:114 msgid "Back to pending requests" msgstr "Voltar às solicitações pendentes" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 msgid "View ignored requests" msgstr "Ver solicitações ignoradas" @@ -3980,18 +3994,26 @@ msgid "Allow invite requests" msgstr "Permitir solicitação de convites" #: bookwyrm/templates/settings/site.html:151 +msgid "Set a question for invite requests" +msgstr "Definir uma pergunta para os pedidos de convite" + +#: bookwyrm/templates/settings/site.html:156 +msgid "Question:" +msgstr "Pergunta:" + +#: bookwyrm/templates/settings/site.html:163 msgid "Require users to confirm email address" msgstr "Exigir que usuários confirmem o e-mail" -#: bookwyrm/templates/settings/site.html:153 +#: bookwyrm/templates/settings/site.html:165 msgid "(Recommended if registration is open)" msgstr "(Recomendado se o cadastro estiver aberto)" -#: bookwyrm/templates/settings/site.html:156 +#: bookwyrm/templates/settings/site.html:168 msgid "Registration closed text:" msgstr "Texto quando o cadastro está fechado:" -#: bookwyrm/templates/settings/site.html:160 +#: bookwyrm/templates/settings/site.html:172 msgid "Invite request text:" msgstr "Texto solicitação de convite:" diff --git a/locale/pt_PT/LC_MESSAGES/django.mo b/locale/pt_PT/LC_MESSAGES/django.mo index 9515169c5cf34a0842c244a49a32de49aca90356..e80de6a322ba363bde5b2ba895d52876a4a3da28 100644 GIT binary patch delta 19571 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%0A+PZ!j= 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 QTe=LOY3!!pt#R@H2ZH#i2><{9 diff --git a/locale/pt_PT/LC_MESSAGES/django.po b/locale/pt_PT/LC_MESSAGES/django.po index bfff8ca3a..3f6648ca3 100644 --- a/locale/pt_PT/LC_MESSAGES/django.po +++ b/locale/pt_PT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-16 23:12+0000\n" -"PO-Revision-Date: 2022-03-16 23:34\n" +"POT-Creation-Date: 2022-03-17 16:15+0000\n" +"PO-Revision-Date: 2022-03-17 17:06\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Portuguese\n" "Language: pt\n" @@ -245,7 +245,7 @@ msgstr "" msgid "Approved" msgstr "" -#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:281 +#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:289 msgid "Reviews" msgstr "Criticas" @@ -651,22 +651,22 @@ msgid "Edit Author:" msgstr "Editar Autor(a):" #: bookwyrm/templates/author/edit_author.html:13 -#: bookwyrm/templates/book/edit/edit_book.html:19 +#: bookwyrm/templates/book/edit/edit_book.html:25 msgid "Added:" msgstr "Adicionado:" #: bookwyrm/templates/author/edit_author.html:14 -#: bookwyrm/templates/book/edit/edit_book.html:22 +#: bookwyrm/templates/book/edit/edit_book.html:28 msgid "Updated:" msgstr "Atualizado:" #: bookwyrm/templates/author/edit_author.html:16 -#: bookwyrm/templates/book/edit/edit_book.html:26 +#: bookwyrm/templates/book/edit/edit_book.html:32 msgid "Last edited by:" msgstr "Última edição por:" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/book/edit/edit_book_form.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:19 msgid "Metadata" msgstr "Metadados" @@ -678,8 +678,8 @@ msgid "Name:" msgstr "Nome:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:76 -#: bookwyrm/templates/book/edit/edit_book_form.html:146 +#: bookwyrm/templates/book/edit/edit_book_form.html:78 +#: bookwyrm/templates/book/edit/edit_book_form.html:148 msgid "Separate multiple values with commas." msgstr "Separe vários valores com vírgulas." @@ -708,7 +708,7 @@ msgid "Openlibrary key:" msgstr "Chave da Openlibrary:" #: bookwyrm/templates/author/edit_author.html:84 -#: bookwyrm/templates/book/edit/edit_book_form.html:322 +#: bookwyrm/templates/book/edit/edit_book_form.html:326 msgid "Inventaire ID:" msgstr "ID do Inventaire:" @@ -726,7 +726,7 @@ msgstr "ISNI:" #: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/book/book.html:202 -#: bookwyrm/templates/book/edit/edit_book.html:121 +#: bookwyrm/templates/book/edit/edit_book.html:127 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:82 #: bookwyrm/templates/groups/form.html:32 @@ -738,7 +738,7 @@ msgstr "ISNI:" #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:105 -#: bookwyrm/templates/settings/site.html:169 +#: bookwyrm/templates/settings/site.html:181 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -749,8 +749,8 @@ msgstr "Salvar" #: bookwyrm/templates/author/sync_modal.html:23 #: bookwyrm/templates/book/book.html:203 #: bookwyrm/templates/book/cover_add_modal.html:33 -#: bookwyrm/templates/book/edit/edit_book.html:123 -#: bookwyrm/templates/book/edit/edit_book.html:126 +#: bookwyrm/templates/book/edit/edit_book.html:129 +#: bookwyrm/templates/book/edit/edit_book.html:132 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 #: bookwyrm/templates/book/file_links/verification_modal.html:25 #: bookwyrm/templates/book/sync_modal.html:23 @@ -772,7 +772,7 @@ msgid "Loading data will connect to %(source_name)s and check f msgstr "Carregar os dados irá conectar a %(source_name)s e verificar se há metadados sobre este autor que não estão aqui presentes. Os metadados existentes não serão substituídos." #: bookwyrm/templates/author/sync_modal.html:24 -#: bookwyrm/templates/book/edit/edit_book.html:108 +#: bookwyrm/templates/book/edit/edit_book.html:114 #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:42 @@ -812,58 +812,60 @@ msgid "Add Description" msgstr "Adicionar uma descrição" #: bookwyrm/templates/book/book.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:40 +#: bookwyrm/templates/book/edit/edit_book_form.html:42 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Descrição:" -#: bookwyrm/templates/book/book.html:212 +#: bookwyrm/templates/book/book.html:214 #, python-format -msgid "%(count)s editions" -msgstr "%(count)s edições" +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" msgstr "Tu arquivaste esta edição em:" -#: bookwyrm/templates/book/book.html:235 +#: bookwyrm/templates/book/book.html:243 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "Uma edição diferente deste livro está na tua prateleira %(shelf_name)s." -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:254 msgid "Your reading activity" msgstr "A tua atividade de leitura" -#: bookwyrm/templates/book/book.html:252 +#: bookwyrm/templates/book/book.html:260 msgid "Add read dates" msgstr "Adicionar datas de leitura" -#: bookwyrm/templates/book/book.html:260 +#: bookwyrm/templates/book/book.html:268 msgid "You don't have any reading activity for this book." msgstr "Não tem nenhuma atividade de leitura para este livro." -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:294 msgid "Your reviews" msgstr "As tuas criticas" -#: bookwyrm/templates/book/book.html:292 +#: bookwyrm/templates/book/book.html:300 msgid "Your comments" msgstr "Os teus comentários" -#: bookwyrm/templates/book/book.html:298 +#: bookwyrm/templates/book/book.html:306 msgid "Your quotes" msgstr "As tuas citações" -#: bookwyrm/templates/book/book.html:334 +#: bookwyrm/templates/book/book.html:342 msgid "Subjects" msgstr "Temas/Áreas" -#: bookwyrm/templates/book/book.html:346 +#: bookwyrm/templates/book/book.html:354 msgid "Places" msgstr "Lugares" -#: bookwyrm/templates/book/book.html:357 +#: bookwyrm/templates/book/book.html:365 #: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83 #: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 @@ -873,11 +875,11 @@ msgstr "Lugares" msgid "Lists" msgstr "Listas" -#: bookwyrm/templates/book/book.html:369 +#: bookwyrm/templates/book/book.html:377 msgid "Add to list" msgstr "Adicionar à lista" -#: bookwyrm/templates/book/book.html:379 +#: bookwyrm/templates/book/book.html:387 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -891,12 +893,12 @@ msgid "ISBN:" msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:15 -#: bookwyrm/templates/book/edit/edit_book_form.html:331 +#: bookwyrm/templates/book/edit/edit_book_form.html:335 msgid "OCLC Number:" msgstr "Número OCLC:" #: bookwyrm/templates/book/book_identifiers.html:22 -#: bookwyrm/templates/book/edit/edit_book_form.html:340 +#: bookwyrm/templates/book/edit/edit_book_form.html:344 msgid "ASIN:" msgstr "ASIN:" @@ -905,12 +907,12 @@ msgid "Add cover" msgstr "Adicionar uma capa" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:230 +#: bookwyrm/templates/book/edit/edit_book_form.html:234 msgid "Upload cover:" msgstr "Carregar uma capa:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:236 +#: bookwyrm/templates/book/edit/edit_book_form.html:240 msgid "Load cover from url:" msgstr "Carregar capa através de um Url:" @@ -929,177 +931,177 @@ msgstr "Visualização da capa" msgid "Close" msgstr "Fechar" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:12 +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 #, python-format msgid "Edit \"%(book_title)s\"" msgstr "Editar \"%(book_title)s\"" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 msgid "Add Book" msgstr "Adicionar um Livro" -#: bookwyrm/templates/book/edit/edit_book.html:48 +#: bookwyrm/templates/book/edit/edit_book.html:54 msgid "Confirm Book Info" msgstr "Confirmar informações do livro" -#: bookwyrm/templates/book/edit/edit_book.html:56 +#: bookwyrm/templates/book/edit/edit_book.html:62 #, python-format msgid "Is \"%(name)s\" one of these authors?" msgstr "\"%(name)s\" é um destes autores?" -#: bookwyrm/templates/book/edit/edit_book.html:67 -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:73 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Author of " msgstr "Autor de " -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Find more information at isni.org" msgstr "Podes encontrar mais informações em isni.org" -#: bookwyrm/templates/book/edit/edit_book.html:79 +#: bookwyrm/templates/book/edit/edit_book.html:85 msgid "This is a new author" msgstr "Este é um novo autor" -#: bookwyrm/templates/book/edit/edit_book.html:86 +#: bookwyrm/templates/book/edit/edit_book.html:92 #, python-format msgid "Creating a new author: %(name)s" msgstr "Criar um novo autor: %(name)s" -#: bookwyrm/templates/book/edit/edit_book.html:93 +#: bookwyrm/templates/book/edit/edit_book.html:99 msgid "Is this an edition of an existing work?" msgstr "Esta é uma edição de um trabalho existente?" -#: bookwyrm/templates/book/edit/edit_book.html:101 +#: bookwyrm/templates/book/edit/edit_book.html:107 msgid "This is a new work" msgstr "Este é um novo trabalho" -#: bookwyrm/templates/book/edit/edit_book.html:110 +#: bookwyrm/templates/book/edit/edit_book.html:116 #: bookwyrm/templates/feed/status.html:21 msgid "Back" msgstr "Voltar" -#: bookwyrm/templates/book/edit/edit_book_form.html:22 +#: bookwyrm/templates/book/edit/edit_book_form.html:24 #: bookwyrm/templates/snippets/create_status/review.html:15 msgid "Title:" msgstr "Título:" -#: bookwyrm/templates/book/edit/edit_book_form.html:31 +#: bookwyrm/templates/book/edit/edit_book_form.html:33 msgid "Subtitle:" msgstr "Subtítulo:" -#: bookwyrm/templates/book/edit/edit_book_form.html:51 +#: bookwyrm/templates/book/edit/edit_book_form.html:53 msgid "Series:" msgstr "Séries:" -#: bookwyrm/templates/book/edit/edit_book_form.html:61 +#: bookwyrm/templates/book/edit/edit_book_form.html:63 msgid "Series number:" msgstr "Número da série:" -#: bookwyrm/templates/book/edit/edit_book_form.html:72 +#: bookwyrm/templates/book/edit/edit_book_form.html:74 msgid "Languages:" msgstr "Idiomas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:84 +#: bookwyrm/templates/book/edit/edit_book_form.html:86 msgid "Subjects:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:88 +#: bookwyrm/templates/book/edit/edit_book_form.html:90 msgid "Add subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:106 +#: bookwyrm/templates/book/edit/edit_book_form.html:108 msgid "Remove subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:129 +#: bookwyrm/templates/book/edit/edit_book_form.html:131 msgid "Add Another Subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:137 +#: bookwyrm/templates/book/edit/edit_book_form.html:139 msgid "Publication" msgstr "Publicação" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Publisher:" msgstr "Editora:" -#: bookwyrm/templates/book/edit/edit_book_form.html:154 +#: bookwyrm/templates/book/edit/edit_book_form.html:156 msgid "First published date:" msgstr "Primeira data de publicação:" -#: bookwyrm/templates/book/edit/edit_book_form.html:163 +#: bookwyrm/templates/book/edit/edit_book_form.html:165 msgid "Published date:" msgstr "Data de publicação:" -#: bookwyrm/templates/book/edit/edit_book_form.html:174 +#: bookwyrm/templates/book/edit/edit_book_form.html:176 msgid "Authors" msgstr "Autor(es/as)" -#: bookwyrm/templates/book/edit/edit_book_form.html:183 +#: bookwyrm/templates/book/edit/edit_book_form.html:187 #, python-format msgid "Remove %(name)s" msgstr "Remover %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:190 #, python-format msgid "Author page for %(name)s" msgstr "Página de autor do %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:194 +#: bookwyrm/templates/book/edit/edit_book_form.html:198 msgid "Add Authors:" msgstr "Adicionar Autor(es/as):" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:204 msgid "Add Author" msgstr "Adicionar Autor(a)" -#: bookwyrm/templates/book/edit/edit_book_form.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#: bookwyrm/templates/book/edit/edit_book_form.html:205 msgid "Jane Doe" msgstr "Joana Sem-nome" -#: bookwyrm/templates/book/edit/edit_book_form.html:207 +#: bookwyrm/templates/book/edit/edit_book_form.html:211 msgid "Add Another Author" msgstr "Adicionar outro autor(a)" -#: bookwyrm/templates/book/edit/edit_book_form.html:217 +#: bookwyrm/templates/book/edit/edit_book_form.html:221 #: bookwyrm/templates/shelf/shelf.html:146 msgid "Cover" msgstr "Capa" -#: bookwyrm/templates/book/edit/edit_book_form.html:249 +#: bookwyrm/templates/book/edit/edit_book_form.html:253 msgid "Physical Properties" msgstr "Propriedades físicas" -#: bookwyrm/templates/book/edit/edit_book_form.html:256 +#: bookwyrm/templates/book/edit/edit_book_form.html:260 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:268 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 msgid "Format details:" msgstr "Detalhes do formato:" -#: bookwyrm/templates/book/edit/edit_book_form.html:279 +#: bookwyrm/templates/book/edit/edit_book_form.html:283 msgid "Pages:" msgstr "Páginas:" -#: bookwyrm/templates/book/edit/edit_book_form.html:290 +#: bookwyrm/templates/book/edit/edit_book_form.html:294 msgid "Book Identifiers" msgstr "Identificadores de Livros" -#: bookwyrm/templates/book/edit/edit_book_form.html:295 +#: bookwyrm/templates/book/edit/edit_book_form.html:299 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:304 +#: bookwyrm/templates/book/edit/edit_book_form.html:308 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:313 +#: bookwyrm/templates/book/edit/edit_book_form.html:317 msgid "Openlibrary ID:" msgstr "ID da Openlibrary:" @@ -1113,6 +1115,14 @@ msgstr "Edições de %(book_title)s" msgid "Editions of \"%(work_title)s\"" msgstr "Edições de \"%(work_title)s\"" +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:75 +msgid "Add another edition" +msgstr "" + #: bookwyrm/templates/book/editions/format_filter.html:9 #: bookwyrm/templates/book/editions/language_filter.html:9 msgid "Any" @@ -1183,7 +1193,7 @@ msgstr "Domínio" #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/federation/instance_list.html:46 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_info.html:20 @@ -1307,7 +1317,7 @@ msgid "Confirmation code:" msgstr "Código de confirmação:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 -#: bookwyrm/templates/landing/layout.html:73 +#: bookwyrm/templates/landing/layout.html:81 #: bookwyrm/templates/settings/dashboard/dashboard.html:116 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" @@ -2186,7 +2196,7 @@ msgstr "O registo %(name)s está fechado" msgid "Thank you! Your request has been received." msgstr "Obrigado! O teu pedido foi recebido." -#: bookwyrm/templates/landing/layout.html:82 +#: bookwyrm/templates/landing/layout.html:90 msgid "Your Account" msgstr "A tua conta" @@ -3603,50 +3613,54 @@ msgstr "Data de aceitação" msgid "Email" msgstr "E-Mail" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 msgid "Action" msgstr "Ação" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:53 msgid "No requests" msgstr "Nenhum pedido" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:65 #: bookwyrm/templates/settings/invites/status_filter.html:16 msgid "Accepted" msgstr "Aceite" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:67 #: bookwyrm/templates/settings/invites/status_filter.html:12 msgid "Sent" msgstr "Enviado" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:69 #: bookwyrm/templates/settings/invites/status_filter.html:8 msgid "Requested" msgstr "Pedido" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:79 msgid "Send invite" msgstr "Enviar convite" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:81 msgid "Re-send invite" msgstr "Reenviar convite" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:101 msgid "Ignore" msgstr "Ignorar" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:103 msgid "Un-ignore" msgstr "Não-Ignorar" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:114 msgid "Back to pending requests" msgstr "Voltar a pedidos pendentes" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 msgid "View ignored requests" msgstr "Ver pedidos ignorados" @@ -3978,18 +3992,26 @@ msgid "Allow invite requests" msgstr "Permitir solicitações de convite" #: bookwyrm/templates/settings/site.html:151 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/site.html:156 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:163 msgid "Require users to confirm email address" msgstr "Requir utilizadores confirmarem o E-Mail" -#: bookwyrm/templates/settings/site.html:153 +#: bookwyrm/templates/settings/site.html:165 msgid "(Recommended if registration is open)" msgstr "(Recomendado se o registo estiver aberto)" -#: bookwyrm/templates/settings/site.html:156 +#: bookwyrm/templates/settings/site.html:168 msgid "Registration closed text:" msgstr "Mensagem caso o registo esteja fechado:" -#: bookwyrm/templates/settings/site.html:160 +#: bookwyrm/templates/settings/site.html:172 msgid "Invite request text:" msgstr "Texto da solicitação de convite:" diff --git a/locale/ro_RO/LC_MESSAGES/django.mo b/locale/ro_RO/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..efdd9aa50d8b0fec732d294ab084dae5227fa721 GIT binary patch literal 67747 zcmcef2b^6+^~WC)TIjvQO+rY5*$oMO34~1{1ky+Xp@`w_?%Ul*-oCfIvSA}A0t#XQ z1q4K~Py_@7QBV*Rh=K}&pom}t+aDV??Bf6XJ7;cryPHt_`+uLk`@1uD>X|cV&YYP$ z_lMhzx-7?Ui}iE4-N5(kl*{crDwq4`zVglGPHoTSb^-I?G2oftOz>gwcyLo3E5Hu$ zm*4~7uHY@Ra=9JAuYqI1AA|dW>(9>RjsOn=_XN)Xw*;>M=YuzZJAy9>*URNLpOedN zhkN{yx!h;LHgI?FMR0F$^SPe>{@@tg%fUUsL2!HUih#F*r{P`$o(oPnDwnH(cLW?a zFPAIhz64wfzTs%<4jvD7fp>u?fxAJ36TwyBo4{{@tzavK?*vZ)^Wgnp3pj2;F4q8$ z1t)_Kf%}7h0#%+#3v;;$ycDF$xzB;C!M}sbr?JTC^%y96ZnZdUBO;D+Fo;64!C8u#Jg=HTMs|7LJ~+}+@K@HB86 z@M2KuUIUH>?*cai9{`olW8fy>)8Lli^WYZXAHwtXmV|PF3b#kViJ3MTeb0(JKO#?%tr%I{@4V zJRDU0i=fKc2dX}+K-Kqra0+-SsCHQc9ti#&6n{)z=HcE4Zio9SQ1!bFRDSn?O8-%C zCHO5+e0^;!UK11GsVCaCg%7`zz#6sUHZPN$InOi=B6EGYj@Q0-L& zRj*4y(c>mi<-8p{2)rLW82lTka!#XDEB_gw%C!Wv^gzWgf{NcCo}V53-w&#OSAc4l zkAZ538-xEHpvrd-sQNz|@Y&%10=NtQ{{WT$4ktTK0x!Zn9aOrHfXe4PpvwCLQ04h0 zxFh&?P;zt|m`&xL25t);3@YFGpxWgmP;~1CRjvkT{0l1lrC=L)1K0}w1Qb7RbBd?` zR#5b~8dQ0%1C{n%n-UF(>9|l#PYe4bIZJ_A%4N!D>98`UN4vG$c1r>f2gOAF!HK=;+8r*w> zdcJS)KP=!;0hfZx|IMJ%D}%~+HK_Vt28s^f1l11T237u_fV+Wz0#)y=I~;cbRgQ6> z>fHj40S^Gx9?L$f9l{0532#)Hb|AW-Ez22^^-gZqO8Q1$o_xB++rsPt|HmH++VH1JVS<;!)uzBL*g zg>xb({}ylpcu??P0V>@tQ0-C$mEQT``6Zyrc}2jFgB#$!Dd273QMm5}Hw6D3aKj#N zr_Dj7zYDknI1yC(GeGs{V?fcV2UI?*z>UDOL4~^j)bmS0(dk-H>D>v6K5K&ilc4DS zGf?&XM|i$Lucx;iI1c~azzN_Hpy<~NZVbK!6rIikmHxW|UJfds>%fh{&w@(-UQq4y z5UBD!0g4}=56?#xbGe1Mw*dD9PXSe*vq16ZyFiuqL!jz)8z}lb0ID3{1I6b*1V0V_ z3fu#{>NFo`?*^6sb}PMndx9!=E2#FF4yrw8f}4QL!LeW-ybU}LycIm4;j|KPbpz41&sQP^cRC_)Ks$9>5kSzC?;LcaP+ykKc z*_q(x;KiWi;MJho?;cR)`vIu>zX)ytZrJa1*dA=by+61+*a0g3*#SQSsvLKNO7Brn zeD@-#bhka-_0I92+{Xp%0XM}x2u9#LK=qI7LACn>;MU-Cpz8ZaQ0??DQ1uv9b$V|D ziq3n23O4~1U8jPuOs)-V1+N3uj^75wZ_j{RfeIJAVmO`JVx|1%C}Hey+|~4r~NU-i`q$f^Fa%!A@{H@FGy@ zUK{Y{fS(1`K3@dKgWm}LzYq8~P~}~(;rWjSmG5q#=sgbH2Al%!1>in)xmuesB}IDs$5?LRgN{_q2QCC=(^h@RsQxeqRJbLe($9m6e|mU62rAuo zf}-DhgZnB_;XeVY9G?M|&VAwequ?~$-v$o=H(KTM%fmp0?*Ubg8fbI`)h;)KlfZ|- z?ZMxJYR`?%aJp{|s$KR5mCg)M`5qJSBv5=_1eNZ)LDBmXQ1$&VC_cL}xIYc5eqRjk z2SLSq99$oKI=H_NPRIRIP;?wK=zOy`sPx)EmFEah`OF7JuMp}7BL!j#O1Sr1#1*mducBYqq8mN4Z07aKY;7l+NP5`e3-v~YeYTWoMsCw*rmeY3} zxC8DMQ2EUUMTbS8=zTIM`mY3c1goIxcOj_qUIL09*9QOFLABf6pyI6w?r(s~_dB5Y z><6II`!~1?xZ_*>`804J+-;!RrvNIw8mRJ|1uDPyf-1*{z!Sl1K-K?W!GFuQc{)3R zs`o5V{i+*OI#+^+fH#8Q0)G*qnW|D)hZ;E%zv;GyTi^WdAo-N45|wa;%r z@y%aB<^M7$x^D0eZ;#DEwcj4#z39b)rcE0;>1&W^AgQE8y z;6~s?a2&WVsPZoZ)n7`W!k-O_f8GTu-p7LfO`zKEj_~|`Q0@A3c)tDxp8jT_!fgkB z1sn^ip8o@$4E_<^6#}0;hq01>XR^@iK4UR#0?q2i1;q z!M(u6pz?2k6Tx%9h2W>aqrty}v%ontqSAjCDED_k(RbI&J-t)FV{mtas^4e8`QUv4 zH@(82p8$%!*MiHy?*!cEO1FQ%4LlhCC&38Z>_eV@3#jrR7~IoA(P<7Sewz=9AG<+B zYpx8cp1%(G61WZSmqE4r)>nBy*$>i=i318lzDOXI2rsS_!cm_$@}ex!6R_5 z0acz2KIP?qD=4~N1D*%|7F7PVo1p>tJy7j5=@!?Yrh}_+4}ufH--F_hU2b)LSPF^{ zP6X8sr-Gxw1~>{l8{8OtN5J=i+vC0*+!nkARQ&rv#d{cR0iOhS1lRkt^ViPc=D7C* zRlasm?YS(t3!vKX3{d5`DEMCs?t=TS;C=#BzCQ!i{(l4a26wy7^P2@K-IGD_V+lMI zyZ}_bYXW{3R6f51B_I9`ZVK*pyW3kPf}7wz1>6Yi0XG0E;AUVWJU<7Vf%`q-`6Hm} z`2;Bb`Z2f#_%gUZxcO(?UNRG$iu>K*>EOMf=s4vLr^A7u@?QWd{&G;|=myUM%izA? zufgfy?w|GWCxHsr1=7`WB~b0M>F2zDJAkUkSWxtv2yP1=11i52U<4LHmFGfG?f8E1 za_~k_?bLp!)AYZV9%7l2gZmv%r<$so+20sld{oLKo_uGR??~S1NWd^AHjsaDlrJ&O30+sFnsCvIG;DrG% z0~P;cpy+fnsCbWoO8>clFM$#6P4032-3JuC4+HN2PX?9FmS6O8>$2C7`wfa0s0LDlb`;C>ub{2v8;5fs1w8&vr=yVvE%9^ho$%fXf4d7$Y1JJ8B= zpX08e=rRFR{DVQ!>u6BdW4*-w7(8OF_}` zqoB%v1E_v=52$k84;}me7`^61{8gE0!7!oz-i!AQ03|Z6@Czu962}mzdyLI z2bKS4LDBI`pz8S$sCs-4RJr~I?hbDFK%fICx*izZb3v8!L{Rzkf}-m{c>d1dz5=xR zfeLpIDEfR2RQ#WTyMTWJ4+OV-(Cc|5sQl)GD&HyKB(MUid{=@>_Y(m>7w}q3Q+0X3yuPR04n_Rpwjy#sB-)p z+!5U7EAHM0R62(R_aadA>;Ogovq7c%Zcyd<6u2|^B~a;p4-`NB7F75RzUt|31un-u z5!?$r8x&t&2P(b$K$YW%p!np^0pIYD^UD^X+G$r%>Aw*aoo9lo$5L=3up8VSEQ8{w z^8&sPRC%uecLQ$*74K`H()m7kB={Rp{JHn!NTKSuD!qI^gaYs zIp=_TfG2*cq_OK_+?Pxp9GHuclw^w z?KDv74}xl+w}WbzcZcVff;-^81{A&T236mu0{#kA|H(b$@@OM)XPlEj@#!qE6|8`& z_tl`v_Zd+6JpihFkAUKzAAyH}FM~?=;Ab6YfGX#ap!(Iq;C~{hdY=l4{v~h%cn-J= zcoV4fzXB@$)1dhG$Dq>xZNQg;|3ASU@gMztpHGYh6>lYYBv=Dg{<}fZ_v@hQ_5I-f z9jNr*@B=T`R-ov)8z}$rpy;_DsB#?*s@$i5s#gs>416ni0Qg043it<5`Huae^X)WH z^y>t71N%VH`$BLh@J>*4c?=YPKMU>!{sUD05yD9IJSgBIa4PN|Q02H1RJpGOmG3Q} z>UnR#Z-wVS16BUt2KT5RJ3ns@ijTJiXMqu@^twQ`OCKouUjQooi$Im@qoDG+6IA%G zgR19~py>UBfG>hAxYv8m>oEmX{JG#n@Xet5*ZH9M=?YN!JOPUC&x6Y6B~azr4Kuu6`=V28c^Zy1;sBv2bJG%!Ck?Z!O7q*Kk;^*3#xyg z1*$yffO~+Kfs??`2LB&|5$@lE`+(d0)Z6(mP~|FuihmZU`d->P1gL^7GDEdAW@Oz-r{S~NszYHq<4Sw$Ju^Xu8dxI+XA)x4XLU^7BMW2W97HbZ`KC0lWh|4EzX=Bfw|D{lVRS>GVGqoQS&`+*g4c z;{GDI6nqd|0q*!KA2(Nl6L8-Imcb`L(W(8{KEFH_RK2(Rjq^tfcmnQu;KAT0z>C3W zL6yJsTbH{RgB#$!4pjc10yhRf1B#FD0mW}mfnQ$_xe=b<`#Y!aSHV+x{y4ZkIQ93= zhX;V8akqh6fpb97^LVfoEP^Wk6#?%8#Yazp;-8;`YQGKt;N{s0RQ#Pm#hVPy0FMDT z1>X&B23`(|udW4u0^S2|4u15HUd~%U#oyvj&Yvxy+F=GL{_h2q-kIRrzzaapVdIxv zK8ypm!+k8Mbh-n+0~GzQ1r`2YP;`45+#UQADE{2$&n_3HfZO1n1B%`!faAeDsQk|d zRi8^h(dA>{Sn#&+{7LXq+&=ft}!GpxWbapxSwh ze>e-!-x0M5YuhBvHddjCwY9ru->==dynG8nDDp4qd`1n1%Y z8mRQQ9krgV8}15<4gVj+#5U-L|oXf zMFivbcRc#=F(IvggV*E!0eAv&-Vgo|_wTvB&;94Y z`1cRo58`-^aC%o}JMet`^!pe0>I>Q5SMd8L9<88$yK{Y+YcB3viTB3f|E%uu{}k6C z*S~NNaGk-u_V>fXzP1$M}+$-?oV^C z-|=9L>(Jo-Ecj)fO9r0B^(^i)abL6xU%?}}Hsku6d*vn*?}OZLME!OG zPYGc^&i(tipU(BAkoLF1jR~jmP`{}>I~BiMxc>w9CGH;qkK+0a*DhRV;fE;CwR7qB zQ}C&9e>b>oxW5A&P59?Qh8p`#3@FEWTz|p+Cc<=cozC?U+@A$YJlhWZChlci8gJs? z*YO{RpML-3e&|nQtbV6E7mEVMcMk1=sT6M&-y2hI?-9cQEd^h5MJe-!Rk#}`ay`#A^!F&wzr&?pA>hYB={WkW$Nd&uV@R_jJbxUV z=Z|xr;2tvAZ(qW!!u=%Ihw<4G+<=E0;eQd=sa&IQx8eU0?)Cd4_lErY8P~6a{|^J+ zhu@xr8OwEI2)jL4=8}H?_2Bn7_Y1f`i0c;O9vc7cg5MeV^>Dq3>-+d_fS-OJaj^d@!u{Cr?7O(%!u1ByU54N8Tr+TQ1-@JU zT<_<)lAD!Wb?*O%^iKdc1$X4q?;)Pm{5E$9c&sAwlfHis*EYC+11{$3;A+MFl@JDJ z?kTQ4gS(G3e}#JYGm$dP`?dBSlz#wtD9>y&;J76!LtGIT->uj{qD!_ zK)=oXh5Pq#9l>+`PU3ny?t8fY8vNwHKW_cL2bTTT{%=5-tMI!3*JfO|bA2B7wOq4! z_B*g)AsGX>KOMhW;9dCL$o)&;mbmrX3H%p$B-clS-xJ(#!u@SrpW}K5*Ae*L$QA$2 z!LKzqF6RE-Tw8GchVA8xn3}NaGpYAIAUQOq?;?KN_C@7M#r0Ntms<76kwIbH8cGPf_Q~4fcY+Ak6xp ze!Fr1QSQfb{{r{p%s2ga7k<;Y;@^k4zlQLiz~ct4PjY_?*T?Yh!QIQ1$DRFs9`{W= z{~CBFIG<~4uB~ui$@OC{{pND*h<`7aem@V`1s*_{RrpQe{yX4Xx$fZF1NWieLU40X zznw#Rx}U`TBU~Q~emf9Ozkcw%;P)`@7jbU@z8Sw?aD5Q>vADZKm``&5Dg5rjy_EaI zg8$~=g}9Fi?jLZ!nsD*&$J{Rt&sKsb;r$$c;P zmxJTO!?zK>1-~b8KMYO`*~Z{Mcy?NFUj}{` z_haB8;QP4Z-%|X(hNA=?#&r|-yYhSqxH&v`J%0M#2(BM^u!8$~!tBQNnUK~?;G6L8 z4B-{0$TgZc+k;@K74$G_PjoqQ&}6S=>PaDNNwDD0;AEdw{hZx8V2;DPu( z%l*0F7r-X>{w4Qc56=xoN8z`$ zGhdEo=Bu5Ru7Y{y#!u`j*7{5N!4;jAM!7zz7Ijtn^2KsgE)=?IQME8oEUa2^ zd#GZ0pja>P{PaelRv#gm<^Z*!AqrIrL<)UTcfMFEbVc<_RP5`oRO_v44O)8*VM8tZ z^5sUp6y^K-tCfL#X}14i@s%aq{$zYBc5WC|~Z1@}0fK!T`B==oS5iYG*+$Gk(0%s`uvWmT-muuRc?# z`5))nU8(lvDbHj|*q`qy)TodlB`W31J&oWO-^;sLtFQ1<~_SWnDwYDi!POB8lBFQRB*h-#Lisf28U+yf_ri_j1`D#z0 ze%RO*9q`4D^^;% zQdeKG>@6#=m4!mTm0T%BjehHH)ke8Y-<%v3%8;hB&|J07O6Q9He7$$<;S!l5b7!U8 z)#$8yan)a|g<3y;5ws}>N>vLIQBkcw-)DJre-aIn2lJKwC zC-byeD^IA0hY}z(foDN51XV+#1{#$sk~Vl0Rh+&GeWWP%T}zNS146j?G2RNTYP@ay zl|Eh)7+914W(DM&i`3{ zr#Ik^sJmL}`~S($6$sJs|D}4!n|cF2%O9R4nHWByc(#LCBZVe_71Ri^P#eO>!I?D7 zYssKnLa3MYV?E%%k%={I*MFt_@IQtBZxq_Or_?G|7Iht%9ra1 zzKUh?nkZ^wG*;Dp?0Ej{D_x>SlH%%Oq3F5kC^MCE4}v$}8PxjeQ-U7@SfkWsLq-RJ z0Hq(kuSU}~z7Zh|A3h0?#5R8>1*i@hW@?Ro8{3M~Gm7;=gmX= zN+^s-TzB9hLs~Lkt+QUM$ib`AftY@+^_k!m4`c0wO!~ z-_t|&;*nk&ZW>BMwREqbqM&KEM!EL2@<3OyyBl4Lk)hCq;#Mh}sG^NcL$Z+(D#c1= zrf*6O?al~0cRR;e8s^bT)@U-_MXB=AdQH8tMk=7j)RZx7sv)|-bdb4GR~L$otIxED z&BR=7cBQ+@yv0~eDVK`nmCogw2iXYNpRd)>R8fa^0jS^u1+a@Gy1JsV z!&Nf0bG0=^)XdC6wbR*A_M`Sjy|+?r@><&HIE{IQ`(+;6tuiE&nJ87s4Q0e@cA?f; zE%tlaanD;EGnGAF(kK<|CLeMRd~bf@cTdG+jrnzJ>LN}vSIlzqH4pJhU!ku98jNud z6dzAR&7@`?=Clqv5`8RzYFxrvh5!&Qp&9qa%}Hq`3{A(JU;6 z5mJ2)C({`JpG;G8?WJPARuH*M#hx&?RK}>c9d6)>d9(nV_o3Cok)@KZXucTK?pBtW zfrlxDp7fEQrtkJpz2E8rM>Y>VK7M6P352)qBUUR7P8J==m3d;7{!pgpX!g=qVe;r2 zT2vqGS1#qKVjMxgquIs9ST|x35%Pq1HVci5Lp>;RzZy`JpQLY&iB7CEkmFI9(nSN~ zCw4Zf5~7nddqrkZAt~!<|7g(#=%)l2CFAZrN!_+wrkiyZq?R{1BrxkkJynN#v1L}J z%2+_sIB9XFX-J*!?qa8_+Sa#HhW8pW9cI?H|GxWE7)>E5jm;sUnWzOfAyOrCHS3G5 z0IC9Zs#3Ajq(FEQbrtFe^Tf%J z8b8s%ZX#g(L?1810}ESeNkPv5q_v&g#}*7YO;NqtO#} zb6igv6?+1O@QGZlK3FOoHny`;s#M#ear;d>Xuqz`L&pxWS|Qua;w??0$xvXTI7wNJ z=Jiq;k+MNWFvW?2byo{WzEm2uN*Y@bFGF+ylKW6o6&kOxivb> zfYw(b+ZIwDC`{>qJhH5fJ$!DlepI7F#cQ>id$DTKGPD{5trM4FKnB*p$TKU|a$9az z-pol@3XQ+Q2&?`lu~{MmF#=lZjBHTro~ow#b{0yxS-qHf3(?}B)8Q__5QL-YOcg;M zRS>+G5=AzZ0X>RzX+#%p`5x97UT?hC+$@AQ{l|@fvk-bX){BYr)}>iFs4cEp*-Nv$9{BaZ?GHmo<`k*=#OYF(!<_Q!yX4nD{Lvd^M$L zEIHxu3K9Xa%g_jmnpR!xw#LPB1SOd&d5Yx*w664H1sfx@ zVZk&Rb4V#uLv<-oJQoc^oogx?e{3h%aa}H&AXD*q&WtlR%Y|&yfF1ni*}_vCLi$d8 zpO5BND~=i|B0D<&>w= zh-#gf?xgw$HzPBen$(prhgggMj5GqngXP)mrJS36V6+~aW&6PA38-njcl-QLV+sZJ ziD?(QUu(1sWg!u?rjvyLiDIjPKAElu!+kfaXH{mjnwSMODlo=P0z;LmY1Rh@sweR+sEiv(>Xk%=CpoS!I(4~vyyR7FfW;hdcD&^s*|f#@fyY$ zh3G?O#d8?BwXhvyB%W8P%@;vdx5b9s>`G@ty1unKE=J{rkax}*{nQV)R>K3h1q+9U z(OPe1RYuPh{cE{77;EfbG`87dJl1`iWR(I(L0`?>w|P(vDSkKCB$9MY=)K_Ia?ND<0Ms|p=jn#;}6j8QB$2T3cPGr5sh4;`mBH^*!_zV2&U zi_mZekl$Z#t(>-{5r4&tE+Mk!DeiA2J!Vp2*<-R&dL5WZ( zp+q=iKvyvcqGnEPIC9D#$*@n&Y&gsX2c1vF2+GNkELj(FM;2_U5($>v@!Z#G2l3Mb zSvclfd)lq$%x&hYJ8qy(cNNQ4SIr$Z!7geYGg$SQDY1lDY^_v#6hd@!7|x#VPszn9 zRF;5MNz?{&ccyLL4&;uJGY}5(Z!YKjBW(pf=RiZm@`%O#5&V2w9GiNe0Cs~aVwLeg zHZE)`D+{JnN!gwpEy&mE6=dCHDL0Et1=<>O#z^VHN18fy$0^2vju@##whY$9Ga*S* zNy-#b7!y#v+(Q|Wtkz~0#TN@kHIfDd_u#DdAV*w-2%7Q?`O-G=Boum@8^lQY;3xBp z6cdlcV$lf`f;6(VZ)q?$H(x6BRFJ`pdrX_llX7#z{4ZL_upJbhxn@)7MCZ!QtyJiI zc_x)B3$W>2GQi&876lkmRB~-gV*|og9Z;PlH6XPrQhzT-j53n9giDH({g0YP3in!Q z^40HysVx*pJxp_-xF0_Bq)P3C*P2JCL z^nc+z{<~7#RqWDe5cCxvXNOt6Q-c_`I-3S*E^GRJYi^!-<>uMGrU1tKwb-%LRyAYS zGMWML$oPZ0LPzz8)^_oIm{K=eu0uGap4PdjfMtlB@f&h8nwbW|eP^iweS;kaH}NzJ zH*>P4K#7k{dlHv(LE>B*53`9+S84~Q4BB$SHU-^D=H?l5qj|HsBtA9-bEL2h=?`OJ-3(uNeb5XCB-*)hA4 z5QJq`TXtJ%GVaFHxYSmG(NZf0$xv*rF#d%NQf?r~BsW4B%Z@(RV_loD10t7H4+&n% zQb!z=Dm~is!(vgb-rCxln_ujx=HoHZgvz7)B+bGFpr|!uiliZfl`*jq^cI*hYO;xng@w56Mnqe8YnAwy;kGZ&2vI|UrR@=@5@&I` ziYoH<#^XHua3&K$f)j&^O+9TS>0%~<`I-9L*d6EZ<$(~YD%zCIJ4aj=2#=+DG|FyE zj|<^yxONL7`6Qicu@^ zWN-*JUv~_(KBR_+R3o%`f(NfE4K{IxwF6N+&J{sV0lFlQq&V5z*WxZOIrAw4s=u!&h<5REIE>@oq3Q znCMAOq;h0BqD``Vpk8R(y!(6ubTGtApG-}Zas{KcI(Jina|R7}iV_(?^cP&@zITmEHKxTVr^nG=yi>s#F-kASg<#tpUlWA0Jqf6{J|b z_Wdqu7HX^hwIW+(4Df^xa>M8zmUNurmP@kgL;A@Gq4pSw;>ux!HnxQPSyO>BWvSLy zMiUoSs;k&(okuf}h2_Z5>{PQ&9vRcyqFM82MGG71wQadYQqi#E2p2H9>b1M&g~Cd^ zDM{C2)u%rmN;QAbR^(<@9TO`Kooh9@%R1Ys#RLt6QYh56q{_~6l>(+#((y`bWQ1UEY7p8+o6TRc$o*kU?vP`dSVUV zbp6*PUNVihN0{W0c1#${SPgTFdk1S;zl^Y7k%6|P=N6aptaAgV*bQ%=+~P`qgLNEf zg3aP*G0UEfp2mYW)uK5KCD@22`VCSrJVd{kL<&j3u1Yksny;~^X(G6q)zYD1%}T{S zf159^X3o(TkW9y=IA|JO&F3hE%qarg7$2L6BXI=44 zbev5K)C@jAJ6PkpmziXk4v-8M7JJ;}C0^$JgYsLA=pA`4@iWe0jUi`nBB_xI`|?a!kyYbY+Yj3xkM8M*-$gP z7A2tL2g!XsU6@uJ<{0rhwL4AEZIUBRAu8-pQJO*(C7m_lfT{g|1^*4(MpxU9p!2cF zD!(rO4{K>tSN07*9KLjA=Doz#mRsrz=MJ&Wgt+EyGRsYY!+j>3ifWT*8|Ip#NCk+a z*w`OC7#THX$y?;aQ#S0S1#NoD%gUg|M=EXOu5FWPZlcsSz7(yRd8rv1Nx&SuYiAY= zoZYF~y;Ka-<;zrIXB!bxDaCyqkN&*Yaxq7g>cxJhJNDX4&DXD#Z64vdw16R&LI$10 zouXt_Yf`qZfJ3S2eHLG0lCT)&VdSOXS4+t4#5xw=L^W?wy=UgygeGperMT4_=y1H= z(3VWd!-Ou`o4odbHjH?c&@r+Rpcv8U)X**2p-IiOyhS$-n{X(rJTxUyLF~=Oek=+7 z=$D9fEmwE|TNbw4bPt&6hW^|Q0l~^o%-0i$!ZCJ4G0k#IR~GeN7Zz2ifw`rX?)oax zPfH3&a)M+0vde{0#kMHR3GCY(v4QGw$X(47+oyB3B!&OG6uB$X}Pcim|#BWF=%tw$I>TY zMUsatHN-e3YFZJL2-D{CLKk)Pkll@71dyhr_4X!zt=aLQ7Rv8i5DDV@8AmeCSw}Oj za7h({x`GfQifi4Uw1+&AF1)ls@7E&V((u|tvrIxC%}me3s}UYE~M zM{L+(PVtiZhaj?=YN;f7&kd8vkk?$<5Xd~h>;_6zZ(1StVbcCFlA`BEOQv&jHW4@;?2;@u4tI5nX)!5KzX-F_&1e|pz4x+{kD=z zMwpw$cwslHR#}}EW>k|}Ywt6#YYOd*?6pdf>{wPhwvPl-RWT%~A%Z!MQUn3cfSR3N zvdIcnA`{XpVXaS5^)im_Kq&BHJhZoE4l7Yn_GHNERr2|U^1~l51YkOJq^~umgMo*v zX)v%Pn(y3`#6Aab#0`h>);S%sbSlvf*{ zp{G`%(xg-&HJz#G{;Kkj8v@b}EB_?c^qvz=*7#jzy#}%|;A!O?Y zNcCe43Z}SOal%ZA3>g~Xt4hi2FnzYb!9O0Pqeze@bpI%G9>xtFA(b@{xR zSJV{s3hbzHj;VqkuP~)3*d|&z65;S@o@4|S_ZQEJG(qNB?AdDj%8X3XnuR*q7_<6Y zc)NQQ`y#SUEXTf`2xNZ+Wyn0D$x>6e3vo9F6k8pDFtOV zqq>KyP|J8d-$n#~ho9UiO1{LD(o_)ZioDCr8cDKp>pSQfS$wm#lx-2uL@Ap%>#b3H zX%%luqM^5F53|DaLIeAEndl)IJ$|Bnw^Xztfu1|r#!Iads+PSCdrvwsW|fVMa@OVWdOgYKM2#=bSd{=wTZJ5|HBe z@iZQNlYOqT`-uu#vb7!5bo&M}}>sUzjplnL;8_L8CZYH51jV&B=3U8Ria9&feL2p~m)HlY?qNvlveF~a0(ytzU_ebiPN%4WvSvU98U zDrgKyU&K9X*@F366I_t5u0-5n3MQMX728+tLSswhTfRs)&AcsC&{D{@K_tyrhrGpT z!Q}5zX&1t=T`+!mg~FJ8w%*$$Ouf@m4PKM&p%>{q5ovTta;ogMZ4bkGmkt_ogUcku zHX=ebM5zj|)VAi1=VhQs`)&w`XzFqgb=am+F1r`qgZS)UJ4!7H?@2Pnnle=jzBaB= z)}S$2Pz@R3IW3Xwrt%p0V7WpNYQsw66*fjN;vgg}5yCBETnG=`&ui`XQY)E{9q;2x zTW)z+`dcE^YuF@jIXgp?^m0V04S-{E%L^rBb0J1~H_cH9A&D;r*O05eND4FXh1unk z2s~rbR3Q~#O8vlE!1ft8QuSyVFXn64`Ar2zZZMG3F@c9J6kLt2qiwBWE? zMO%sNB@hb0HX}1sceYY2l8psaZh4WJJ+q>GdS`1g&Nd%+*RGIT41t>7xQv@MZ}yU?HV7x4kp`6@F!@Of zS5w~g-5o*s8{q(-RjXFD_Qcx;ZTR#KF~t?XVN+UYRyu5Kxgy<*F0Gwy?C-4>s$&m# z)B6-Q$;xt}X15_00WhRUp?%V_^Fn9~BeK@EG#}8b+R}zCT0GvQhlt)|*Ye=REOj%s;QBE^QGOa8yPgd?j9>=+c z>CIqjoe(2QCQ$^O5WLx)c7w_0BVy9DnP4#9}@M+tSeFrd< zA1BZng;%|hEvDlq(-uYaiAfyRdNs?X;wET1sIJk(eXKy~ecP-d%I)9^ZZbmJk2h~q z*wly_!Y6ZxB*Fv}Qze)Z`NC^){gzDZOJNhYTMez*M_9!cjTCF$q1H+j7spVdspcI2 zksf1_+q|XkDeZ2eE%u|}cFkiFu zTF^|{h8}wrnuPf4I#`N~UsYr}_o1C}5)ZPD!!nu;DCdgrvwq0s6T1kx`CG9d- zmf`~d`F_$qtXT}$6 ztJlNIO3ue-jRu%h(iJEpUdo!UG-O%HvPs!wMh);Eq+!oI< ztLv+;F0D*Y)p`cK)JdbEFP~+_*GZn&mguV_(`!rg)sgG9rI{fcaxLMaDI*=o5NmTe ztq9g~zS6I)uh{mfTy4XUXVN%dxIv zb_{8-S{~+ws9)TA_D}D<wzfpM^nGu@ajjVWnAE7Ep;N<$m#nx4-bIOXCoj zh5fx3EXPR@_L6BsQ_H-rmgB=hxQTw5Mn^9(lWNO?T2Ha7WoDzN*0Ky^{OHAtT9&Y( zMXTm5vzfQIMbq}3Hmzmf{aU8&$8FmI2aVRNEG=YMuCY%_=V~m_85PkIoly}@w*xEe zyow{L#af}!-^vNKhZD(<1#Ve}-L@@S!rLHvLnQHUi>j5;3+64DlNNPq>%OCBvC2Yw zwk%_$Ym4ewtEccrZ?Vh{7|e7i&4(Sg?8ugb({L&lGtibfWvs1?cWu$ZoFO)Paf!Dl zN-amSZo%e>a=$rihwXQ0Dpt-#6NO@5pYa zPuq9WBtlIk)U-*5jy|DfR<*KD6YNtViW6xNLl`Vx|F5RXSn?G0yWB;b+)C9rgjA6gN z=3M&LKyh_LCa|@}A^j2J6pJH7=wuC%DJe&Yn&#+sXQNrceMTR1;~bcUWX&hDi& zWloPDKM|dg<-X?gzR3||2z%Ce&Uwzsncwq^eI0Agm8Yf>UToHFn48zcFGO4Gncqnu z_Ck~z#Yt&M7K?D`rG!FsUj=7QY2eiR)d{p3tG4f zr-*AY@ZqbdF|EU_N(bDmIalRi{WLyNT+4tQK2_Gjx`M%L5WI-_rMJjdj;?&C>c|mC z9*@oI`A%+G;iC@KZtd6WY(%Wo7}F6`sQ|oa5Xu#+>G7+M!&dU*-6bO(ChiqzO)r^q`IunA2+3oZDa{!cg`~Ue_rW)#tF+X3i1EuZiAz$%?9CYlJ~t zkfiE#{d(1qgePl>jINsKG))JJyVzwBud5-NtI(ETb)HpF8$LPVJww`$FzWc+0PX-LOw zIu%?abz(|!BS2z@k;z6)ZA3Ilf%K;TDc@oPg@p`WYwZ$? z&mk;7lyI-**z!CYcNM`$FM!ibd^&(KoTVhn#8m@_H-pHX%|I@0UTroB8ws$(4);fQk|2-dagWTToi z4=UYVjCv4oY}cyg8?UtChVh9FbPSp%-Ps+5p29>XAF+P~%MIQPM8(`X^BzDO*N%{U zecj<+%~-h3jAYEfRv&8Dg~s&?+ljKZd;aXJ!(boOS~i36;*Q3(=gRPuHvLGO!n=wM8JeXsztXpa#vQ4>E^O z6rwy!RT?SLa)N&BDs9t3lGYT~dFr_--=$~(GFBVf9!1&NM<$Ke-zQ>l3sh#OJFloo z|Icg3t~6MmR@iJgR$^N0o*}%U}b<;sy~pM8wBp^P(b|-W{)}xsqsO1&0~i9*J^cpd#Ap zn=5*0T_?XS(q0DkGolG1>wSL|x9UB-5?$!04_rx~poXl%^9m-)fbCx*jHV!!0kJ-` zp(j19xXc{JEZ{|s+EqxM*UfaI$7Y@BZAAAQuK&^T)VMw^&P0@shl**FEuFd^Cm8$J zP!CardBQp})z_q~DV%wzNNH5lFq=HQA7#DN++pUM^$s0i-r}q$tlpp*vtGR4WqNVw z!P!Tl(>8fY){5}$X(5^Yr(Fd`>Mp{1g{G=C1tHlwoH;_Ua;0eR$5)F*9sHh9kS%4+ zSsJgBRXnrE1|Iq>mSbyc%xv5d=#w^EQk)T6AJ0Iq*h&y8AQddm!_=`%r(dU1kVFzo zAkB;f&Bw`OW^31B^4KPL+qbe>(us*X|0N@RoHnBt*5y#TqD^u&H=@AIIuUA&Q1uF1 zWh+Pk|8Lxlr3;tRN_#vr=*~vDQtOmB3t`zXl0VG@ON69U7-j@BMYP$pl{tNWa$%MgtCA*Jdee_h;Klx6?hDFzwTMJCHsMryCxYxN{i>40a$ekK)*M8Z&)XzJ zNgG=qvqkvPhNi5r8>53#Eo044QPo#7AU2&$kBNZsJf8m{uF2BgTtgUndczK=Z!maE zYEi~Anoo)S9P*NY<~(@2r7rEhkDJ!vytoo41n}NHZ7rno42T@;Cib@hwppsO$&8T* zBU2yk#;h|;8||=qw@L7L2!T7PnoK$*Zsv$G6_teIcqd+s7YPbQol}7Mfr>d%^WHt< z=58uWkd4g|SiE8Eio>(R97`H?DReX#W^BY{v~tNV-fGt%rL4mpg429NGss)i>xVQM z3`u?B!XTV5->R9sjV%xpZz=<=nyq+l9M6PGh0hV<&^rhYm6Wq zhZwl=kR*JVh^1O==k$Dvxh0bDW};KLaPU2>aV7oYo1t8|;R~M$^h! z1h&gC9Efj~!(yGAohTieUow+QJ=CpTGkx&ZzW!F9x~KvS`Z6qN}MV_GgW;UQYX%6Ma4bpxvW}YQwlMyvB27! zJr>6HA_>$<+>3o$ny8pIxgo(~Ze}q3(k*R9k;pC^R9qD3y%k?Pf$$7w$UwK(@-7B# zlcr(94lQK0%$KSrgVO)SnfqB<#05s&X(*DSX+lN1X#8xb)MZNpMkHRKixvlqw3Kok z!4G4>civQ{!Akix5txjpvHkfqox(pWXjGimDZ6YZFBo%#e2l#saUrJ83m6fm~5+l0_Z=^2vzHqz)tf0kj4%WQIy z&#?e(r|T$fm5EnEbc<*o!8XhOdfDq?b=DYN;?S=PvA7?Wn38arkm=>d8zZI^r(*_7 zhP&3>!&lHZdaOiVO$14-x2TxZKGqnu+cWOD%tFPP>V#CdOYy_KPU?>*cWzoA=D}h5 z4R%PYOU_EHo#`!o&sRc_8{GO7Q5j_Jnbz3S7~T@N6kUzm9K??JY>H$)jpWM!nN~`^ z24H?c^|k>Heu)!`tEHExL+R~J#1IF~PQAoeBG3jXuHIAB)0P1>yjC(4f^HDAeDd;C zhUH}@$}Bt&|42Zs(8t?bmMatCcoyllOj`_MgRiwHtRZ7E1BOwEal(a**g7AUWVK`w zgeuZpWu}lyoBMt~5o2EwD26I(O78vyNHtWkD*YazJWC3xqZ*i?Tjr(9Zh<}_(1k0?M06Ev9ENpI_^ zhA$5&4(?9PJmcp>A3{}jw%g;nDGokyk0q^tdpF$(Kh#PbBDz?9U4b>Rh%E|3Q?~+{ z?!;7KXpwA7SsK%vzLF{iNh%BhObkm9J^ z{CG)7qcWa$6jhPWz3>V>W2h~Vbm(QFBYiRn-$M;e?es!_#$sUuwR%Tt6JX@F?qc&b zZZ!(y!AnZ$uV@qaoJ6lrM)*EtiK!SUEK)3N?4@lbIxr~G-uOrh!N92PJS3v@(Q>pv zi7v=inv5XK+&YtFWTf~60g~|vjF$0X79+Y@%7tuDn2KJ)1Ssq21~xa|K%rzpoJnvk zL1qj~#&~?Fx6dxTm?J++6cIYGWy`TUR&%pDnG~ciCsQ#L9NC^&!;Kb>H2e_OO=(#F z^H`nY-VCRp(P00Sq_73I`h%aSt}ZePVI}HJwQqB2BLKYNI<;=XcMzC^Fhf{#?j)V8 z$k4sOCa(-=8aO##Gt6aU4=J#*u+6-=GPFyfo)X_A$m~ijUxndK$XG{EdCWx3b1Q1> z2(6}hko0M)rWsfeUh(qim~2{7Xl=TkYqtrlQWO#6`7NEJ;5_Myz6CmsuO5W&Bv=U% zpamU(ub$DQ$yyf+J_JG!X3k8M=J~(RwnwOJgrB0sa!&EopqxlUC zod$6aj^+<(`$R5vnxsu0hTfC7UG8QR3_UIh5u2*g(#veXrvc*pBx779O8Qdrj8=lj zaZ-D13IuDeZPTL++t`;DQlVS7Bq$7c8&s=WuDEWK?H|1i5=?Y&cQR&!`XnPlI zL75XA%{D>hI$0C+&o{um_8EsY=jtGA)BtVJ3HEE+=vAmLxj7GCS?E*+n+vY)sRrf~ z5PWMceBy!Oz_!=G9r{86S_=J)(Mc!8#%3gq5ouZA4s{>|kxlQHVX|T)dg{aR07JdP zrWQ3X1{}U%!`_W{UZj;rYW$+W$(JFP`7$p7a_Q~J-H@-T4qX$5!#EOAVu%4vO>0L@ z(L|CXiIV7ZeL6+fGo3FKbI1996cr-9g-N7@1SVOFzr<_cTIo~imm6emLuMuO#L2uQ z?cb3w{g?A5c_&({3`y2a`H4x>uRvr19nn;(_6|3entnY3YiA;^CBZRq36Nt+?duc8 z$Hzm{h854Y<4B)?LT>cKsEj&de6d(-NDAtziM}dib|AHfZ{Hj7OB3Dfm&I(SjOO~3 z8Fr*O#Wa;#^2v!FR2O}6!ot}{C&WuSp;orajN-efLxnT7-{x%6g*kktU~ixI3yvJH`qklv>N5eE=KrgqW5Y|$`{rc3duPE5p4 z(*VS=d?njlHd)`P)J8YO@W!;wbG8LBDEaN2fhkcig8hI_9B=i@&DYAU2@Bcs?Mwt; zf7apvJ~YR?#e6*BmA_sw+a_tKN!ApJTFX3t9m|ucaoygdH^VX3A{%L1{W}&)E__g8 z$Zb49&ODXI!dN()6Zp#9gqdMB0BmIQuX$#WLiW+6wdGjqwUk@iq?nlbD1#fWB#X5V z0#cX<#=ww*+Y2;fE{EdEQY|X=&2nk#tIu5^SJ73un;p$dP8QIEFs;-;$FO0_k;_A^AvSCu1#@4h z2g5RnW>6RRVJEWi2^VurR9Ifu7>~_a?2JmF6ZbWn%6=XLDWX$x)!!E)L2ao9`)KGL z5KFRdsGDvOM=y@E+GbRHKb77wt(iTG= zA@fL7{FKZBlG%mE+mMcjK_Cqq8xy4~wgs{VW#6xuR2%x)jlc*^OUs($@~zfk$&M5j z{R}qNrWLVZ&@*E%wtmJY&fHSEHp?aqa7;1QoZDwZIc(1KrKmS7UCw3?pb*`XuW~T= z^pA3=O=C?5TEw?z78Db?S-O}$fT_{PGLMqwmOPzE#~2T>6s8Mhrsnwu5>G`M5fk0k zNW)rH3)p=e#ZttoELmX#D0#(YAPx;kAla9-4xsI>Y=p$L2gMrnH5iw8W`K|YPt zFxo7ylA9E_RYhL|t7|_-RcDXc*50lLyD#GX0U3)(@JbeHeGdWRNkfAzNVxVac8aa0 z%8G(>tPtCi+ssC48n(iqwhf8J5+%!{ctd|12enqpTsx1sl%q&xZME38%Y`7~0EQx_ z+s>S}b3Wb8w3aW1Xd#SMPHUvFY8bxxAJaq(+Xr)MQjbtt-J9Cw04#{u$yXC zF!UuUiwKL@DHdp&a}AG?>R&}4Hcd~C*G1LrBrQuxXz4hkOiB#r3$(7KkvixtVn6>T z3E}yonZ_wN&jbSoFgpt!Q8d)wrV;ovL1VlMS!v+LC`$6o<7nl~3?h-0e720$hj5hA0;K$W+7&cwJsYvOryny6=Z@N`w^%bWz!puqxZ#STyghk8tron5k)%RI#$0!hom%qsA;|&f}|5A&Gm~?p%hnBSF>q_ z?VTaC3y*kZVnollJf;)cf!mX6vXyy>JON2g#$jJe*BXmv%Ogdg7(TKwCGa7vx%`>u zKIMoDAID-~%Px(3A>tt!YGilCgd(oxXWMcDq=eUZ zROkWrVHG+BJ<|yuCuW4Q{Z&KA3pHFs`m~`Q6T_F5Ln?9Z{$67eB#f^kWi>pPRD1=# z@9ryH4NQ)t4zuc}elsSk1Tvo3f~LlWkrqCqE_)G5A7`Oy z5=GCZ!ki4l8T}oyQetcL9YOK>csz6sncjzyY{Y5)ar$n{Y}CzoNtp@RBBWeUty!cs zi$=z4xDRtb)KSgK*tFoIo$sVGeu^urAu4>yC2R*p8NW@B;Nf!LQ>)Q)U~9j zm&8P5Q!jl#5HqWp)e5i1%Bm4$pDBsi-aO04ezk7aJF`H?viHuEi*Y-m1j=--7=S2>a|2I}BQDWB|1#~dEM2IE!; zk&|i#T}L|CkOe1x~0cg z1hq>Edw*=NFY)OX8ePoVnO`lFzFUGRie6l$5OHaPH5>Y)G}&@8CMCwqWT7!TU4vNG zi1?Xx$=)B8N*o4(LTY46d{Sdl@FH{7hD~Rc8dUMMFD6y#vLw%I{TyB(otJyF+?ytt z+FvxANnNSsWsbJz`_^63vt8QFA>)n6uGARs2K{E}mufO&bC9CYP3?X}ll6NovEAGc z8FlljV`YZ4k#aG~B_lx4$%gGah}HO}$fn18F(qY^yAeNOW4a!}bWZv!e8gsH*b1Qb zZ`%G5KMw&R8rU;pS1+SJ7cOJjKQ|AkRZDrBSF^*|+D7IA^kl+V7YV*@i+QpxQy{$k@%+hQ#w{h zd&H+SWl2HO))WQn$jAp}xV+8VAp^c#!PM7eFDIO&YjEjZu)i|xinsD5v&UgRleM6g z=?&6fc>RHbNq{Etn*wR*fvCPV)TuCyQ9wgV5A&UIarky3j3+edWQ>z=H8**hS5O@!d9hcsU6-0IONBqdY*LDj z#^6`aKFW*>76DOD1~9*+j}e_YVfry2)QvLdwpUFWqCA^ci~T^n%F?2S$)yfqjTyGa zAKO%JXEVG$g7|ymk`o;#nc#;Gf@+2O+5ts3|e$*fu?}Z6_p>pYv2=#|#!eh1( zs+D;rLE2zbO!@@}Y6gEMZ|l86U>o-}`Qw{VMGj*PN0TEDyQu^U7^R|1hnIk47LPY> z)b0I;*o3aK(_hoa@hK#tsZ?{`hCq`vM(Hj!&d7wcA*nfX%Hxc?>86l0b+d0sZL;^w z(%>O5s}e~$UnyvIMJC-Lxl|Pj#Ao8j6h<3dO>dQPD(sfhTH-9W4Y;`JZj{667N$or zzw?(Oq;v$sk5WvHplmGjbA(g6TWZ>f!vTBJ1?pp>g($XpI)qub!PDNLvdKJReKqWR8X9#W(vo?aZHTm4qj*jmt@Irp^yQ54+1$pKLGCb?q4t>V z&gL=MMNgR>(5Z}t)byqwC0bVO0aqmt1E=KGfznSB$*|}1Qrj?J3r{t0dpJ|(OskN7 zYi12?)`SpxML>w~hgVtK!aQX!%cVE$mPjOwo@)C{1GZ>rUuXcxD^m{IB(zLQV|qKI zF*VenZNh|^DpHm&EmLdym7fT!Vp1Mge3~EFt1Bi<;yW2)hTFL`b&Fd+HYKN`-}FuI zDH@wBDQ*}PMtlNADDP@M&%gv3dmZ`v0)3OfmTfp$_2NnRPLWR3eH~visx=rmY*)cj zHo@mP*mpsr#Oq0Y#lA7oELuiNylv?VZH*-3`vM~EELl@+T{#cqhmHNb3aS~O(}0yV zJ%Ob-@vRT@0|TRu!!RDuZdgB<2S)IfC&e^|2HFh$~ zgU>d^o$7lqZM+XkUaY|~A+c^3A0N`8@yqs=Crt^1uw$Ejt(?9nO@@J1Erz0Dy9oT< z60@U7`QWQY7+Z9}4pz>jF4i3__zVc?^`gUs68IRRsSbOllaoyJvfGTPU9)O^(TFEj z2k50zP?>nopq6CRQz2<=W#v0Zi^G9K@k?+hZ?@t_C}=G6t6t}V|5F>NGUAg*YR?ec zXyfD6nsa$;%M3M*KGwPhDm1jli`Zl%8Cqd!$hJ!$l!D|_sjNYb6=+bs6cKM*kg!Gg zg;#*J+0kseY$HMAhMiQM4lAZUU&^?e36PGb=~*gSDebY@z+nSqGQ25m`y!HFo|Xwe z&Yk0OWDho$ODw2kA`_mmLQGw#kH61BH9TzG<%5JQ3{TUn#-?|zBjL>W)1=;|eCX0x zyZh8ER75Ll3}8@^0nYj&q!u?MMe0HrRvCwgLUU1kJKag99mt-{m6J`mo^))4^`7BI zgBAPU2LIa`OEt7sT!Yk4c|c{hw&3T8f;gf6^o%;YNd_O@P;=+keXJ} z*kE8$p^R^fg3&NOs0FMl$?)k%L-1}{y$wap2=)4^U0^U7X<}b`U6|`l&C%gB^ghyrUZJI ziPsAF4q2xan(~J4KY0fWZ>0H)mg)3DuHiNO z!;?!y2O$6EU%$t>G}!OPf#OTU^(5BCP{?&F+WuuxOS>fM-+yo-T^!^|LIMfBA~BCc zM8>H^LeyeM28^lSe4}MesQ*ZQS+_bU1SeST#0|VF*&F63a?h^TFRq?oyCv}OhhQ6X z8a4s@3nIW}w^fQCXZ3wwht$}b;2@tSHyt*PdyBAt`b&BVu+uB+0~@D*wQ6IjU(zR) zU7Am5-BNG_&VyB&674>{yFZV%Tw`guK2!dP4Xwl)CDndDMDCX5+b3Ns1-?lKTh-kl zScwKynva=r{d@(l<3!-F5)z~iXZsbf<3*t9t;5?6hG`LuYdH*xjPzcZ6say;wPB-6tANia0o635dI@LI2L`ycwj~{o^gEOe4TK2E6e9A;wweXYUbb`zrr>;cooGkX z-6k=p1M<@}rA%@K3f%S~By+I0a~b~@(=bh$rYZ^G0IVYLKL<@MrUH$mME|G;HUJiQjKG>#ykyKT7Y~x(-)%f@usX{8v5#8 zOKiRS*qFL__uDbtI=!(rdVYk11A+LVbc0vRZ|ozd3B4gek(T$=HsJHa7Sd)?u#qKt zUuh!qMy7)qKm{d#Z$F!_CvzI(G86+KJ;uz~8n{9Z;&y4E9JAeWA`5Zk z0b*jdW=Y9|;>8Q~CsERU{2DkW%}p6U;-#RxG?FZ!(;siiC3i5KPB0Gz8pBKzWLer2 zAX%&Hmu$7{NWN@$aFGOn&{hKA$dC|XSm#}yG3%|f>sL&SSiKktva>+3i-#-r*ctd0 z7Lk|2+QD$|Rsy;}m|W3=Oj}ICh;_>D#zd^a6)ezAm?}tR)3%`kY}srFkj8%LRoP}0 z3N8PZc7^uw3GLI_vUNF%@fGupXv8OeuO$g!jn(lm$Id;3+|0FJ=$fwns8lvflP057 zzbDT5pehNC1$34k^F!q!KjHmcNha?cMa^rvoM7cNPFGBYi>6Jg&tAJ@v*Nl*c=Ldq z0ZI=O2l*du0liAOsSjSGBiHd-5e1vjb{8svGzQ_8?XD4?b{(-r%^25;SQ`oyn zp!uBB7r%S){A+=Rg$|R;n6D$MP`D<^en^{HFRH}b)z(Ar(D)pw`C6`AwH`Dq^5b6W zc>~y&2+9b|gKOiov8#-2q)N0+sB!}c**$Z>VgIOa$kAGpvXy7%^Tk%$vl2m8I(O`A zQ%{vBp)9#PN`iAW>0(bqq>+8hMoQyP!iq_jJFq);o1ccCw>5?lNt-dPKAo~VkCY#! zEZKVO7rTl`PV+?Mf)KcKllMWhF@)n@UY~V{3vWMaM6zJzR_XoIPM!74sk`eOQ;0#^ zra4cYkEi>?Zp~rAu`)fXdN8^?)Rtd@g{%Mw2zMYUK^cRs&r%BW*KXCMd=iAF=x`wY zivL^XF|6ps<ySoQQ;Vt!A=4(kW%#)eSWi-5_D&{)iEc(y>1o@qqdx+M_)6( zLr{rRcwG9W@ulDpBP0dcw9p6P}wPB5{^m38sVLh@hMRDe}gcw zHiGO?7&T?Vz%CCOgpO#cegFjk-%Y0BIb#cyONfLE-N7t2>>OZFnhu5w(e=_z&fNLD zwQNy`DXFh?4;z}b0?bh z+a+^v*?mD`cD{dkkl2f0qxs1xw&XNNS3_GeiLbKmGj{_32fHG>pai`%E}hMAn5T*Q zC`d|8\n" +"Language-Team: Romanian\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" +"X-Crowdin-Project: bookwyrm\n" +"X-Crowdin-Project-ID: 479239\n" +"X-Crowdin-Language: ro\n" +"X-Crowdin-File: /[bookwyrm-social.bookwyrm] main/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 1553\n" + +#: bookwyrm/forms/admin.py:41 +msgid "One Day" +msgstr "O zi" + +#: bookwyrm/forms/admin.py:42 +msgid "One Week" +msgstr "O săptămână" + +#: bookwyrm/forms/admin.py:43 +msgid "One Month" +msgstr "O lună" + +#: bookwyrm/forms/admin.py:44 +msgid "Does Not Expire" +msgstr "Nu expiră" + +#: bookwyrm/forms/admin.py:48 +#, python-brace-format +msgid "{i} uses" +msgstr "{i} utilizări" + +#: bookwyrm/forms/admin.py:49 +msgid "Unlimited" +msgstr "Nelimitat" + +#: bookwyrm/forms/forms.py:54 +msgid "Reading finish date cannot be before start date." +msgstr "Data de terminare a lecturii nu poate fi înainte de data de început." + +#: bookwyrm/forms/landing.py:32 +msgid "User with this username already exists" +msgstr "Un utilizator cu acest nume există deja" + +#: bookwyrm/forms/landing.py:41 +msgid "A user with this email already exists." +msgstr "Un utilizator cu această adresă de email există deja." + +#: bookwyrm/forms/links.py:36 +msgid "This domain is blocked. Please contact your administrator if you think this is an error." +msgstr "Acest domeniu este blocat. Vă rugăm să contactați administratorul vostru dacă credeți că este o eroare." + +#: bookwyrm/forms/links.py:46 +msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." +msgstr "Această legătură cu tipul fișierului a fost deja adăugată la această carte. Dacă nu este vizibilă, domeniul este încă în așteptare." + +#: bookwyrm/forms/lists.py:26 +msgid "List Order" +msgstr "Ordonează după listă" + +#: bookwyrm/forms/lists.py:27 +msgid "Book Title" +msgstr "Titlul cărții" + +#: bookwyrm/forms/lists.py:28 bookwyrm/templates/shelf/shelf.html:155 +#: bookwyrm/templates/shelf/shelf.html:187 +#: bookwyrm/templates/snippets/create_status/review.html:32 +msgid "Rating" +msgstr "Rating" + +#: bookwyrm/forms/lists.py:30 bookwyrm/templates/lists/list.html:185 +msgid "Sort By" +msgstr "Sortează după" + +#: bookwyrm/forms/lists.py:34 +msgid "Ascending" +msgstr "Crescător" + +#: bookwyrm/forms/lists.py:35 +msgid "Descending" +msgstr "Descrescător" + +#: bookwyrm/importers/importer.py:145 bookwyrm/importers/importer.py:167 +msgid "Error loading book" +msgstr "Eroare la încărcarea cărții" + +#: bookwyrm/importers/importer.py:154 +msgid "Could not find a match for book" +msgstr "Nu a putut fi găsită o potrivire pentru carte" + +#: bookwyrm/models/announcement.py:11 +msgid "Primary" +msgstr "Principal" + +#: bookwyrm/models/announcement.py:12 +msgid "Success" +msgstr "Succes" + +#: bookwyrm/models/announcement.py:13 +#: bookwyrm/templates/settings/invites/manage_invites.html:47 +msgid "Link" +msgstr "Legătură" + +#: bookwyrm/models/announcement.py:14 +msgid "Warning" +msgstr "Avertisment" + +#: bookwyrm/models/announcement.py:15 +msgid "Danger" +msgstr "Pericol" + +#: bookwyrm/models/antispam.py:106 bookwyrm/models/antispam.py:140 +msgid "Automatically generated report" +msgstr "Raport generat automat" + +#: bookwyrm/models/base_model.py:17 bookwyrm/models/link.py:72 +#: bookwyrm/templates/import/import_status.html:200 +#: bookwyrm/templates/settings/link_domains/link_domains.html:19 +msgid "Pending" +msgstr "În așteptare" + +#: bookwyrm/models/base_model.py:18 +msgid "Self deletion" +msgstr "Ștergere automată" + +#: bookwyrm/models/base_model.py:19 +msgid "Moderator suspension" +msgstr "Suspendat de moderator" + +#: bookwyrm/models/base_model.py:20 +msgid "Moderator deletion" +msgstr "Șters de moderator" + +#: bookwyrm/models/base_model.py:21 +msgid "Domain block" +msgstr "Blocat de domeniu" + +#: bookwyrm/models/book.py:262 +msgid "Audiobook" +msgstr "Carte audio" + +#: bookwyrm/models/book.py:263 +msgid "eBook" +msgstr "Carte digitală" + +#: bookwyrm/models/book.py:264 +msgid "Graphic novel" +msgstr "Roman grafic" + +#: bookwyrm/models/book.py:265 +msgid "Hardcover" +msgstr "Copertă dură" + +#: bookwyrm/models/book.py:266 +msgid "Paperback" +msgstr "Broșură" + +#: bookwyrm/models/federated_server.py:11 +#: bookwyrm/templates/settings/federation/edit_instance.html:55 +#: bookwyrm/templates/settings/federation/instance_list.html:19 +msgid "Federated" +msgstr "Federat" + +#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 +#: bookwyrm/templates/settings/federation/edit_instance.html:56 +#: bookwyrm/templates/settings/federation/instance.html:10 +#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/link_domains/link_domains.html:27 +msgid "Blocked" +msgstr "Blocat" + +#: bookwyrm/models/fields.py:27 +#, python-format +msgid "%(value)s is not a valid remote_id" +msgstr "%(value)s nu este un remote_id valid" + +#: bookwyrm/models/fields.py:36 bookwyrm/models/fields.py:45 +#, python-format +msgid "%(value)s is not a valid username" +msgstr "%(value)s nu este un nume de utilizator valid" + +#: bookwyrm/models/fields.py:181 bookwyrm/templates/layout.html:179 +#: bookwyrm/templates/ostatus/error.html:29 +msgid "username" +msgstr "nume de utilizator" + +#: bookwyrm/models/fields.py:186 +msgid "A user with that username already exists." +msgstr "Un utilizator cu acel nume există deja." + +#: bookwyrm/models/fields.py:205 +#: bookwyrm/templates/snippets/privacy-icons.html:3 +#: bookwyrm/templates/snippets/privacy-icons.html:4 +#: bookwyrm/templates/snippets/privacy_select.html:11 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:11 +msgid "Public" +msgstr "Public" + +#: bookwyrm/models/fields.py:206 +#: bookwyrm/templates/snippets/privacy-icons.html:7 +#: bookwyrm/templates/snippets/privacy-icons.html:8 +#: bookwyrm/templates/snippets/privacy_select.html:14 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:14 +msgid "Unlisted" +msgstr "Nelistat" + +#: bookwyrm/models/fields.py:207 +#: bookwyrm/templates/snippets/privacy_select.html:17 +#: bookwyrm/templates/user/relationships/followers.html:6 +#: bookwyrm/templates/user/relationships/layout.html:11 +msgid "Followers" +msgstr "Urmăritori" + +#: bookwyrm/models/fields.py:208 +#: bookwyrm/templates/snippets/create_status/post_options_block.html:6 +#: bookwyrm/templates/snippets/privacy-icons.html:15 +#: bookwyrm/templates/snippets/privacy-icons.html:16 +#: bookwyrm/templates/snippets/privacy_select.html:20 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:17 +msgid "Private" +msgstr "Privat" + +#: bookwyrm/models/link.py:51 +msgid "Free" +msgstr "Gratuită" + +#: bookwyrm/models/link.py:52 +msgid "Purchasable" +msgstr "Cumpărabilă" + +#: bookwyrm/models/link.py:53 +msgid "Available for loan" +msgstr "Disponibilă pentru împrumut" + +#: bookwyrm/models/link.py:70 +#: bookwyrm/templates/settings/link_domains/link_domains.html:23 +msgid "Approved" +msgstr "Aprovat" + +#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:289 +msgid "Reviews" +msgstr "Recenzii" + +#: bookwyrm/models/user.py:33 +msgid "Comments" +msgstr "Comentarii" + +#: bookwyrm/models/user.py:34 +msgid "Quotations" +msgstr "Citate" + +#: bookwyrm/models/user.py:35 +msgid "Everything else" +msgstr "Orice altceva" + +#: bookwyrm/settings.py:209 +msgid "Home Timeline" +msgstr "Friză cronologică principală" + +#: bookwyrm/settings.py:209 +msgid "Home" +msgstr "Acasă" + +#: bookwyrm/settings.py:210 +msgid "Books Timeline" +msgstr "Friză cronologică de cărți" + +#: bookwyrm/settings.py:210 bookwyrm/templates/search/layout.html:21 +#: bookwyrm/templates/search/layout.html:42 +#: bookwyrm/templates/user/layout.html:91 +msgid "Books" +msgstr "Cărți" + +#: bookwyrm/settings.py:282 +msgid "English" +msgstr "English (engleză)" + +#: bookwyrm/settings.py:283 +msgid "Deutsch (German)" +msgstr "Deutsch (germană)" + +#: bookwyrm/settings.py:284 +msgid "Español (Spanish)" +msgstr "Español (spaniolă)" + +#: bookwyrm/settings.py:285 +msgid "Galego (Galician)" +msgstr "Galego (galiciană)" + +#: bookwyrm/settings.py:286 +msgid "Italiano (Italian)" +msgstr "Italiano (italiană)" + +#: bookwyrm/settings.py:287 +msgid "Français (French)" +msgstr "Français (franceză)" + +#: bookwyrm/settings.py:288 +msgid "Lietuvių (Lithuanian)" +msgstr "Lietuvių (lituaniană)" + +#: bookwyrm/settings.py:289 +msgid "Norsk (Norwegian)" +msgstr "Norsk (norvegiană)" + +#: bookwyrm/settings.py:290 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "Português do Brasil (portugheză braziliană)" + +#: bookwyrm/settings.py:291 +msgid "Português Europeu (European Portuguese)" +msgstr "Português Europeu (portugheză europeană)" + +#: bookwyrm/settings.py:292 +msgid "Svenska (Swedish)" +msgstr "Svenska (suedeză)" + +#: bookwyrm/settings.py:293 +msgid "简体中文 (Simplified Chinese)" +msgstr "简体中文 (chineză simplificată)" + +#: bookwyrm/settings.py:294 +msgid "繁體中文 (Traditional Chinese)" +msgstr "繁體中文 (chineză tradițională)" + +#: bookwyrm/templates/404.html:4 bookwyrm/templates/404.html:8 +msgid "Not Found" +msgstr "Nu a fost găsit" + +#: bookwyrm/templates/404.html:9 +msgid "The page you requested doesn't seem to exist!" +msgstr "Se pare că pagina pe care o solicitați nu există!" + +#: bookwyrm/templates/500.html:4 +msgid "Oops!" +msgstr "Ups!" + +#: bookwyrm/templates/500.html:8 +msgid "Server Error" +msgstr "Eroare de server" + +#: bookwyrm/templates/500.html:9 +msgid "Something went wrong! Sorry about that." +msgstr "Ceva a mers prost! Ne pare rău pentru asta." + +#: bookwyrm/templates/about/about.html:9 +#: bookwyrm/templates/about/layout.html:35 +msgid "About" +msgstr "Despre" + +#: bookwyrm/templates/about/about.html:20 +#: bookwyrm/templates/get_started/layout.html:20 +#, python-format +msgid "Welcome to %(site_name)s!" +msgstr "Bine ați venit în %(site_name)s!" + +#: bookwyrm/templates/about/about.html:24 +#, python-format +msgid "%(site_name)s is part of BookWyrm, a network of independent, self-directed communities for readers. While you can interact seamlessly with users anywhere in the BookWyrm network, this community is unique." +msgstr "%(site_name)s este parte din BookWyrm, o rețea de comunități independente, autonome de cititori. Chiar dacă puteți interacționa perfect cu utilizatori de oriunde din rețeaua BookWyrm, această comunitate este unică." + +#: bookwyrm/templates/about/about.html:42 +#, python-format +msgid "%(title)s is %(site_name)s's most beloved book, with an average rating of %(rating)s out of 5." +msgstr "%(title)s este cartea cea mai iubită a %(site_name)s, cu un rating mediu de %(rating)s din 5." + +#: bookwyrm/templates/about/about.html:61 +#, python-format +msgid "More %(site_name)s users want to read %(title)s than any other book." +msgstr "Utilizatorii %(site_name)s vor să citească %(title)s mai mult decât oricare altă carte." + +#: bookwyrm/templates/about/about.html:80 +#, python-format +msgid "%(title)s has the most divisive ratings of any book on %(site_name)s." +msgstr "%(title)s are ratingul cel mai divizat față de orice altă carte a %(site_name)s." + +#: bookwyrm/templates/about/about.html:91 +msgid "Track your reading, talk about books, write reviews, and discover what to read next. Always ad-free, anti-corporate, and community-oriented, BookWyrm is human-scale software, designed to stay small and personal. If you have feature requests, bug reports, or grand dreams, reach out and make yourself heard." +msgstr "Urmăriți progresul lecturii, vorbiți despre cărți, citiți recenzii și descoperiți ce să citiți în continuare. Mereu fără reclame, anti-corporație și axat pe comunitate, BookWyrm este un program la scară umană, conceput să rămână mic și personal. Dacă aveți cereri de funcționalități, raporturi de buguri sau vise mărețe, contactați-ne și făceți-vă auziți." + +#: bookwyrm/templates/about/about.html:98 +msgid "Meet your admins" +msgstr "Întâlniți-vă adminii" + +#: bookwyrm/templates/about/about.html:101 +#, python-format +msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." +msgstr "Moderatorii și administratorii %(site_name)s mențin site-ul în picioare, impun codul de conduită și răspund când utilizatorii raportează spam și comportament neadecvat." + +#: bookwyrm/templates/about/about.html:115 +msgid "Moderator" +msgstr "Moderator" + +#: bookwyrm/templates/about/about.html:117 bookwyrm/templates/layout.html:140 +msgid "Admin" +msgstr "Admin" + +#: bookwyrm/templates/about/about.html:133 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:14 +#: bookwyrm/templates/snippets/status/status_options.html:35 +#: bookwyrm/templates/snippets/user_options.html:14 +msgid "Send direct message" +msgstr "Trimiteți un mesaj direct" + +#: bookwyrm/templates/about/conduct.html:4 +#: bookwyrm/templates/about/conduct.html:9 +#: bookwyrm/templates/about/layout.html:41 +msgid "Code of Conduct" +msgstr "Cod de conduită" + +#: bookwyrm/templates/about/layout.html:11 +msgid "Active users:" +msgstr "Utilizatori activi:" + +#: bookwyrm/templates/about/layout.html:15 +msgid "Statuses posted:" +msgstr "Statusuri postate:" + +#: bookwyrm/templates/about/layout.html:19 +#: bookwyrm/templates/setup/config.html:74 +msgid "Software version:" +msgstr "Versiunea programului:" + +#: bookwyrm/templates/about/layout.html:30 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#, python-format +msgid "About %(site_name)s" +msgstr "Despre %(site_name)s" + +#: bookwyrm/templates/about/layout.html:47 +#: bookwyrm/templates/about/privacy.html:4 +#: bookwyrm/templates/about/privacy.html:9 +msgid "Privacy Policy" +msgstr "Politica de confidențialitate" + +#: bookwyrm/templates/annual_summary/layout.html:7 +#: bookwyrm/templates/feed/summary_card.html:8 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s în cărți" + +#: bookwyrm/templates/annual_summary/layout.html:43 +#, python-format +msgid "%(year)s in the books" +msgstr "%(year)s în cărți" + +#: bookwyrm/templates/annual_summary/layout.html:47 +#, python-format +msgid "%(display_name)s’s year of reading" +msgstr "Anul de lectură a %(display_name)s" + +#: bookwyrm/templates/annual_summary/layout.html:53 +msgid "Share this page" +msgstr "Partajați această pagină" + +#: bookwyrm/templates/annual_summary/layout.html:67 +msgid "Copy address" +msgstr "Copiați adresa" + +#: bookwyrm/templates/annual_summary/layout.html:68 +#: bookwyrm/templates/lists/list.html:277 +msgid "Copied!" +msgstr "Copiat!" + +#: bookwyrm/templates/annual_summary/layout.html:77 +msgid "Sharing status: public with key" +msgstr "Partajați statusul: public cu cheie" + +#: bookwyrm/templates/annual_summary/layout.html:78 +msgid "The page can be seen by anyone with the complete address." +msgstr "Pagina poate fi vizionată de oricine cu o adresă completă." + +#: bookwyrm/templates/annual_summary/layout.html:83 +msgid "Make page private" +msgstr "Faceți pagina privată" + +#: bookwyrm/templates/annual_summary/layout.html:89 +msgid "Sharing status: private" +msgstr "Partajați statusul: privat" + +#: bookwyrm/templates/annual_summary/layout.html:90 +msgid "The page is private, only you can see it." +msgstr "Pagina este privată, doar dumneavoastră puteți să o vedeți." + +#: bookwyrm/templates/annual_summary/layout.html:95 +msgid "Make page public" +msgstr "Faceți pagina publică" + +#: bookwyrm/templates/annual_summary/layout.html:99 +msgid "When you make your page private, the old key won’t give access to the page anymore. A new key will be created if the page is once again made public." +msgstr "Când faceți pagina privată, vechea cheie nu mai oferă acces la pagină. O nouă cheie va fi creată dacă pagina este din nou făcută publică." + +#: bookwyrm/templates/annual_summary/layout.html:112 +#, python-format +msgid "Sadly %(display_name)s didn’t finish any books in %(year)s" +msgstr "Din păcate %(display_name)s nu a terminat nicio carte în %(year)s" + +#: bookwyrm/templates/annual_summary/layout.html:118 +#, python-format +msgid "In %(year)s, %(display_name)s read %(books_total)s book
    for a total of %(pages_total)s pages!" +msgid_plural "In %(year)s, %(display_name)s read %(books_total)s books
    for a total of %(pages_total)s pages!" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "În %(year)s, %(display_name)s a citit %(books_total)s cărți
    pentru un total de %(pages_total)s de pagini!" + +#: bookwyrm/templates/annual_summary/layout.html:124 +msgid "That’s great!" +msgstr "Este minunat!" + +#: bookwyrm/templates/annual_summary/layout.html:127 +#, python-format +msgid "That makes an average of %(pages)s pages per book." +msgstr "Asta înseamnă o medie de %(pages)s de pagini pe carte." + +#: bookwyrm/templates/annual_summary/layout.html:132 +#, python-format +msgid "(%(no_page_number)s book doesn’t have pages)" +msgid_plural "(%(no_page_number)s books don’t have pages)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "(cărțile %(no_page_number)s nu au pagini)" + +#: bookwyrm/templates/annual_summary/layout.html:148 +msgid "Their shortest read this year…" +msgstr "Cea mai scurtă lectură a sa…" + +#: bookwyrm/templates/annual_summary/layout.html:155 +#: bookwyrm/templates/annual_summary/layout.html:176 +#: bookwyrm/templates/annual_summary/layout.html:245 +#: bookwyrm/templates/book/book.html:56 +#: bookwyrm/templates/discover/large-book.html:22 +#: bookwyrm/templates/landing/large-book.html:26 +#: bookwyrm/templates/landing/small-book.html:18 +msgid "by" +msgstr "de" + +#: bookwyrm/templates/annual_summary/layout.html:161 +#: bookwyrm/templates/annual_summary/layout.html:182 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s de pagini" + +#: bookwyrm/templates/annual_summary/layout.html:169 +msgid "…and the longest" +msgstr "…și cea mai lungă" + +#: bookwyrm/templates/annual_summary/layout.html:200 +#, python-format +msgid "%(display_name)s set a goal of reading %(goal)s book in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgid_plural "%(display_name)s set a goal of reading %(goal)s books in %(year)s,
    and achieved %(goal_percent)s%% of that goal" +msgstr[0] "%(display_name)s și-a fixat un obiectiv de a citi %(goal)s carte în %(year)s,
    și a realizat %(goal_percent)s din obiectiv" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/annual_summary/layout.html:209 +msgid "Way to go!" +msgstr "Felicitări!" + +#: bookwyrm/templates/annual_summary/layout.html:224 +#, python-format +msgid "%(display_name)s left %(ratings_total)s rating,
    their average rating is %(rating_average)s" +msgid_plural "%(display_name)s left %(ratings_total)s ratings,
    their average rating is %(rating_average)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "%(display_name)s a lăsat recenzii de %(ratings_total)s,
    ratingul său mediu este %(rating_average)s" + +#: bookwyrm/templates/annual_summary/layout.html:238 +msgid "Their best rated review" +msgstr "Recenzia sa cea mai bine cotată" + +#: bookwyrm/templates/annual_summary/layout.html:251 +#, python-format +msgid "Their rating: %(rating)s" +msgstr "Recenzia sa: %(rating)s" + +#: bookwyrm/templates/annual_summary/layout.html:268 +#, python-format +msgid "All the books %(display_name)s read in %(year)s" +msgstr "Toate cărțile %(display_name)s citite în %(year)s" + +#: bookwyrm/templates/author/author.html:18 +#: bookwyrm/templates/author/author.html:19 +msgid "Edit Author" +msgstr "Editați autorul" + +#: bookwyrm/templates/author/author.html:35 +msgid "Author details" +msgstr "Detaliile autorului" + +#: bookwyrm/templates/author/author.html:39 +#: bookwyrm/templates/author/edit_author.html:42 +msgid "Aliases:" +msgstr "Aliasuri:" + +#: bookwyrm/templates/author/author.html:48 +msgid "Born:" +msgstr "Născut:" + +#: bookwyrm/templates/author/author.html:55 +msgid "Died:" +msgstr "Mort:" + +#: bookwyrm/templates/author/author.html:65 +msgid "External links" +msgstr "Legături externe" + +#: bookwyrm/templates/author/author.html:70 +msgid "Wikipedia" +msgstr "Wikipedia" + +#: bookwyrm/templates/author/author.html:78 +msgid "View ISNI record" +msgstr "Vizualizați intrarea ISNI" + +#: bookwyrm/templates/author/author.html:83 +#: bookwyrm/templates/author/sync_modal.html:5 +#: bookwyrm/templates/book/book.html:131 +#: bookwyrm/templates/book/sync_modal.html:5 +msgid "Load data" +msgstr "Încărcați date" + +#: bookwyrm/templates/author/author.html:87 +#: bookwyrm/templates/book/book.html:135 +msgid "View on OpenLibrary" +msgstr "Vizualizați în OpenLibrary" + +#: bookwyrm/templates/author/author.html:102 +#: bookwyrm/templates/book/book.html:149 +msgid "View on Inventaire" +msgstr "Vizualizați în Inventaire" + +#: bookwyrm/templates/author/author.html:118 +msgid "View on LibraryThing" +msgstr "Vizualizați în LibraryThing" + +#: bookwyrm/templates/author/author.html:126 +msgid "View on Goodreads" +msgstr "Vizualizați în Goodreads" + +#: bookwyrm/templates/author/author.html:141 +#, python-format +msgid "Books by %(name)s" +msgstr "Cărți de %(name)s" + +#: bookwyrm/templates/author/edit_author.html:5 +msgid "Edit Author:" +msgstr "Editați autorul:" + +#: bookwyrm/templates/author/edit_author.html:13 +#: bookwyrm/templates/book/edit/edit_book.html:25 +msgid "Added:" +msgstr "Adăugat:" + +#: bookwyrm/templates/author/edit_author.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:28 +msgid "Updated:" +msgstr "Actualizat:" + +#: bookwyrm/templates/author/edit_author.html:16 +#: bookwyrm/templates/book/edit/edit_book.html:32 +msgid "Last edited by:" +msgstr "Ultima dată modificat de:" + +#: bookwyrm/templates/author/edit_author.html:33 +#: bookwyrm/templates/book/edit/edit_book_form.html:19 +msgid "Metadata" +msgstr "Metadate" + +#: bookwyrm/templates/author/edit_author.html:35 +#: bookwyrm/templates/lists/form.html:9 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:14 +#: bookwyrm/templates/shelf/form.html:9 +msgid "Name:" +msgstr "Nume:" + +#: bookwyrm/templates/author/edit_author.html:44 +#: bookwyrm/templates/book/edit/edit_book_form.html:78 +#: bookwyrm/templates/book/edit/edit_book_form.html:148 +msgid "Separate multiple values with commas." +msgstr "Separați valori multiple prin virgulă." + +#: bookwyrm/templates/author/edit_author.html:50 +msgid "Bio:" +msgstr "Biografie:" + +#: bookwyrm/templates/author/edit_author.html:56 +msgid "Wikipedia link:" +msgstr "Legătură Wikipedia:" + +#: bookwyrm/templates/author/edit_author.html:61 +msgid "Birth date:" +msgstr "Data de naștere:" + +#: bookwyrm/templates/author/edit_author.html:68 +msgid "Death date:" +msgstr "Data de moarte:" + +#: bookwyrm/templates/author/edit_author.html:75 +msgid "Author Identifiers" +msgstr "Date de identificare ale autorului" + +#: bookwyrm/templates/author/edit_author.html:77 +msgid "Openlibrary key:" +msgstr "Cheie OpenLibrary:" + +#: bookwyrm/templates/author/edit_author.html:84 +#: bookwyrm/templates/book/edit/edit_book_form.html:326 +msgid "Inventaire ID:" +msgstr "ID Inventaire:" + +#: bookwyrm/templates/author/edit_author.html:91 +msgid "Librarything key:" +msgstr "Cheie LibraryThing:" + +#: bookwyrm/templates/author/edit_author.html:98 +msgid "Goodreads key:" +msgstr "Cheie GoodReads:" + +#: bookwyrm/templates/author/edit_author.html:105 +msgid "ISNI:" +msgstr "ISNI:" + +#: bookwyrm/templates/author/edit_author.html:115 +#: bookwyrm/templates/book/book.html:202 +#: bookwyrm/templates/book/edit/edit_book.html:127 +#: bookwyrm/templates/book/file_links/add_link_modal.html:60 +#: bookwyrm/templates/book/file_links/edit_links.html:82 +#: bookwyrm/templates/groups/form.html:32 +#: bookwyrm/templates/lists/bookmark_button.html:15 +#: bookwyrm/templates/lists/edit_item_form.html:15 +#: bookwyrm/templates/lists/form.html:130 +#: bookwyrm/templates/preferences/edit_user.html:136 +#: bookwyrm/templates/readthrough/readthrough_modal.html:74 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:120 +#: bookwyrm/templates/settings/federation/edit_instance.html:98 +#: bookwyrm/templates/settings/federation/instance.html:105 +#: bookwyrm/templates/settings/site.html:181 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:69 +#: bookwyrm/templates/shelf/form.html:25 +#: bookwyrm/templates/snippets/reading_modals/layout.html:18 +msgid "Save" +msgstr "Salvați" + +#: bookwyrm/templates/author/edit_author.html:116 +#: bookwyrm/templates/author/sync_modal.html:23 +#: bookwyrm/templates/book/book.html:203 +#: bookwyrm/templates/book/cover_add_modal.html:33 +#: bookwyrm/templates/book/edit/edit_book.html:129 +#: bookwyrm/templates/book/edit/edit_book.html:132 +#: bookwyrm/templates/book/file_links/add_link_modal.html:59 +#: bookwyrm/templates/book/file_links/verification_modal.html:25 +#: bookwyrm/templates/book/sync_modal.html:23 +#: bookwyrm/templates/groups/delete_group_modal.html:15 +#: bookwyrm/templates/lists/add_item_modal.html:36 +#: bookwyrm/templates/lists/delete_list_modal.html:16 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:27 +#: bookwyrm/templates/readthrough/readthrough_modal.html:73 +#: bookwyrm/templates/search/barcode_modal.html:45 +#: bookwyrm/templates/settings/federation/instance.html:106 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22 +#: bookwyrm/templates/snippets/report_modal.html:52 +msgid "Cancel" +msgstr "Anulați" + +#: bookwyrm/templates/author/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this author which aren't present here. Existing metadata will not be overwritten." +msgstr "Încărcatul de date se va conecta la %(source_name)s și verifica orice metadate despre autor care nu sunt prezente aici. Metadatele existente nu vor fi suprascrise." + +#: bookwyrm/templates/author/sync_modal.html:24 +#: bookwyrm/templates/book/edit/edit_book.html:114 +#: bookwyrm/templates/book/sync_modal.html:24 +#: bookwyrm/templates/groups/members.html:29 +#: bookwyrm/templates/landing/password_reset.html:42 +#: bookwyrm/templates/snippets/remove_from_group_button.html:17 +msgid "Confirm" +msgstr "Confirmați" + +#: bookwyrm/templates/book/book.html:19 +msgid "Unable to connect to remote source." +msgstr "Nu s-a putut stabili conexiunea la distanță." + +#: bookwyrm/templates/book/book.html:64 bookwyrm/templates/book/book.html:65 +msgid "Edit Book" +msgstr "Editați carte" + +#: bookwyrm/templates/book/book.html:88 bookwyrm/templates/book/book.html:91 +msgid "Click to add cover" +msgstr "Adăugați o copertă" + +#: bookwyrm/templates/book/book.html:97 +msgid "Failed to load cover" +msgstr "Eșec la încărcarea coperții" + +#: bookwyrm/templates/book/book.html:108 +msgid "Click to enlarge" +msgstr "Clic pentru a mări" + +#: bookwyrm/templates/book/book.html:179 +#, python-format +msgid "(%(review_count)s review)" +msgid_plural "(%(review_count)s reviews)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "(%(review_count)s recenzii)" + +#: bookwyrm/templates/book/book.html:191 +msgid "Add Description" +msgstr "Adăugați o descriere" + +#: bookwyrm/templates/book/book.html:198 +#: bookwyrm/templates/book/edit/edit_book_form.html:42 +#: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 +msgid "Description:" +msgstr "Descriere:" + +#: bookwyrm/templates/book/book.html:214 +#, python-format +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "%(count)s ediții" + +#: bookwyrm/templates/book/book.html:228 +msgid "You have shelved this edition in:" +msgstr "Ați pus această ediție pe raftul:" + +#: bookwyrm/templates/book/book.html:243 +#, python-format +msgid "A different edition of this book is on your %(shelf_name)s shelf." +msgstr "O ediție diferită a acestei cărți este pe %(shelf_name)s raftul vostru." + +#: bookwyrm/templates/book/book.html:254 +msgid "Your reading activity" +msgstr "Activitatea dvs. de lectură" + +#: bookwyrm/templates/book/book.html:260 +msgid "Add read dates" +msgstr "Adăugați date de lectură" + +#: bookwyrm/templates/book/book.html:268 +msgid "You don't have any reading activity for this book." +msgstr "Nu aveți nicio activitate de lectură pentru această carte." + +#: bookwyrm/templates/book/book.html:294 +msgid "Your reviews" +msgstr "Recenziile dvs." + +#: bookwyrm/templates/book/book.html:300 +msgid "Your comments" +msgstr "Comentariile voastre" + +#: bookwyrm/templates/book/book.html:306 +msgid "Your quotes" +msgstr "Citatele dvs." + +#: bookwyrm/templates/book/book.html:342 +msgid "Subjects" +msgstr "Subiecte" + +#: bookwyrm/templates/book/book.html:354 +msgid "Places" +msgstr "Locuri" + +#: bookwyrm/templates/book/book.html:365 +#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83 +#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12 +#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 +#: bookwyrm/templates/search/layout.html:25 +#: bookwyrm/templates/search/layout.html:50 +#: bookwyrm/templates/user/layout.html:85 +msgid "Lists" +msgstr "Liste" + +#: bookwyrm/templates/book/book.html:377 +msgid "Add to list" +msgstr "Adăugați la listă" + +#: bookwyrm/templates/book/book.html:387 +#: bookwyrm/templates/book/cover_add_modal.html:32 +#: bookwyrm/templates/lists/add_item_modal.html:39 +#: bookwyrm/templates/lists/list.html:255 +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24 +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31 +msgid "Add" +msgstr "Adăugați" + +#: bookwyrm/templates/book/book_identifiers.html:8 +msgid "ISBN:" +msgstr "ISBN:" + +#: bookwyrm/templates/book/book_identifiers.html:15 +#: bookwyrm/templates/book/edit/edit_book_form.html:335 +msgid "OCLC Number:" +msgstr "Număr OCLC:" + +#: bookwyrm/templates/book/book_identifiers.html:22 +#: bookwyrm/templates/book/edit/edit_book_form.html:344 +msgid "ASIN:" +msgstr "ASIN:" + +#: bookwyrm/templates/book/cover_add_modal.html:5 +msgid "Add cover" +msgstr "Adăugați copertă" + +#: bookwyrm/templates/book/cover_add_modal.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:234 +msgid "Upload cover:" +msgstr "Încărcați copertă:" + +#: bookwyrm/templates/book/cover_add_modal.html:23 +#: bookwyrm/templates/book/edit/edit_book_form.html:240 +msgid "Load cover from url:" +msgstr "Încărcați copertă de la URL-ul:" + +#: bookwyrm/templates/book/cover_show_modal.html:6 +msgid "Book cover preview" +msgstr "Previzualizarea coperții" + +#: bookwyrm/templates/book/cover_show_modal.html:11 +#: bookwyrm/templates/components/inline_form.html:8 +#: bookwyrm/templates/components/modal.html:13 +#: bookwyrm/templates/components/modal.html:30 +#: bookwyrm/templates/components/tooltip.html:7 +#: bookwyrm/templates/feed/suggested_books.html:55 +#: bookwyrm/templates/get_started/layout.html:25 +#: bookwyrm/templates/get_started/layout.html:58 +msgid "Close" +msgstr "Închideți" + +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 +#, python-format +msgid "Edit \"%(book_title)s\"" +msgstr "Editați „%(book_title)s”" + +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 +msgid "Add Book" +msgstr "Adăugați carte" + +#: bookwyrm/templates/book/edit/edit_book.html:54 +msgid "Confirm Book Info" +msgstr "Confirmați informațiile cărții" + +#: bookwyrm/templates/book/edit/edit_book.html:62 +#, python-format +msgid "Is \"%(name)s\" one of these authors?" +msgstr "Este „%(name)s” unul dintre acești autori?" + +#: bookwyrm/templates/book/edit/edit_book.html:73 +#: bookwyrm/templates/book/edit/edit_book.html:75 +msgid "Author of " +msgstr "Autor al " + +#: bookwyrm/templates/book/edit/edit_book.html:75 +msgid "Find more information at isni.org" +msgstr "Aflați mai multe la isni.org" + +#: bookwyrm/templates/book/edit/edit_book.html:85 +msgid "This is a new author" +msgstr "Acesta este un autor nou" + +#: bookwyrm/templates/book/edit/edit_book.html:92 +#, python-format +msgid "Creating a new author: %(name)s" +msgstr "Creați un autor nou: %(name)s" + +#: bookwyrm/templates/book/edit/edit_book.html:99 +msgid "Is this an edition of an existing work?" +msgstr "Este această o ediție a unei opere existente?" + +#: bookwyrm/templates/book/edit/edit_book.html:107 +msgid "This is a new work" +msgstr "Aceasta este o operă nouă" + +#: bookwyrm/templates/book/edit/edit_book.html:116 +#: bookwyrm/templates/feed/status.html:21 +msgid "Back" +msgstr "Înapoi" + +#: bookwyrm/templates/book/edit/edit_book_form.html:24 +#: bookwyrm/templates/snippets/create_status/review.html:15 +msgid "Title:" +msgstr "Titlu:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:33 +msgid "Subtitle:" +msgstr "Subtitlu:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:53 +msgid "Series:" +msgstr "Serie:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:63 +msgid "Series number:" +msgstr "Numărul din serie:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:74 +msgid "Languages:" +msgstr "Limbi:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:86 +msgid "Subjects:" +msgstr "Subiecte:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:90 +msgid "Add subject" +msgstr "Adăugați subiect" + +#: bookwyrm/templates/book/edit/edit_book_form.html:108 +msgid "Remove subject" +msgstr "Înlăturați subiect" + +#: bookwyrm/templates/book/edit/edit_book_form.html:131 +msgid "Add Another Subject" +msgstr "Adăugați un alt subiect" + +#: bookwyrm/templates/book/edit/edit_book_form.html:139 +msgid "Publication" +msgstr "Publicație" + +#: bookwyrm/templates/book/edit/edit_book_form.html:144 +msgid "Publisher:" +msgstr "Editor:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:156 +msgid "First published date:" +msgstr "Prima dată de publicare:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:165 +msgid "Published date:" +msgstr "Data de publicare:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:176 +msgid "Authors" +msgstr "Autori" + +#: bookwyrm/templates/book/edit/edit_book_form.html:187 +#, python-format +msgid "Remove %(name)s" +msgstr "Înlăturați %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:190 +#, python-format +msgid "Author page for %(name)s" +msgstr "Pagina de autori pentru %(name)s" + +#: bookwyrm/templates/book/edit/edit_book_form.html:198 +msgid "Add Authors:" +msgstr "Adăugați autori:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:204 +msgid "Add Author" +msgstr "Adaugă autor" + +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#: bookwyrm/templates/book/edit/edit_book_form.html:205 +msgid "Jane Doe" +msgstr "Necunoscut" + +#: bookwyrm/templates/book/edit/edit_book_form.html:211 +msgid "Add Another Author" +msgstr "Adăugați un alt autor" + +#: bookwyrm/templates/book/edit/edit_book_form.html:221 +#: bookwyrm/templates/shelf/shelf.html:146 +msgid "Cover" +msgstr "Copertă" + +#: bookwyrm/templates/book/edit/edit_book_form.html:253 +msgid "Physical Properties" +msgstr "Proprietăți fizice" + +#: bookwyrm/templates/book/edit/edit_book_form.html:260 +#: bookwyrm/templates/book/editions/format_filter.html:6 +msgid "Format:" +msgstr "Format:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:272 +msgid "Format details:" +msgstr "Detalii de format:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:283 +msgid "Pages:" +msgstr "Pagini:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:294 +msgid "Book Identifiers" +msgstr "Date de identificare ale cărții" + +#: bookwyrm/templates/book/edit/edit_book_form.html:299 +msgid "ISBN 13:" +msgstr "ISBN 13:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:308 +msgid "ISBN 10:" +msgstr "ISBN 10:" + +#: bookwyrm/templates/book/edit/edit_book_form.html:317 +msgid "Openlibrary ID:" +msgstr "ID OpenLibrary:" + +#: bookwyrm/templates/book/editions/editions.html:4 +#, python-format +msgid "Editions of %(book_title)s" +msgstr "Ediții ale %(book_title)s" + +#: bookwyrm/templates/book/editions/editions.html:8 +#, python-format +msgid "Editions of \"%(work_title)s\"" +msgstr "Ediții ale %(work_title)s" + +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "Nu găsiți ediția pe care o căutați?" + +#: bookwyrm/templates/book/editions/editions.html:75 +msgid "Add another edition" +msgstr "Adăugați o altă ediție" + +#: bookwyrm/templates/book/editions/format_filter.html:9 +#: bookwyrm/templates/book/editions/language_filter.html:9 +msgid "Any" +msgstr "Oricare" + +#: bookwyrm/templates/book/editions/language_filter.html:6 +#: bookwyrm/templates/preferences/edit_user.html:95 +msgid "Language:" +msgstr "Limbă:" + +#: bookwyrm/templates/book/editions/search_filter.html:6 +msgid "Search editions" +msgstr "Căutați ediții" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:6 +msgid "Add file link" +msgstr "Adăugați o legătură de fișier" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:19 +msgid "Links from unknown domains will need to be approved by a moderator before they are added." +msgstr "Legături de la domenii necunoscute vor trebui aprovate de către un moderator înainte de a fi adăugate." + +#: bookwyrm/templates/book/file_links/add_link_modal.html:24 +msgid "URL:" +msgstr "URL:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:29 +msgid "File type:" +msgstr "Tipul fișierului:" + +#: bookwyrm/templates/book/file_links/add_link_modal.html:48 +msgid "Availability:" +msgstr "Disponibilitate:" + +#: bookwyrm/templates/book/file_links/edit_links.html:5 +#: bookwyrm/templates/book/file_links/edit_links.html:21 +#: bookwyrm/templates/book/file_links/links.html:53 +msgid "Edit links" +msgstr "Editați legături" + +#: bookwyrm/templates/book/file_links/edit_links.html:11 +#, python-format +msgid "Links for \"%(title)s\"" +msgstr "Legături pentru „%(title)s”" + +#: bookwyrm/templates/book/file_links/edit_links.html:32 +#: bookwyrm/templates/settings/link_domains/link_table.html:6 +msgid "URL" +msgstr "URL" + +#: bookwyrm/templates/book/file_links/edit_links.html:33 +#: bookwyrm/templates/settings/link_domains/link_table.html:7 +msgid "Added by" +msgstr "Adăugat de" + +#: bookwyrm/templates/book/file_links/edit_links.html:34 +#: bookwyrm/templates/settings/link_domains/link_table.html:8 +msgid "Filetype" +msgstr "Tipul fișierului" + +#: bookwyrm/templates/book/file_links/edit_links.html:35 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:25 +#: bookwyrm/templates/settings/reports/report_links_table.html:5 +msgid "Domain" +msgstr "Domeniu" + +#: bookwyrm/templates/book/file_links/edit_links.html:36 +#: bookwyrm/templates/import/import_status.html:127 +#: bookwyrm/templates/settings/announcements/announcements.html:37 +#: bookwyrm/templates/settings/federation/instance_list.html:46 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +#: bookwyrm/templates/settings/invites/status_filter.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:52 +#: bookwyrm/templates/settings/users/user_info.html:20 +msgid "Status" +msgstr "Status" + +#: bookwyrm/templates/book/file_links/edit_links.html:37 +#: bookwyrm/templates/settings/announcements/announcements.html:41 +#: bookwyrm/templates/settings/federation/instance.html:112 +#: bookwyrm/templates/settings/reports/report_links_table.html:6 +#: bookwyrm/templates/settings/themes.html:100 +msgid "Actions" +msgstr "Acțiuni" + +#: bookwyrm/templates/book/file_links/edit_links.html:53 +#: bookwyrm/templates/book/file_links/verification_modal.html:22 +msgid "Report spam" +msgstr "Raportați spam" + +#: bookwyrm/templates/book/file_links/edit_links.html:97 +msgid "No links available for this book." +msgstr "Nicio legătură disponibilă pentru această carte." + +#: bookwyrm/templates/book/file_links/edit_links.html:108 +#: bookwyrm/templates/book/file_links/links.html:18 +msgid "Add link to file" +msgstr "Adăugați o legătură către fișier" + +#: bookwyrm/templates/book/file_links/file_link_page.html:6 +msgid "File Links" +msgstr "Legăturile fișierului" + +#: bookwyrm/templates/book/file_links/links.html:9 +msgid "Get a copy" +msgstr "Obțineți o copie" + +#: bookwyrm/templates/book/file_links/links.html:47 +msgid "No links available" +msgstr "Nicio legătură disponibilă" + +#: bookwyrm/templates/book/file_links/verification_modal.html:5 +msgid "Leaving BookWyrm" +msgstr "Părăsind BookWyrm" + +#: bookwyrm/templates/book/file_links/verification_modal.html:11 +#, python-format +msgid "This link is taking you to: %(link_url)s.
    Is that where you'd like to go?" +msgstr "Această legătură vă duce la: %(link_url)s.
    Doriți să continuați?" + +#: bookwyrm/templates/book/file_links/verification_modal.html:26 +#: bookwyrm/templates/setup/config.html:139 +msgid "Continue" +msgstr "Continuați" + +#: bookwyrm/templates/book/publisher_info.html:23 +#, python-format +msgid "%(format)s, %(pages)s pages" +msgstr "%(format)s, %(pages)s de pagini" + +#: bookwyrm/templates/book/publisher_info.html:25 +#, python-format +msgid "%(pages)s pages" +msgstr "%(pages)s pagini" + +#: bookwyrm/templates/book/publisher_info.html:38 +#, python-format +msgid "%(languages)s language" +msgstr "%(languages)s Limbă" + +#: bookwyrm/templates/book/publisher_info.html:65 +#, python-format +msgid "Published %(date)s by %(publisher)s." +msgstr "Publicat în %(date)s de %(publisher)s." + +#: bookwyrm/templates/book/publisher_info.html:67 +#, python-format +msgid "Published %(date)s" +msgstr "Publicat în %(date)s" + +#: bookwyrm/templates/book/publisher_info.html:69 +#, python-format +msgid "Published by %(publisher)s." +msgstr "Publicat de %(publisher)s." + +#: bookwyrm/templates/book/rating.html:13 +msgid "rated it" +msgstr "a evaluat-o" + +#: bookwyrm/templates/book/sync_modal.html:15 +#, python-format +msgid "Loading data will connect to %(source_name)s and check for any metadata about this book which aren't present here. Existing metadata will not be overwritten." +msgstr "Încărcatul de date se va conecta la %(source_name)s și verifica orice metadate despre această carte care nu sunt prezente aici. Metadatele existente nu vor fi suprascrise." + +#: bookwyrm/templates/components/tooltip.html:3 +msgid "Help" +msgstr "Ajutor" + +#: bookwyrm/templates/compose.html:5 bookwyrm/templates/compose.html:8 +msgid "Edit status" +msgstr "Editați stare" + +#: bookwyrm/templates/confirm_email/confirm_email.html:4 +msgid "Confirm email" +msgstr "Confirmați emailul" + +#: bookwyrm/templates/confirm_email/confirm_email.html:7 +msgid "Confirm your email address" +msgstr "Confirmați adresa dvs. de email" + +#: bookwyrm/templates/confirm_email/confirm_email.html:13 +msgid "A confirmation code has been sent to the email address you used to register your account." +msgstr "Un cod de confirmare a fost trimis la adresa pe care ați utilizat-o pentru a înregistra contul dvs." + +#: bookwyrm/templates/confirm_email/confirm_email.html:15 +msgid "Sorry! We couldn't find that code." +msgstr "Ne pare rău! Nu am putut găsi acel cod." + +#: bookwyrm/templates/confirm_email/confirm_email.html:19 +#: bookwyrm/templates/settings/users/user_info.html:85 +msgid "Confirmation code:" +msgstr "Cod de confirmare:" + +#: bookwyrm/templates/confirm_email/confirm_email.html:25 +#: bookwyrm/templates/landing/layout.html:81 +#: bookwyrm/templates/settings/dashboard/dashboard.html:116 +#: bookwyrm/templates/snippets/report_modal.html:53 +msgid "Submit" +msgstr "Trimiteți" + +#: bookwyrm/templates/confirm_email/confirm_email.html:32 +msgid "Can't find your code?" +msgstr "Nu puteți găsi codul?" + +#: bookwyrm/templates/confirm_email/resend_form.html:4 +msgid "Resend confirmation link" +msgstr "Retrimiteți legătura de confirmare" + +#: bookwyrm/templates/confirm_email/resend_form.html:11 +#: bookwyrm/templates/landing/layout.html:68 +#: bookwyrm/templates/landing/password_reset_request.html:18 +#: bookwyrm/templates/preferences/edit_user.html:53 +#: bookwyrm/templates/snippets/register_form.html:27 +msgid "Email address:" +msgstr "Adresa de email:" + +#: bookwyrm/templates/confirm_email/resend_form.html:17 +msgid "Resend link" +msgstr "Retrimiteți legătura" + +#: bookwyrm/templates/directory/community_filter.html:5 +msgid "Community" +msgstr "Comunitate" + +#: bookwyrm/templates/directory/community_filter.html:8 +#: bookwyrm/templates/settings/users/user_admin.html:25 +msgid "Local users" +msgstr "Utilizatori locali" + +#: bookwyrm/templates/directory/community_filter.html:12 +#: bookwyrm/templates/settings/users/user_admin.html:29 +msgid "Federated community" +msgstr "Comunitate federată" + +#: bookwyrm/templates/directory/directory.html:4 +#: bookwyrm/templates/directory/directory.html:9 +#: bookwyrm/templates/layout.html:109 +msgid "Directory" +msgstr "Dosar" + +#: bookwyrm/templates/directory/directory.html:17 +msgid "Make your profile discoverable to other BookWyrm users." +msgstr "Expuneți-vă profilul altor utilizatori BookWyrm." + +#: bookwyrm/templates/directory/directory.html:21 +msgid "Join Directory" +msgstr "Alăturați-vă dosarului" + +#: bookwyrm/templates/directory/directory.html:24 +#, python-format +msgid "You can opt-out at any time in your profile settings." +msgstr "Puteți să vă dezabonați în orice moment în setările de profil ale dvs." + +#: bookwyrm/templates/directory/directory.html:29 +#: bookwyrm/templates/directory/directory.html:31 +#: bookwyrm/templates/feed/goal_card.html:17 +#: bookwyrm/templates/feed/summary_card.html:12 +#: bookwyrm/templates/feed/summary_card.html:14 +#: bookwyrm/templates/snippets/announcement.html:31 +msgid "Dismiss message" +msgstr "Renunțați la mesaj" + +#: bookwyrm/templates/directory/sort_filter.html:5 +msgid "Order by" +msgstr "Sortați după" + +#: bookwyrm/templates/directory/sort_filter.html:9 +msgid "Recently active" +msgstr "Activitate recentă" + +#: bookwyrm/templates/directory/sort_filter.html:10 +msgid "Suggested" +msgstr "Sugerate" + +#: bookwyrm/templates/directory/user_card.html:17 +#: bookwyrm/templates/directory/user_card.html:18 +#: bookwyrm/templates/ostatus/remote_follow.html:21 +#: bookwyrm/templates/ostatus/remote_follow.html:22 +#: bookwyrm/templates/ostatus/subscribe.html:41 +#: bookwyrm/templates/ostatus/subscribe.html:42 +#: bookwyrm/templates/ostatus/success.html:17 +#: bookwyrm/templates/ostatus/success.html:18 +#: bookwyrm/templates/user/user_preview.html:16 +#: bookwyrm/templates/user/user_preview.html:17 +msgid "Locked account" +msgstr "Cont blocat" + +#: bookwyrm/templates/directory/user_card.html:40 +msgid "follower you follow" +msgid_plural "followers you follow" +msgstr[0] "urmăritor pe care îl urmați" +msgstr[1] "" +msgstr[2] "urmăritori pe care îi urmați" + +#: bookwyrm/templates/directory/user_card.html:47 +msgid "book on your shelves" +msgid_plural "books on your shelves" +msgstr[0] "carte pe rafturile dvs." +msgstr[1] "" +msgstr[2] "cărți pe rafturile dvs." + +#: bookwyrm/templates/directory/user_card.html:55 +msgid "posts" +msgstr "publicații" + +#: bookwyrm/templates/directory/user_card.html:61 +msgid "last active" +msgstr "ultima activitate" + +#: bookwyrm/templates/directory/user_type_filter.html:5 +msgid "User type" +msgstr "Tip de utilizator" + +#: bookwyrm/templates/directory/user_type_filter.html:8 +msgid "BookWyrm users" +msgstr "Utilizatori BookWyrm" + +#: bookwyrm/templates/directory/user_type_filter.html:12 +msgid "All known users" +msgstr "Toți utilizatorii cunoscuți" + +#: bookwyrm/templates/discover/card-header.html:8 +#, python-format +msgid "%(username)s wants to read %(book_title)s" +msgstr "%(username)s vrea să citească %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:13 +#, python-format +msgid "%(username)s finished reading %(book_title)s" +msgstr "%(username)s a terminat de citit %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:18 +#, python-format +msgid "%(username)s started reading %(book_title)s" +msgstr "%(username)s a început să citească %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:23 +#, python-format +msgid "%(username)s rated %(book_title)s" +msgstr "%(username)s a evaluat %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:27 +#, python-format +msgid "%(username)s reviewed %(book_title)s" +msgstr "%(username)s a revizuit %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:31 +#, python-format +msgid "%(username)s commented on %(book_title)s" +msgstr "%(username)s a comentat despre %(book_title)s" + +#: bookwyrm/templates/discover/card-header.html:35 +#, python-format +msgid "%(username)s quoted %(book_title)s" +msgstr "%(username)s a citat %(book_title)s" + +#: bookwyrm/templates/discover/discover.html:4 +#: bookwyrm/templates/discover/discover.html:10 +#: bookwyrm/templates/layout.html:86 +msgid "Discover" +msgstr "Descoperiți" + +#: bookwyrm/templates/discover/discover.html:12 +#, python-format +msgid "See what's new in the local %(site_name)s community" +msgstr "Vedeți ce este nou în comunitatea locală %(site_name)s" + +#: bookwyrm/templates/discover/large-book.html:52 +#: bookwyrm/templates/discover/small-book.html:36 +msgid "View status" +msgstr "Vizualizați stare" + +#: bookwyrm/templates/email/confirm/html_content.html:6 +#: bookwyrm/templates/email/confirm/text_content.html:4 +#, python-format +msgid "One last step before you join %(site_name)s! Please confirm your email address by clicking the link below:" +msgstr "Un ultim pas înainte de a vă alătura %(site_name)s! Vă rugăm confirmați adresa dvs. de email dând clic pe legătura de dedesubt:" + +#: bookwyrm/templates/email/confirm/html_content.html:11 +msgid "Confirm Email" +msgstr "Confirmați email" + +#: bookwyrm/templates/email/confirm/html_content.html:15 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "Sau introduceți codul „%(confirmation_code)s” la autentificare." + +#: bookwyrm/templates/email/confirm/subject.html:2 +msgid "Please confirm your email" +msgstr "Vă rugam confirmați adresa dvs." + +#: bookwyrm/templates/email/confirm/text_content.html:10 +#, python-format +msgid "Or enter the code \"%(confirmation_code)s\" at login." +msgstr "Sau introduceți codul „%(confirmation_code)s” la autentificare." + +#: bookwyrm/templates/email/html_layout.html:15 +#: bookwyrm/templates/email/text_layout.html:2 +msgid "Hi there," +msgstr "Salutare," + +#: bookwyrm/templates/email/html_layout.html:21 +#, python-format +msgid "BookWyrm hosted on %(site_name)s" +msgstr "BookWyrm este găzduit de %(site_name)s" + +#: bookwyrm/templates/email/html_layout.html:23 +msgid "Email preference" +msgstr "Preferințe email" + +#: bookwyrm/templates/email/invite/html_content.html:6 +#: bookwyrm/templates/email/invite/subject.html:2 +#, python-format +msgid "You're invited to join %(site_name)s!" +msgstr "Sunteți invitat să vă alăturați %(site_name)s!" + +#: bookwyrm/templates/email/invite/html_content.html:9 +msgid "Join Now" +msgstr "Alăturați-vă acum" + +#: bookwyrm/templates/email/invite/html_content.html:15 +#, python-format +msgid "Learn more about %(site_name)s." +msgstr "Aflați mai multe despre %(site_name)s." + +#: bookwyrm/templates/email/invite/text_content.html:4 +#, python-format +msgid "You're invited to join %(site_name)s! Click the link below to create an account." +msgstr "Sunteți invitat să vă alăturați %(site_name)s! Clic pe legătura de dedesubt pentru a crea un cont nou." + +#: bookwyrm/templates/email/invite/text_content.html:8 +#, python-format +msgid "Learn more about %(site_name)s:" +msgstr "Aflați mai multe despre %(site_name)s:" + +#: bookwyrm/templates/email/moderation_report/html_content.html:6 +#: bookwyrm/templates/email/moderation_report/text_content.html:5 +#, python-format +msgid "@%(reporter)s has flagged behavior by @%(reportee)s for moderation. " +msgstr "@%(reporter)s a marcat comportamentul (lui) %(reportee)s pentru moderare. " + +#: bookwyrm/templates/email/moderation_report/html_content.html:9 +#: bookwyrm/templates/email/moderation_report/text_content.html:7 +msgid "View report" +msgstr "Vizualizați raportul" + +#: bookwyrm/templates/email/moderation_report/subject.html:2 +#, python-format +msgid "New report for %(site_name)s" +msgstr "Raport nou pentru %(site_name)s" + +#: bookwyrm/templates/email/password_reset/html_content.html:6 +#: bookwyrm/templates/email/password_reset/text_content.html:4 +#, python-format +msgid "You requested to reset your %(site_name)s password. Click the link below to set a new password and log in to your account." +msgstr "Ați solicitat reinițializarea parolei dvs. pentru %(site_name)s. Clic pe legătura de dedesubt pentru a alege o nouă parolă și a vă autentifica la contul dvs." + +#: bookwyrm/templates/email/password_reset/html_content.html:9 +#: bookwyrm/templates/landing/password_reset.html:4 +#: bookwyrm/templates/landing/password_reset.html:10 +#: bookwyrm/templates/landing/password_reset_request.html:4 +#: bookwyrm/templates/landing/password_reset_request.html:10 +msgid "Reset Password" +msgstr "Reinițializați parola" + +#: bookwyrm/templates/email/password_reset/html_content.html:13 +#: bookwyrm/templates/email/password_reset/text_content.html:8 +msgid "If you didn't request to reset your password, you can ignore this email." +msgstr "Dacă nu ați solicitat reinițializarea parolei dvs., puteți ignora acest email." + +#: bookwyrm/templates/email/password_reset/subject.html:2 +#, python-format +msgid "Reset your %(site_name)s password" +msgstr "Reinițializați parola dvs. pentru %(site_name)s" + +#: bookwyrm/templates/embed-layout.html:21 bookwyrm/templates/layout.html:40 +#: bookwyrm/templates/setup/layout.html:12 +#, python-format +msgid "%(site_name)s home page" +msgstr "Pagina principală a %(site_name)s" + +#: bookwyrm/templates/embed-layout.html:40 bookwyrm/templates/layout.html:242 +msgid "Contact site admin" +msgstr "Contactați adminul site-ului" + +#: bookwyrm/templates/embed-layout.html:46 +msgid "Join Bookwyrm" +msgstr "Alăturați-vă BookWyrm" + +#: bookwyrm/templates/feed/direct_messages.html:8 +#, python-format +msgid "Direct Messages with %(username)s" +msgstr "Mesajele directe cu %(username)s" + +#: bookwyrm/templates/feed/direct_messages.html:10 +#: bookwyrm/templates/layout.html:119 +msgid "Direct Messages" +msgstr "Mesaje directe" + +#: bookwyrm/templates/feed/direct_messages.html:13 +msgid "All messages" +msgstr "Toate mesajele" + +#: bookwyrm/templates/feed/direct_messages.html:22 +msgid "You have no messages right now." +msgstr "Nu aveți niciun mesaj în acest moment." + +#: bookwyrm/templates/feed/feed.html:54 +msgid "There aren't any activities right now! Try following a user to get started" +msgstr "Nu există nicio activitate momentan! Încercați să urmăriți un utilizator pentru a începe" + +#: bookwyrm/templates/feed/feed.html:55 +msgid "Alternatively, you can try enabling more status types" +msgstr "Alternativ, puteți încerca să activați mai multe tipuri de statusuri" + +#: bookwyrm/templates/feed/goal_card.html:6 +#: bookwyrm/templates/feed/layout.html:15 +#: bookwyrm/templates/user/goal_form.html:6 +#, python-format +msgid "%(year)s Reading Goal" +msgstr "Obiectivul de lectură din %(year)s" + +#: bookwyrm/templates/feed/goal_card.html:18 +#, python-format +msgid "You can set or change your reading goal any time from your profile page" +msgstr "Puteți alege sau schimba obiectul dvs. de lectură oricând folosind pagina dvs. de profil" + +#: bookwyrm/templates/feed/layout.html:5 +msgid "Updates" +msgstr "Actualizări" + +#: bookwyrm/templates/feed/suggested_books.html:6 +#: bookwyrm/templates/layout.html:114 +msgid "Your Books" +msgstr "Cărțile voastre" + +#: bookwyrm/templates/feed/suggested_books.html:8 +msgid "There are no books here right now! Try searching for a book to get started" +msgstr "Nu există nicio carte momentan! Încercați să căutați o carte pentru a începe" + +#: bookwyrm/templates/feed/suggested_users.html:5 +#: bookwyrm/templates/get_started/users.html:6 +msgid "Who to follow" +msgstr "Pe cine să urmați" + +#: bookwyrm/templates/feed/suggested_users.html:9 +msgid "Don't show suggested users" +msgstr "Nu afișați utilizatorii sugerați" + +#: bookwyrm/templates/feed/suggested_users.html:14 +msgid "View directory" +msgstr "Vizualizați dosarul" + +#: bookwyrm/templates/feed/summary_card.html:21 +msgid "The end of the year is the best moment to take stock of all the books read during the last 12 months. How many pages have you read? Which book is your best-rated of the year? We compiled these stats, and more!" +msgstr "Sfârșitul anului este cel mai bun moment pentru a sumariza toate cărțile citite în ultimele 12 luni. Câte pagini ați citit? Ce carte a anului ați apreciat cel mai mult? Am compilat aceste date statistice și încă mai multe!" + +#: bookwyrm/templates/feed/summary_card.html:26 +#, python-format +msgid "Discover your stats for %(year)s!" +msgstr "Descoperiți date dvs. statistice pentru %(year)s!" + +#: bookwyrm/templates/get_started/book_preview.html:6 +#, python-format +msgid "Have you read %(book_title)s?" +msgstr "Ați citit %(book_title)s?" + +#: bookwyrm/templates/get_started/book_preview.html:7 +msgid "Add to your books" +msgstr "Adăugați la cărțile dvs." + +#: bookwyrm/templates/get_started/book_preview.html:10 +#: bookwyrm/templates/shelf/shelf.html:86 bookwyrm/templates/user/user.html:33 +#: bookwyrm/templatetags/shelf_tags.py:46 +msgid "To Read" +msgstr "De citit" + +#: bookwyrm/templates/get_started/book_preview.html:11 +#: bookwyrm/templates/shelf/shelf.html:87 bookwyrm/templates/user/user.html:34 +#: bookwyrm/templatetags/shelf_tags.py:48 +msgid "Currently Reading" +msgstr "Lectură în curs" + +#: bookwyrm/templates/get_started/book_preview.html:12 +#: bookwyrm/templates/shelf/shelf.html:88 +#: bookwyrm/templates/snippets/shelf_selector.html:47 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:24 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:12 +#: bookwyrm/templates/user/user.html:35 bookwyrm/templatetags/shelf_tags.py:50 +msgid "Read" +msgstr "Citită" + +#: bookwyrm/templates/get_started/books.html:6 +msgid "What are you reading?" +msgstr "Ce citiți?" + +#: bookwyrm/templates/get_started/books.html:9 +#: bookwyrm/templates/layout.html:48 bookwyrm/templates/lists/list.html:213 +msgid "Search for a book" +msgstr "Căutați o carte" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "No books found for \"%(query)s\"" +msgstr "Nicio carte găsită pentru „%(query)s”" + +#: bookwyrm/templates/get_started/books.html:11 +#, python-format +msgid "You can add books when you start using %(site_name)s." +msgstr "Puteți adăuga cărți când începeți să folosiți %(site_name)s." + +#: bookwyrm/templates/get_started/books.html:16 +#: bookwyrm/templates/get_started/books.html:17 +#: bookwyrm/templates/get_started/users.html:18 +#: bookwyrm/templates/get_started/users.html:19 +#: bookwyrm/templates/groups/members.html:15 +#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:54 +#: bookwyrm/templates/layout.html:55 bookwyrm/templates/lists/list.html:217 +#: bookwyrm/templates/search/layout.html:4 +#: bookwyrm/templates/search/layout.html:9 +msgid "Search" +msgstr "Căutați" + +#: bookwyrm/templates/get_started/books.html:27 +msgid "Suggested Books" +msgstr "Cărți sugerate" + +#: bookwyrm/templates/get_started/books.html:46 +#, python-format +msgid "Popular on %(site_name)s" +msgstr "Populare pe %(site_name)s" + +#: bookwyrm/templates/get_started/books.html:58 +#: bookwyrm/templates/lists/list.html:230 +msgid "No books found" +msgstr "Nicio carte găsită" + +#: bookwyrm/templates/get_started/books.html:63 +#: bookwyrm/templates/get_started/profile.html:64 +msgid "Save & continue" +msgstr "Salvați & continuați" + +#: bookwyrm/templates/get_started/layout.html:5 +#: bookwyrm/templates/landing/layout.html:5 +msgid "Welcome" +msgstr "Bine ați venit" + +#: bookwyrm/templates/get_started/layout.html:22 +msgid "These are some first steps to get you started." +msgstr "Acestea sunt câțiva primi pași pentru a demara." + +#: bookwyrm/templates/get_started/layout.html:36 +#: bookwyrm/templates/get_started/profile.html:6 +msgid "Create your profile" +msgstr "Creați un profil" + +#: bookwyrm/templates/get_started/layout.html:40 +msgid "Add books" +msgstr "Adăugați cărți" + +#: bookwyrm/templates/get_started/layout.html:44 +msgid "Find friends" +msgstr "Căutați prieteni" + +#: bookwyrm/templates/get_started/layout.html:50 +msgid "Skip this step" +msgstr "Săriți acest pas" + +#: bookwyrm/templates/get_started/layout.html:54 +msgid "Finish" +msgstr "Terminați" + +#: bookwyrm/templates/get_started/profile.html:15 +#: bookwyrm/templates/preferences/edit_user.html:41 +msgid "Display name:" +msgstr "Nume afișat:" + +#: bookwyrm/templates/get_started/profile.html:29 +#: bookwyrm/templates/preferences/edit_user.html:47 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:49 +msgid "Summary:" +msgstr "Rezumat:" + +#: bookwyrm/templates/get_started/profile.html:34 +msgid "A little bit about you" +msgstr "Puțin despre dvs." + +#: bookwyrm/templates/get_started/profile.html:43 +#: bookwyrm/templates/preferences/edit_user.html:27 +msgid "Avatar:" +msgstr "Avatar:" + +#: bookwyrm/templates/get_started/profile.html:52 +msgid "Manually approve followers:" +msgstr "Aprovați manual urmăritorii:" + +#: bookwyrm/templates/get_started/profile.html:58 +msgid "Show this account in suggested users:" +msgstr "Afișați acest cont ca utilizator sugerat:" + +#: bookwyrm/templates/get_started/profile.html:62 +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "Contul dumneavoastră se va afișa în director și poate fi recomandat altor utilizatori BookWyrm." + +#: bookwyrm/templates/get_started/users.html:11 +msgid "Search for a user" +msgstr "Căutați un utilizator" + +#: bookwyrm/templates/get_started/users.html:13 +#, python-format +msgid "No users found for \"%(query)s\"" +msgstr "Niciun utilizator găsit pentru „%(query)s”" + +#: bookwyrm/templates/groups/create_form.html:5 +#: bookwyrm/templates/user/groups.html:17 +msgid "Create group" +msgstr "Creați grup" + +#: bookwyrm/templates/groups/created_text.html:4 +#, python-format +msgid "Managed by %(username)s" +msgstr "Gestionat de %(username)s" + +#: bookwyrm/templates/groups/delete_group_modal.html:4 +msgid "Delete this group?" +msgstr "Ștergeți acest grup?" + +#: bookwyrm/templates/groups/delete_group_modal.html:7 +#: bookwyrm/templates/lists/delete_list_modal.html:7 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12 +msgid "This action cannot be un-done" +msgstr "Această acțiune nu poate fi revocată" + +#: bookwyrm/templates/groups/delete_group_modal.html:17 +#: bookwyrm/templates/lists/delete_list_modal.html:19 +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:29 +#: bookwyrm/templates/settings/announcements/announcement.html:23 +#: bookwyrm/templates/settings/announcements/announcements.html:56 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:49 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:36 +#: bookwyrm/templates/snippets/follow_request_buttons.html:12 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:14 +msgid "Delete" +msgstr "Ștergeți" + +#: bookwyrm/templates/groups/edit_form.html:5 +msgid "Edit Group" +msgstr "Editați grup" + +#: bookwyrm/templates/groups/form.html:8 +msgid "Group Name:" +msgstr "Nume grup:" + +#: bookwyrm/templates/groups/form.html:12 +msgid "Group Description:" +msgstr "Descrierea grupului:" + +#: bookwyrm/templates/groups/form.html:21 +msgid "Delete group" +msgstr "Ștergeți grupul" + +#: bookwyrm/templates/groups/group.html:21 +msgid "Members of this group can create group-curated lists." +msgstr "Membrii acestui grup pot crea liste administrate de grup." + +#: bookwyrm/templates/groups/group.html:26 +#: bookwyrm/templates/lists/create_form.html:5 +#: bookwyrm/templates/lists/lists.html:20 +msgid "Create List" +msgstr "Creați listă" + +#: bookwyrm/templates/groups/group.html:39 +msgid "This group has no lists" +msgstr "Acest grup nu are nicio listă" + +#: bookwyrm/templates/groups/layout.html:17 +msgid "Edit group" +msgstr "Editați grupul" + +#: bookwyrm/templates/groups/members.html:11 +msgid "Search to add a user" +msgstr "Căutați pentru a adăuga un utilizator" + +#: bookwyrm/templates/groups/members.html:32 +msgid "Leave group" +msgstr "Părăsiți grupul" + +#: bookwyrm/templates/groups/members.html:54 +#: bookwyrm/templates/groups/suggested_users.html:35 +#: bookwyrm/templates/snippets/suggested_users.html:31 +#: bookwyrm/templates/user/user_preview.html:33 +#: bookwyrm/templates/user/user_preview.html:41 +msgid "Follows you" +msgstr "Vă urmărește" + +#: bookwyrm/templates/groups/suggested_users.html:7 +msgid "Add new members!" +msgstr "Adăugați noi membrii!" + +#: bookwyrm/templates/groups/suggested_users.html:20 +#: bookwyrm/templates/snippets/suggested_users.html:16 +#, python-format +msgid "%(mutuals)s follower you follow" +msgid_plural "%(mutuals)s followers you follow" +msgstr[0] "%(mutuals)s urmăritor pe care îl urmați" +msgstr[1] "" +msgstr[2] "%(mutuals)s urmăritori pe care îi urmați" + +#: bookwyrm/templates/groups/suggested_users.html:27 +#: bookwyrm/templates/snippets/suggested_users.html:23 +#, python-format +msgid "%(shared_books)s book on your shelves" +msgid_plural "%(shared_books)s books on your shelves" +msgstr[0] "%(shared_books)s carte partajată pe rafturile dvs." +msgstr[1] "" +msgstr[2] "%(shared_books)s cărți partajate pe rafturile dvs." + +#: bookwyrm/templates/groups/suggested_users.html:43 +#, python-format +msgid "No potential members found for \"%(user_query)s\"" +msgstr "Niciun membru potențial găsit pentru „%(user_query)s”" + +#: bookwyrm/templates/groups/user_groups.html:15 +msgid "Manager" +msgstr "Administrator" + +#: bookwyrm/templates/import/import.html:5 +#: bookwyrm/templates/import/import.html:9 +#: bookwyrm/templates/shelf/shelf.html:64 +msgid "Import Books" +msgstr "Importați cărți" + +#: bookwyrm/templates/import/import.html:18 +msgid "Data source:" +msgstr "Sursa de date:" + +#: bookwyrm/templates/import/import.html:40 +msgid "Data file:" +msgstr "Fișierul de date:" + +#: bookwyrm/templates/import/import.html:48 +msgid "Include reviews" +msgstr "Includeți recenzii" + +#: bookwyrm/templates/import/import.html:53 +msgid "Privacy setting for imported reviews:" +msgstr "Setare de confidențialitate pentru recenziile importate:" + +#: bookwyrm/templates/import/import.html:59 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:76 +msgid "Import" +msgstr "Importați" + +#: bookwyrm/templates/import/import.html:64 +msgid "Recent Imports" +msgstr "Importuri recente" + +#: bookwyrm/templates/import/import.html:66 +msgid "No recent imports" +msgstr "Niciun import recent" + +#: bookwyrm/templates/import/import_status.html:6 +#: bookwyrm/templates/import/import_status.html:15 +#: bookwyrm/templates/import/import_status.html:29 +msgid "Import Status" +msgstr "Importați stare" + +#: bookwyrm/templates/import/import_status.html:13 +#: bookwyrm/templates/import/import_status.html:27 +msgid "Retry Status" +msgstr "Reîncercați stare" + +#: bookwyrm/templates/import/import_status.html:22 +msgid "Imports" +msgstr "Importuri" + +#: bookwyrm/templates/import/import_status.html:39 +msgid "Import started:" +msgstr "Import început:" + +#: bookwyrm/templates/import/import_status.html:48 +msgid "In progress" +msgstr "În progres" + +#: bookwyrm/templates/import/import_status.html:50 +msgid "Refresh" +msgstr "Reîmprospătați" + +#: bookwyrm/templates/import/import_status.html:71 +#, python-format +msgid "%(display_counter)s item needs manual approval." +msgid_plural "%(display_counter)s items need manual approval." +msgstr[0] "%(display_counter)s element necesită aprobare manuală." +msgstr[1] "" +msgstr[2] "%(display_counter)s elemente necesită aprobare manuală." + +#: bookwyrm/templates/import/import_status.html:76 +#: bookwyrm/templates/import/manual_review.html:8 +msgid "Review items" +msgstr "Revizuiți elementele" + +#: bookwyrm/templates/import/import_status.html:82 +#, python-format +msgid "%(display_counter)s item failed to import." +msgid_plural "%(display_counter)s items failed to import." +msgstr[0] "%(display_counter)s import de elemente eșuat." +msgstr[1] "" +msgstr[2] "%(display_counter)s importuri de elemente eșuate." + +#: bookwyrm/templates/import/import_status.html:88 +msgid "View and troubleshoot failed items" +msgstr "Vizualizați și depanați elementele eșuate" + +#: bookwyrm/templates/import/import_status.html:100 +msgid "Row" +msgstr "Linie" + +#: bookwyrm/templates/import/import_status.html:103 +#: bookwyrm/templates/shelf/shelf.html:147 +#: bookwyrm/templates/shelf/shelf.html:169 +msgid "Title" +msgstr "Titlu" + +#: bookwyrm/templates/import/import_status.html:106 +msgid "ISBN" +msgstr "ISBN" + +#: bookwyrm/templates/import/import_status.html:110 +msgid "Openlibrary key" +msgstr "Cheie OpenLibrary" + +#: bookwyrm/templates/import/import_status.html:114 +#: bookwyrm/templates/shelf/shelf.html:148 +#: bookwyrm/templates/shelf/shelf.html:172 +msgid "Author" +msgstr "Autor" + +#: bookwyrm/templates/import/import_status.html:117 +msgid "Shelf" +msgstr "Raft" + +#: bookwyrm/templates/import/import_status.html:120 +#: bookwyrm/templates/import/manual_review.html:13 +#: bookwyrm/templates/snippets/create_status.html:16 +msgid "Review" +msgstr "Recenzie" + +#: bookwyrm/templates/import/import_status.html:124 +#: bookwyrm/templates/settings/link_domains/link_table.html:9 +msgid "Book" +msgstr "Carte" + +#: bookwyrm/templates/import/import_status.html:135 +msgid "Import preview unavailable." +msgstr "Importul previzualizării indisponibil." + +#: bookwyrm/templates/import/import_status.html:172 +msgid "View imported review" +msgstr "Vizionați recenzia importată" + +#: bookwyrm/templates/import/import_status.html:186 +msgid "Imported" +msgstr "Importat" + +#: bookwyrm/templates/import/import_status.html:192 +msgid "Needs manual review" +msgstr "Necesită recenzie manuală" + +#: bookwyrm/templates/import/import_status.html:205 +msgid "Retry" +msgstr "Încercați din nou" + +#: bookwyrm/templates/import/import_status.html:223 +msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format." +msgstr "Acest import este un format vechi care nu mai este suportat. Dacă doriți să reglați lipsurile din import, clic pe butonul de dedesubt pentru a actualiza formatul de importare." + +#: bookwyrm/templates/import/import_status.html:225 +msgid "Update import" +msgstr "Actualizare import" + +#: bookwyrm/templates/import/manual_review.html:5 +#: bookwyrm/templates/import/troubleshoot.html:4 +msgid "Import Troubleshooting" +msgstr "Depanare import" + +#: bookwyrm/templates/import/manual_review.html:21 +msgid "Approving a suggestion will permanently add the suggested book to your shelves and associate your reading dates, reviews, and ratings with that book." +msgstr "Aprovatul unei sugestii va adăuga permanent cartea sugerată la rafturile dvs. și asocia datele dvs. de lectură, recenziile și ratingurile acelei cărți." + +#: bookwyrm/templates/import/manual_review.html:58 +#: bookwyrm/templates/lists/curate.html:71 +#: bookwyrm/templates/settings/link_domains/link_domains.html:76 +msgid "Approve" +msgstr "Aprovați" + +#: bookwyrm/templates/import/manual_review.html:66 +msgid "Reject" +msgstr "Respingeți" + +#: bookwyrm/templates/import/tooltip.html:6 +msgid "You can download your Goodreads data from the Import/Export page of your Goodreads account." +msgstr "Puteți descărca datele dvs. GoodReads de pe pagina Import/Export a contului dvs. GoodReads." + +#: bookwyrm/templates/import/troubleshoot.html:7 +msgid "Failed items" +msgstr "Elemente a căror importare a eșuat" + +#: bookwyrm/templates/import/troubleshoot.html:12 +msgid "Troubleshooting" +msgstr "Depanare" + +#: bookwyrm/templates/import/troubleshoot.html:20 +msgid "Re-trying an import can fix missing items in cases such as:" +msgstr "Reîncercarea unui import poate regla elemente lipsă în cazuri precum:" + +#: bookwyrm/templates/import/troubleshoot.html:23 +msgid "The book has been added to the instance since this import" +msgstr "Cartea a fost adăugată instanței de când importul acesta" + +#: bookwyrm/templates/import/troubleshoot.html:24 +msgid "A transient error or timeout caused the external data source to be unavailable." +msgstr "O problemă temporară sau o depășire a timpului limită a provocat ca sursa de date externă să fie indisponibilă." + +#: bookwyrm/templates/import/troubleshoot.html:25 +msgid "BookWyrm has been updated since this import with a bug fix" +msgstr "BookWyrm a fost actualizat de la acest import cu reglări de buguri" + +#: bookwyrm/templates/import/troubleshoot.html:28 +msgid "Contact your admin or open an issue if you are seeing unexpected failed items." +msgstr "Contactați-vă adminul sau semnalați o problemă dacă vedeți elemente a căror importare a eșuat neașteptat." + +#: bookwyrm/templates/landing/invite.html:4 +#: bookwyrm/templates/landing/invite.html:8 +#: bookwyrm/templates/landing/login.html:48 +msgid "Create an Account" +msgstr "Creați un cont" + +#: bookwyrm/templates/landing/invite.html:21 +msgid "Permission Denied" +msgstr "Permisiune refuzată" + +#: bookwyrm/templates/landing/invite.html:22 +msgid "Sorry! This invite code is no longer valid." +msgstr "Ne pare rău! Acest cod de invitație nu mai este valabil." + +#: bookwyrm/templates/landing/landing.html:9 +msgid "Recent Books" +msgstr "Cărți recente" + +#: bookwyrm/templates/landing/layout.html:17 +msgid "Decentralized" +msgstr "Descentralizat" + +#: bookwyrm/templates/landing/layout.html:23 +msgid "Friendly" +msgstr "Prietenos" + +#: bookwyrm/templates/landing/layout.html:29 +msgid "Anti-Corporate" +msgstr "Anti-comercial" + +#: bookwyrm/templates/landing/layout.html:46 +#, python-format +msgid "Join %(name)s" +msgstr "Alăturați-vă %(name)s" + +#: bookwyrm/templates/landing/layout.html:48 +msgid "Request an Invitation" +msgstr "Solicitați o invitație" + +#: bookwyrm/templates/landing/layout.html:50 +#, python-format +msgid "%(name)s registration is closed" +msgstr "Înscrierea la %(name)s este închisă" + +#: bookwyrm/templates/landing/layout.html:61 +msgid "Thank you! Your request has been received." +msgstr "Mulțumim! Cererea dvs. a fost primită." + +#: bookwyrm/templates/landing/layout.html:90 +msgid "Your Account" +msgstr "Contul dvs." + +#: bookwyrm/templates/landing/login.html:4 +msgid "Login" +msgstr "Autentificare" + +#: bookwyrm/templates/landing/login.html:7 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/ostatus/error.html:37 +msgid "Log in" +msgstr "Autentificați-vă" + +#: bookwyrm/templates/landing/login.html:15 +msgid "Success! Email address confirmed." +msgstr "Succes! Adresa email a fost confirmată." + +#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:178 +#: bookwyrm/templates/ostatus/error.html:28 +#: bookwyrm/templates/snippets/register_form.html:4 +msgid "Username:" +msgstr "Nume de utilizator:" + +#: bookwyrm/templates/landing/login.html:27 +#: bookwyrm/templates/landing/password_reset.html:26 +#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/snippets/register_form.html:45 +msgid "Password:" +msgstr "Parolă:" + +#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:184 +#: bookwyrm/templates/ostatus/error.html:34 +msgid "Forgot your password?" +msgstr "Parolă uitată?" + +#: bookwyrm/templates/landing/login.html:61 +msgid "More about this site" +msgstr "Mai multe despre acest site" + +#: bookwyrm/templates/landing/password_reset.html:34 +#: bookwyrm/templates/preferences/change_password.html:18 +#: bookwyrm/templates/preferences/delete_user.html:20 +msgid "Confirm password:" +msgstr "Confirmați parola:" + +#: bookwyrm/templates/landing/password_reset_request.html:14 +msgid "A link to reset your password will be sent to your email address" +msgstr "O legătură pentru reinițializarea parolei dvs. va fi trimisă la adresa dvs." + +#: bookwyrm/templates/landing/password_reset_request.html:28 +msgid "Reset password" +msgstr "Reinițializați parola" + +#: bookwyrm/templates/layout.html:13 +#, python-format +msgid "%(site_name)s search" +msgstr "Căutare %(site_name)s" + +#: bookwyrm/templates/layout.html:46 +msgid "Search for a book, user, or list" +msgstr "Căutați o carte, un utilizator sau o listă" + +#: bookwyrm/templates/layout.html:61 bookwyrm/templates/layout.html:62 +msgid "Scan Barcode" +msgstr "Scanați codul de bare" + +#: bookwyrm/templates/layout.html:72 +msgid "Main navigation menu" +msgstr "Meniul principal de navigație" + +#: bookwyrm/templates/layout.html:80 +msgid "Feed" +msgstr "Fir de actualitate" + +#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 +msgid "Settings" +msgstr "Setări" + +#: bookwyrm/templates/layout.html:133 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +msgid "Invites" +msgstr "Invitații" + +#: bookwyrm/templates/layout.html:147 +msgid "Log out" +msgstr "Deconectați-vă" + +#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156 +#: bookwyrm/templates/notifications/notifications_page.html:5 +#: bookwyrm/templates/notifications/notifications_page.html:10 +msgid "Notifications" +msgstr "Notificări" + +#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 +msgid "password" +msgstr "parolă" + +#: bookwyrm/templates/layout.html:195 +msgid "Join" +msgstr "Alăturați-vă" + +#: bookwyrm/templates/layout.html:229 +msgid "Successfully posted status" +msgstr "Stare postată cu succes" + +#: bookwyrm/templates/layout.html:230 +msgid "Error posting status" +msgstr "Eroare la postarea stării" + +#: bookwyrm/templates/layout.html:246 +msgid "Documentation" +msgstr "Documentație" + +#: bookwyrm/templates/layout.html:253 +#, python-format +msgid "Support %(site_name)s on %(support_title)s" +msgstr "Susțineți %(site_name)s la %(support_title)s" + +#: bookwyrm/templates/layout.html:257 +msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." +msgstr "Codul sursă a lui BookWyrm este disponibil gratuit. Puteți contribui sau raporta probleme la GitHub." + +#: bookwyrm/templates/lists/add_item_modal.html:8 +#, python-format +msgid "Add \"%(title)s\" to this list" +msgstr "Adăugați „%(title)s” la listă" + +#: bookwyrm/templates/lists/add_item_modal.html:12 +#, python-format +msgid "Suggest \"%(title)s\" for this list" +msgstr "Sugerați „%(title)s” pentru această listă" + +#: bookwyrm/templates/lists/add_item_modal.html:41 +#: bookwyrm/templates/lists/list.html:257 +msgid "Suggest" +msgstr "Sugerați" + +#: bookwyrm/templates/lists/bookmark_button.html:30 +msgid "Un-save" +msgstr "Revocați salvarea" + +#: bookwyrm/templates/lists/created_text.html:5 +#, python-format +msgid "Created by %(username)s and managed by %(groupname)s" +msgstr "Creat de %(username)s și gestionat de %(groupname)s" + +#: bookwyrm/templates/lists/created_text.html:7 +#, python-format +msgid "Created and curated by %(username)s" +msgstr "Creat și moderat de %(username)s" + +#: bookwyrm/templates/lists/created_text.html:9 +#, python-format +msgid "Created by %(username)s" +msgstr "Creat de %(username)s" + +#: bookwyrm/templates/lists/curate.html:12 +msgid "Curate" +msgstr "Organizați" + +#: bookwyrm/templates/lists/curate.html:21 +msgid "Pending Books" +msgstr "Cărți în așteptare" + +#: bookwyrm/templates/lists/curate.html:24 +msgid "You're all set!" +msgstr "Totul este gata!" + +#: bookwyrm/templates/lists/curate.html:45 +#: bookwyrm/templates/lists/list.html:93 +#, python-format +msgid "%(username)s says:" +msgstr "%(username)s spune:" + +#: bookwyrm/templates/lists/curate.html:55 +msgid "Suggested by" +msgstr "Sugerat de" + +#: bookwyrm/templates/lists/curate.html:77 +msgid "Discard" +msgstr "Renunțați" + +#: bookwyrm/templates/lists/delete_list_modal.html:4 +msgid "Delete this list?" +msgstr "Ștergeți această listă?" + +#: bookwyrm/templates/lists/edit_form.html:5 +#: bookwyrm/templates/lists/layout.html:17 +msgid "Edit List" +msgstr "Editați listă" + +#: bookwyrm/templates/lists/embed-list.html:8 +#, python-format +msgid "%(list_name)s, a list by %(owner)s" +msgstr "%(list_name)s, o listă de %(owner)s" + +#: bookwyrm/templates/lists/embed-list.html:18 +#, python-format +msgid "on %(site_name)s" +msgstr "în %(site_name)s" + +#: bookwyrm/templates/lists/embed-list.html:27 +#: bookwyrm/templates/lists/list.html:54 +msgid "This list is currently empty" +msgstr "Această listă este momentan vidă" + +#: bookwyrm/templates/lists/form.html:19 +msgid "List curation:" +msgstr "Organizați listă:" + +#: bookwyrm/templates/lists/form.html:31 +msgid "Closed" +msgstr "Închis" + +#: bookwyrm/templates/lists/form.html:34 +msgid "Only you can add and remove books to this list" +msgstr "Doar dvs. puteți adăuga sau înlătura cărți din această listă" + +#: bookwyrm/templates/lists/form.html:48 +msgid "Curated" +msgstr "Modificată" + +#: bookwyrm/templates/lists/form.html:51 +msgid "Anyone can suggest books, subject to your approval" +msgstr "Oricine poate sugera cărți, dvs. trebuie să le acceptați" + +#: bookwyrm/templates/lists/form.html:65 +msgctxt "curation type" +msgid "Open" +msgstr "Deschis" + +#: bookwyrm/templates/lists/form.html:68 +msgid "Anyone can add books to this list" +msgstr "Oricine poate adăuga cărți la această listă" + +#: bookwyrm/templates/lists/form.html:82 +msgid "Group" +msgstr "Grup" + +#: bookwyrm/templates/lists/form.html:85 +msgid "Group members can add to and remove from this list" +msgstr "Membrii grupului pot adăuga sau înlătura din această listă" + +#: bookwyrm/templates/lists/form.html:90 +msgid "Select Group" +msgstr "Selectați grup" + +#: bookwyrm/templates/lists/form.html:94 +msgid "Select a group" +msgstr "Selectați un grup" + +#: bookwyrm/templates/lists/form.html:105 +msgid "You don't have any Groups yet!" +msgstr "Nu aveți încă un grup!" + +#: bookwyrm/templates/lists/form.html:107 +msgid "Create a Group" +msgstr "Creați un grup" + +#: bookwyrm/templates/lists/form.html:121 +msgid "Delete list" +msgstr "Ștergeți listă" + +#: bookwyrm/templates/lists/item_notes_field.html:7 +#: bookwyrm/templates/settings/federation/edit_instance.html:86 +msgid "Notes:" +msgstr "Note:" + +#: bookwyrm/templates/lists/item_notes_field.html:19 +msgid "An optional note that will be displayed with the book." +msgstr "O notă opțională poate fi afișată cu cartea." + +#: bookwyrm/templates/lists/list.html:37 +msgid "That book is already on this list." +msgstr "Cartea aceasta este deja pe listă." + +#: bookwyrm/templates/lists/list.html:45 +msgid "You successfully suggested a book for this list!" +msgstr "Ați sugerat cu succes o carte pentru această listă!" + +#: bookwyrm/templates/lists/list.html:47 +msgid "You successfully added a book to this list!" +msgstr "Ați adăugat cu succes o carte la această listă!" + +#: bookwyrm/templates/lists/list.html:104 +msgid "Edit notes" +msgstr "Editați note" + +#: bookwyrm/templates/lists/list.html:119 +msgid "Add notes" +msgstr "Adăugați notă" + +#: bookwyrm/templates/lists/list.html:131 +#, python-format +msgid "Added by %(username)s" +msgstr "Adăugat de %(username)s" + +#: bookwyrm/templates/lists/list.html:146 +msgid "List position" +msgstr "Poziția listei" + +#: bookwyrm/templates/lists/list.html:152 +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:23 +msgid "Set" +msgstr "Stabiliți" + +#: bookwyrm/templates/lists/list.html:167 +#: bookwyrm/templates/snippets/remove_from_group_button.html:20 +msgid "Remove" +msgstr "Înlăturați" + +#: bookwyrm/templates/lists/list.html:181 +#: bookwyrm/templates/lists/list.html:198 +msgid "Sort List" +msgstr "Sortați listă" + +#: bookwyrm/templates/lists/list.html:191 +msgid "Direction" +msgstr "Direcție" + +#: bookwyrm/templates/lists/list.html:205 +msgid "Add Books" +msgstr "Adăugați cărți" + +#: bookwyrm/templates/lists/list.html:207 +msgid "Suggest Books" +msgstr "Cărți sugerate" + +#: bookwyrm/templates/lists/list.html:218 +msgid "search" +msgstr "căutați" + +#: bookwyrm/templates/lists/list.html:224 +msgid "Clear search" +msgstr "Ștergeți căutarea" + +#: bookwyrm/templates/lists/list.html:229 +#, python-format +msgid "No books found matching the query \"%(query)s\"" +msgstr "Nicio carte nu se potrivește cu „%(query)s”" + +#: bookwyrm/templates/lists/list.html:268 +msgid "Embed this list on a website" +msgstr "Integrați această listă la un alt site" + +#: bookwyrm/templates/lists/list.html:276 +msgid "Copy embed code" +msgstr "Copiați codul de integrare" + +#: bookwyrm/templates/lists/list.html:278 +#, python-format +msgid "%(list_name)s, a list by %(owner)s on %(site_name)s" +msgstr "%(list_name)s, o listă a (lui) %(owner)s pe %(site_name)s" + +#: bookwyrm/templates/lists/list_items.html:15 +msgid "Saved" +msgstr "Salvat" + +#: bookwyrm/templates/lists/lists.html:14 bookwyrm/templates/user/lists.html:9 +msgid "Your Lists" +msgstr "Listele voastre" + +#: bookwyrm/templates/lists/lists.html:36 +msgid "All Lists" +msgstr "Toate listele" + +#: bookwyrm/templates/lists/lists.html:40 +msgid "Saved Lists" +msgstr "Listele salvate" + +#: bookwyrm/templates/notifications/items/accept.html:16 +#, python-format +msgid "accepted your invitation to join group \"%(group_name)s\"" +msgstr "a acceptat invitația dvs. de a se alătura grupului „%(group_name)s”" + +#: bookwyrm/templates/notifications/items/add.html:24 +#, python-format +msgid "added %(book_title)s to your list \"%(list_name)s\"" +msgstr "a adăugat %(book_title)s listei dvs. „%(list_name)s”" + +#: bookwyrm/templates/notifications/items/add.html:31 +#, python-format +msgid "suggested adding %(book_title)s to your list \"%(list_name)s\"" +msgstr "a sugerat adăugarea %(book_title)s la lista dvs. „%(list_name)s”" + +#: bookwyrm/templates/notifications/items/boost.html:19 +#, python-format +msgid "boosted your review of %(book_title)s" +msgstr "a partajat recenzia dvs. a %(book_title)s" + +#: bookwyrm/templates/notifications/items/boost.html:25 +#, python-format +msgid "boosted your comment on%(book_title)s" +msgstr "a partajat comentariul dvs. despre %(book_title)s" + +#: bookwyrm/templates/notifications/items/boost.html:31 +#, python-format +msgid "boosted your quote from %(book_title)s" +msgstr "a partajat citatul dvs. din %(book_title)s" + +#: bookwyrm/templates/notifications/items/boost.html:37 +#, python-format +msgid "boosted your status" +msgstr "a partajat statusul dvs." + +#: bookwyrm/templates/notifications/items/fav.html:19 +#, python-format +msgid "liked your review of %(book_title)s" +msgstr "i-a plăcut recenzia dvs. despre %(book_title)s" + +#: bookwyrm/templates/notifications/items/fav.html:25 +#, python-format +msgid "liked your comment on %(book_title)s" +msgstr "i-a plăcut comentariul dvs. despre %(book_title)s" + +#: bookwyrm/templates/notifications/items/fav.html:31 +#, python-format +msgid "liked your quote from %(book_title)s" +msgstr "i-a plăcut citatul dvs. despre %(book_title)s" + +#: bookwyrm/templates/notifications/items/fav.html:37 +#, python-format +msgid "liked your status" +msgstr "i-a plăcut statusul dvs." + +#: bookwyrm/templates/notifications/items/follow.html:15 +msgid "followed you" +msgstr "vă urmărește" + +#: bookwyrm/templates/notifications/items/follow_request.html:11 +msgid "sent you a follow request" +msgstr "v-a trimis o cerere de urmărire" + +#: bookwyrm/templates/notifications/items/import.html:14 +#, python-format +msgid "Your import completed." +msgstr "importul dvs. s-a terminat." + +#: bookwyrm/templates/notifications/items/invite.html:15 +#, python-format +msgid "invited you to join the group \"%(group_name)s\"" +msgstr "v-a invitat să vă alăturați grupului „%(group_name)s”" + +#: bookwyrm/templates/notifications/items/join.html:16 +#, python-format +msgid "has joined your group \"%(group_name)s\"" +msgstr "s-a alăturat grupului dvs „%(group_name)s”" + +#: bookwyrm/templates/notifications/items/leave.html:16 +#, python-format +msgid "has left your group \"%(group_name)s\"" +msgstr "a părăsit grupul dvs. „%(group_name)s”" + +#: bookwyrm/templates/notifications/items/mention.html:20 +#, python-format +msgid "mentioned you in a review of %(book_title)s" +msgstr "v-a menționat într-o recenzie a %(book_title)s" + +#: bookwyrm/templates/notifications/items/mention.html:26 +#, python-format +msgid "mentioned you in a comment on %(book_title)s" +msgstr "v-a menționat într-un comentariu despre %(book_title)s" + +#: bookwyrm/templates/notifications/items/mention.html:32 +#, python-format +msgid "mentioned you in a quote from %(book_title)s" +msgstr "v-a menționat într-un citat despre %(book_title)s" + +#: bookwyrm/templates/notifications/items/mention.html:38 +#, python-format +msgid "mentioned you in a status" +msgstr "v-a menționat într-un status" + +#: bookwyrm/templates/notifications/items/remove.html:17 +#, python-format +msgid "has been removed from your group \"%(group_name)s\"" +msgstr "a fost înlăturat de la grupul dvs. „%(group_name)s”" + +#: bookwyrm/templates/notifications/items/remove.html:23 +#, python-format +msgid "You have been removed from the \"%(group_name)s\" group" +msgstr "Ați fost înlăturat de la grupul „%(group_name)s”" + +#: bookwyrm/templates/notifications/items/reply.html:21 +#, python-format +msgid "replied to your review of %(book_title)s" +msgstr "a răspuns recenziei dvs. despre %(book_title)s" + +#: bookwyrm/templates/notifications/items/reply.html:27 +#, python-format +msgid "replied to your comment on %(book_title)s" +msgstr "a răspuns comentariului dvs. despre %(book_title)s" + +#: bookwyrm/templates/notifications/items/reply.html:33 +#, python-format +msgid "replied to your quote from %(book_title)s" +msgstr "a răspuns citatului dvs. din %(book_title)s" + +#: bookwyrm/templates/notifications/items/reply.html:39 +#, python-format +msgid "replied to your status" +msgstr "a răspuns statusului dvs." + +#: bookwyrm/templates/notifications/items/report.html:15 +#, python-format +msgid "A new report needs moderation." +msgstr "Un raport nou are nevoie de moderare." + +#: bookwyrm/templates/notifications/items/update.html:16 +#, python-format +msgid "has changed the privacy level for %(group_name)s" +msgstr "a schimbat nivelul de confidențialitate pentru %(group_name)s" + +#: bookwyrm/templates/notifications/items/update.html:20 +#, python-format +msgid "has changed the name of %(group_name)s" +msgstr "a schimbat numele pentru %(group_name)s" + +#: bookwyrm/templates/notifications/items/update.html:24 +#, python-format +msgid "has changed the description of %(group_name)s" +msgstr "a schimbat descrierea %(group_name)s" + +#: bookwyrm/templates/notifications/notifications_page.html:18 +msgid "Delete notifications" +msgstr "Ștergeți notificările" + +#: bookwyrm/templates/notifications/notifications_page.html:29 +msgid "All" +msgstr "Toate" + +#: bookwyrm/templates/notifications/notifications_page.html:33 +msgid "Mentions" +msgstr "Mențiuni" + +#: bookwyrm/templates/notifications/notifications_page.html:45 +msgid "You're all caught up!" +msgstr "Nicio notificare nouă!" + +#: bookwyrm/templates/ostatus/error.html:7 +#, python-format +msgid "%(account)s is not a valid username" +msgstr "%(account)s nu este un nume de utilizator valid" + +#: bookwyrm/templates/ostatus/error.html:8 +#: bookwyrm/templates/ostatus/error.html:13 +msgid "Check you have the correct username before trying again" +msgstr "Verificați că aveți un nume de utilizator corect înainte de a reîncerca" + +#: bookwyrm/templates/ostatus/error.html:12 +#, python-format +msgid "%(account)s could not be found or %(remote_domain)s does not support identity discovery" +msgstr "%(account)s nu a putut fi găsit sau %(remote_domain)s nu suportă descoperirea identității" + +#: bookwyrm/templates/ostatus/error.html:17 +#, python-format +msgid "%(account)s was found but %(remote_domain)s does not support 'remote follow'" +msgstr "%(account)s a fost găsit dar %(remote_domain)s nu suportă „urmărirea la distanță”" + +#: bookwyrm/templates/ostatus/error.html:18 +#, python-format +msgid "Try searching for %(user)s on %(remote_domain)s instead" +msgstr "Încercați în schimb să căutați %(user)s la %(remote_domain)s" + +#: bookwyrm/templates/ostatus/error.html:46 +#, python-format +msgid "Something went wrong trying to follow %(account)s" +msgstr "Ceva nu a funcționat încercând să urmăriți %(account)s" + +#: bookwyrm/templates/ostatus/error.html:47 +msgid "Check you have the correct username before trying again." +msgstr "Verificați că numele de utilizator este corect înainte de a încerca din nou." + +#: bookwyrm/templates/ostatus/error.html:51 +#, python-format +msgid "You have blocked %(account)s" +msgstr "Ați blocat %(account)s" + +#: bookwyrm/templates/ostatus/error.html:55 +#, python-format +msgid "%(account)s has blocked you" +msgstr "%(account)s v-a blocat" + +#: bookwyrm/templates/ostatus/error.html:59 +#, python-format +msgid "You are already following %(account)s" +msgstr "Îl urmăriți deja pe %(account)s" + +#: bookwyrm/templates/ostatus/error.html:63 +#, python-format +msgid "You have already requested to follow %(account)s" +msgstr "Ați solicitat deja să-l urmăriți pe %(account)s" + +#: bookwyrm/templates/ostatus/remote_follow.html:6 +#, python-format +msgid "Follow %(username)s on the fediverse" +msgstr "Urmăriți %(username)s pe Fediverse" + +#: bookwyrm/templates/ostatus/remote_follow.html:33 +#, python-format +msgid "Follow %(username)s from another Fediverse account like BookWyrm, Mastodon, or Pleroma." +msgstr "Urmăriți %(username)s cu un alt cont Fediverse precum BookWyrm, Mastodon sau Pleroma." + +#: bookwyrm/templates/ostatus/remote_follow.html:40 +msgid "User handle to follow from:" +msgstr "Cont cu care să-l urmăriți:" + +#: bookwyrm/templates/ostatus/remote_follow.html:42 +msgid "Follow!" +msgstr "Urmăriți!" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:8 +msgid "Follow on Fediverse" +msgstr "Urmăriți pe Fediverse" + +#: bookwyrm/templates/ostatus/remote_follow_button.html:12 +msgid "This link opens in a pop-up window" +msgstr "Această legătură se deschide într-o fereastră nouă" + +#: bookwyrm/templates/ostatus/subscribe.html:8 +#, python-format +msgid "Log in to %(sitename)s" +msgstr "Conectați-vă la %(sitename)s" + +#: bookwyrm/templates/ostatus/subscribe.html:10 +#, python-format +msgid "Error following from %(sitename)s" +msgstr "Eroare la urmărirea de pe %(sitename)s" + +#: bookwyrm/templates/ostatus/subscribe.html:12 +#: bookwyrm/templates/ostatus/subscribe.html:22 +#, python-format +msgid "Follow from %(sitename)s" +msgstr "Abonați-vă de pe %(sitename)s" + +#: bookwyrm/templates/ostatus/subscribe.html:18 +msgid "Uh oh..." +msgstr "Ă... o..." + +#: bookwyrm/templates/ostatus/subscribe.html:20 +msgid "Let's log in first..." +msgstr "Să ne conectăm mai întâi..." + +#: bookwyrm/templates/ostatus/subscribe.html:51 +#, python-format +msgid "Follow %(username)s" +msgstr "Urmăriți %(username)s" + +#: bookwyrm/templates/ostatus/success.html:28 +#, python-format +msgid "You are now following %(display_name)s!" +msgstr "Sunteți acum abonat la %(display_name)s!" + +#: bookwyrm/templates/preferences/blocks.html:4 +#: bookwyrm/templates/preferences/blocks.html:7 +#: bookwyrm/templates/preferences/layout.html:31 +msgid "Blocked Users" +msgstr "Utilizatori blocați" + +#: bookwyrm/templates/preferences/blocks.html:12 +msgid "No users currently blocked." +msgstr "Niciun utilizator blocat." + +#: bookwyrm/templates/preferences/change_password.html:4 +#: bookwyrm/templates/preferences/change_password.html:7 +#: bookwyrm/templates/preferences/change_password.html:21 +#: bookwyrm/templates/preferences/layout.html:20 +msgid "Change Password" +msgstr "Schimbați parola" + +#: bookwyrm/templates/preferences/change_password.html:14 +msgid "New password:" +msgstr "Parolă nouă:" + +#: bookwyrm/templates/preferences/delete_user.html:4 +#: bookwyrm/templates/preferences/delete_user.html:7 +#: bookwyrm/templates/preferences/delete_user.html:25 +#: bookwyrm/templates/preferences/layout.html:24 +#: bookwyrm/templates/settings/users/delete_user_form.html:22 +msgid "Delete Account" +msgstr "Ștergeți cont" + +#: bookwyrm/templates/preferences/delete_user.html:12 +msgid "Permanently delete account" +msgstr "Ștergeți permanent contul" + +#: bookwyrm/templates/preferences/delete_user.html:14 +msgid "Deleting your account cannot be undone. The username will not be available to register in the future." +msgstr "Ștersul contului dvs. nu poate fi revocată. Numele de utilizator nu va fi valabil pentru înregistrare mai târziu." + +#: bookwyrm/templates/preferences/edit_user.html:4 +#: bookwyrm/templates/preferences/edit_user.html:7 +#: bookwyrm/templates/preferences/layout.html:15 +msgid "Edit Profile" +msgstr "Editați profilul" + +#: bookwyrm/templates/preferences/edit_user.html:12 +#: bookwyrm/templates/preferences/edit_user.html:25 +#: bookwyrm/templates/settings/users/user_info.html:7 +msgid "Profile" +msgstr "Profil" + +#: bookwyrm/templates/preferences/edit_user.html:13 +#: bookwyrm/templates/preferences/edit_user.html:64 +#: bookwyrm/templates/settings/site.html:11 +#: bookwyrm/templates/settings/site.html:77 +#: bookwyrm/templates/setup/config.html:91 +msgid "Display" +msgstr "Afișați" + +#: bookwyrm/templates/preferences/edit_user.html:14 +#: bookwyrm/templates/preferences/edit_user.html:112 +msgid "Privacy" +msgstr "Confidențialitate" + +#: bookwyrm/templates/preferences/edit_user.html:69 +msgid "Show reading goal prompt in feed" +msgstr "Afișați obiectivul de lectură în flux" + +#: bookwyrm/templates/preferences/edit_user.html:75 +msgid "Show suggested users" +msgstr "Afișați utilizatorii sugerați" + +#: bookwyrm/templates/preferences/edit_user.html:81 +msgid "Show this account in suggested users" +msgstr "Afișați acest cont ca utilizator sugerat" + +#: bookwyrm/templates/preferences/edit_user.html:85 +#, python-format +msgid "Your account will show up in the directory, and may be recommended to other BookWyrm users." +msgstr "Contul dvs. va apărea în dosar și va putea fi recomandat altor utilizatori de BookWyrm." + +#: bookwyrm/templates/preferences/edit_user.html:89 +msgid "Preferred Timezone: " +msgstr "Fus orar preferat: " + +#: bookwyrm/templates/preferences/edit_user.html:101 +msgid "Theme:" +msgstr "Temă:" + +#: bookwyrm/templates/preferences/edit_user.html:117 +msgid "Manually approve followers" +msgstr "Aprobați manual urmăritorii" + +#: bookwyrm/templates/preferences/edit_user.html:123 +msgid "Hide followers and following on profile" +msgstr "Ascundeți urmăritorii pe profil" + +#: bookwyrm/templates/preferences/edit_user.html:128 +msgid "Default post privacy:" +msgstr "Confidențialitatea implicită a postărilor:" + +#: bookwyrm/templates/preferences/layout.html:11 +msgid "Account" +msgstr "Cont" + +#: bookwyrm/templates/preferences/layout.html:27 +msgid "Relationships" +msgstr "Relații" + +#: bookwyrm/templates/reading_progress/finish.html:5 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "Terminați „%(book_title)s”" + +#: bookwyrm/templates/reading_progress/start.html:5 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "Începeți „%(book_title)s”" + +#: bookwyrm/templates/reading_progress/want.html:5 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "Vreau să citesc „%(book_title)s”" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:4 +msgid "Delete these read dates?" +msgstr "Ștergeți aceste date de lectură?" + +#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:8 +#, python-format +msgid "You are deleting this readthrough and its %(count)s associated progress updates." +msgstr "Sunteți pe cale de a șterge acest rezumat și %(count)s actualizări asociate progresului." + +#: bookwyrm/templates/readthrough/readthrough.html:6 +#: bookwyrm/templates/readthrough/readthrough_modal.html:8 +#, python-format +msgid "Update read dates for \"%(title)s\"" +msgstr "Actualizați datele de lectură pentru „%(title)s”" + +#: bookwyrm/templates/readthrough/readthrough_form.html:10 +#: bookwyrm/templates/readthrough/readthrough_modal.html:31 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:24 +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:21 +msgid "Started reading" +msgstr "A început lectura" + +#: bookwyrm/templates/readthrough/readthrough_form.html:18 +#: bookwyrm/templates/readthrough/readthrough_modal.html:49 +msgid "Progress" +msgstr "Progres" + +#: bookwyrm/templates/readthrough/readthrough_form.html:24 +#: bookwyrm/templates/readthrough/readthrough_modal.html:56 +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:32 +msgid "Finished reading" +msgstr "A terminat de citit" + +#: bookwyrm/templates/readthrough/readthrough_list.html:9 +msgid "Progress Updates:" +msgstr "Progresie:" + +#: bookwyrm/templates/readthrough/readthrough_list.html:14 +msgid "finished" +msgstr "terminat" + +#: bookwyrm/templates/readthrough/readthrough_list.html:25 +msgid "Show all updates" +msgstr "Afișați toate actualizările" + +#: bookwyrm/templates/readthrough/readthrough_list.html:41 +msgid "Delete this progress update" +msgstr "Ștergeți această actualizare" + +#: bookwyrm/templates/readthrough/readthrough_list.html:53 +msgid "started" +msgstr "începută" + +#: bookwyrm/templates/readthrough/readthrough_list.html:60 +msgid "Edit read dates" +msgstr "Editați datele de lectură" + +#: bookwyrm/templates/readthrough/readthrough_list.html:68 +msgid "Delete these read dates" +msgstr "Ștergeți aceste date de lectură" + +#: bookwyrm/templates/readthrough/readthrough_modal.html:12 +#, python-format +msgid "Add read dates for \"%(title)s\"" +msgstr "Adăugați date de lectură pentru „%(title)s”" + +#: bookwyrm/templates/report.html:5 +#: bookwyrm/templates/snippets/report_button.html:13 +msgid "Report" +msgstr "Raportați" + +#: bookwyrm/templates/search/barcode_modal.html:5 +msgid "\n" +" Scan Barcode\n" +" " +msgstr "\n" +"Scanați codul de bare " + +#: bookwyrm/templates/search/barcode_modal.html:23 +msgid "Requesting camera..." +msgstr "În așteptarea camerei foto..." + +#: bookwyrm/templates/search/barcode_modal.html:24 +msgid "Grant access to the camera to scan a book's barcode." +msgstr "Acordați acces camerei foto pentru a scana codul de bare al cărții." + +#: bookwyrm/templates/search/barcode_modal.html:29 +msgid "Could not access camera" +msgstr "Camera foto nu a putut fi accesată" + +#: bookwyrm/templates/search/barcode_modal.html:33 +msgctxt "barcode scanner" +msgid "Scanning..." +msgstr "Se scanează..." + +#: bookwyrm/templates/search/barcode_modal.html:34 +msgid "Align your book's barcode with the camera." +msgstr "Poziționați codul de bare al cărții în fața camerei foto." + +#: bookwyrm/templates/search/barcode_modal.html:38 +msgctxt "barcode scanner" +msgid "ISBN scanned" +msgstr "Cod ISBN scanat" + +#: bookwyrm/templates/search/barcode_modal.html:39 +msgctxt "followed by ISBN" +msgid "Searching for book:" +msgstr "Căutați o carte:" + +#: bookwyrm/templates/search/book.html:44 +msgid "Results from" +msgstr "Rezultate de la" + +#: bookwyrm/templates/search/book.html:80 +msgid "Import book" +msgstr "Importați o carte" + +#: bookwyrm/templates/search/book.html:106 +msgid "Load results from other catalogues" +msgstr "Încărcați rezultatele din alte cataloage" + +#: bookwyrm/templates/search/book.html:110 +msgid "Manually add book" +msgstr "Adăugați manual o carte" + +#: bookwyrm/templates/search/book.html:115 +msgid "Log in to import or add books." +msgstr "Autentificați-vă pentru a importa sau adăuga cărți." + +#: bookwyrm/templates/search/layout.html:16 +msgid "Search query" +msgstr "Conținutul căutării" + +#: bookwyrm/templates/search/layout.html:19 +msgid "Search type" +msgstr "Tipul căutării" + +#: bookwyrm/templates/search/layout.html:23 +#: bookwyrm/templates/search/layout.html:46 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 +#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/layout.html:36 +#: bookwyrm/templates/settings/users/user.html:13 +#: bookwyrm/templates/settings/users/user_admin.html:5 +#: bookwyrm/templates/settings/users/user_admin.html:12 +msgid "Users" +msgstr "Utilizatori" + +#: bookwyrm/templates/search/layout.html:58 +#, python-format +msgid "No results found for \"%(query)s\"" +msgstr "Niciun rezultat găsit pentru „%(query)s”" + +#: bookwyrm/templates/settings/announcements/announcement.html:5 +#: bookwyrm/templates/settings/announcements/announcement.html:8 +msgid "Announcement" +msgstr "Anunț" + +#: bookwyrm/templates/settings/announcements/announcement.html:16 +#: bookwyrm/templates/settings/federation/instance.html:93 +#: bookwyrm/templates/snippets/status/status_options.html:25 +msgid "Edit" +msgstr "Editați" + +#: bookwyrm/templates/settings/announcements/announcement.html:32 +#: bookwyrm/templates/settings/announcements/announcements.html:3 +#: bookwyrm/templates/settings/announcements/announcements.html:5 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:15 +#: bookwyrm/templates/settings/layout.html:82 +msgid "Announcements" +msgstr "Anunțuri" + +#: bookwyrm/templates/settings/announcements/announcement.html:45 +msgid "Visible:" +msgstr "Vizibil:" + +#: bookwyrm/templates/settings/announcements/announcement.html:49 +msgid "True" +msgstr "Adevărat" + +#: bookwyrm/templates/settings/announcements/announcement.html:51 +msgid "False" +msgstr "Fals" + +#: bookwyrm/templates/settings/announcements/announcement.html:57 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:79 +#: bookwyrm/templates/settings/dashboard/dashboard.html:94 +msgid "Start date:" +msgstr "Data de început:" + +#: bookwyrm/templates/settings/announcements/announcement.html:62 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:89 +#: bookwyrm/templates/settings/dashboard/dashboard.html:100 +msgid "End date:" +msgstr "Data de sfârșit:" + +#: bookwyrm/templates/settings/announcements/announcement.html:66 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:109 +msgid "Active:" +msgstr "Activ:" + +#: bookwyrm/templates/settings/announcements/announcements.html:9 +#: bookwyrm/templates/settings/announcements/edit_announcement.html:8 +msgid "Create Announcement" +msgstr "Creați anunț" + +#: bookwyrm/templates/settings/announcements/announcements.html:21 +#: bookwyrm/templates/settings/federation/instance_list.html:36 +msgid "Date added" +msgstr "Dată adăugată" + +#: bookwyrm/templates/settings/announcements/announcements.html:25 +msgid "Preview" +msgstr "Previzualizați" + +#: bookwyrm/templates/settings/announcements/announcements.html:29 +msgid "Start date" +msgstr "Dată de început" + +#: bookwyrm/templates/settings/announcements/announcements.html:33 +msgid "End date" +msgstr "Dată de sfârșit" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "active" +msgstr "activ" + +#: bookwyrm/templates/settings/announcements/announcements.html:50 +msgid "inactive" +msgstr "inactiv" + +#: bookwyrm/templates/settings/announcements/announcements.html:63 +msgid "No announcements found" +msgstr "Niciun anunț găsit" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:6 +msgid "Edit Announcement" +msgstr "Editați anunțul" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:45 +msgid "Announcement content" +msgstr "Conținutul anunțului" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:57 +msgid "Details:" +msgstr "Detalii:" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:65 +msgid "Event date:" +msgstr "Data evenimentului:" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:73 +msgid "Display settings" +msgstr "Setările de afișaj" + +#: bookwyrm/templates/settings/announcements/edit_announcement.html:98 +msgid "Color:" +msgstr "Culoare:" + +#: bookwyrm/templates/settings/automod/rules.html:7 +#: bookwyrm/templates/settings/automod/rules.html:11 +#: bookwyrm/templates/settings/layout.html:61 +msgid "Auto-moderation rules" +msgstr "Reguli de auto-moderare" + +#: bookwyrm/templates/settings/automod/rules.html:18 +msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." +msgstr "Regulile de auto-moderare vor crea raporturi pentru orice utilizator local sau statut ale cărui câmpuri se potrivesc cu șirul de caractere furnizat." + +#: bookwyrm/templates/settings/automod/rules.html:19 +msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." +msgstr "Utilizatorii sau statuturile care au fost deja raportate (indiferent dacă raportul a fost rezolvat sau nu) nu vor fi marcați." + +#: bookwyrm/templates/settings/automod/rules.html:26 +msgid "Schedule:" +msgstr "Program:" + +#: bookwyrm/templates/settings/automod/rules.html:33 +msgid "Last run:" +msgstr "Ultima rulare:" + +#: bookwyrm/templates/settings/automod/rules.html:40 +msgid "Total run count:" +msgstr "Numărul total de rulări:" + +#: bookwyrm/templates/settings/automod/rules.html:47 +msgid "Enabled:" +msgstr "Activat:" + +#: bookwyrm/templates/settings/automod/rules.html:59 +msgid "Delete schedule" +msgstr "Ștergeți programul" + +#: bookwyrm/templates/settings/automod/rules.html:63 +msgid "Run now" +msgstr "Rulați acum" + +#: bookwyrm/templates/settings/automod/rules.html:64 +msgid "Last run date will not be updated" +msgstr "Ultima dată de rulare nu va fi actualizată" + +#: bookwyrm/templates/settings/automod/rules.html:69 +#: bookwyrm/templates/settings/automod/rules.html:92 +msgid "Schedule scan" +msgstr "Programați scanare" + +#: bookwyrm/templates/settings/automod/rules.html:101 +msgid "Successfully added rule" +msgstr "Regulă adăugată cu succes" + +#: bookwyrm/templates/settings/automod/rules.html:107 +msgid "Add Rule" +msgstr "Adăugați regulă" + +#: bookwyrm/templates/settings/automod/rules.html:116 +#: bookwyrm/templates/settings/automod/rules.html:160 +msgid "String match" +msgstr "Potrivire de șir de caractere" + +#: bookwyrm/templates/settings/automod/rules.html:126 +#: bookwyrm/templates/settings/automod/rules.html:163 +msgid "Flag users" +msgstr "Semnalați utilizatori" + +#: bookwyrm/templates/settings/automod/rules.html:133 +#: bookwyrm/templates/settings/automod/rules.html:166 +msgid "Flag statuses" +msgstr "Semnalați statutele" + +#: bookwyrm/templates/settings/automod/rules.html:140 +msgid "Add rule" +msgstr "Adăugați regulă" + +#: bookwyrm/templates/settings/automod/rules.html:147 +msgid "Current Rules" +msgstr "Regulile curente" + +#: bookwyrm/templates/settings/automod/rules.html:151 +msgid "Show rules" +msgstr "Afișați regulile" + +#: bookwyrm/templates/settings/automod/rules.html:188 +msgid "Remove rule" +msgstr "Eliminați regulă" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:6 +#: bookwyrm/templates/settings/dashboard/dashboard.html:8 +#: bookwyrm/templates/settings/layout.html:28 +msgid "Dashboard" +msgstr "Tablou de bord" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:15 +#: bookwyrm/templates/settings/dashboard/dashboard.html:123 +msgid "Total users" +msgstr "Număr total de utilizatori" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:21 +#: bookwyrm/templates/settings/dashboard/user_chart.html:16 +msgid "Active this month" +msgstr "Activi această lună" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:27 +msgid "Statuses" +msgstr "Statusuri" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:33 +#: bookwyrm/templates/settings/dashboard/works_chart.html:11 +msgid "Works" +msgstr "Opere" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:43 +#, python-format +msgid "%(display_count)s open report" +msgid_plural "%(display_count)s open reports" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "%(display_count)s raporturi dechise" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:55 +#, python-format +msgid "%(display_count)s domain needs review" +msgid_plural "%(display_count)s domains need review" +msgstr[0] "%(display_count)s domeniu care necesită revizuire" +msgstr[1] "" +msgstr[2] "%(display_count)s domenii care necesită revizii" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:67 +#, python-format +msgid "%(display_count)s invite request" +msgid_plural "%(display_count)s invite requests" +msgstr[0] "%(display_count)s cerere de invitare" +msgstr[1] "" +msgstr[2] "%(display_count)s cereri de invitare" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:79 +#, python-format +msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." +msgstr "O actualizare este disponibilă! Rulați în prezent v%(current)s, iar cea mai nouă versiune este %(available)s." + +#: bookwyrm/templates/settings/dashboard/dashboard.html:88 +msgid "Instance Activity" +msgstr "Activitatea instanței" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:106 +msgid "Interval:" +msgstr "Interval:" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:110 +msgid "Days" +msgstr "Zile" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:111 +msgid "Weeks" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:129 +msgid "User signup activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:135 +msgid "Status activity" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/dashboard.html:141 +msgid "Works created" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/registration_chart.html:10 +msgid "Registrations" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/status_chart.html:11 +msgid "Statuses posted" +msgstr "" + +#: bookwyrm/templates/settings/dashboard/user_chart.html:11 +msgid "Total" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:10 +msgid "Add domain" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/domain_form.html:11 +msgid "Domain:" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:5 +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:65 +msgid "Email Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:18 +msgid "When someone tries to register with an email from this domain, no account will be created. The registration process will appear to have worked." +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:29 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:27 +msgid "Options" +msgstr "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:38 +#, python-format +msgid "%(display_count)s user" +msgid_plural "%(display_count)s users" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:59 +msgid "No email domains currently blocked" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:3 +#: bookwyrm/templates/settings/federation/edit_instance.html:6 +#: bookwyrm/templates/settings/federation/edit_instance.html:15 +#: bookwyrm/templates/settings/federation/edit_instance.html:32 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:3 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:9 +#: bookwyrm/templates/settings/federation/instance_list.html:10 +msgid "Add instance" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:12 +#: bookwyrm/templates/settings/federation/instance.html:24 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:12 +#: bookwyrm/templates/settings/federation/instance_list.html:3 +#: bookwyrm/templates/settings/federation/instance_list.html:5 +#: bookwyrm/templates/settings/layout.html:47 +msgid "Federated Instances" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:28 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:28 +msgid "Import block list" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:43 +msgid "Instance:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:52 +#: bookwyrm/templates/settings/federation/instance.html:46 +#: bookwyrm/templates/settings/users/user_info.html:106 +msgid "Status:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:66 +#: bookwyrm/templates/settings/federation/instance.html:40 +#: bookwyrm/templates/settings/users/user_info.html:100 +msgid "Software:" +msgstr "" + +#: bookwyrm/templates/settings/federation/edit_instance.html:76 +#: bookwyrm/templates/settings/federation/instance.html:43 +#: bookwyrm/templates/settings/users/user_info.html:103 +msgid "Version:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:17 +msgid "Refresh data" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:37 +msgid "Details" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:53 +#: bookwyrm/templates/user/layout.html:67 +msgid "Activity" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:56 +msgid "Users:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:59 +#: bookwyrm/templates/settings/federation/instance.html:65 +msgid "View all" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:62 +#: bookwyrm/templates/settings/users/user_info.html:56 +msgid "Reports:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:68 +msgid "Followed by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:73 +msgid "Followed by them:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:78 +msgid "Blocked by us:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:90 +#: bookwyrm/templates/settings/users/user_info.html:110 +msgid "Notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:97 +msgid "No notes" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:116 +#: bookwyrm/templates/settings/link_domains/link_domains.html:87 +#: bookwyrm/templates/snippets/block_button.html:5 +msgid "Block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:117 +msgid "All users from this instance will be deactivated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:122 +#: bookwyrm/templates/snippets/block_button.html:10 +msgid "Un-block" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance.html:123 +msgid "All users from this instance will be re-activated." +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:6 +#: bookwyrm/templates/settings/federation/instance_blocklist.html:15 +msgid "Import Blocklist" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:38 +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:42 +msgid "Successfully blocked:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_blocklist.html:44 +msgid "Failed:" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/users/server_filter.html:5 +msgid "Instance name" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:40 +msgid "Software" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:63 +msgid "No instances found" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25 +#: bookwyrm/templates/settings/invites/manage_invites.html:11 +msgid "Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 +msgid "Ignored Invite Requests" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:35 +msgid "Date requested" +msgstr "Dată solicitată" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:39 +msgid "Date accepted" +msgstr "Dată acceptată" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:42 +#: bookwyrm/templates/settings/users/email_filter.html:5 +msgid "Email" +msgstr "Email" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +msgid "Action" +msgstr "Acțiune" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:53 +msgid "No requests" +msgstr "Nicio cerere" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:65 +#: bookwyrm/templates/settings/invites/status_filter.html:16 +msgid "Accepted" +msgstr "Acceptată" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:67 +#: bookwyrm/templates/settings/invites/status_filter.html:12 +msgid "Sent" +msgstr "Trimisă" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:69 +#: bookwyrm/templates/settings/invites/status_filter.html:8 +msgid "Requested" +msgstr "Solicitată" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:79 +msgid "Send invite" +msgstr "Trimiteți invitație" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:81 +msgid "Re-send invite" +msgstr "Retrimiteți invitație" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:101 +msgid "Ignore" +msgstr "Ignorați" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:103 +msgid "Un-ignore" +msgstr "Nu mai ignorați" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:114 +msgid "Back to pending requests" +msgstr "Înapoi la cererile în așteptare" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 +msgid "View ignored requests" +msgstr "Vizualizați cererile ignorate" + +#: bookwyrm/templates/settings/invites/manage_invites.html:21 +msgid "Generate New Invite" +msgstr "Generați o nouă invitație" + +#: bookwyrm/templates/settings/invites/manage_invites.html:27 +msgid "Expiry:" +msgstr "Expiră:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:33 +msgid "Use limit:" +msgstr "Limitați la:" + +#: bookwyrm/templates/settings/invites/manage_invites.html:40 +msgid "Create Invite" +msgstr "Creați o invitație" + +#: bookwyrm/templates/settings/invites/manage_invites.html:48 +msgid "Expires" +msgstr "Expiră" + +#: bookwyrm/templates/settings/invites/manage_invites.html:49 +msgid "Max uses" +msgstr "Număr maxim de utilizări" + +#: bookwyrm/templates/settings/invites/manage_invites.html:50 +msgid "Times used" +msgstr "Număr de utilizări" + +#: bookwyrm/templates/settings/invites/manage_invites.html:53 +msgid "No active invites" +msgstr "Nicio invitație activă" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:10 +msgid "Add IP address" +msgstr "Adăugați adresa IP" + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:11 +msgid "Use IP address blocks with caution, and consider using blocks only temporarily, as IP addresses are often shared or change hands. If you block your own IP, you will not be able to access this page." +msgstr "Folosiți blocaj IP cu precauție și luați în calcul numai utilizarea temporală, întrucât adresele IP sunt deseori partajate sau schimbate. Dacă vă blocați propria adresa IP, nu veți mai putea accesa această pagină." + +#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:18 +msgid "IP Address:" +msgstr "Adresă IP:" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:5 +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:7 +#: bookwyrm/templates/settings/layout.html:69 +msgid "IP Address Blocklist" +msgstr "Lista de adrese IP blocate" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:18 +msgid "Any traffic from this IP address will get a 404 response when trying to access any part of the application." +msgstr "Orice trafic de la această adresă IP va primi un răspuns 404 când va încerca să acceze orice componentă a aplicației." + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:24 +msgid "Address" +msgstr "Adresă" + +#: bookwyrm/templates/settings/ip_blocklist/ip_blocklist.html:46 +msgid "No IP addresses currently blocked" +msgstr "Nicio adresă IP blocată momentan" + +#: bookwyrm/templates/settings/ip_blocklist/ip_tooltip.html:6 +msgid "You can block IP ranges using CIDR syntax." +msgstr "Puteți bloca o plajă de adrese IP folosind sintaxa CIDR." + +#: bookwyrm/templates/settings/layout.html:4 +msgid "Administration" +msgstr "Administrare" + +#: bookwyrm/templates/settings/layout.html:31 +msgid "Manage Users" +msgstr "Gestionați utilizatorii" + +#: bookwyrm/templates/settings/layout.html:53 +msgid "Moderation" +msgstr "Moderare" + +#: bookwyrm/templates/settings/layout.html:57 +#: bookwyrm/templates/settings/reports/reports.html:8 +#: bookwyrm/templates/settings/reports/reports.html:17 +msgid "Reports" +msgstr "Raporturi" + +#: bookwyrm/templates/settings/layout.html:73 +#: bookwyrm/templates/settings/link_domains/link_domains.html:5 +#: bookwyrm/templates/settings/link_domains/link_domains.html:7 +msgid "Link Domains" +msgstr "Legături către domenii" + +#: bookwyrm/templates/settings/layout.html:78 +msgid "Instance Settings" +msgstr "Setările instanței" + +#: bookwyrm/templates/settings/layout.html:86 +#: bookwyrm/templates/settings/site.html:4 +#: bookwyrm/templates/settings/site.html:6 +msgid "Site Settings" +msgstr "Setările site-ului" + +#: bookwyrm/templates/settings/layout.html:91 +#: bookwyrm/templates/settings/site.html:95 +#: bookwyrm/templates/settings/themes.html:4 +#: bookwyrm/templates/settings/themes.html:6 +msgid "Themes" +msgstr "" + +#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 +#, python-format +msgid "Set display name for %(url)s" +msgstr "Stabiliți numele afișat pentru %(url)s" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:11 +msgid "Link domains must be approved before they are shown on book pages. Please make sure that the domains are not hosting spam, malicious code, or deceptive links before approving." +msgstr "Legăturile către domenii trebuie aprovate înainte de a fi afișate pe paginile cărților. Vă rugăm asigurați-vă că domeniile nu găzduiesc spam, cod rău intenționat sau legături falsificate înainte de aprovare." + +#: bookwyrm/templates/settings/link_domains/link_domains.html:45 +msgid "Set display name" +msgstr "Stabiliți numele afișat" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:53 +msgid "View links" +msgstr "Vizualizați legăturile" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:96 +msgid "No domains currently approved" +msgstr "Niciun domeniu aprovat momentan" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:98 +msgid "No domains currently pending" +msgstr "Niciun domeniu în așteptare" + +#: bookwyrm/templates/settings/link_domains/link_domains.html:100 +msgid "No domains currently blocked" +msgstr "Niciun domeniu blocat" + +#: bookwyrm/templates/settings/link_domains/link_table.html:39 +msgid "No links available for this domain." +msgstr "Nicio legătură disponibilă pentru acest domeniu." + +#: bookwyrm/templates/settings/reports/report.html:12 +msgid "Back to reports" +msgstr "Înapoi la raporturi" + +#: bookwyrm/templates/settings/reports/report.html:24 +msgid "Message reporter" +msgstr "Centru de mesaje" + +#: bookwyrm/templates/settings/reports/report.html:28 +msgid "Update on your report:" +msgstr "Actualizare a raportului dvs.:" + +#: bookwyrm/templates/settings/reports/report.html:36 +msgid "Reported status" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:38 +msgid "Status has been deleted" +msgstr "Statusul a fost șters" + +#: bookwyrm/templates/settings/reports/report.html:47 +msgid "Reported links" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:63 +msgid "Moderator Comments" +msgstr "" + +#: bookwyrm/templates/settings/reports/report.html:84 +#: bookwyrm/templates/snippets/create_status.html:26 +msgid "Comment" +msgstr "Comentariu" + +#: bookwyrm/templates/settings/reports/report_header.html:6 +#, python-format +msgid "Report #%(report_id)s: Status posted by @%(username)s" +msgstr "Raport #%(report_id)s: statut postat de @%(username)s" + +#: bookwyrm/templates/settings/reports/report_header.html:12 +#, python-format +msgid "Report #%(report_id)s: Link added by @%(username)s" +msgstr "Raport #%(report_id)s: legătură adăugată de @%(username)s" + +#: bookwyrm/templates/settings/reports/report_header.html:18 +#, python-format +msgid "Report #%(report_id)s: User @%(username)s" +msgstr "Raport #%(report_id)s: utilizator @%(username)s" + +#: bookwyrm/templates/settings/reports/report_links_table.html:17 +msgid "Block domain" +msgstr "Blocați domeniu" + +#: bookwyrm/templates/settings/reports/report_preview.html:17 +msgid "No notes provided" +msgstr "Nicio notă furnizată" + +#: bookwyrm/templates/settings/reports/report_preview.html:24 +#, python-format +msgid "Reported by @%(username)s" +msgstr "Raportat de @%(username)s" + +#: bookwyrm/templates/settings/reports/report_preview.html:34 +msgid "Re-open" +msgstr "Redeschideți" + +#: bookwyrm/templates/settings/reports/report_preview.html:36 +msgid "Resolve" +msgstr "Rezolvați" + +#: bookwyrm/templates/settings/reports/reports.html:6 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "Raporturi: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:14 +#, python-format +msgid "Reports: %(instance_name)s" +msgstr "Raporturi: %(instance_name)s" + +#: bookwyrm/templates/settings/reports/reports.html:25 +msgid "Open" +msgstr "Deschideți" + +#: bookwyrm/templates/settings/reports/reports.html:28 +msgid "Resolved" +msgstr "Rezolvat" + +#: bookwyrm/templates/settings/reports/reports.html:37 +msgid "No reports found." +msgstr "Niciun raport găsit." + +#: bookwyrm/templates/settings/site.html:10 +#: bookwyrm/templates/settings/site.html:44 +msgid "Instance Info" +msgstr "Informații despre instanță" + +#: bookwyrm/templates/settings/site.html:12 +#: bookwyrm/templates/settings/site.html:110 +msgid "Footer Content" +msgstr "Conținutul subsolului" + +#: bookwyrm/templates/settings/site.html:13 +#: bookwyrm/templates/settings/site.html:134 +msgid "Registration" +msgstr "Înregistrare" + +#: bookwyrm/templates/settings/site.html:22 +msgid "Settings saved" +msgstr "Setări salvate" + +#: bookwyrm/templates/settings/site.html:31 +msgid "Unable to save settings" +msgstr "Incapabil de a salva setările" + +#: bookwyrm/templates/settings/site.html:47 +msgid "Instance Name:" +msgstr "Numele instanței:" + +#: bookwyrm/templates/settings/site.html:51 +msgid "Tagline:" +msgstr "Slogan:" + +#: bookwyrm/templates/settings/site.html:55 +msgid "Instance description:" +msgstr "Descrierea instanței:" + +#: bookwyrm/templates/settings/site.html:59 +msgid "Short description:" +msgstr "Scurtă descriere:" + +#: bookwyrm/templates/settings/site.html:60 +msgid "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." +msgstr "Folosit când instanța este previzualizată pe joinbookwyrm.com. Nu suportă HTML sau Markdown." + +#: bookwyrm/templates/settings/site.html:64 +msgid "Code of conduct:" +msgstr "Cod de conduită:" + +#: bookwyrm/templates/settings/site.html:68 +msgid "Privacy Policy:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:79 +msgid "Images" +msgstr "" + +#: bookwyrm/templates/settings/site.html:82 +msgid "Logo:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:86 +msgid "Logo small:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:90 +msgid "Favicon:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:98 +msgid "Default theme:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:113 +msgid "Support link:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:117 +msgid "Support title:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:121 +msgid "Admin email:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:125 +msgid "Additional info:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:139 +msgid "Allow registration" +msgstr "" + +#: bookwyrm/templates/settings/site.html:145 +msgid "Allow invite requests" +msgstr "" + +#: bookwyrm/templates/settings/site.html:151 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/site.html:156 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:163 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/site.html:165 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/site.html:168 +msgid "Registration closed text:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:172 +msgid "Invite request text:" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:10 +msgid "Set instance default theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:19 +msgid "Successfully added theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:26 +msgid "How to add a theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:29 +msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:32 +msgid "Run ./bw-dev collectstatic." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:35 +msgid "Add the file name using the form below to make it available in the application interface." +msgstr "" + +#: bookwyrm/templates/settings/themes.html:42 +#: bookwyrm/templates/settings/themes.html:83 +msgid "Add theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:48 +msgid "Unable to save theme" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:64 +#: bookwyrm/templates/settings/themes.html:94 +msgid "Theme name" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:74 +msgid "Theme filename" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:89 +msgid "Available Themes" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:97 +msgid "File" +msgstr "" + +#: bookwyrm/templates/settings/themes.html:112 +msgid "Remove theme" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:5 +#: bookwyrm/templates/settings/users/user_moderation_actions.html:32 +msgid "Permanently delete user" +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:12 +#, python-format +msgid "Are you sure you want to delete %(username)s's account? This action cannot be undone. To proceed, please enter your password to confirm deletion." +msgstr "" + +#: bookwyrm/templates/settings/users/delete_user_form.html:17 +msgid "Your password:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:9 +#, python-format +msgid "Users: %(instance_name)s" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:40 +#: bookwyrm/templates/settings/users/username_filter.html:5 +msgid "Username" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:44 +msgid "Date Added" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:48 +msgid "Last Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:57 +msgid "Remote instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:67 +#: bookwyrm/templates/settings/users/user_info.html:24 +msgid "Active" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:67 +#: bookwyrm/templates/settings/users/user_info.html:28 +msgid "Inactive" +msgstr "" + +#: bookwyrm/templates/settings/users/user_admin.html:73 +#: bookwyrm/templates/settings/users/user_info.html:120 +msgid "Not set" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:16 +msgid "View user profile" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:36 +msgid "Local" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:38 +msgid "Remote" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:47 +msgid "User details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:51 +msgid "Email:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:61 +msgid "(View reports)" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:67 +msgid "Blocked by count:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:70 +msgid "Last active date:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:73 +msgid "Manually approved followers:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:76 +msgid "Discoverable:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:80 +msgid "Deactivation reason:" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:95 +msgid "Instance details" +msgstr "" + +#: bookwyrm/templates/settings/users/user_info.html:117 +msgid "View instance" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:5 +msgid "Permanently deleted" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:8 +msgid "User Actions" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:21 +msgid "Suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:26 +msgid "Un-suspend user" +msgstr "" + +#: bookwyrm/templates/settings/users/user_moderation_actions.html:48 +msgid "Access level:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:5 +msgid "Set up BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:7 +msgid "Your account as a user and an admin" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:13 +msgid "Create your account" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:20 +msgid "Admin key:" +msgstr "" + +#: bookwyrm/templates/setup/admin.html:32 +msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:45 +msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:51 +msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." +msgstr "" + +#: bookwyrm/templates/setup/admin.html:55 +msgid "Learn more about moderation" +msgstr "" + +#: bookwyrm/templates/setup/config.html:5 +msgid "Instance Configuration" +msgstr "" + +#: bookwyrm/templates/setup/config.html:7 +msgid "Make sure everything looks right before proceeding" +msgstr "" + +#: bookwyrm/templates/setup/config.html:18 +msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." +msgstr "" + +#: bookwyrm/templates/setup/config.html:30 +msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." +msgstr "" + +#: bookwyrm/templates/setup/config.html:42 +msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." +msgstr "" + +#: bookwyrm/templates/setup/config.html:56 +msgid "Instance domain:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:63 +msgid "Protocol:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:81 +msgid "Using S3:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:95 +msgid "Default interface language:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:102 +msgid "Email sender:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:109 +msgid "Enable preview images:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:116 +msgid "Enable image thumbnails:" +msgstr "" + +#: bookwyrm/templates/setup/config.html:128 +msgid "Does everything look right?" +msgstr "" + +#: bookwyrm/templates/setup/config.html:130 +msgid "This is your last chance to set your domain and protocol." +msgstr "" + +#: bookwyrm/templates/setup/config.html:144 +msgid "You can change your instance settings in the .env file on your server." +msgstr "" + +#: bookwyrm/templates/setup/config.html:148 +msgid "View installation instructions" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:5 +msgid "Instance Setup" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:15 +msgid "Installing BookWyrm" +msgstr "" + +#: bookwyrm/templates/setup/layout.html:18 +msgid "Need help?" +msgstr "" + +#: bookwyrm/templates/shelf/create_shelf_form.html:5 +#: bookwyrm/templates/shelf/shelf.html:72 +msgid "Create shelf" +msgstr "" + +#: bookwyrm/templates/shelf/edit_shelf_form.html:5 +msgid "Edit Shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:24 +msgid "User profile" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:39 +#: bookwyrm/templatetags/shelf_tags.py:44 bookwyrm/views/shelf/shelf.py:53 +msgid "All books" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:96 +#, python-format +msgid "%(formatted_count)s book" +msgid_plural "%(formatted_count)s books" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/shelf/shelf.html:103 +#, python-format +msgid "(showing %(start)s-%(end)s)" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:115 +msgid "Edit shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:123 +msgid "Delete shelf" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:151 +#: bookwyrm/templates/shelf/shelf.html:177 +msgid "Shelved" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:152 +#: bookwyrm/templates/shelf/shelf.html:180 +msgid "Started" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:153 +#: bookwyrm/templates/shelf/shelf.html:183 +msgid "Finished" +msgstr "" + +#: bookwyrm/templates/shelf/shelf.html:209 +msgid "This shelf is empty." +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:16 +msgid "Invite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:25 +msgid "Uninvite" +msgstr "" + +#: bookwyrm/templates/snippets/add_to_group_button.html:29 +#, python-format +msgid "Remove @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/announcement.html:28 +#, python-format +msgid "Posted by %(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/authors.html:22 +#: bookwyrm/templates/snippets/trimmed_list.html:14 +#, python-format +msgid "and %(remainder_count_display)s other" +msgid_plural "and %(remainder_count_display)s others" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/snippets/book_cover.html:61 +msgid "No cover" +msgstr "" + +#: bookwyrm/templates/snippets/book_titleby.html:11 +#, python-format +msgid "%(title)s by" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:20 +#: bookwyrm/templates/snippets/boost_button.html:21 +msgid "Boost" +msgstr "" + +#: bookwyrm/templates/snippets/boost_button.html:33 +#: bookwyrm/templates/snippets/boost_button.html:34 +msgid "Un-boost" +msgstr "" + +#: bookwyrm/templates/snippets/create_status.html:36 +msgid "Quote" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:15 +msgid "Some thoughts on the book" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:27 +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:17 +msgid "Progress:" +msgstr "" + +#: 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:59 +#: bookwyrm/templates/snippets/progress_field.html:23 +msgid "percent" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/comment.html:66 +#, python-format +msgid "of %(pages)s pages" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +#: bookwyrm/templates/snippets/status/layout.html:34 +#: bookwyrm/templates/snippets/status/layout.html:53 +#: bookwyrm/templates/snippets/status/layout.html:54 +msgid "Reply" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_field.html:18 +msgid "Content" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:9 +msgid "Include spoiler alert" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 +msgid "Spoilers/content warnings:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 +msgid "Spoilers ahead!" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/layout.html:45 +#: bookwyrm/templates/snippets/reading_modals/form.html:7 +msgid "Comment:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/post_options_block.html:18 +msgid "Post" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:16 +msgid "Quote:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:24 +#, python-format +msgid "An excerpt from '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:31 +msgid "Position:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:44 +msgid "On page:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/quotation.html:50 +msgid "At percent:" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:24 +#, python-format +msgid "Your review of '%(book_title)s'" +msgstr "" + +#: bookwyrm/templates/snippets/create_status/review.html:39 +msgid "Review:" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:16 +#: bookwyrm/templates/snippets/fav_button.html:17 +msgid "Like" +msgstr "" + +#: bookwyrm/templates/snippets/fav_button.html:30 +#: bookwyrm/templates/snippets/fav_button.html:31 +msgid "Un-like" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:5 +msgid "Filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:10 +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:17 +msgid "Filters are applied" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:20 +msgid "Clear filters" +msgstr "" + +#: bookwyrm/templates/snippets/filters_panel/filters_panel.html:43 +msgid "Apply filters" +msgstr "" + +#: bookwyrm/templates/snippets/follow_button.html:20 +#, python-format +msgid "Follow @%(username)s" +msgstr "Urmăriți @%(username)s" + +#: bookwyrm/templates/snippets/follow_button.html:22 +msgid "Follow" +msgstr "Urmăriți" + +#: bookwyrm/templates/snippets/follow_button.html:31 +msgid "Undo follow request" +msgstr "Revocați cererea de urmărire" + +#: bookwyrm/templates/snippets/follow_button.html:36 +#, python-format +msgid "Unfollow @%(username)s" +msgstr "Nu mai urmăriți @%(username)s" + +#: bookwyrm/templates/snippets/follow_button.html:38 +msgid "Unfollow" +msgstr "Dezabonați-vă" + +#: bookwyrm/templates/snippets/follow_request_buttons.html:7 +#: bookwyrm/templates/snippets/join_invitation_buttons.html:9 +msgid "Accept" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:20 +#: bookwyrm/templates/snippets/stars.html:13 +msgid "No rating" +msgstr "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:28 +#, python-format +msgid "%(half_rating)s star" +msgid_plural "%(half_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/snippets/form_rate_stars.html:64 +#: bookwyrm/templates/snippets/stars.html:7 +#, python-format +msgid "%(rating)s star" +msgid_plural "%(rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/snippets/generated_status/goal.html:2 +#, python-format +msgid "set a goal to read %(counter)s book in %(year)s" +msgid_plural "set a goal to read %(counter)s books in %(year)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/snippets/generated_status/rating.html:3 +#, python-format +msgid "rated %(title)s: %(display_rating)s star" +msgid_plural "rated %(title)s: %(display_rating)s stars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:4 +#, python-format +msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s" +msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12 +#, python-format +msgid "Review of \"%(book_title)s\": %(review_title)s" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:4 +#, python-format +msgid "Set a goal for how many books you'll finish reading in %(year)s, and track your progress throughout the year." +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:16 +msgid "Reading goal:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:21 +msgid "books" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:26 +msgid "Goal privacy:" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:33 +#: bookwyrm/templates/snippets/reading_modals/layout.html:13 +msgid "Post to feed" +msgstr "" + +#: bookwyrm/templates/snippets/goal_form.html:37 +msgid "Set goal" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:7 +msgctxt "Goal successfully completed" +msgid "Success!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:9 +#, python-format +msgid "%(percent)s%% complete!" +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:12 +#, python-format +msgid "You've read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/goal_progress.html:14 +#, python-format +msgid "%(username)s has read %(read_count)s of %(goal_count)s books." +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:8 +#, python-format +msgid "page %(page)s of %(total_pages)s" +msgstr "" + +#: bookwyrm/templates/snippets/page_text.html:14 +#, python-format +msgid "page %(page)s" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:12 +msgid "Previous" +msgstr "" + +#: bookwyrm/templates/snippets/pagination.html:23 +msgid "Next" +msgstr "" + +#: bookwyrm/templates/snippets/privacy-icons.html:12 +msgid "Followers-only" +msgstr "" + +#: bookwyrm/templates/snippets/privacy_select.html:6 +#: bookwyrm/templates/snippets/privacy_select_no_followers.html:6 +msgid "Post privacy" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:5 +msgid "Leave a rating" +msgstr "" + +#: bookwyrm/templates/snippets/rate_action.html:20 +msgid "Rate" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/finish_reading_modal.html:6 +#, python-format +msgid "Finish \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/form.html:9 +msgid "(Optional)" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/progress_update_modal.html:6 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:54 +msgid "Update progress" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/start_reading_modal.html:6 +#, python-format +msgid "Start \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/reading_modals/want_to_read_modal.html:6 +#, python-format +msgid "Want to Read \"%(book_title)s\"" +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:18 +msgid "Choose wisely! Your username cannot be changed." +msgstr "" + +#: bookwyrm/templates/snippets/register_form.html:64 +msgid "Sign Up" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:8 +#, python-format +msgid "Report @%(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:10 +#, python-format +msgid "Report %(domain)s link" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:12 +#, python-format +msgid "Report @%(username)s" +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:34 +#, python-format +msgid "This report will be sent to %(site_name)s's moderators for review." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:36 +msgid "Links from this domain will be removed until your report has been reviewed." +msgstr "" + +#: bookwyrm/templates/snippets/report_modal.html:41 +msgid "More info about this report:" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:7 +msgid "Move book" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:39 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:17 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:24 +msgid "Start reading" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:54 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:31 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:38 +msgid "Want to read" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:75 +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown_options.html:66 +#, python-format +msgid "Remove from %(name)s" +msgstr "" + +#: bookwyrm/templates/snippets/shelf_selector.html:88 +msgid "Remove from" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_dropdown.html:5 +msgid "More shelves" +msgstr "" + +#: bookwyrm/templates/snippets/shelve_button/shelve_button_options.html:31 +msgid "Finish reading" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:73 +msgid "Content warning" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:80 +msgid "Show status" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:102 +#, python-format +msgid "(Page %(page)s)" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:104 +#, python-format +msgid "(%(percent)s%%)" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:126 +msgid "Open image in new window" +msgstr "" + +#: bookwyrm/templates/snippets/status/content_status.html:145 +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:8 +#, python-format +msgid "commented on %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/comment.html:15 +#, python-format +msgid "commented on %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/note.html:8 +#, python-format +msgid "replied to %(username)s's status" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:8 +#, python-format +msgid "quoted %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/quotation.html:15 +#, python-format +msgid "quoted %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/rating.html:3 +#, python-format +msgid "rated %(book)s:" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:10 +#, python-format +msgid "finished reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/read.html:17 +#, python-format +msgid "finished reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:10 +#, python-format +msgid "started reading %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/reading.html:17 +#, python-format +msgid "started reading %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:8 +#, python-format +msgid "reviewed %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/review.html:15 +#, python-format +msgid "reviewed %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:10 +#, python-format +msgid "wants to read %(book)s by %(author_name)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/headers/to_read.html:17 +#, python-format +msgid "wants to read %(book)s" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:24 +#: bookwyrm/templates/snippets/status/status_options.html:17 +msgid "Delete status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:57 +#: bookwyrm/templates/snippets/status/layout.html:58 +msgid "Boost status" +msgstr "" + +#: bookwyrm/templates/snippets/status/layout.html:61 +#: bookwyrm/templates/snippets/status/layout.html:62 +msgid "Like status" +msgstr "" + +#: bookwyrm/templates/snippets/status/status.html:10 +msgid "boosted" +msgstr "" + +#: bookwyrm/templates/snippets/status/status_options.html:7 +#: bookwyrm/templates/snippets/user_options.html:7 +msgid "More options" +msgstr "" + +#: bookwyrm/templates/snippets/switch_edition_button.html:5 +msgid "Switch to this edition" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:6 +msgid "Sorted ascending" +msgstr "" + +#: bookwyrm/templates/snippets/table-sort-header.html:10 +msgid "Sorted descending" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:17 +msgid "Show more" +msgstr "" + +#: bookwyrm/templates/snippets/trimmed_text.html:35 +msgid "Show less" +msgstr "" + +#: bookwyrm/templates/user/books_header.html:4 +msgid "Your books" +msgstr "" + +#: bookwyrm/templates/user/books_header.html:9 +#, python-format +msgid "%(username)s's books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:8 +#, python-format +msgid "%(year)s Reading Progress" +msgstr "" + +#: bookwyrm/templates/user/goal.html:12 +msgid "Edit Goal" +msgstr "" + +#: bookwyrm/templates/user/goal.html:28 +#, python-format +msgid "%(name)s hasn't set a reading goal for %(year)s." +msgstr "" + +#: bookwyrm/templates/user/goal.html:40 +#, python-format +msgid "Your %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/goal.html:42 +#, python-format +msgid "%(username)s's %(year)s Books" +msgstr "" + +#: bookwyrm/templates/user/groups.html:9 +msgid "Your Groups" +msgstr "" + +#: bookwyrm/templates/user/groups.html:11 +#, python-format +msgid "Groups: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10 +msgid "User Profile" +msgstr "" + +#: bookwyrm/templates/user/layout.html:48 +msgid "Follow Requests" +msgstr "" + +#: bookwyrm/templates/user/layout.html:73 +msgid "Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/layout.html:79 +msgid "Groups" +msgstr "" + +#: bookwyrm/templates/user/lists.html:11 +#, python-format +msgid "Lists: %(username)s" +msgstr "" + +#: bookwyrm/templates/user/lists.html:17 bookwyrm/templates/user/lists.html:29 +msgid "Create list" +msgstr "" + +#: bookwyrm/templates/user/relationships/followers.html:12 +#, python-format +msgid "%(username)s has no followers" +msgstr "%(username)s nu are niciun urmăritor" + +#: bookwyrm/templates/user/relationships/following.html:6 +#: bookwyrm/templates/user/relationships/layout.html:15 +msgid "Following" +msgstr "Urmărit(ă)" + +#: bookwyrm/templates/user/relationships/following.html:12 +#, python-format +msgid "%(username)s isn't following any users" +msgstr "%(username)s nu urmărește pe nimeni" + +#: bookwyrm/templates/user/user.html:16 +msgid "Edit profile" +msgstr "" + +#: bookwyrm/templates/user/user.html:37 +#, python-format +msgid "View all %(size)s" +msgstr "" + +#: bookwyrm/templates/user/user.html:51 +msgid "View all books" +msgstr "" + +#: bookwyrm/templates/user/user.html:58 +#, python-format +msgid "%(current_year)s Reading Goal" +msgstr "" + +#: bookwyrm/templates/user/user.html:65 +msgid "User Activity" +msgstr "" + +#: bookwyrm/templates/user/user.html:69 +msgid "RSS feed" +msgstr "" + +#: bookwyrm/templates/user/user.html:80 +msgid "No activities yet!" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:22 +#, python-format +msgid "Joined %(date)s" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:26 +#, python-format +msgid "%(counter)s follower" +msgid_plural "%(counter)s followers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/user/user_preview.html:27 +#, python-format +msgid "%(counter)s following" +msgstr "" + +#: bookwyrm/templates/user/user_preview.html:39 +#, python-format +msgid "%(mutuals_display)s follower you follow" +msgid_plural "%(mutuals_display)s followers you follow" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: bookwyrm/templates/user/user_preview.html:43 +msgid "No followers you follow" +msgstr "" + +#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 +msgid "File exceeds maximum size: 10MB" +msgstr "" + +#: bookwyrm/templatetags/utilities.py:39 +#, python-format +msgid "%(title)s: %(subtitle)s" +msgstr "" + +#: bookwyrm/views/imports/import_data.py:67 +msgid "Not a valid csv file" +msgstr "" + +#: bookwyrm/views/landing/login.py:70 +msgid "Username or password are incorrect" +msgstr "" + +#: bookwyrm/views/landing/password.py:32 +msgid "No user with that email address was found." +msgstr "" + +#: bookwyrm/views/landing/password.py:43 +#, python-brace-format +msgid "A password reset link was sent to {email}" +msgstr "" + +#: bookwyrm/views/rss_feed.py:34 +#, python-brace-format +msgid "Status updates from {obj.display_name}" +msgstr "" + +#: bookwyrm/views/updates.py:45 +#, python-format +msgid "Load %(count)d unread status" +msgid_plural "Load %(count)d unread statuses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + diff --git a/locale/sv_SE/LC_MESSAGES/django.mo b/locale/sv_SE/LC_MESSAGES/django.mo index 4e1cd6dc2d05152fb5e88d1b68175a12bcd94378..68fc1b19b84491074aabffd201122fb9873941ba 100644 GIT binary patch delta 24111 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 delta 22577 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 diff --git a/locale/sv_SE/LC_MESSAGES/django.po b/locale/sv_SE/LC_MESSAGES/django.po index c42c7e682..d4dd39287 100644 --- a/locale/sv_SE/LC_MESSAGES/django.po +++ b/locale/sv_SE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-16 23:12+0000\n" -"PO-Revision-Date: 2022-03-16 23:34\n" +"POT-Creation-Date: 2022-03-17 16:15+0000\n" +"PO-Revision-Date: 2022-03-26 00:32\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Swedish\n" "Language: sv\n" @@ -245,7 +245,7 @@ msgstr "Tillgänglig för lån" msgid "Approved" msgstr "Godkänd" -#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:281 +#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:289 msgid "Reviews" msgstr "Recensioner" @@ -651,22 +651,22 @@ msgid "Edit Author:" msgstr "Redigera författare:" #: bookwyrm/templates/author/edit_author.html:13 -#: bookwyrm/templates/book/edit/edit_book.html:19 +#: bookwyrm/templates/book/edit/edit_book.html:25 msgid "Added:" msgstr "Lades till:" #: bookwyrm/templates/author/edit_author.html:14 -#: bookwyrm/templates/book/edit/edit_book.html:22 +#: bookwyrm/templates/book/edit/edit_book.html:28 msgid "Updated:" msgstr "Uppdaterades:" #: bookwyrm/templates/author/edit_author.html:16 -#: bookwyrm/templates/book/edit/edit_book.html:26 +#: bookwyrm/templates/book/edit/edit_book.html:32 msgid "Last edited by:" msgstr "Redigerades senast av:" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/book/edit/edit_book_form.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:19 msgid "Metadata" msgstr "Metadata" @@ -678,8 +678,8 @@ msgid "Name:" msgstr "Namn:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:76 -#: bookwyrm/templates/book/edit/edit_book_form.html:146 +#: bookwyrm/templates/book/edit/edit_book_form.html:78 +#: bookwyrm/templates/book/edit/edit_book_form.html:148 msgid "Separate multiple values with commas." msgstr "Separera flertalet värden med kommatecken." @@ -708,7 +708,7 @@ msgid "Openlibrary key:" msgstr "Nyckel för Openlibrary:" #: bookwyrm/templates/author/edit_author.html:84 -#: bookwyrm/templates/book/edit/edit_book_form.html:322 +#: bookwyrm/templates/book/edit/edit_book_form.html:326 msgid "Inventaire ID:" msgstr "Inventarie-ID:" @@ -726,7 +726,7 @@ msgstr "ISNI:" #: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/book/book.html:202 -#: bookwyrm/templates/book/edit/edit_book.html:121 +#: bookwyrm/templates/book/edit/edit_book.html:127 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:82 #: bookwyrm/templates/groups/form.html:32 @@ -738,7 +738,7 @@ msgstr "ISNI:" #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:105 -#: bookwyrm/templates/settings/site.html:169 +#: bookwyrm/templates/settings/site.html:181 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -749,8 +749,8 @@ msgstr "Spara" #: bookwyrm/templates/author/sync_modal.html:23 #: bookwyrm/templates/book/book.html:203 #: bookwyrm/templates/book/cover_add_modal.html:33 -#: bookwyrm/templates/book/edit/edit_book.html:123 -#: bookwyrm/templates/book/edit/edit_book.html:126 +#: bookwyrm/templates/book/edit/edit_book.html:129 +#: bookwyrm/templates/book/edit/edit_book.html:132 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 #: bookwyrm/templates/book/file_links/verification_modal.html:25 #: bookwyrm/templates/book/sync_modal.html:23 @@ -772,7 +772,7 @@ msgid "Loading data will connect to %(source_name)s and check f msgstr "Att ladda in data kommer att ansluta till %(source_name)s och kontrollera eventuella metadata om den här författaren som inte finns här. Befintliga metadata kommer inte att skrivas över." #: bookwyrm/templates/author/sync_modal.html:24 -#: bookwyrm/templates/book/edit/edit_book.html:108 +#: bookwyrm/templates/book/edit/edit_book.html:114 #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:42 @@ -812,58 +812,60 @@ msgid "Add Description" msgstr "Lägg till beskrivning" #: bookwyrm/templates/book/book.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:40 +#: bookwyrm/templates/book/edit/edit_book_form.html:42 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "Beskrivning:" -#: bookwyrm/templates/book/book.html:212 +#: bookwyrm/templates/book/book.html:214 #, python-format -msgid "%(count)s editions" -msgstr "%(count)s utgåvor" +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" +msgstr[1] "" -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" msgstr "Du har lagt den här versionen i hylla:" -#: bookwyrm/templates/book/book.html:235 +#: bookwyrm/templates/book/book.html:243 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "En annorlunda utgåva av den här boken finns i din %(shelf_name)s hylla." -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:254 msgid "Your reading activity" msgstr "Din läsningsaktivitet" -#: bookwyrm/templates/book/book.html:252 +#: bookwyrm/templates/book/book.html:260 msgid "Add read dates" msgstr "Lägg till läsdatum" -#: bookwyrm/templates/book/book.html:260 +#: bookwyrm/templates/book/book.html:268 msgid "You don't have any reading activity for this book." msgstr "Du har ingen läsaktivitet för den här boken." -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:294 msgid "Your reviews" msgstr "Dina recensioner" -#: bookwyrm/templates/book/book.html:292 +#: bookwyrm/templates/book/book.html:300 msgid "Your comments" msgstr "Dina kommentarer" -#: bookwyrm/templates/book/book.html:298 +#: bookwyrm/templates/book/book.html:306 msgid "Your quotes" msgstr "Dina citationer" -#: bookwyrm/templates/book/book.html:334 +#: bookwyrm/templates/book/book.html:342 msgid "Subjects" msgstr "Ämnen" -#: bookwyrm/templates/book/book.html:346 +#: bookwyrm/templates/book/book.html:354 msgid "Places" msgstr "Platser" -#: bookwyrm/templates/book/book.html:357 +#: bookwyrm/templates/book/book.html:365 #: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83 #: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 @@ -873,11 +875,11 @@ msgstr "Platser" msgid "Lists" msgstr "Listor" -#: bookwyrm/templates/book/book.html:369 +#: bookwyrm/templates/book/book.html:377 msgid "Add to list" msgstr "Lägg till i listan" -#: bookwyrm/templates/book/book.html:379 +#: bookwyrm/templates/book/book.html:387 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -891,12 +893,12 @@ msgid "ISBN:" msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:15 -#: bookwyrm/templates/book/edit/edit_book_form.html:331 +#: bookwyrm/templates/book/edit/edit_book_form.html:335 msgid "OCLC Number:" msgstr "OCLC-nummer:" #: bookwyrm/templates/book/book_identifiers.html:22 -#: bookwyrm/templates/book/edit/edit_book_form.html:340 +#: bookwyrm/templates/book/edit/edit_book_form.html:344 msgid "ASIN:" msgstr "ASIN:" @@ -905,12 +907,12 @@ msgid "Add cover" msgstr "Lägg till omslag" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:230 +#: bookwyrm/templates/book/edit/edit_book_form.html:234 msgid "Upload cover:" msgstr "Ladda upp omslag:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:236 +#: bookwyrm/templates/book/edit/edit_book_form.html:240 msgid "Load cover from url:" msgstr "Ladda omslag från url:" @@ -929,177 +931,177 @@ msgstr "Förhandsvisning av bokomslag" msgid "Close" msgstr "Stäng" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:12 +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 #, python-format msgid "Edit \"%(book_title)s\"" msgstr "Redigera \"%(book_title)s\"" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 msgid "Add Book" msgstr "Lägg till bok" -#: bookwyrm/templates/book/edit/edit_book.html:48 +#: bookwyrm/templates/book/edit/edit_book.html:54 msgid "Confirm Book Info" msgstr "Bekräfta bokens info" -#: bookwyrm/templates/book/edit/edit_book.html:56 +#: bookwyrm/templates/book/edit/edit_book.html:62 #, python-format msgid "Is \"%(name)s\" one of these authors?" msgstr "Är \"%(name)s\" en utav dessa författare?" -#: bookwyrm/templates/book/edit/edit_book.html:67 -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:73 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Author of " msgstr "Författare av " -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Find more information at isni.org" msgstr "Hitta mer information på isni.org" -#: bookwyrm/templates/book/edit/edit_book.html:79 +#: bookwyrm/templates/book/edit/edit_book.html:85 msgid "This is a new author" msgstr "Det här är en ny författare" -#: bookwyrm/templates/book/edit/edit_book.html:86 +#: bookwyrm/templates/book/edit/edit_book.html:92 #, python-format msgid "Creating a new author: %(name)s" msgstr "Skapar en ny författare: %(name)s" -#: bookwyrm/templates/book/edit/edit_book.html:93 +#: bookwyrm/templates/book/edit/edit_book.html:99 msgid "Is this an edition of an existing work?" msgstr "Är det här en version av ett redan befintligt verk?" -#: bookwyrm/templates/book/edit/edit_book.html:101 +#: bookwyrm/templates/book/edit/edit_book.html:107 msgid "This is a new work" msgstr "Det här är ett ny verk" -#: bookwyrm/templates/book/edit/edit_book.html:110 +#: bookwyrm/templates/book/edit/edit_book.html:116 #: bookwyrm/templates/feed/status.html:21 msgid "Back" msgstr "Bakåt" -#: bookwyrm/templates/book/edit/edit_book_form.html:22 +#: bookwyrm/templates/book/edit/edit_book_form.html:24 #: bookwyrm/templates/snippets/create_status/review.html:15 msgid "Title:" msgstr "Titel:" -#: bookwyrm/templates/book/edit/edit_book_form.html:31 +#: bookwyrm/templates/book/edit/edit_book_form.html:33 msgid "Subtitle:" msgstr "Undertext:" -#: bookwyrm/templates/book/edit/edit_book_form.html:51 +#: bookwyrm/templates/book/edit/edit_book_form.html:53 msgid "Series:" msgstr "Serier:" -#: bookwyrm/templates/book/edit/edit_book_form.html:61 +#: bookwyrm/templates/book/edit/edit_book_form.html:63 msgid "Series number:" msgstr "Serienummer:" -#: bookwyrm/templates/book/edit/edit_book_form.html:72 +#: bookwyrm/templates/book/edit/edit_book_form.html:74 msgid "Languages:" msgstr "Språk:" -#: bookwyrm/templates/book/edit/edit_book_form.html:84 +#: bookwyrm/templates/book/edit/edit_book_form.html:86 msgid "Subjects:" -msgstr "" +msgstr "Ämnen:" -#: bookwyrm/templates/book/edit/edit_book_form.html:88 +#: bookwyrm/templates/book/edit/edit_book_form.html:90 msgid "Add subject" -msgstr "" +msgstr "Lägg till ämne" -#: bookwyrm/templates/book/edit/edit_book_form.html:106 +#: bookwyrm/templates/book/edit/edit_book_form.html:108 msgid "Remove subject" -msgstr "" +msgstr "Ta bort ämne" -#: bookwyrm/templates/book/edit/edit_book_form.html:129 +#: bookwyrm/templates/book/edit/edit_book_form.html:131 msgid "Add Another Subject" -msgstr "" +msgstr "Lägg till ett annat ämne" -#: bookwyrm/templates/book/edit/edit_book_form.html:137 +#: bookwyrm/templates/book/edit/edit_book_form.html:139 msgid "Publication" msgstr "Publicering" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Publisher:" msgstr "Utgivare:" -#: bookwyrm/templates/book/edit/edit_book_form.html:154 +#: bookwyrm/templates/book/edit/edit_book_form.html:156 msgid "First published date:" msgstr "Första publiceringsdatum:" -#: bookwyrm/templates/book/edit/edit_book_form.html:163 +#: bookwyrm/templates/book/edit/edit_book_form.html:165 msgid "Published date:" msgstr "Publiceringsdatum:" -#: bookwyrm/templates/book/edit/edit_book_form.html:174 +#: bookwyrm/templates/book/edit/edit_book_form.html:176 msgid "Authors" msgstr "Författare" -#: bookwyrm/templates/book/edit/edit_book_form.html:183 +#: bookwyrm/templates/book/edit/edit_book_form.html:187 #, python-format msgid "Remove %(name)s" msgstr "Ta bort %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:190 #, python-format msgid "Author page for %(name)s" msgstr "Författarsida för %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:194 +#: bookwyrm/templates/book/edit/edit_book_form.html:198 msgid "Add Authors:" msgstr "Lägg till författare:" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:204 msgid "Add Author" msgstr "Lägg till författare" -#: bookwyrm/templates/book/edit/edit_book_form.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#: bookwyrm/templates/book/edit/edit_book_form.html:205 msgid "Jane Doe" msgstr "Jane Doe" -#: bookwyrm/templates/book/edit/edit_book_form.html:207 +#: bookwyrm/templates/book/edit/edit_book_form.html:211 msgid "Add Another Author" msgstr "Lägg till en annan författare" -#: bookwyrm/templates/book/edit/edit_book_form.html:217 +#: bookwyrm/templates/book/edit/edit_book_form.html:221 #: bookwyrm/templates/shelf/shelf.html:146 msgid "Cover" msgstr "Omslag" -#: bookwyrm/templates/book/edit/edit_book_form.html:249 +#: bookwyrm/templates/book/edit/edit_book_form.html:253 msgid "Physical Properties" msgstr "Fysiska egenskaper" -#: bookwyrm/templates/book/edit/edit_book_form.html:256 +#: bookwyrm/templates/book/edit/edit_book_form.html:260 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "Format:" -#: bookwyrm/templates/book/edit/edit_book_form.html:268 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 msgid "Format details:" msgstr "Formatets detaljer:" -#: bookwyrm/templates/book/edit/edit_book_form.html:279 +#: bookwyrm/templates/book/edit/edit_book_form.html:283 msgid "Pages:" msgstr "Sidor:" -#: bookwyrm/templates/book/edit/edit_book_form.html:290 +#: bookwyrm/templates/book/edit/edit_book_form.html:294 msgid "Book Identifiers" msgstr "Bok-identifierare" -#: bookwyrm/templates/book/edit/edit_book_form.html:295 +#: bookwyrm/templates/book/edit/edit_book_form.html:299 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:304 +#: bookwyrm/templates/book/edit/edit_book_form.html:308 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:313 +#: bookwyrm/templates/book/edit/edit_book_form.html:317 msgid "Openlibrary ID:" msgstr "Openlibrary-ID:" @@ -1113,6 +1115,14 @@ msgstr "Utgåvor av %(book_title)s" msgid "Editions of \"%(work_title)s\"" msgstr "Utgåvor av \"%(work_title)s\"" +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "Kan du inte hitta versionen som du letar efter?" + +#: bookwyrm/templates/book/editions/editions.html:75 +msgid "Add another edition" +msgstr "Lägg till en annan version" + #: bookwyrm/templates/book/editions/format_filter.html:9 #: bookwyrm/templates/book/editions/language_filter.html:9 msgid "Any" @@ -1156,7 +1166,7 @@ msgstr "Redigera länkar" #: bookwyrm/templates/book/file_links/edit_links.html:11 #, python-format msgid "Links for \"%(title)s\"" -msgstr "" +msgstr "Länkar för \"%(title)s\"" #: bookwyrm/templates/book/file_links/edit_links.html:32 #: bookwyrm/templates/settings/link_domains/link_table.html:6 @@ -1183,7 +1193,7 @@ msgstr "Domän" #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/federation/instance_list.html:46 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_info.html:20 @@ -1307,7 +1317,7 @@ msgid "Confirmation code:" msgstr "Bekräftelsekod:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 -#: bookwyrm/templates/landing/layout.html:73 +#: bookwyrm/templates/landing/layout.html:81 #: bookwyrm/templates/settings/dashboard/dashboard.html:116 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" @@ -2186,7 +2196,7 @@ msgstr "%(name)s registrering är stängd" msgid "Thank you! Your request has been received." msgstr "Tack! Din förfrågning har tagits emot." -#: bookwyrm/templates/landing/layout.html:82 +#: bookwyrm/templates/landing/layout.html:90 msgid "Your Account" msgstr "Ditt konto" @@ -2251,7 +2261,7 @@ msgstr "Sök efter en bok, användare eller lista" #: bookwyrm/templates/layout.html:61 bookwyrm/templates/layout.html:62 msgid "Scan Barcode" -msgstr "" +msgstr "Skanna streckkod" #: bookwyrm/templates/layout.html:72 msgid "Main navigation menu" @@ -2936,7 +2946,7 @@ msgstr "Godkänn följare manuellt" #: bookwyrm/templates/preferences/edit_user.html:123 msgid "Hide followers and following on profile" -msgstr "" +msgstr "Göm följare och följningar på profilen" #: bookwyrm/templates/preferences/edit_user.html:128 msgid "Default post privacy:" @@ -3040,38 +3050,40 @@ msgstr "Rapport" msgid "\n" " Scan Barcode\n" " " -msgstr "" +msgstr "\n" +"Skanna streckkod\n" +" " #: bookwyrm/templates/search/barcode_modal.html:23 msgid "Requesting camera..." -msgstr "" +msgstr "Begär kamera..." #: bookwyrm/templates/search/barcode_modal.html:24 msgid "Grant access to the camera to scan a book's barcode." -msgstr "" +msgstr "Bevilja åtkomst till kameran för att skanna en boks streckkod." #: bookwyrm/templates/search/barcode_modal.html:29 msgid "Could not access camera" -msgstr "" +msgstr "Kunde inte komma åt kameran" #: bookwyrm/templates/search/barcode_modal.html:33 msgctxt "barcode scanner" msgid "Scanning..." -msgstr "" +msgstr "Skannar..." #: bookwyrm/templates/search/barcode_modal.html:34 msgid "Align your book's barcode with the camera." -msgstr "" +msgstr "Justera din boks streckkod med kameran." #: bookwyrm/templates/search/barcode_modal.html:38 msgctxt "barcode scanner" msgid "ISBN scanned" -msgstr "" +msgstr "ISBN skannades" #: bookwyrm/templates/search/barcode_modal.html:39 msgctxt "followed by ISBN" msgid "Searching for book:" -msgstr "" +msgstr "Söker efter bok:" #: bookwyrm/templates/search/book.html:44 msgid "Results from" @@ -3239,11 +3251,11 @@ msgstr "" #: bookwyrm/templates/settings/automod/rules.html:26 msgid "Schedule:" -msgstr "" +msgstr "Schema:" #: bookwyrm/templates/settings/automod/rules.html:33 msgid "Last run:" -msgstr "" +msgstr "Kördes senast:" #: bookwyrm/templates/settings/automod/rules.html:40 msgid "Total run count:" @@ -3251,15 +3263,15 @@ msgstr "" #: bookwyrm/templates/settings/automod/rules.html:47 msgid "Enabled:" -msgstr "" +msgstr "Aktiverad:" #: bookwyrm/templates/settings/automod/rules.html:59 msgid "Delete schedule" -msgstr "" +msgstr "Ta bort schema" #: bookwyrm/templates/settings/automod/rules.html:63 msgid "Run now" -msgstr "" +msgstr "Kör nu" #: bookwyrm/templates/settings/automod/rules.html:64 msgid "Last run date will not be updated" @@ -3268,7 +3280,7 @@ msgstr "" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 msgid "Schedule scan" -msgstr "" +msgstr "Schemalägg skanning" #: bookwyrm/templates/settings/automod/rules.html:101 msgid "Successfully added rule" @@ -3603,50 +3615,54 @@ msgstr "Datum för godkännande" msgid "Email" msgstr "E-postadress" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +msgid "Answer" +msgstr "Svar" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 msgid "Action" msgstr "Åtgärd" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:53 msgid "No requests" msgstr "Inga förfrågningar" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:65 #: bookwyrm/templates/settings/invites/status_filter.html:16 msgid "Accepted" msgstr "Accepterade" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:67 #: bookwyrm/templates/settings/invites/status_filter.html:12 msgid "Sent" msgstr "Skickade" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:69 #: bookwyrm/templates/settings/invites/status_filter.html:8 msgid "Requested" msgstr "Förfrågade" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:79 msgid "Send invite" msgstr "Skicka inbjudning" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:81 msgid "Re-send invite" msgstr "Skicka inbjudningen igen" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:101 msgid "Ignore" msgstr "Ignorera" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:103 msgid "Un-ignore" msgstr "Sluta ignorera" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:114 msgid "Back to pending requests" msgstr "Bakåt till väntande förfrågningar" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 msgid "View ignored requests" msgstr "Visa ignorerade förfrågningar" @@ -3756,7 +3772,7 @@ msgstr "Inställningar för sidan" #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 msgid "Themes" -msgstr "" +msgstr "Teman" #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format @@ -3951,7 +3967,7 @@ msgstr "Favikon:" #: bookwyrm/templates/settings/site.html:98 msgid "Default theme:" -msgstr "" +msgstr "Standardtema:" #: bookwyrm/templates/settings/site.html:113 msgid "Support link:" @@ -3978,18 +3994,26 @@ msgid "Allow invite requests" msgstr "Tillåt inbjudningsförfrågningar" #: bookwyrm/templates/settings/site.html:151 +msgid "Set a question for invite requests" +msgstr "" + +#: bookwyrm/templates/settings/site.html:156 +msgid "Question:" +msgstr "Fråga:" + +#: bookwyrm/templates/settings/site.html:163 msgid "Require users to confirm email address" msgstr "Kräv att användarna ska bekräfta e-postadressen" -#: bookwyrm/templates/settings/site.html:153 +#: bookwyrm/templates/settings/site.html:165 msgid "(Recommended if registration is open)" msgstr "(Rekommenderas om registreringen är öppen)" -#: bookwyrm/templates/settings/site.html:156 +#: bookwyrm/templates/settings/site.html:168 msgid "Registration closed text:" msgstr "Text för stängd registrering:" -#: bookwyrm/templates/settings/site.html:160 +#: bookwyrm/templates/settings/site.html:172 msgid "Invite request text:" msgstr "Text för inbjudningsförfrågning:" @@ -4003,7 +4027,7 @@ msgstr "" #: bookwyrm/templates/settings/themes.html:26 msgid "How to add a theme" -msgstr "" +msgstr "Hur man lägger till ett tema" #: bookwyrm/templates/settings/themes.html:29 msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." diff --git a/locale/zh_Hans/LC_MESSAGES/django.mo b/locale/zh_Hans/LC_MESSAGES/django.mo index 1d1227f8092b70c68bb692fb532759090142aa83..e6023e815ded3d8ce204d472ba25415a958d2bea 100644 GIT binary patch literal 85895 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 S0TOg?KN0&d0;IH0jQ%f4%`RX7 diff --git a/locale/zh_Hans/LC_MESSAGES/django.po b/locale/zh_Hans/LC_MESSAGES/django.po index 0c0944fd2..599292733 100644 --- a/locale/zh_Hans/LC_MESSAGES/django.po +++ b/locale/zh_Hans/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-16 23:12+0000\n" -"PO-Revision-Date: 2022-03-16 23:34\n" +"POT-Creation-Date: 2022-03-17 16:15+0000\n" +"PO-Revision-Date: 2022-03-19 07:21\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Chinese Simplified\n" "Language: zh\n" @@ -245,7 +245,7 @@ msgstr "可借阅" msgid "Approved" msgstr "已通过" -#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:281 +#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:289 msgid "Reviews" msgstr "书评" @@ -647,22 +647,22 @@ msgid "Edit Author:" msgstr "编辑作者:" #: bookwyrm/templates/author/edit_author.html:13 -#: bookwyrm/templates/book/edit/edit_book.html:19 +#: bookwyrm/templates/book/edit/edit_book.html:25 msgid "Added:" msgstr "添加了:" #: bookwyrm/templates/author/edit_author.html:14 -#: bookwyrm/templates/book/edit/edit_book.html:22 +#: bookwyrm/templates/book/edit/edit_book.html:28 msgid "Updated:" msgstr "更新了:" #: bookwyrm/templates/author/edit_author.html:16 -#: bookwyrm/templates/book/edit/edit_book.html:26 +#: bookwyrm/templates/book/edit/edit_book.html:32 msgid "Last edited by:" msgstr "最后编辑人:" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/book/edit/edit_book_form.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:19 msgid "Metadata" msgstr "元数据" @@ -674,8 +674,8 @@ msgid "Name:" msgstr "名称:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:76 -#: bookwyrm/templates/book/edit/edit_book_form.html:146 +#: bookwyrm/templates/book/edit/edit_book_form.html:78 +#: bookwyrm/templates/book/edit/edit_book_form.html:148 msgid "Separate multiple values with commas." msgstr "请用英文逗号(,)分隔多个值。" @@ -704,7 +704,7 @@ msgid "Openlibrary key:" msgstr "Openlibrary key:" #: bookwyrm/templates/author/edit_author.html:84 -#: bookwyrm/templates/book/edit/edit_book_form.html:322 +#: bookwyrm/templates/book/edit/edit_book_form.html:326 msgid "Inventaire ID:" msgstr "Inventaire ID:" @@ -722,7 +722,7 @@ msgstr "ISNI:" #: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/book/book.html:202 -#: bookwyrm/templates/book/edit/edit_book.html:121 +#: bookwyrm/templates/book/edit/edit_book.html:127 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:82 #: bookwyrm/templates/groups/form.html:32 @@ -734,7 +734,7 @@ msgstr "ISNI:" #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:105 -#: bookwyrm/templates/settings/site.html:169 +#: bookwyrm/templates/settings/site.html:181 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -745,8 +745,8 @@ msgstr "保存" #: bookwyrm/templates/author/sync_modal.html:23 #: bookwyrm/templates/book/book.html:203 #: bookwyrm/templates/book/cover_add_modal.html:33 -#: bookwyrm/templates/book/edit/edit_book.html:123 -#: bookwyrm/templates/book/edit/edit_book.html:126 +#: bookwyrm/templates/book/edit/edit_book.html:129 +#: bookwyrm/templates/book/edit/edit_book.html:132 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 #: bookwyrm/templates/book/file_links/verification_modal.html:25 #: bookwyrm/templates/book/sync_modal.html:23 @@ -768,7 +768,7 @@ msgid "Loading data will connect to %(source_name)s and check f msgstr "加载数据会连接到 %(source_name)s 并检查这里还没有记录的与作者相关的元数据。现存的元数据不会被覆盖。" #: bookwyrm/templates/author/sync_modal.html:24 -#: bookwyrm/templates/book/edit/edit_book.html:108 +#: bookwyrm/templates/book/edit/edit_book.html:114 #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:42 @@ -778,7 +778,7 @@ msgstr "确认" #: bookwyrm/templates/book/book.html:19 msgid "Unable to connect to remote source." -msgstr "" +msgstr "无法联系远程资源。" #: bookwyrm/templates/book/book.html:64 bookwyrm/templates/book/book.html:65 msgid "Edit Book" @@ -807,58 +807,59 @@ msgid "Add Description" msgstr "添加描述" #: bookwyrm/templates/book/book.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:40 +#: bookwyrm/templates/book/edit/edit_book_form.html:42 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "描述:" -#: bookwyrm/templates/book/book.html:212 +#: bookwyrm/templates/book/book.html:214 #, python-format -msgid "%(count)s editions" -msgstr "%(count)s 个版本" +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "%(count)s 版次" -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" msgstr "此版本已在你的书架上:" -#: bookwyrm/templates/book/book.html:235 +#: bookwyrm/templates/book/book.html:243 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "本书的 另一个版本 在你的 %(shelf_name)s 书架上。" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:254 msgid "Your reading activity" msgstr "你的阅读活动" -#: bookwyrm/templates/book/book.html:252 +#: bookwyrm/templates/book/book.html:260 msgid "Add read dates" msgstr "添加阅读日期" -#: bookwyrm/templates/book/book.html:260 +#: bookwyrm/templates/book/book.html:268 msgid "You don't have any reading activity for this book." msgstr "你还没有任何这本书的阅读活动。" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:294 msgid "Your reviews" msgstr "你的书评" -#: bookwyrm/templates/book/book.html:292 +#: bookwyrm/templates/book/book.html:300 msgid "Your comments" msgstr "你的评论" -#: bookwyrm/templates/book/book.html:298 +#: bookwyrm/templates/book/book.html:306 msgid "Your quotes" msgstr "你的引用" -#: bookwyrm/templates/book/book.html:334 +#: bookwyrm/templates/book/book.html:342 msgid "Subjects" msgstr "主题" -#: bookwyrm/templates/book/book.html:346 +#: bookwyrm/templates/book/book.html:354 msgid "Places" msgstr "地点" -#: bookwyrm/templates/book/book.html:357 +#: bookwyrm/templates/book/book.html:365 #: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83 #: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 @@ -868,11 +869,11 @@ msgstr "地点" msgid "Lists" msgstr "列表" -#: bookwyrm/templates/book/book.html:369 +#: bookwyrm/templates/book/book.html:377 msgid "Add to list" msgstr "添加到列表" -#: bookwyrm/templates/book/book.html:379 +#: bookwyrm/templates/book/book.html:387 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -886,12 +887,12 @@ msgid "ISBN:" msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:15 -#: bookwyrm/templates/book/edit/edit_book_form.html:331 +#: bookwyrm/templates/book/edit/edit_book_form.html:335 msgid "OCLC Number:" msgstr "OCLC 号:" #: bookwyrm/templates/book/book_identifiers.html:22 -#: bookwyrm/templates/book/edit/edit_book_form.html:340 +#: bookwyrm/templates/book/edit/edit_book_form.html:344 msgid "ASIN:" msgstr "ASIN:" @@ -900,12 +901,12 @@ msgid "Add cover" msgstr "添加封面" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:230 +#: bookwyrm/templates/book/edit/edit_book_form.html:234 msgid "Upload cover:" msgstr "上传封面:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:236 +#: bookwyrm/templates/book/edit/edit_book_form.html:240 msgid "Load cover from url:" msgstr "从网址加载封面:" @@ -924,177 +925,177 @@ msgstr "书籍封面预览" msgid "Close" msgstr "关闭" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:12 +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 #, python-format msgid "Edit \"%(book_title)s\"" msgstr "编辑《%(book_title)s》" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 msgid "Add Book" msgstr "添加书目" -#: bookwyrm/templates/book/edit/edit_book.html:48 +#: bookwyrm/templates/book/edit/edit_book.html:54 msgid "Confirm Book Info" msgstr "确认书目信息" -#: bookwyrm/templates/book/edit/edit_book.html:56 +#: bookwyrm/templates/book/edit/edit_book.html:62 #, python-format msgid "Is \"%(name)s\" one of these authors?" msgstr "“%(name)s” 是这些作者之一吗?" -#: bookwyrm/templates/book/edit/edit_book.html:67 -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:73 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Author of " msgstr "所著书有 " -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Find more information at isni.org" msgstr "在 isni.org 查找更多信息" -#: bookwyrm/templates/book/edit/edit_book.html:79 +#: bookwyrm/templates/book/edit/edit_book.html:85 msgid "This is a new author" msgstr "这是一位新的作者" -#: bookwyrm/templates/book/edit/edit_book.html:86 +#: bookwyrm/templates/book/edit/edit_book.html:92 #, python-format msgid "Creating a new author: %(name)s" msgstr "正在创建新的作者: %(name)s" -#: bookwyrm/templates/book/edit/edit_book.html:93 +#: bookwyrm/templates/book/edit/edit_book.html:99 msgid "Is this an edition of an existing work?" msgstr "这是已存在的作品的一个版本吗?" -#: bookwyrm/templates/book/edit/edit_book.html:101 +#: bookwyrm/templates/book/edit/edit_book.html:107 msgid "This is a new work" msgstr "这是一个新的作品。" -#: bookwyrm/templates/book/edit/edit_book.html:110 +#: bookwyrm/templates/book/edit/edit_book.html:116 #: bookwyrm/templates/feed/status.html:21 msgid "Back" msgstr "返回" -#: bookwyrm/templates/book/edit/edit_book_form.html:22 +#: bookwyrm/templates/book/edit/edit_book_form.html:24 #: bookwyrm/templates/snippets/create_status/review.html:15 msgid "Title:" msgstr "标题:" -#: bookwyrm/templates/book/edit/edit_book_form.html:31 +#: bookwyrm/templates/book/edit/edit_book_form.html:33 msgid "Subtitle:" msgstr "副标题:" -#: bookwyrm/templates/book/edit/edit_book_form.html:51 +#: bookwyrm/templates/book/edit/edit_book_form.html:53 msgid "Series:" msgstr "系列:" -#: bookwyrm/templates/book/edit/edit_book_form.html:61 +#: bookwyrm/templates/book/edit/edit_book_form.html:63 msgid "Series number:" msgstr "系列编号:" -#: bookwyrm/templates/book/edit/edit_book_form.html:72 +#: bookwyrm/templates/book/edit/edit_book_form.html:74 msgid "Languages:" msgstr "语言:" -#: bookwyrm/templates/book/edit/edit_book_form.html:84 +#: bookwyrm/templates/book/edit/edit_book_form.html:86 msgid "Subjects:" -msgstr "" +msgstr "主题:" -#: bookwyrm/templates/book/edit/edit_book_form.html:88 +#: bookwyrm/templates/book/edit/edit_book_form.html:90 msgid "Add subject" -msgstr "" +msgstr "添加主题" -#: bookwyrm/templates/book/edit/edit_book_form.html:106 +#: bookwyrm/templates/book/edit/edit_book_form.html:108 msgid "Remove subject" -msgstr "" +msgstr "移除主题" -#: bookwyrm/templates/book/edit/edit_book_form.html:129 +#: bookwyrm/templates/book/edit/edit_book_form.html:131 msgid "Add Another Subject" -msgstr "" +msgstr "添加新用户" -#: bookwyrm/templates/book/edit/edit_book_form.html:137 +#: bookwyrm/templates/book/edit/edit_book_form.html:139 msgid "Publication" msgstr "出版" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Publisher:" msgstr "出版社:" -#: bookwyrm/templates/book/edit/edit_book_form.html:154 +#: bookwyrm/templates/book/edit/edit_book_form.html:156 msgid "First published date:" msgstr "初版时间:" -#: bookwyrm/templates/book/edit/edit_book_form.html:163 +#: bookwyrm/templates/book/edit/edit_book_form.html:165 msgid "Published date:" msgstr "出版时间:" -#: bookwyrm/templates/book/edit/edit_book_form.html:174 +#: bookwyrm/templates/book/edit/edit_book_form.html:176 msgid "Authors" msgstr "作者" -#: bookwyrm/templates/book/edit/edit_book_form.html:183 +#: bookwyrm/templates/book/edit/edit_book_form.html:187 #, python-format msgid "Remove %(name)s" msgstr "移除 %(name)s" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:190 #, python-format msgid "Author page for %(name)s" msgstr "%(name)s 的作者页面" -#: bookwyrm/templates/book/edit/edit_book_form.html:194 +#: bookwyrm/templates/book/edit/edit_book_form.html:198 msgid "Add Authors:" msgstr "添加作者:" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:204 msgid "Add Author" msgstr "添加作者" -#: bookwyrm/templates/book/edit/edit_book_form.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#: bookwyrm/templates/book/edit/edit_book_form.html:205 msgid "Jane Doe" msgstr "张三" -#: bookwyrm/templates/book/edit/edit_book_form.html:207 +#: bookwyrm/templates/book/edit/edit_book_form.html:211 msgid "Add Another Author" msgstr "添加另一作者" -#: bookwyrm/templates/book/edit/edit_book_form.html:217 +#: bookwyrm/templates/book/edit/edit_book_form.html:221 #: bookwyrm/templates/shelf/shelf.html:146 msgid "Cover" msgstr "封面" -#: bookwyrm/templates/book/edit/edit_book_form.html:249 +#: bookwyrm/templates/book/edit/edit_book_form.html:253 msgid "Physical Properties" msgstr "实体性质" -#: bookwyrm/templates/book/edit/edit_book_form.html:256 +#: bookwyrm/templates/book/edit/edit_book_form.html:260 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "格式:" -#: bookwyrm/templates/book/edit/edit_book_form.html:268 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 msgid "Format details:" msgstr "装订细节:" -#: bookwyrm/templates/book/edit/edit_book_form.html:279 +#: bookwyrm/templates/book/edit/edit_book_form.html:283 msgid "Pages:" msgstr "页数:" -#: bookwyrm/templates/book/edit/edit_book_form.html:290 +#: bookwyrm/templates/book/edit/edit_book_form.html:294 msgid "Book Identifiers" msgstr "书目标识号" -#: bookwyrm/templates/book/edit/edit_book_form.html:295 +#: bookwyrm/templates/book/edit/edit_book_form.html:299 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:304 +#: bookwyrm/templates/book/edit/edit_book_form.html:308 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:313 +#: bookwyrm/templates/book/edit/edit_book_form.html:317 msgid "Openlibrary ID:" msgstr "Openlibrary ID:" @@ -1108,6 +1109,14 @@ msgstr "%(book_title)s 的各版本" msgid "Editions of \"%(work_title)s\"" msgstr "《%(work_title)s》 的各版本" +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "找不到你想找的版次?" + +#: bookwyrm/templates/book/editions/editions.html:75 +msgid "Add another edition" +msgstr "新增其它版次" + #: bookwyrm/templates/book/editions/format_filter.html:9 #: bookwyrm/templates/book/editions/language_filter.html:9 msgid "Any" @@ -1151,7 +1160,7 @@ msgstr "编辑链接" #: bookwyrm/templates/book/file_links/edit_links.html:11 #, python-format msgid "Links for \"%(title)s\"" -msgstr "" +msgstr "\"%(title)s\"的链接" #: bookwyrm/templates/book/file_links/edit_links.html:32 #: bookwyrm/templates/settings/link_domains/link_table.html:6 @@ -1178,7 +1187,7 @@ msgstr "域名" #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/federation/instance_list.html:46 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_info.html:20 @@ -1302,7 +1311,7 @@ msgid "Confirmation code:" msgstr "确认代码:" #: bookwyrm/templates/confirm_email/confirm_email.html:25 -#: bookwyrm/templates/landing/layout.html:73 +#: bookwyrm/templates/landing/layout.html:81 #: bookwyrm/templates/settings/dashboard/dashboard.html:116 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" @@ -2175,7 +2184,7 @@ msgstr "%(name)s 注册已关闭" msgid "Thank you! Your request has been received." msgstr "谢谢你!我们已经收到了你的请求。" -#: bookwyrm/templates/landing/layout.html:82 +#: bookwyrm/templates/landing/layout.html:90 msgid "Your Account" msgstr "你的帐号" @@ -2240,7 +2249,7 @@ msgstr "搜索书籍、用户或列表" #: bookwyrm/templates/layout.html:61 bookwyrm/templates/layout.html:62 msgid "Scan Barcode" -msgstr "" +msgstr "扫描条形码" #: bookwyrm/templates/layout.html:72 msgid "Main navigation menu" @@ -3029,38 +3038,40 @@ msgstr "报告" msgid "\n" " Scan Barcode\n" " " -msgstr "" +msgstr "\n" +" 扫描条码\n" +" " #: bookwyrm/templates/search/barcode_modal.html:23 msgid "Requesting camera..." -msgstr "" +msgstr "正在启用摄像头..." #: bookwyrm/templates/search/barcode_modal.html:24 msgid "Grant access to the camera to scan a book's barcode." -msgstr "" +msgstr "允许访问相机以扫描书条码。" #: bookwyrm/templates/search/barcode_modal.html:29 msgid "Could not access camera" -msgstr "" +msgstr "无法使用摄像头" #: bookwyrm/templates/search/barcode_modal.html:33 msgctxt "barcode scanner" msgid "Scanning..." -msgstr "" +msgstr "正在扫描..." #: bookwyrm/templates/search/barcode_modal.html:34 msgid "Align your book's barcode with the camera." -msgstr "" +msgstr "使您的书条码与相机对齐。" #: bookwyrm/templates/search/barcode_modal.html:38 msgctxt "barcode scanner" msgid "ISBN scanned" -msgstr "" +msgstr "ISBN 扫描" #: bookwyrm/templates/search/barcode_modal.html:39 msgctxt "followed by ISBN" msgid "Searching for book:" -msgstr "" +msgstr "搜索书目:" #: bookwyrm/templates/search/book.html:44 msgid "Results from" @@ -3228,36 +3239,36 @@ msgstr "已经报告的用户或状态(无论举报是否得到解决)将不 #: bookwyrm/templates/settings/automod/rules.html:26 msgid "Schedule:" -msgstr "" +msgstr "定时计划:" #: bookwyrm/templates/settings/automod/rules.html:33 msgid "Last run:" -msgstr "" +msgstr "上次运行:" #: bookwyrm/templates/settings/automod/rules.html:40 msgid "Total run count:" -msgstr "" +msgstr "行数总计:" #: bookwyrm/templates/settings/automod/rules.html:47 msgid "Enabled:" -msgstr "" +msgstr "已启用:" #: bookwyrm/templates/settings/automod/rules.html:59 msgid "Delete schedule" -msgstr "" +msgstr "删除定时计划" #: bookwyrm/templates/settings/automod/rules.html:63 msgid "Run now" -msgstr "" +msgstr "立即运行" #: bookwyrm/templates/settings/automod/rules.html:64 msgid "Last run date will not be updated" -msgstr "" +msgstr "最后运行日期将不会被更新" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 msgid "Schedule scan" -msgstr "" +msgstr "定时扫描" #: bookwyrm/templates/settings/automod/rules.html:101 msgid "Successfully added rule" @@ -3588,50 +3599,54 @@ msgstr "接受日期" msgid "Email" msgstr "邮箱" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +msgid "Answer" +msgstr "答案" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 msgid "Action" msgstr "动作" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:53 msgid "No requests" msgstr "没有请求" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:65 #: bookwyrm/templates/settings/invites/status_filter.html:16 msgid "Accepted" msgstr "已接受" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:67 #: bookwyrm/templates/settings/invites/status_filter.html:12 msgid "Sent" msgstr "已发送" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:69 #: bookwyrm/templates/settings/invites/status_filter.html:8 msgid "Requested" msgstr "已请求" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:79 msgid "Send invite" msgstr "发送请求" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:81 msgid "Re-send invite" msgstr "重新发送请求" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:101 msgid "Ignore" msgstr "忽略" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:103 msgid "Un-ignore" msgstr "取消忽略" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:114 msgid "Back to pending requests" msgstr "回到待处理的请求" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 msgid "View ignored requests" msgstr "查看忽略的请求" @@ -3963,18 +3978,26 @@ msgid "Allow invite requests" msgstr "允许请求邀请" #: bookwyrm/templates/settings/site.html:151 +msgid "Set a question for invite requests" +msgstr "设置一个邀请请求问题" + +#: bookwyrm/templates/settings/site.html:156 +msgid "Question:" +msgstr "问题:" + +#: bookwyrm/templates/settings/site.html:163 msgid "Require users to confirm email address" msgstr "要求用户确认邮箱地址" -#: bookwyrm/templates/settings/site.html:153 +#: bookwyrm/templates/settings/site.html:165 msgid "(Recommended if registration is open)" msgstr "(当开放注册时推荐)" -#: bookwyrm/templates/settings/site.html:156 +#: bookwyrm/templates/settings/site.html:168 msgid "Registration closed text:" msgstr "注册关闭文字:" -#: bookwyrm/templates/settings/site.html:160 +#: bookwyrm/templates/settings/site.html:172 msgid "Invite request text:" msgstr "邀请请求文本:" @@ -3996,7 +4019,7 @@ msgstr "从命令行将主题文件复制到您服务器上的 bookwym/sta #: bookwyrm/templates/settings/themes.html:32 msgid "Run ./bw-dev collectstatic." -msgstr "" +msgstr "运行 ./bw-dev collectstatic。" #: bookwyrm/templates/settings/themes.html:35 msgid "Add the file name using the form below to make it available in the application interface." @@ -4577,7 +4600,7 @@ msgstr "设置目标" #: bookwyrm/templates/snippets/goal_progress.html:7 msgctxt "Goal successfully completed" msgid "Success!" -msgstr "" +msgstr "成功!" #: bookwyrm/templates/snippets/goal_progress.html:9 #, python-format diff --git a/locale/zh_Hant/LC_MESSAGES/django.mo b/locale/zh_Hant/LC_MESSAGES/django.mo index f9ca27be9b891b3b13c30e68d084e0cd54184a43..ea069d65a74002a78a9076d3590178e13ab5e6be 100644 GIT binary patch delta 13136 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\n" "Language-Team: Chinese Traditional\n" "Language: zh\n" @@ -245,7 +245,7 @@ msgstr "" msgid "Approved" msgstr "" -#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:281 +#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:289 msgid "Reviews" msgstr "書評" @@ -647,22 +647,22 @@ msgid "Edit Author:" msgstr "編輯作者:" #: bookwyrm/templates/author/edit_author.html:13 -#: bookwyrm/templates/book/edit/edit_book.html:19 +#: bookwyrm/templates/book/edit/edit_book.html:25 msgid "Added:" msgstr "新增了:" #: bookwyrm/templates/author/edit_author.html:14 -#: bookwyrm/templates/book/edit/edit_book.html:22 +#: bookwyrm/templates/book/edit/edit_book.html:28 msgid "Updated:" msgstr "更新了:" #: bookwyrm/templates/author/edit_author.html:16 -#: bookwyrm/templates/book/edit/edit_book.html:26 +#: bookwyrm/templates/book/edit/edit_book.html:32 msgid "Last edited by:" msgstr "最後編輯者:" #: bookwyrm/templates/author/edit_author.html:33 -#: bookwyrm/templates/book/edit/edit_book_form.html:17 +#: bookwyrm/templates/book/edit/edit_book_form.html:19 msgid "Metadata" msgstr "元資料" @@ -674,8 +674,8 @@ msgid "Name:" msgstr "名稱:" #: bookwyrm/templates/author/edit_author.html:44 -#: bookwyrm/templates/book/edit/edit_book_form.html:76 -#: bookwyrm/templates/book/edit/edit_book_form.html:146 +#: bookwyrm/templates/book/edit/edit_book_form.html:78 +#: bookwyrm/templates/book/edit/edit_book_form.html:148 msgid "Separate multiple values with commas." msgstr "請用逗號(,)分隔多個值。" @@ -704,7 +704,7 @@ msgid "Openlibrary key:" msgstr "Openlibrary key:" #: bookwyrm/templates/author/edit_author.html:84 -#: bookwyrm/templates/book/edit/edit_book_form.html:322 +#: bookwyrm/templates/book/edit/edit_book_form.html:326 msgid "Inventaire ID:" msgstr "Inventaire ID:" @@ -722,7 +722,7 @@ msgstr "" #: bookwyrm/templates/author/edit_author.html:115 #: bookwyrm/templates/book/book.html:202 -#: bookwyrm/templates/book/edit/edit_book.html:121 +#: bookwyrm/templates/book/edit/edit_book.html:127 #: bookwyrm/templates/book/file_links/add_link_modal.html:60 #: bookwyrm/templates/book/file_links/edit_links.html:82 #: bookwyrm/templates/groups/form.html:32 @@ -734,7 +734,7 @@ msgstr "" #: bookwyrm/templates/settings/announcements/edit_announcement.html:120 #: bookwyrm/templates/settings/federation/edit_instance.html:98 #: bookwyrm/templates/settings/federation/instance.html:105 -#: bookwyrm/templates/settings/site.html:169 +#: bookwyrm/templates/settings/site.html:181 #: bookwyrm/templates/settings/users/user_moderation_actions.html:69 #: bookwyrm/templates/shelf/form.html:25 #: bookwyrm/templates/snippets/reading_modals/layout.html:18 @@ -745,8 +745,8 @@ msgstr "儲存" #: bookwyrm/templates/author/sync_modal.html:23 #: bookwyrm/templates/book/book.html:203 #: bookwyrm/templates/book/cover_add_modal.html:33 -#: bookwyrm/templates/book/edit/edit_book.html:123 -#: bookwyrm/templates/book/edit/edit_book.html:126 +#: bookwyrm/templates/book/edit/edit_book.html:129 +#: bookwyrm/templates/book/edit/edit_book.html:132 #: bookwyrm/templates/book/file_links/add_link_modal.html:59 #: bookwyrm/templates/book/file_links/verification_modal.html:25 #: bookwyrm/templates/book/sync_modal.html:23 @@ -768,7 +768,7 @@ msgid "Loading data will connect to %(source_name)s and check f msgstr "" #: bookwyrm/templates/author/sync_modal.html:24 -#: bookwyrm/templates/book/edit/edit_book.html:108 +#: bookwyrm/templates/book/edit/edit_book.html:114 #: bookwyrm/templates/book/sync_modal.html:24 #: bookwyrm/templates/groups/members.html:29 #: bookwyrm/templates/landing/password_reset.html:42 @@ -807,58 +807,59 @@ msgid "Add Description" msgstr "新增描述" #: bookwyrm/templates/book/book.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:40 +#: bookwyrm/templates/book/edit/edit_book_form.html:42 #: bookwyrm/templates/lists/form.html:13 bookwyrm/templates/shelf/form.html:17 msgid "Description:" msgstr "描述:" -#: bookwyrm/templates/book/book.html:212 +#: bookwyrm/templates/book/book.html:214 #, python-format -msgid "%(count)s editions" -msgstr "%(count)s 個版本" +msgid "%(count)s edition" +msgid_plural "%(count)s editions" +msgstr[0] "" -#: bookwyrm/templates/book/book.html:220 +#: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" msgstr "" -#: bookwyrm/templates/book/book.html:235 +#: bookwyrm/templates/book/book.html:243 #, python-format msgid "A different edition of this book is on your %(shelf_name)s shelf." msgstr "本書的 另一個版本 在你的 %(shelf_name)s 書架上。" -#: bookwyrm/templates/book/book.html:246 +#: bookwyrm/templates/book/book.html:254 msgid "Your reading activity" msgstr "你的閱讀活動" -#: bookwyrm/templates/book/book.html:252 +#: bookwyrm/templates/book/book.html:260 msgid "Add read dates" msgstr "新增閱讀日期" -#: bookwyrm/templates/book/book.html:260 +#: bookwyrm/templates/book/book.html:268 msgid "You don't have any reading activity for this book." msgstr "你還未閱讀這本書。" -#: bookwyrm/templates/book/book.html:286 +#: bookwyrm/templates/book/book.html:294 msgid "Your reviews" msgstr "你的書評" -#: bookwyrm/templates/book/book.html:292 +#: bookwyrm/templates/book/book.html:300 msgid "Your comments" msgstr "你的評論" -#: bookwyrm/templates/book/book.html:298 +#: bookwyrm/templates/book/book.html:306 msgid "Your quotes" msgstr "你的引用" -#: bookwyrm/templates/book/book.html:334 +#: bookwyrm/templates/book/book.html:342 msgid "Subjects" msgstr "主題" -#: bookwyrm/templates/book/book.html:346 +#: bookwyrm/templates/book/book.html:354 msgid "Places" msgstr "地點" -#: bookwyrm/templates/book/book.html:357 +#: bookwyrm/templates/book/book.html:365 #: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:83 #: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12 #: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12 @@ -868,11 +869,11 @@ msgstr "地點" msgid "Lists" msgstr "列表" -#: bookwyrm/templates/book/book.html:369 +#: bookwyrm/templates/book/book.html:377 msgid "Add to list" msgstr "新增到列表" -#: bookwyrm/templates/book/book.html:379 +#: bookwyrm/templates/book/book.html:387 #: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/lists/add_item_modal.html:39 #: bookwyrm/templates/lists/list.html:255 @@ -886,12 +887,12 @@ msgid "ISBN:" msgstr "ISBN:" #: bookwyrm/templates/book/book_identifiers.html:15 -#: bookwyrm/templates/book/edit/edit_book_form.html:331 +#: bookwyrm/templates/book/edit/edit_book_form.html:335 msgid "OCLC Number:" msgstr "OCLC 號:" #: bookwyrm/templates/book/book_identifiers.html:22 -#: bookwyrm/templates/book/edit/edit_book_form.html:340 +#: bookwyrm/templates/book/edit/edit_book_form.html:344 msgid "ASIN:" msgstr "ASIN:" @@ -900,12 +901,12 @@ msgid "Add cover" msgstr "新增封面" #: bookwyrm/templates/book/cover_add_modal.html:17 -#: bookwyrm/templates/book/edit/edit_book_form.html:230 +#: bookwyrm/templates/book/edit/edit_book_form.html:234 msgid "Upload cover:" msgstr "上載封面:" #: bookwyrm/templates/book/cover_add_modal.html:23 -#: bookwyrm/templates/book/edit/edit_book_form.html:236 +#: bookwyrm/templates/book/edit/edit_book_form.html:240 msgid "Load cover from url:" msgstr "從網址載入封面:" @@ -924,177 +925,177 @@ msgstr "" msgid "Close" msgstr "關閉" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:12 +#: bookwyrm/templates/book/edit/edit_book.html:8 +#: bookwyrm/templates/book/edit/edit_book.html:18 #, python-format msgid "Edit \"%(book_title)s\"" msgstr "編輯 \"%(book_title)s\"" -#: bookwyrm/templates/book/edit/edit_book.html:6 -#: bookwyrm/templates/book/edit/edit_book.html:14 +#: bookwyrm/templates/book/edit/edit_book.html:10 +#: bookwyrm/templates/book/edit/edit_book.html:20 msgid "Add Book" msgstr "新增書目" -#: bookwyrm/templates/book/edit/edit_book.html:48 +#: bookwyrm/templates/book/edit/edit_book.html:54 msgid "Confirm Book Info" msgstr "確認書目資料" -#: bookwyrm/templates/book/edit/edit_book.html:56 +#: bookwyrm/templates/book/edit/edit_book.html:62 #, python-format msgid "Is \"%(name)s\" one of these authors?" msgstr "" -#: bookwyrm/templates/book/edit/edit_book.html:67 -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:73 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Author of " msgstr "" -#: bookwyrm/templates/book/edit/edit_book.html:69 +#: bookwyrm/templates/book/edit/edit_book.html:75 msgid "Find more information at isni.org" msgstr "" -#: bookwyrm/templates/book/edit/edit_book.html:79 +#: bookwyrm/templates/book/edit/edit_book.html:85 msgid "This is a new author" msgstr "這是一位新的作者" -#: bookwyrm/templates/book/edit/edit_book.html:86 +#: bookwyrm/templates/book/edit/edit_book.html:92 #, python-format msgid "Creating a new author: %(name)s" msgstr "正在建立新的作者: %(name)s" -#: bookwyrm/templates/book/edit/edit_book.html:93 +#: bookwyrm/templates/book/edit/edit_book.html:99 msgid "Is this an edition of an existing work?" msgstr "這是已存在的作品的另一個版本嗎?" -#: bookwyrm/templates/book/edit/edit_book.html:101 +#: bookwyrm/templates/book/edit/edit_book.html:107 msgid "This is a new work" msgstr "這是一個新的作品。" -#: bookwyrm/templates/book/edit/edit_book.html:110 +#: bookwyrm/templates/book/edit/edit_book.html:116 #: bookwyrm/templates/feed/status.html:21 msgid "Back" msgstr "返回" -#: bookwyrm/templates/book/edit/edit_book_form.html:22 +#: bookwyrm/templates/book/edit/edit_book_form.html:24 #: bookwyrm/templates/snippets/create_status/review.html:15 msgid "Title:" msgstr "標題:" -#: bookwyrm/templates/book/edit/edit_book_form.html:31 +#: bookwyrm/templates/book/edit/edit_book_form.html:33 msgid "Subtitle:" msgstr "副標題:" -#: bookwyrm/templates/book/edit/edit_book_form.html:51 +#: bookwyrm/templates/book/edit/edit_book_form.html:53 msgid "Series:" msgstr "系列:" -#: bookwyrm/templates/book/edit/edit_book_form.html:61 +#: bookwyrm/templates/book/edit/edit_book_form.html:63 msgid "Series number:" msgstr "系列編號:" -#: bookwyrm/templates/book/edit/edit_book_form.html:72 +#: bookwyrm/templates/book/edit/edit_book_form.html:74 msgid "Languages:" msgstr "語言:" -#: bookwyrm/templates/book/edit/edit_book_form.html:84 +#: bookwyrm/templates/book/edit/edit_book_form.html:86 msgid "Subjects:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:88 +#: bookwyrm/templates/book/edit/edit_book_form.html:90 msgid "Add subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:106 +#: bookwyrm/templates/book/edit/edit_book_form.html:108 msgid "Remove subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:129 +#: bookwyrm/templates/book/edit/edit_book_form.html:131 msgid "Add Another Subject" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:137 +#: bookwyrm/templates/book/edit/edit_book_form.html:139 msgid "Publication" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:142 +#: bookwyrm/templates/book/edit/edit_book_form.html:144 msgid "Publisher:" msgstr "出版社:" -#: bookwyrm/templates/book/edit/edit_book_form.html:154 +#: bookwyrm/templates/book/edit/edit_book_form.html:156 msgid "First published date:" msgstr "初版時間:" -#: bookwyrm/templates/book/edit/edit_book_form.html:163 +#: bookwyrm/templates/book/edit/edit_book_form.html:165 msgid "Published date:" msgstr "出版時間:" -#: bookwyrm/templates/book/edit/edit_book_form.html:174 +#: bookwyrm/templates/book/edit/edit_book_form.html:176 msgid "Authors" msgstr "作者" -#: bookwyrm/templates/book/edit/edit_book_form.html:183 +#: bookwyrm/templates/book/edit/edit_book_form.html:187 #, python-format msgid "Remove %(name)s" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:186 +#: bookwyrm/templates/book/edit/edit_book_form.html:190 #, python-format msgid "Author page for %(name)s" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:194 +#: bookwyrm/templates/book/edit/edit_book_form.html:198 msgid "Add Authors:" msgstr "新增作者:" -#: bookwyrm/templates/book/edit/edit_book_form.html:197 -#: bookwyrm/templates/book/edit/edit_book_form.html:200 +#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:204 msgid "Add Author" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:198 -#: bookwyrm/templates/book/edit/edit_book_form.html:201 +#: bookwyrm/templates/book/edit/edit_book_form.html:202 +#: bookwyrm/templates/book/edit/edit_book_form.html:205 msgid "Jane Doe" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:207 +#: bookwyrm/templates/book/edit/edit_book_form.html:211 msgid "Add Another Author" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:217 +#: bookwyrm/templates/book/edit/edit_book_form.html:221 #: bookwyrm/templates/shelf/shelf.html:146 msgid "Cover" msgstr "封面" -#: bookwyrm/templates/book/edit/edit_book_form.html:249 +#: bookwyrm/templates/book/edit/edit_book_form.html:253 msgid "Physical Properties" msgstr "實體性質" -#: bookwyrm/templates/book/edit/edit_book_form.html:256 +#: bookwyrm/templates/book/edit/edit_book_form.html:260 #: bookwyrm/templates/book/editions/format_filter.html:6 msgid "Format:" msgstr "格式:" -#: bookwyrm/templates/book/edit/edit_book_form.html:268 +#: bookwyrm/templates/book/edit/edit_book_form.html:272 msgid "Format details:" msgstr "" -#: bookwyrm/templates/book/edit/edit_book_form.html:279 +#: bookwyrm/templates/book/edit/edit_book_form.html:283 msgid "Pages:" msgstr "頁數:" -#: bookwyrm/templates/book/edit/edit_book_form.html:290 +#: bookwyrm/templates/book/edit/edit_book_form.html:294 msgid "Book Identifiers" msgstr "書目標識號" -#: bookwyrm/templates/book/edit/edit_book_form.html:295 +#: bookwyrm/templates/book/edit/edit_book_form.html:299 msgid "ISBN 13:" msgstr "ISBN 13:" -#: bookwyrm/templates/book/edit/edit_book_form.html:304 +#: bookwyrm/templates/book/edit/edit_book_form.html:308 msgid "ISBN 10:" msgstr "ISBN 10:" -#: bookwyrm/templates/book/edit/edit_book_form.html:313 +#: bookwyrm/templates/book/edit/edit_book_form.html:317 msgid "Openlibrary ID:" msgstr "Openlibrary ID:" @@ -1108,6 +1109,14 @@ msgstr "%(book_title)s 的各版本" msgid "Editions of \"%(work_title)s\"" msgstr "\"%(work_title)s\" 的各版本" +#: bookwyrm/templates/book/editions/editions.html:55 +msgid "Can't find the edition you're looking for?" +msgstr "" + +#: bookwyrm/templates/book/editions/editions.html:75 +msgid "Add another edition" +msgstr "" + #: bookwyrm/templates/book/editions/format_filter.html:9 #: bookwyrm/templates/book/editions/language_filter.html:9 msgid "Any" @@ -1178,7 +1187,7 @@ msgstr "" #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/federation/instance_list.html:46 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_info.html:20 @@ -1302,7 +1311,7 @@ msgid "Confirmation code:" msgstr "" #: bookwyrm/templates/confirm_email/confirm_email.html:25 -#: bookwyrm/templates/landing/layout.html:73 +#: bookwyrm/templates/landing/layout.html:81 #: bookwyrm/templates/settings/dashboard/dashboard.html:116 #: bookwyrm/templates/snippets/report_modal.html:53 msgid "Submit" @@ -2175,7 +2184,7 @@ msgstr "" msgid "Thank you! Your request has been received." msgstr "謝謝你!我們已經受到了你的請求。" -#: bookwyrm/templates/landing/layout.html:82 +#: bookwyrm/templates/landing/layout.html:90 msgid "Your Account" msgstr "你的帳號" @@ -3588,50 +3597,54 @@ msgstr "接受日期" msgid "Email" msgstr "郵箱" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 +msgid "Answer" +msgstr "" + +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 msgid "Action" msgstr "動作" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:53 msgid "No requests" msgstr "沒有請求" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:59 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:65 #: bookwyrm/templates/settings/invites/status_filter.html:16 msgid "Accepted" msgstr "已接受" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:61 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:67 #: bookwyrm/templates/settings/invites/status_filter.html:12 msgid "Sent" msgstr "已傳送" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:63 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:69 #: bookwyrm/templates/settings/invites/status_filter.html:8 msgid "Requested" msgstr "已請求" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:73 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:79 msgid "Send invite" msgstr "傳送請求" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:75 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:81 msgid "Re-send invite" msgstr "重新發送請求" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:95 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:101 msgid "Ignore" msgstr "忽略" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:97 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:103 msgid "Un-ignore" msgstr "取消忽略" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:108 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:114 msgid "Back to pending requests" msgstr "回到待處理的請求" -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:110 +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116 msgid "View ignored requests" msgstr "檢視忽略的請求" @@ -3963,18 +3976,26 @@ msgid "Allow invite requests" msgstr "" #: bookwyrm/templates/settings/site.html:151 -msgid "Require users to confirm email address" -msgstr "" - -#: bookwyrm/templates/settings/site.html:153 -msgid "(Recommended if registration is open)" +msgid "Set a question for invite requests" msgstr "" #: bookwyrm/templates/settings/site.html:156 +msgid "Question:" +msgstr "" + +#: bookwyrm/templates/settings/site.html:163 +msgid "Require users to confirm email address" +msgstr "" + +#: bookwyrm/templates/settings/site.html:165 +msgid "(Recommended if registration is open)" +msgstr "" + +#: bookwyrm/templates/settings/site.html:168 msgid "Registration closed text:" msgstr "註冊關閉文字:" -#: bookwyrm/templates/settings/site.html:160 +#: bookwyrm/templates/settings/site.html:172 msgid "Invite request text:" msgstr "" From 90277a1697a790365f45998d7c88ca7d9589393a Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 26 Mar 2022 10:07:06 -0700 Subject: [PATCH 63/85] Avoid new pylint complaint --- bookwyrm/models/fields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/models/fields.py b/bookwyrm/models/fields.py index b506c11ca..5a03df015 100644 --- a/bookwyrm/models/fields.py +++ b/bookwyrm/models/fields.py @@ -389,7 +389,7 @@ class ImageField(ActivitypubFieldMixin, models.ImageField): self.alt_field = alt_field super().__init__(*args, **kwargs) - # pylint: disable=arguments-differ + # pylint: disable=arguments-differ,arguments-renamed def set_field_from_activity(self, instance, data, save=True, overwrite=True): """helper function for assinging a value to the field""" value = getattr(data, self.get_activitypub_field()) From 2d7902ff89181b08107b16e29825474dc450c3fd Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 26 Mar 2022 10:27:49 -0700 Subject: [PATCH 64/85] Resolve second integrity error --- bookwyrm/models/relationship.py | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/bookwyrm/models/relationship.py b/bookwyrm/models/relationship.py index a0939b4b1..ff1e13b53 100644 --- a/bookwyrm/models/relationship.py +++ b/bookwyrm/models/relationship.py @@ -39,12 +39,12 @@ class UserRelationship(BookWyrmModel): def save(self, *args, **kwargs): """clear the template cache""" - clear_cache(self.user_subject, self.user_subject) + clear_cache(self.user_subject, self.user_object) super().save(*args, **kwargs) def delete(self, *args, **kwargs): """clear the template cache""" - clear_cache(self.user_subject, self.user_subject) + clear_cache(self.user_subject, self.user_object) super().delete(*args, **kwargs) class Meta: @@ -89,7 +89,9 @@ class UserFollows(ActivityMixin, UserRelationship): user_object=self.user_subject, ) ).exists(): - raise IntegrityError() + raise IntegrityError( + "Attempting to follow blocked user", self.user_subject, self.user_object + ) # don't broadcast this type of relationship -- accepts and requests # are handled by the UserFollowRequest model super().save(*args, broadcast=False, **kwargs) @@ -97,12 +99,12 @@ class UserFollows(ActivityMixin, UserRelationship): @classmethod def from_request(cls, follow_request): """converts a follow request into a follow relationship""" - print("from!!", cls) - return cls.objects.create( + obj, _ = cls.objects.get_or_create( user_subject=follow_request.user_subject, user_object=follow_request.user_object, remote_id=follow_request.remote_id, ) + return obj class UserFollowRequest(ActivitypubMixin, UserRelationship): @@ -115,7 +117,6 @@ class UserFollowRequest(ActivitypubMixin, UserRelationship): """make sure the follow or block relationship doesn't already exist""" # if there's a request for a follow that already exists, accept it # without changing the local database state - print("UHHH????") if UserFollows.objects.filter( user_subject=self.user_subject, user_object=self.user_object, @@ -137,7 +138,6 @@ class UserFollowRequest(ActivitypubMixin, UserRelationship): raise IntegrityError( "Attempting to follow blocked user", self.user_subject, self.user_object ) - print("super save!") super().save(*args, **kwargs) if broadcast and self.user_subject.local and not self.user_object.local: @@ -146,12 +146,10 @@ class UserFollowRequest(ActivitypubMixin, UserRelationship): if self.user_object.local: manually_approves = self.user_object.manually_approves_followers if not manually_approves: - print("accept") self.accept() model = apps.get_model("bookwyrm.Notification", require_ready=True) notification_type = "FOLLOW_REQUEST" if manually_approves else "FOLLOW" - print("notification") model.objects.create( user=self.user_object, related_user=self.user_subject, @@ -179,9 +177,9 @@ class UserFollowRequest(ActivitypubMixin, UserRelationship): return with transaction.atomic(): - print("from request") UserFollows.from_request(self) - self.delete() + if self.id: + self.delete() def reject(self): """generate a Reject for this follow request""" From 5cf52cff5427cf86fcd0489800ef26f599002fd3 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 26 Mar 2022 10:30:37 -0700 Subject: [PATCH 65/85] Formats migration --- .../0147_alter_user_preferred_language.py | 28 ++++++++++++++++--- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/bookwyrm/migrations/0147_alter_user_preferred_language.py b/bookwyrm/migrations/0147_alter_user_preferred_language.py index 2d1b94b6f..0c9609b0b 100644 --- a/bookwyrm/migrations/0147_alter_user_preferred_language.py +++ b/bookwyrm/migrations/0147_alter_user_preferred_language.py @@ -6,13 +6,33 @@ from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ - ('bookwyrm', '0146_auto_20220316_2352'), + ("bookwyrm", "0146_auto_20220316_2352"), ] operations = [ migrations.AlterField( - model_name='user', - name='preferred_language', - field=models.CharField(blank=True, choices=[('en-us', 'English'), ('de-de', 'Deutsch (German)'), ('es-es', 'Español (Spanish)'), ('gl-es', 'Galego (Galician)'), ('it-it', 'Italiano (Italian)'), ('fr-fr', 'Français (French)'), ('lt-lt', 'Lietuvių (Lithuanian)'), ('no-no', 'Norsk (Norwegian)'), ('pt-br', 'Português do Brasil (Brazilian Portuguese)'), ('pt-pt', 'Português Europeu (European Portuguese)'), ('ro-ro', 'Română (Romanian)'), ('sv-se', 'Svenska (Swedish)'), ('zh-hans', '简体中文 (Simplified Chinese)'), ('zh-hant', '繁體中文 (Traditional Chinese)')], max_length=255, null=True), + model_name="user", + name="preferred_language", + field=models.CharField( + blank=True, + choices=[ + ("en-us", "English"), + ("de-de", "Deutsch (German)"), + ("es-es", "Español (Spanish)"), + ("gl-es", "Galego (Galician)"), + ("it-it", "Italiano (Italian)"), + ("fr-fr", "Français (French)"), + ("lt-lt", "Lietuvių (Lithuanian)"), + ("no-no", "Norsk (Norwegian)"), + ("pt-br", "Português do Brasil (Brazilian Portuguese)"), + ("pt-pt", "Português Europeu (European Portuguese)"), + ("ro-ro", "Română (Romanian)"), + ("sv-se", "Svenska (Swedish)"), + ("zh-hans", "简体中文 (Simplified Chinese)"), + ("zh-hant", "繁體中文 (Traditional Chinese)"), + ], + max_length=255, + null=True, + ), ), ] From 85f507d6b91b417e76b6317bae49ebaa34d73ec6 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 26 Mar 2022 10:34:02 -0700 Subject: [PATCH 66/85] Python formatting --- bookwyrm/models/relationship.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bookwyrm/models/relationship.py b/bookwyrm/models/relationship.py index ff1e13b53..171f45840 100644 --- a/bookwyrm/models/relationship.py +++ b/bookwyrm/models/relationship.py @@ -213,6 +213,7 @@ class UserBlocks(ActivityMixin, UserRelationship): | Q(user_subject=self.user_object, user_object=self.user_subject) ).delete() + def clear_cache(user_subject, user_object): """clear relationship cache""" cache.delete_many( From b23f4a7e18c3eb7ec59dc967e5b295a333f45385 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 26 Mar 2022 11:00:53 -0700 Subject: [PATCH 67/85] Clip statuses --- bookwyrm/templates/snippets/status/content_status.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/templates/snippets/status/content_status.html b/bookwyrm/templates/snippets/status/content_status.html index fed325841..bee4af1dc 100644 --- a/bookwyrm/templates/snippets/status/content_status.html +++ b/bookwyrm/templates/snippets/status/content_status.html @@ -37,7 +37,7 @@ {% endwith %} {% endif %} -
    +
    {% if status_type == 'Review' %}

    Date: Sat, 26 Mar 2022 11:07:58 -0700 Subject: [PATCH 68/85] Remove transparent class on interaction buttons --- bookwyrm/templates/snippets/status/layout.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bookwyrm/templates/snippets/status/layout.html b/bookwyrm/templates/snippets/status/layout.html index 4e5b75cc0..3dd576fee 100644 --- a/bookwyrm/templates/snippets/status/layout.html +++ b/bookwyrm/templates/snippets/status/layout.html @@ -32,7 +32,7 @@ {% if not moderation_mode %} {% endif %} From 23ff58a62b364cf71df669737144fc686ada6220 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 26 Mar 2022 11:35:24 -0700 Subject: [PATCH 69/85] Fixes scrollbar colors in dark mode --- bookwyrm/static/css/bookwyrm/_all.scss | 12 ++++++++++++ bookwyrm/static/css/themes/bookwyrm-dark.scss | 2 ++ bookwyrm/static/css/themes/bookwyrm-light.scss | 2 ++ 3 files changed, 16 insertions(+) diff --git a/bookwyrm/static/css/bookwyrm/_all.scss b/bookwyrm/static/css/bookwyrm/_all.scss index 79e5cf52c..31e732ebe 100644 --- a/bookwyrm/static/css/bookwyrm/_all.scss +++ b/bookwyrm/static/css/bookwyrm/_all.scss @@ -36,6 +36,18 @@ body { flex-direction: column; } +::-webkit-scrollbar { + width: 12px; + height: 12px; +} +::-webkit-scrollbar-thumb { + background: $scrollbar-thumb; + border-radius: 0.5em; +} +::-webkit-scrollbar-track { + background: $scrollbar-track; +} + button { border: none; margin: 0; diff --git a/bookwyrm/static/css/themes/bookwyrm-dark.scss b/bookwyrm/static/css/themes/bookwyrm-dark.scss index 0a4f6f23e..96997c4a4 100644 --- a/bookwyrm/static/css/themes/bookwyrm-dark.scss +++ b/bookwyrm/static/css/themes/bookwyrm-dark.scss @@ -28,6 +28,8 @@ $background-body: rgb(24, 27, 28); $background-secondary: rgb(28, 30, 32); $background-tertiary: rgb(32, 34, 36); $modal-background-background-color: rgba($black, 0.8); +$scrollbar-track: $background-secondary; +$scrollbar-thumb: $light; /* highlight colors */ $primary-highlight: $primary; diff --git a/bookwyrm/static/css/themes/bookwyrm-light.scss b/bookwyrm/static/css/themes/bookwyrm-light.scss index c74d2ee20..69c1a8063 100644 --- a/bookwyrm/static/css/themes/bookwyrm-light.scss +++ b/bookwyrm/static/css/themes/bookwyrm-light.scss @@ -19,6 +19,8 @@ $scheme-main: $white-bis; $background-body: $white; $background-secondary: $white-ter; $background-tertiary: $white-bis; +$scrollbar-track: $background-secondary; +$scrollbar-thumb: $grey-lighter; /* highlight colors */ $primary-highlight: $primary-light; From 3ebc800a9b03815d8abb496d77354dd7a6dbb620 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 26 Mar 2022 11:38:00 -0700 Subject: [PATCH 70/85] Fixes progress bar color in dark mode --- bookwyrm/templates/snippets/goal_progress.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bookwyrm/templates/snippets/goal_progress.html b/bookwyrm/templates/snippets/goal_progress.html index bc8fd53b7..ae14bb915 100644 --- a/bookwyrm/templates/snippets/goal_progress.html +++ b/bookwyrm/templates/snippets/goal_progress.html @@ -14,6 +14,11 @@ {% blocktrans with username=goal.user.display_name read_count=progress.count|intcomma goal_count=goal.goal|intcomma path=goal.local_path %}{{ username }} has read {{ read_count }} of {{ goal_count}} books.{% endblocktrans %} {% endif %}

    - + {% endwith %} From 701a644c31a5fb9ccf4c49393effdacf38867c55 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 26 Mar 2022 13:04:59 -0700 Subject: [PATCH 71/85] Export user book data as csv (#1556) Simple book data export --- bookwyrm/templates/preferences/export.html | 22 +++++ bookwyrm/templates/preferences/layout.html | 11 +++ bookwyrm/tests/views/test_export.py | 69 +++++++++++++++ bookwyrm/urls.py | 6 ++ bookwyrm/views/__init__.py | 1 + bookwyrm/views/preferences/export.py | 97 ++++++++++++++++++++++ 6 files changed, 206 insertions(+) create mode 100644 bookwyrm/templates/preferences/export.html create mode 100644 bookwyrm/tests/views/test_export.py create mode 100644 bookwyrm/views/preferences/export.py diff --git a/bookwyrm/templates/preferences/export.html b/bookwyrm/templates/preferences/export.html new file mode 100644 index 000000000..865051442 --- /dev/null +++ b/bookwyrm/templates/preferences/export.html @@ -0,0 +1,22 @@ +{% extends 'preferences/layout.html' %} +{% load i18n %} + +{% block title %}{% trans "CSV Export" %}{% endblock %} + +{% block header %} +{% trans "CSV Export" %} +{% endblock %} + +{% block panel %} +
    +

    + {% trans "Your export will include all the books on your shelves, books you have reviewed, and books with reading activity." %} +

    +

    + + + Download file + +

    +
    +{% endblock %} diff --git a/bookwyrm/templates/preferences/layout.html b/bookwyrm/templates/preferences/layout.html index bf4fed7d5..27d91c480 100644 --- a/bookwyrm/templates/preferences/layout.html +++ b/bookwyrm/templates/preferences/layout.html @@ -24,6 +24,17 @@ {% trans "Delete Account" %} + +

    + {% trans "Last updated" as text %} + {% include 'snippets/table-sort-header.html' with field="updated_date" sort=sort text=text %} + {% trans "Software" as text %} {% include 'snippets/table-sort-header.html' with field="application_type" sort=sort text=text %} @@ -43,12 +50,12 @@ {% trans "Users" %} {% trans "Status" %}
    {{ server.server_name }}{{ server.created_date }}{{ server.created_date|date:'Y-m-d' }}{{ server.updated_date|date:'Y-m-d' }} {% if server.application_type %} {{ server.application_type }} @@ -56,7 +63,6 @@ {% endif %} {{ server.user_set.count }}{{ server.get_status_display }}