Merge branch 'main' into production

This commit is contained in:
Mouse Reeve 2022-04-26 07:50:39 -07:00
commit c10c14b2c9
73 changed files with 1386 additions and 1157 deletions

View file

@ -24,5 +24,5 @@ jobs:
pip install pylint pip install pylint
- name: Analysing the code with pylint - name: Analysing the code with pylint
run: | 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

View file

@ -9,13 +9,10 @@ Social reading and reviewing, decentralized with ActivityPub
- [What it is and isn't](#what-it-is-and-isnt) - [What it is and isn't](#what-it-is-and-isnt)
- [The role of federation](#the-role-of-federation) - [The role of federation](#the-role-of-federation)
- [Features](#features) - [Features](#features)
- [Book data](#book-data) - [Set up BookWyrm](#set-up-bookwyrm)
- [Set up Bookwyrm](#set-up-bookwyrm)
## Joining 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. 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.
## Contributing ## Contributing
@ -23,7 +20,7 @@ See [contributing](https://docs.joinbookwyrm.com/how-to-contribute.html) for cod
## About BookWyrm ## About BookWyrm
### What it is and isn't ### 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 ### 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. 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 - [Nginx](https://nginx.org/en/) HTTP server
## Book data ## Set up BookWyrm
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. 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).

View file

@ -125,7 +125,7 @@ class ActivitypubFieldMixin:
"""model_field_name to activitypubFieldName""" """model_field_name to activitypubFieldName"""
if self.activitypub_field: if self.activitypub_field:
return self.activitypub_field return self.activitypub_field
name = self.name.split(".")[-1] name = self.name.rsplit(".", maxsplit=1)[-1]
components = name.split("_") components = name.split("_")
return components[0] + "".join(x.title() for x in components[1:]) return components[0] + "".join(x.title() for x in components[1:])

View file

@ -23,3 +23,8 @@
.has-background-tertiary { .has-background-tertiary {
background-color: $background-tertiary !important; background-color: $background-tertiary !important;
} }
/* Workaround for dark theme as .has-text-black doesn't give desired effect. */
.has-text-default {
color: $text !important;
}

View file

@ -53,6 +53,7 @@ $link-hover: $white-bis;
$link-hover-border: #51595d; $link-hover-border: #51595d;
$link-focus: $white-bis; $link-focus: $white-bis;
$link-active: $white-bis; $link-active: $white-bis;
$link-light: #0d1c26;
/* bulma overrides */ /* bulma overrides */
$background: $background-secondary; $background: $background-secondary;
@ -83,6 +84,13 @@ $progress-value-background-color: $border-light;
$family-primary: $family-sans-serif; $family-primary: $family-sans-serif;
$family-secondary: $family-sans-serif; $family-secondary: $family-sans-serif;
.has-text-muted {
color: $grey-lighter !important;
}
.has-text-more-muted {
color: $grey-light !important;
}
@import "../bookwyrm.scss"; @import "../bookwyrm.scss";
@import "../vendor/icons.css"; @import "../vendor/icons.css";

View file

@ -57,5 +57,13 @@ $invisible-overlay-background-color: rgba($scheme-invert, 0.66);
$family-primary: $family-sans-serif; $family-primary: $family-sans-serif;
$family-secondary: $family-sans-serif; $family-secondary: $family-sans-serif;
.has-text-muted {
color: $grey-dark !important;
}
.has-text-more-muted {
color: $grey !important;
}
@import "../bookwyrm.scss"; @import "../bookwyrm.scss";
@import "../vendor/icons.css"; @import "../vendor/icons.css";

View file

@ -21,7 +21,7 @@
<div class="column my-3-mobile ml-3-tablet mr-auto"> <div class="column my-3-mobile ml-3-tablet mr-auto">
<h2 class="title is-5 mb-1"> <h2 class="title is-5 mb-1">
<a href="{{ book.local_path }}" class="has-text-black"> <a href="{{ book.local_path }}" class="has-text-default">
{{ book|book_title }} {{ book|book_title }}
</a> </a>
</h2> </h2>

View file

@ -43,7 +43,7 @@
{% endif %} {% endif %}
<p> <p>
<a href="https://joinbookwyrm.com/"> <a href="https://joinbookwyrm.com/">
{% trans "Join Bookwyrm" %} {% trans "Join BookWyrm" %}
</a> </a>
</p> </p>
</footer> </footer>

View file

@ -38,7 +38,7 @@
{% for membership in group.memberships.all %} {% for membership in group.memberships.all %}
{% with member=membership.user %} {% with member=membership.user %}
<div class="box has-text-centered is-shadowless has-background-tertiary my-2 mx-2 member_{{ member.id }}"> <div class="box has-text-centered is-shadowless has-background-tertiary my-2 mx-2 member_{{ member.id }}">
<a href="{{ member.local_path }}" class="has-text-black"> <a href="{{ member.local_path }}" class="has-text-default">
{% include 'snippets/avatar.html' with user=member large=True %} {% include 'snippets/avatar.html' with user=member large=True %}
<span title="{{ member.display_name }}" class="is-block is-6 has-text-weight-bold">{{ member.display_name|truncatechars:10 }}</span> <span title="{{ member.display_name }}" class="is-block is-6 has-text-weight-bold">{{ member.display_name|truncatechars:10 }}</span>
<span title="@{{ member|username }}" class="is-block pb-3">@{{ member|username|truncatechars:8 }}</span> <span title="@{{ member|username }}" class="is-block pb-3">@{{ member|username|truncatechars:8 }}</span>

View file

@ -9,7 +9,7 @@
<div class="column is-flex is-flex-grow-0"> <div class="column is-flex is-flex-grow-0">
{% for user in suggested_users %} {% for user in suggested_users %}
<div class="box has-text-centered is-shadowless has-background-tertiary m-2"> <div class="box has-text-centered is-shadowless has-background-tertiary m-2">
<a href="{{ user.local_path }}" class="has-text-black"> <a href="{{ user.local_path }}" class="has-text-default">
{% include 'snippets/avatar.html' with user=user large=True %} {% include 'snippets/avatar.html' with user=user large=True %}
<span title="{{ user.display_name }}" class="is-block is-6 has-text-weight-bold">{{ user.display_name|truncatechars:10 }}</span> <span title="{{ user.display_name }}" class="is-block is-6 has-text-weight-bold">{{ user.display_name|truncatechars:10 }}</span>
<span title="@{{ user|username }}" class="is-block pb-3">@{{ user|username|truncatechars:8 }}</span> <span title="@{{ user|username }}" class="is-block pb-3">@{{ user|username|truncatechars:8 }}</span>

View file

@ -47,12 +47,12 @@
{% block preview %} {% block preview %}
<div class="notification py-2 {% if notification.id in unread %}is-primary is-light{% else %}has-background-body has-text-grey-dark{% endif %}"> <div class="notification py-2 {% if notification.id in unread %}is-primary is-light{% else %}has-background-body has-text-muted{% endif %}">
<div class="columns"> <div class="columns">
<div class="column is-clipped"> <div class="column is-clipped">
{% include 'snippets/status_preview.html' with status=related_status %} {% include 'snippets/status_preview.html' with status=related_status %}
</div> </div>
<div class="column is-narrow has-grey-dark"> <div class="column is-narrow has-text-muted">
{{ related_status.published_date|timesince }} {{ related_status.published_date|timesince }}
{% include 'snippets/privacy-icons.html' with item=related_status %} {% include 'snippets/privacy-icons.html' with item=related_status %}
</div> </div>

View file

@ -47,12 +47,12 @@
{% block preview %} {% block preview %}
<div class="notification py-2 {% if notification.id in unread %}is-primary is-light{% else %}has-background-body has-text-grey-dark{% endif %}"> <div class="notification py-2 {% if notification.id in unread %}is-primary is-light{% else %}has-background-body has-text-muted{% endif %}">
<div class="columns"> <div class="columns">
<div class="column is-clipped"> <div class="column is-clipped">
{% include 'snippets/status_preview.html' with status=related_status %} {% include 'snippets/status_preview.html' with status=related_status %}
</div> </div>
<div class="column is-narrow has-grey-dark"> <div class="column is-narrow has-text-muted">
{{ related_status.published_date|timesince }} {{ related_status.published_date|timesince }}
{% include 'snippets/privacy-icons.html' with item=related_status %} {% include 'snippets/privacy-icons.html' with item=related_status %}
</div> </div>

View file

@ -1,7 +1,7 @@
{% load notification_page_tags %} {% load notification_page_tags %}
{% related_status notification as related_status %} {% related_status notification as related_status %}
<div class="notification {% if notification.id in unread %}has-background-primary{% endif %}"> <div class="notification {% if notification.id in unread %}has-background-primary{% endif %}">
<div class="columns is-mobile {% if notification.id in unread %}has-text-white{% else %}has-text-grey{% endif %}"> <div class="columns is-mobile {% if notification.id in unread %}has-text-white{% else %}has-text-more-muted{% endif %}">
<div class="column is-narrow is-size-3"> <div class="column is-narrow is-size-3">
<a class="icon" href="{% block primary_link %}{% endblock %}"> <a class="icon" href="{% block primary_link %}{% endblock %}">
{% block icon %}{% endblock %} {% block icon %}{% endblock %}

View file

@ -48,12 +48,12 @@
{% block preview %} {% block preview %}
<div class="notification py-2 {% if notification.id in unread %}is-primary is-light{% else %}has-background-body has-text-black{% endif %}"> <div class="notification py-2 {% if notification.id in unread %}is-primary is-light{% else %}has-background-body has-text-default{% endif %}">
<div class="columns"> <div class="columns">
<div class="column is-clipped"> <div class="column is-clipped">
{% include 'snippets/status_preview.html' with status=related_status %} {% include 'snippets/status_preview.html' with status=related_status %}
</div> </div>
<div class="column is-narrow has-text-black"> <div class="column is-narrow has-text-default">
{{ related_status.published_date|timesince }} {{ related_status.published_date|timesince }}
{% include 'snippets/privacy-icons.html' with item=related_status %} {% include 'snippets/privacy-icons.html' with item=related_status %}
</div> </div>

View file

@ -51,12 +51,12 @@
{% block preview %} {% block preview %}
<div class="notification py-2 {% if notification.id in unread %}is-primary is-light{% else %}has-background-body has-text-black{% endif %}"> <div class="notification py-2 {% if notification.id in unread %}is-primary is-light{% else %}has-background-body has-text-default{% endif %}">
<div class="columns"> <div class="columns">
<div class="column is-clipped"> <div class="column is-clipped">
{% include 'snippets/status_preview.html' with status=related_status %} {% include 'snippets/status_preview.html' with status=related_status %}
</div> </div>
<div class="column is-narrow has-text-black"> <div class="column is-narrow has-text-default">
{{ related_status.published_date|timesince }} {{ related_status.published_date|timesince }}
{% include 'snippets/privacy-icons.html' with item=related_status %} {% include 'snippets/privacy-icons.html' with item=related_status %}
</div> </div>

View file

@ -5,7 +5,7 @@
{% for user in suggested_users %} {% for user in suggested_users %}
<div class="column is-flex is-flex-grow-0"> <div class="column is-flex is-flex-grow-0">
<div class="box has-text-centered is-shadowless has-background-tertiary m-0"> <div class="box has-text-centered is-shadowless has-background-tertiary m-0">
<a href="{{ user.local_path }}" class="has-text-black"> <a href="{{ user.local_path }}" class="has-text-default">
{% include 'snippets/avatar.html' with user=user large=True %} {% include 'snippets/avatar.html' with user=user large=True %}
<span title="{{ user.display_name }}" class="is-block is-6 has-text-weight-bold">{{ user.display_name|truncatechars:10 }}</span> <span title="{{ user.display_name }}" class="is-block is-6 has-text-weight-bold">{{ user.display_name|truncatechars:10 }}</span>
<span title="@{{ user|username }}" class="is-block pb-3">@{{ user|username|truncatechars:8 }}</span> <span title="@{{ user|username }}" class="is-block pb-3">@{{ user|username|truncatechars:8 }}</span>

View file

@ -1 +1,2 @@
from . import * """ import ALL the tests """
from . import * # pylint: disable=import-self

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -4,7 +4,10 @@ from bookwyrm import models
class Author(TestCase): class Author(TestCase):
"""serialize author tests"""
def setUp(self): def setUp(self):
"""initial data"""
self.book = models.Edition.objects.create( self.book = models.Edition.objects.create(
title="Example Edition", title="Example Edition",
remote_id="https://example.com/book/1", remote_id="https://example.com/book/1",
@ -16,6 +19,7 @@ class Author(TestCase):
) )
def test_serialize_model(self): def test_serialize_model(self):
"""check presense of author fields"""
activity = self.author.to_activity() activity = self.author.to_activity()
self.assertEqual(activity["id"], self.author.remote_id) self.assertEqual(activity["id"], self.author.remote_id)
self.assertIsInstance(activity["aliases"], list) self.assertIsInstance(activity["aliases"], list)

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -38,7 +38,7 @@ class BaseModel(TestCase):
def test_remote_id(self): def test_remote_id(self):
"""these should be generated""" """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() expected = self.test_model.get_remote_id()
self.assertEqual(expected, f"https://{DOMAIN}/bookwyrmtestmodel/1") self.assertEqual(expected, f"https://{DOMAIN}/bookwyrmtestmodel/1")

View file

@ -162,6 +162,7 @@ class ModelFields(TestCase):
class TestActivity(ActivityObject): class TestActivity(ActivityObject):
"""real simple mock""" """real simple mock"""
# pylint: disable=invalid-name
to: List[str] to: List[str]
cc: List[str] cc: List[str]
id: str = "http://hi.com" id: str = "http://hi.com"

View file

@ -17,7 +17,7 @@ class User(TestCase):
"bookwyrm.activitystreams.populate_stream_task.delay" "bookwyrm.activitystreams.populate_stream_task.delay"
), patch("bookwyrm.lists_stream.populate_lists_task.delay"): ), patch("bookwyrm.lists_stream.populate_lists_task.delay"):
self.user = models.User.objects.create_user( self.user = models.User.objects.create_user(
"mouse@%s" % DOMAIN, f"mouse@{DOMAIN}",
"mouse@mouse.mouse", "mouse@mouse.mouse",
"mouseword", "mouseword",
local=True, local=True,
@ -107,7 +107,7 @@ class User(TestCase):
def test_get_or_create_remote_server(self): def test_get_or_create_remote_server(self):
responses.add( responses.add(
responses.GET, responses.GET,
"https://%s/.well-known/nodeinfo" % DOMAIN, f"https://{DOMAIN}/.well-known/nodeinfo",
json={"links": [{"href": "http://www.example.com"}, {}]}, json={"links": [{"href": "http://www.example.com"}, {}]},
) )
responses.add( responses.add(
@ -124,7 +124,7 @@ class User(TestCase):
@responses.activate @responses.activate
def test_get_or_create_remote_server_no_wellknown(self): def test_get_or_create_remote_server_no_wellknown(self):
responses.add( 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) 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): def test_get_or_create_remote_server_no_links(self):
responses.add( responses.add(
responses.GET, responses.GET,
"https://%s/.well-known/nodeinfo" % DOMAIN, f"https://{DOMAIN}/.well-known/nodeinfo",
json={"links": [{"href": "http://www.example.com"}, {}]}, json={"links": [{"href": "http://www.example.com"}, {}]},
) )
responses.add(responses.GET, "http://www.example.com", status=404) 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): def test_get_or_create_remote_server_unknown_format(self):
responses.add( responses.add(
responses.GET, responses.GET,
"https://%s/.well-known/nodeinfo" % DOMAIN, f"https://{DOMAIN}/.well-known/nodeinfo",
json={"links": [{"href": "http://www.example.com"}, {}]}, json={"links": [{"href": "http://www.example.com"}, {}]},
) )
responses.add(responses.GET, "http://www.example.com", json={"fish": "salmon"}) responses.add(responses.GET, "http://www.example.com", json={"fish": "salmon"})

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -64,8 +64,8 @@ class Signature(TestCase):
def send(self, signature, now, data, digest): def send(self, signature, now, data, digest):
"""test request""" """test request"""
c = Client() client = Client()
return c.post( return client.post(
urlsplit(self.rat.inbox).path, urlsplit(self.rat.inbox).path,
data=data, data=data,
content_type="application/json", content_type="application/json",

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -61,7 +61,7 @@ class InboxActivities(TestCase):
self.assertEqual(models.Notification.objects.count(), 0) self.assertEqual(models.Notification.objects.count(), 0)
activity = { activity = {
"type": "Announce", "type": "Announce",
"id": "%s/boost" % self.status.remote_id, "id": f"{self.status.remote_id}/boost",
"actor": self.remote_user.remote_id, "actor": self.remote_user.remote_id,
"object": self.status.remote_id, "object": self.status.remote_id,
"to": ["https://www.w3.org/ns/activitystreams#public"], "to": ["https://www.w3.org/ns/activitystreams#public"],
@ -94,7 +94,7 @@ class InboxActivities(TestCase):
self.assertEqual(models.Notification.objects.count(), 0) self.assertEqual(models.Notification.objects.count(), 0)
activity = { activity = {
"type": "Announce", "type": "Announce",
"id": "%s/boost" % self.status.remote_id, "id": f"{self.status.remote_id}/boost",
"actor": self.remote_user.remote_id, "actor": self.remote_user.remote_id,
"object": "https://remote.com/status/1", "object": "https://remote.com/status/1",
"to": ["https://www.w3.org/ns/activitystreams#public"], "to": ["https://www.w3.org/ns/activitystreams#public"],

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -1 +1,2 @@
from . import * # pylint: disable=missing-module-docstring
from . import * # pylint: disable=import-self

View file

@ -66,7 +66,7 @@ class AuthorViews(TestCase):
def test_author_page_edition_author(self): def test_author_page_edition_author(self):
"""there are so many views, this just makes sure it LOADS""" """there are so many views, this just makes sure it LOADS"""
view = views.Author.as_view() view = views.Author.as_view()
another_book = models.Edition.objects.create( models.Edition.objects.create(
title="Example Edition", title="Example Edition",
remote_id="https://example.com/book/1", remote_id="https://example.com/book/1",
parent_work=self.work, parent_work=self.work,

View file

@ -139,7 +139,7 @@ class ViewsHelpers(TestCase):
} }
responses.add( responses.add(
responses.GET, responses.GET,
"https://example.com/.well-known/webfinger?resource=acct:%s" % username, f"https://example.com/.well-known/webfinger?resource=acct:{username}",
json=wellknown, json=wellknown,
status=200, status=200,
) )

View file

@ -83,7 +83,7 @@ class UserViews(TestCase):
def test_user_page_domain(self): def test_user_page_domain(self):
"""when the user domain has dashes in it""" """when the user domain has dashes in it"""
with patch("bookwyrm.models.user.set_remote_server"): with patch("bookwyrm.models.user.set_remote_server"):
self.remote_user = models.User.objects.create_user( models.User.objects.create_user(
"nutria", "nutria",
"", "",
"nutriaword", "nutriaword",

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-26 20:16+0000\n" "POT-Creation-Date: 2022-04-08 21:00+0000\n"
"PO-Revision-Date: 2022-03-27 14:27\n" "PO-Revision-Date: 2022-04-08 21:50\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: German\n" "Language-Team: German\n"
"Language: de\n" "Language: de\n"
@ -165,14 +165,14 @@ msgstr "Taschenbuch"
#: bookwyrm/models/federated_server.py:11 #: bookwyrm/models/federated_server.py:11
#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: 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" msgid "Federated"
msgstr "Föderiert" msgstr "Föderiert"
#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71
#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/edit_instance.html:56
#: bookwyrm/templates/settings/federation/instance.html:10 #: 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 #: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Blockiert" msgstr "Blockiert"
@ -187,7 +187,7 @@ msgstr "%(value)s ist keine gültige remote_id"
msgid "%(value)s is not a valid username" msgid "%(value)s is not a valid username"
msgstr "%(value)s ist kein gültiger Benutzer*inname" msgstr "%(value)s ist kein gültiger Benutzer*inname"
#: 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 #: bookwyrm/templates/ostatus/error.html:29
msgid "username" msgid "username"
msgstr "Benutzer*inname" msgstr "Benutzer*inname"
@ -300,38 +300,42 @@ msgid "Italiano (Italian)"
msgstr "Italiano (Italienisch)" msgstr "Italiano (Italienisch)"
#: bookwyrm/settings.py:287 #: bookwyrm/settings.py:287
msgid "Suomi (Finnish)"
msgstr ""
#: bookwyrm/settings.py:288
msgid "Français (French)" msgid "Français (French)"
msgstr "Français (Französisch)" msgstr "Français (Französisch)"
#: bookwyrm/settings.py:288 #: bookwyrm/settings.py:289
msgid "Lietuvių (Lithuanian)" msgid "Lietuvių (Lithuanian)"
msgstr "Lietuvių (Litauisch)" msgstr "Lietuvių (Litauisch)"
#: bookwyrm/settings.py:289 #: bookwyrm/settings.py:290
msgid "Norsk (Norwegian)" msgid "Norsk (Norwegian)"
msgstr "Norsk (Norwegisch)" msgstr "Norsk (Norwegisch)"
#: bookwyrm/settings.py:290 #: bookwyrm/settings.py:291
msgid "Português do Brasil (Brazilian Portuguese)" msgid "Português do Brasil (Brazilian Portuguese)"
msgstr "Português do Brasil (brasilianisches Portugiesisch)" msgstr "Português do Brasil (brasilianisches Portugiesisch)"
#: bookwyrm/settings.py:291 #: bookwyrm/settings.py:292
msgid "Português Europeu (European Portuguese)" msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Portugiesisch)" msgstr "Português Europeu (Portugiesisch)"
#: bookwyrm/settings.py:292 #: bookwyrm/settings.py:293
msgid "Română (Romanian)" msgid "Română (Romanian)"
msgstr "Română (Rumänisch)" msgstr "Română (Rumänisch)"
#: bookwyrm/settings.py:293 #: bookwyrm/settings.py:294
msgid "Svenska (Swedish)" msgid "Svenska (Swedish)"
msgstr "Svenska (Schwedisch)" msgstr "Svenska (Schwedisch)"
#: bookwyrm/settings.py:294 #: bookwyrm/settings.py:295
msgid "简体中文 (Simplified Chinese)" msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (vereinfachtes Chinesisch)" msgstr "简体中文 (vereinfachtes Chinesisch)"
#: bookwyrm/settings.py:295 #: bookwyrm/settings.py:296
msgid "繁體中文 (Traditional Chinese)" msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Chinesisch, traditionell)" msgstr "繁體中文 (Chinesisch, traditionell)"
@ -403,7 +407,7 @@ msgstr "Die Moderator*innen und Administrator*innen von %(site_name)s halten die
msgid "Moderator" msgid "Moderator"
msgstr "Moderator*in" msgstr "Moderator*in"
#: 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" msgid "Admin"
msgstr "Administration" msgstr "Administration"
@ -434,7 +438,7 @@ msgid "Software version:"
msgstr "Softwareversion:" msgstr "Softwareversion:"
#: bookwyrm/templates/about/layout.html:30 #: 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 #, python-format
msgid "About %(site_name)s" msgid "About %(site_name)s"
msgstr "Über %(site_name)s" msgstr "Über %(site_name)s"
@ -1195,7 +1199,6 @@ msgstr "Domain"
#: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:37
#: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47
#: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/invites/status_filter.html:5
#: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_admin.html:52
@ -1363,7 +1366,7 @@ msgstr "Föderierte Gemeinschaft"
#: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:4
#: bookwyrm/templates/directory/directory.html:9 #: bookwyrm/templates/directory/directory.html:9
#: bookwyrm/templates/layout.html:109 #: bookwyrm/templates/user_menu.html:30
msgid "Directory" msgid "Directory"
msgstr "Verzeichnis" msgstr "Verzeichnis"
@ -1606,13 +1609,13 @@ msgstr "Passwort für %(site_name)s zurücksetzen"
msgid "%(site_name)s home page" msgid "%(site_name)s home page"
msgstr "%(site_name)s-Startseite" msgstr "%(site_name)s-Startseite"
#: 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" msgid "Contact site admin"
msgstr "Administrator*in kontaktieren" msgstr "Administrator*in kontaktieren"
#: bookwyrm/templates/embed-layout.html:46 #: bookwyrm/templates/embed-layout.html:46
msgid "Join Bookwyrm" msgid "Join BookWyrm"
msgstr "Bookwyrm beitreten" msgstr ""
#: bookwyrm/templates/feed/direct_messages.html:8 #: bookwyrm/templates/feed/direct_messages.html:8
#, python-format #, python-format
@ -1620,7 +1623,7 @@ msgid "Direct Messages with <a href=\"%(path)s\">%(username)s</a>"
msgstr "Direktnachrichten mit <a href=\"%(path)s\">%(username)s</a>" msgstr "Direktnachrichten mit <a href=\"%(path)s\">%(username)s</a>"
#: bookwyrm/templates/feed/direct_messages.html:10 #: bookwyrm/templates/feed/direct_messages.html:10
#: bookwyrm/templates/layout.html:119 #: bookwyrm/templates/user_menu.html:40
msgid "Direct Messages" msgid "Direct Messages"
msgstr "Direktnachrichten" msgstr "Direktnachrichten"
@ -1657,7 +1660,7 @@ msgid "Updates"
msgstr "Updates" msgstr "Updates"
#: bookwyrm/templates/feed/suggested_books.html:6 #: bookwyrm/templates/feed/suggested_books.html:6
#: bookwyrm/templates/layout.html:114 #: bookwyrm/templates/user_menu.html:35
msgid "Your Books" msgid "Your Books"
msgstr "Deine Bücher" msgstr "Deine Bücher"
@ -2218,7 +2221,7 @@ msgid "Login"
msgstr "Anmeldung" msgstr "Anmeldung"
#: bookwyrm/templates/landing/login.html:7 #: 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 #: bookwyrm/templates/ostatus/error.html:37
msgid "Log in" msgid "Log in"
msgstr "Anmelden" msgstr "Anmelden"
@ -2227,7 +2230,7 @@ msgstr "Anmelden"
msgid "Success! Email address confirmed." msgid "Success! Email address confirmed."
msgstr "Alles klar! E-Mail-Adresse bestätigt." msgstr "Alles klar! E-Mail-Adresse bestätigt."
#: 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/ostatus/error.html:28
#: bookwyrm/templates/snippets/register_form.html:4 #: bookwyrm/templates/snippets/register_form.html:4
msgid "Username:" msgid "Username:"
@ -2235,12 +2238,12 @@ msgstr "Benutzer*inname:"
#: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/login.html:27
#: bookwyrm/templates/landing/password_reset.html:26 #: 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 #: bookwyrm/templates/snippets/register_form.html:45
msgid "Password:" msgid "Password:"
msgstr "Passwort:" msgstr "Passwort:"
#: 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 #: bookwyrm/templates/ostatus/error.html:34
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "Passwort vergessen?" msgstr "Passwort vergessen?"
@ -2284,54 +2287,38 @@ msgstr "Navigations-Hauptmenü"
msgid "Feed" msgid "Feed"
msgstr "Feed" msgstr "Feed"
#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 #: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
msgid "Settings"
msgstr "Einstellungen"
#: 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 "Einladungen"
#: bookwyrm/templates/layout.html:147
msgid "Log out"
msgstr "Abmelden"
#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156
#: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:5
#: bookwyrm/templates/notifications/notifications_page.html:10 #: bookwyrm/templates/notifications/notifications_page.html:10
msgid "Notifications" msgid "Notifications"
msgstr "Benachrichtigungen" msgstr "Benachrichtigungen"
#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 #: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33
msgid "password" msgid "password"
msgstr "Passwort" msgstr "Passwort"
#: bookwyrm/templates/layout.html:195 #: bookwyrm/templates/layout.html:139
msgid "Join" msgid "Join"
msgstr "Beitreten" msgstr "Beitreten"
#: bookwyrm/templates/layout.html:229 #: bookwyrm/templates/layout.html:173
msgid "Successfully posted status" msgid "Successfully posted status"
msgstr "Status veröffentlicht" msgstr "Status veröffentlicht"
#: bookwyrm/templates/layout.html:230 #: bookwyrm/templates/layout.html:174
msgid "Error posting status" msgid "Error posting status"
msgstr "Fehler beim veröffentlichen des Status" msgstr "Fehler beim veröffentlichen des Status"
#: bookwyrm/templates/layout.html:246 #: bookwyrm/templates/layout.html:190
msgid "Documentation" msgid "Documentation"
msgstr "Handbuch" msgstr "Handbuch"
#: bookwyrm/templates/layout.html:253 #: bookwyrm/templates/layout.html:197
#, python-format #, python-format
msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
msgstr "%(site_name)s auf <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a> unterstützen" msgstr "%(site_name)s auf <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a> unterstützen"
#: 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 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
msgstr "BookWyrm ist open source Software. Du kannst dich auf <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a> beteiligen oder etwas melden." msgstr "BookWyrm ist open source Software. Du kannst dich auf <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a> beteiligen oder etwas melden."
@ -2912,6 +2899,7 @@ msgstr "Profil bearbeiten:"
#: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:12
#: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/preferences/edit_user.html:25
#: bookwyrm/templates/settings/users/user_info.html:7 #: bookwyrm/templates/settings/users/user_info.html:7
#: bookwyrm/templates/user_menu.html:25
msgid "Profile" msgid "Profile"
msgstr "Profil" msgstr "Profil"
@ -3146,7 +3134,7 @@ msgstr "Suchart"
#: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:23
#: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/search/layout.html:46
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: 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/layout.html:36
#: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user.html:13
#: bookwyrm/templates/settings/users/user_admin.html:5 #: bookwyrm/templates/settings/users/user_admin.html:5
@ -3213,7 +3201,7 @@ msgid "Create Announcement"
msgstr "Ankündigung erstellen" msgstr "Ankündigung erstellen"
#: bookwyrm/templates/settings/announcements/announcements.html:21 #: 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" msgid "Date added"
msgstr "Hinzugefügt am" msgstr "Hinzugefügt am"
@ -3608,16 +3596,21 @@ msgstr "Erfolgreich gesperrt:"
msgid "Failed:" msgid "Failed:"
msgstr "Fehlgeschlagen:" 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 #: bookwyrm/templates/settings/users/server_filter.html:5
msgid "Instance name" msgid "Instance name"
msgstr "Name der Instanz" 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" msgid "Software"
msgstr "Software" msgstr "Software"
#: bookwyrm/templates/settings/federation/instance_list.html:63 #: bookwyrm/templates/settings/federation/instance_list.html:69
msgid "No instances found" msgid "No instances found"
msgstr "Keine Instanzen gefunden" msgstr "Keine Instanzen gefunden"
@ -3628,6 +3621,14 @@ msgstr "Keine Instanzen gefunden"
msgid "Invite Requests" msgid "Invite Requests"
msgstr "Einladungsanfragen" msgstr "Einladungsanfragen"
#: 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 "Einladungen"
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23
msgid "Ignored Invite Requests" msgid "Ignored Invite Requests"
msgstr "Ignorierte Einladungsanfragen" msgstr "Ignorierte Einladungsanfragen"
@ -4284,6 +4285,10 @@ msgstr ""
msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production." msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production."
msgstr "" msgstr ""
#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45
msgid "Settings"
msgstr "Einstellungen"
#: bookwyrm/templates/setup/config.html:56 #: bookwyrm/templates/setup/config.html:56
msgid "Instance domain:" msgid "Instance domain:"
msgstr "" msgstr ""
@ -5092,6 +5097,14 @@ msgstr[1] "%(mutuals_display)s Follower*innen, denen du folgst"
msgid "No followers you follow" msgid "No followers you follow"
msgstr "Keine Follower*innen, denen du folgst" msgstr "Keine Follower*innen, denen du folgst"
#: bookwyrm/templates/user_menu.html:7
msgid "View profile and more"
msgstr ""
#: bookwyrm/templates/user_menu.html:72
msgid "Log out"
msgstr "Abmelden"
#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28
msgid "File exceeds maximum size: 10MB" msgid "File exceeds maximum size: 10MB"
msgstr "Datei überschreitet die maximale Größe von 10MB" msgstr "Datei überschreitet die maximale Größe von 10MB"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 0.0.1\n" "Project-Id-Version: 0.0.1\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-04-04 22:19+0000\n" "POT-Creation-Date: 2022-04-26 14:35+0000\n"
"PO-Revision-Date: 2021-02-28 17:19-0800\n" "PO-Revision-Date: 2021-02-28 17:19-0800\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: English <LL@li.org>\n" "Language-Team: English <LL@li.org>\n"
@ -188,7 +188,7 @@ msgstr ""
msgid "%(value)s is not a valid username" msgid "%(value)s is not a valid username"
msgstr "" 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 #: bookwyrm/templates/ostatus/error.html:29
msgid "username" msgid "username"
msgstr "" msgstr ""
@ -408,7 +408,7 @@ msgstr ""
msgid "Moderator" msgid "Moderator"
msgstr "" 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" msgid "Admin"
msgstr "" msgstr ""
@ -439,7 +439,7 @@ msgid "Software version:"
msgstr "" msgstr ""
#: bookwyrm/templates/about/layout.html:30 #: 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 #, python-format
msgid "About %(site_name)s" msgid "About %(site_name)s"
msgstr "" msgstr ""
@ -1367,7 +1367,7 @@ msgstr ""
#: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:4
#: bookwyrm/templates/directory/directory.html:9 #: bookwyrm/templates/directory/directory.html:9
#: bookwyrm/templates/layout.html:109 #: bookwyrm/templates/user_menu.html:30
msgid "Directory" msgid "Directory"
msgstr "" msgstr ""
@ -1610,12 +1610,12 @@ msgstr ""
msgid "%(site_name)s home page" msgid "%(site_name)s home page"
msgstr "" 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" msgid "Contact site admin"
msgstr "" msgstr ""
#: bookwyrm/templates/embed-layout.html:46 #: bookwyrm/templates/embed-layout.html:46
msgid "Join Bookwyrm" msgid "Join BookWyrm"
msgstr "" msgstr ""
#: bookwyrm/templates/feed/direct_messages.html:8 #: bookwyrm/templates/feed/direct_messages.html:8
@ -1624,7 +1624,7 @@ msgid "Direct Messages with <a href=\"%(path)s\">%(username)s</a>"
msgstr "" msgstr ""
#: bookwyrm/templates/feed/direct_messages.html:10 #: bookwyrm/templates/feed/direct_messages.html:10
#: bookwyrm/templates/layout.html:119 #: bookwyrm/templates/user_menu.html:40
msgid "Direct Messages" msgid "Direct Messages"
msgstr "" msgstr ""
@ -1661,7 +1661,7 @@ msgid "Updates"
msgstr "" msgstr ""
#: bookwyrm/templates/feed/suggested_books.html:6 #: bookwyrm/templates/feed/suggested_books.html:6
#: bookwyrm/templates/layout.html:114 #: bookwyrm/templates/user_menu.html:35
msgid "Your Books" msgid "Your Books"
msgstr "" msgstr ""
@ -2222,7 +2222,7 @@ msgid "Login"
msgstr "" msgstr ""
#: bookwyrm/templates/landing/login.html:7 #: 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 #: bookwyrm/templates/ostatus/error.html:37
msgid "Log in" msgid "Log in"
msgstr "" msgstr ""
@ -2231,7 +2231,7 @@ msgstr ""
msgid "Success! Email address confirmed." msgid "Success! Email address confirmed."
msgstr "" 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/ostatus/error.html:28
#: bookwyrm/templates/snippets/register_form.html:4 #: bookwyrm/templates/snippets/register_form.html:4
msgid "Username:" msgid "Username:"
@ -2239,12 +2239,12 @@ msgstr ""
#: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/login.html:27
#: bookwyrm/templates/landing/password_reset.html:26 #: 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 #: bookwyrm/templates/snippets/register_form.html:45
msgid "Password:" msgid "Password:"
msgstr "" 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 #: bookwyrm/templates/ostatus/error.html:34
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "" msgstr ""
@ -2288,54 +2288,38 @@ msgstr ""
msgid "Feed" msgid "Feed"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 #: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
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/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:5
#: bookwyrm/templates/notifications/notifications_page.html:10 #: bookwyrm/templates/notifications/notifications_page.html:10
msgid "Notifications" msgid "Notifications"
msgstr "" 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" msgid "password"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:195 #: bookwyrm/templates/layout.html:139
msgid "Join" msgid "Join"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:229 #: bookwyrm/templates/layout.html:173
msgid "Successfully posted status" msgid "Successfully posted status"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:230 #: bookwyrm/templates/layout.html:174
msgid "Error posting status" msgid "Error posting status"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:246 #: bookwyrm/templates/layout.html:190
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:253 #: bookwyrm/templates/layout.html:197
#, python-format #, python-format
msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
msgstr "" 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 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
msgstr "" msgstr ""
@ -2916,6 +2900,7 @@ msgstr ""
#: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:12
#: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/preferences/edit_user.html:25
#: bookwyrm/templates/settings/users/user_info.html:7 #: bookwyrm/templates/settings/users/user_info.html:7
#: bookwyrm/templates/user_menu.html:25
msgid "Profile" msgid "Profile"
msgstr "" msgstr ""
@ -3636,6 +3621,14 @@ msgstr ""
msgid "Invite Requests" msgid "Invite Requests"
msgstr "" 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 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23
msgid "Ignored Invite Requests" msgid "Ignored Invite Requests"
msgstr "" msgstr ""
@ -4292,6 +4285,10 @@ msgstr ""
msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production." msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production."
msgstr "" msgstr ""
#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45
msgid "Settings"
msgstr ""
#: bookwyrm/templates/setup/config.html:56 #: bookwyrm/templates/setup/config.html:56
msgid "Instance domain:" msgid "Instance domain:"
msgstr "" msgstr ""
@ -5100,6 +5097,14 @@ msgstr[1] ""
msgid "No followers you follow" msgid "No followers you follow"
msgstr "" 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 #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28
msgid "File exceeds maximum size: 10MB" msgid "File exceeds maximum size: 10MB"
msgstr "" msgstr ""

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-26 20:16+0000\n" "POT-Creation-Date: 2022-04-08 21:00+0000\n"
"PO-Revision-Date: 2022-03-31 15:40\n" "PO-Revision-Date: 2022-04-11 04:29\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Finnish\n" "Language-Team: Finnish\n"
"Language: fi\n" "Language: fi\n"
@ -165,14 +165,14 @@ msgstr "Pehmeäkantinen"
#: bookwyrm/models/federated_server.py:11 #: bookwyrm/models/federated_server.py:11
#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: 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" msgid "Federated"
msgstr "Federoitu" msgstr "Federoitu"
#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71
#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/edit_instance.html:56
#: bookwyrm/templates/settings/federation/instance.html:10 #: 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 #: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Estetty" msgstr "Estetty"
@ -187,7 +187,7 @@ msgstr "%(value)s ei ole kelvollinen remote_id"
msgid "%(value)s is not a valid username" msgid "%(value)s is not a valid username"
msgstr "%(value)s ei ole kelvollinen käyttäjänimi" msgstr "%(value)s ei ole kelvollinen käyttäjänimi"
#: 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 #: bookwyrm/templates/ostatus/error.html:29
msgid "username" msgid "username"
msgstr "käyttäjänimi" msgstr "käyttäjänimi"
@ -293,45 +293,49 @@ msgstr "Español (espanja)"
#: bookwyrm/settings.py:285 #: bookwyrm/settings.py:285
msgid "Galego (Galician)" msgid "Galego (Galician)"
msgstr "Galego (galicia)" msgstr "Galego (galego)"
#: bookwyrm/settings.py:286 #: bookwyrm/settings.py:286
msgid "Italiano (Italian)" msgid "Italiano (Italian)"
msgstr "Italiano (italia)" msgstr "Italiano (italia)"
#: bookwyrm/settings.py:287 #: bookwyrm/settings.py:287
msgid "Suomi (Finnish)"
msgstr "suomi"
#: bookwyrm/settings.py:288
msgid "Français (French)" msgid "Français (French)"
msgstr "Français (ranska)" msgstr "Français (ranska)"
#: bookwyrm/settings.py:288 #: bookwyrm/settings.py:289
msgid "Lietuvių (Lithuanian)" msgid "Lietuvių (Lithuanian)"
msgstr "Lietuvių (liettua)" msgstr "Lietuvių (liettua)"
#: bookwyrm/settings.py:289 #: bookwyrm/settings.py:290
msgid "Norsk (Norwegian)" msgid "Norsk (Norwegian)"
msgstr "Norsk (norja)" msgstr "Norsk (norja)"
#: bookwyrm/settings.py:290 #: bookwyrm/settings.py:291
msgid "Português do Brasil (Brazilian Portuguese)" msgid "Português do Brasil (Brazilian Portuguese)"
msgstr "Português do Brasil (brasilianportugali)" msgstr "Português do Brasil (brasilianportugali)"
#: bookwyrm/settings.py:291 #: bookwyrm/settings.py:292
msgid "Português Europeu (European Portuguese)" msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (portugali)" msgstr "Português Europeu (portugali)"
#: bookwyrm/settings.py:292 #: bookwyrm/settings.py:293
msgid "Română (Romanian)" msgid "Română (Romanian)"
msgstr "Română (romania)" msgstr "Română (romania)"
#: bookwyrm/settings.py:293 #: bookwyrm/settings.py:294
msgid "Svenska (Swedish)" msgid "Svenska (Swedish)"
msgstr "Svenska (ruotsi)" msgstr "Svenska (ruotsi)"
#: bookwyrm/settings.py:294 #: bookwyrm/settings.py:295
msgid "简体中文 (Simplified Chinese)" msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (yksinkertaistettu kiina)" msgstr "简体中文 (yksinkertaistettu kiina)"
#: bookwyrm/settings.py:295 #: bookwyrm/settings.py:296
msgid "繁體中文 (Traditional Chinese)" msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (perinteinen kiina)" msgstr "繁體中文 (perinteinen kiina)"
@ -403,7 +407,7 @@ msgstr "%(site_name)s pyörii moderaattorien ja ylläpitäjien työllä. He myö
msgid "Moderator" msgid "Moderator"
msgstr "Moderaattori" msgstr "Moderaattori"
#: 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" msgid "Admin"
msgstr "Ylläpitäjä" msgstr "Ylläpitäjä"
@ -434,7 +438,7 @@ msgid "Software version:"
msgstr "Ohjelmistoversio:" msgstr "Ohjelmistoversio:"
#: bookwyrm/templates/about/layout.html:30 #: 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 #, python-format
msgid "About %(site_name)s" msgid "About %(site_name)s"
msgstr "%(site_name)s — tietoja" msgstr "%(site_name)s — tietoja"
@ -1195,7 +1199,6 @@ msgstr "Verkkotunnus"
#: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:37
#: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47
#: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/invites/status_filter.html:5
#: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_admin.html:52
@ -1363,7 +1366,7 @@ msgstr "Yhteisö fediversumissa"
#: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:4
#: bookwyrm/templates/directory/directory.html:9 #: bookwyrm/templates/directory/directory.html:9
#: bookwyrm/templates/layout.html:109 #: bookwyrm/templates/user_menu.html:30
msgid "Directory" msgid "Directory"
msgstr "Hakemisto" msgstr "Hakemisto"
@ -1606,12 +1609,12 @@ msgstr "Palauta %(site_name)s-salasanasi"
msgid "%(site_name)s home page" msgid "%(site_name)s home page"
msgstr "%(site_name)s — etusivu" msgstr "%(site_name)s — etusivu"
#: 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" msgid "Contact site admin"
msgstr "Ota yhteyttä ylläpitäjään" msgstr "Ota yhteyttä ylläpitäjään"
#: bookwyrm/templates/embed-layout.html:46 #: bookwyrm/templates/embed-layout.html:46
msgid "Join Bookwyrm" msgid "Join BookWyrm"
msgstr "Liity BookWyrmiin" msgstr "Liity BookWyrmiin"
#: bookwyrm/templates/feed/direct_messages.html:8 #: bookwyrm/templates/feed/direct_messages.html:8
@ -1620,7 +1623,7 @@ msgid "Direct Messages with <a href=\"%(path)s\">%(username)s</a>"
msgstr "Yksityisviestit käyttäjän <a href=\"%(path)s\">%(username)s</a> kanssa" msgstr "Yksityisviestit käyttäjän <a href=\"%(path)s\">%(username)s</a> kanssa"
#: bookwyrm/templates/feed/direct_messages.html:10 #: bookwyrm/templates/feed/direct_messages.html:10
#: bookwyrm/templates/layout.html:119 #: bookwyrm/templates/user_menu.html:40
msgid "Direct Messages" msgid "Direct Messages"
msgstr "Yksityisviestit" msgstr "Yksityisviestit"
@ -1657,7 +1660,7 @@ msgid "Updates"
msgstr "Päivitykset" msgstr "Päivitykset"
#: bookwyrm/templates/feed/suggested_books.html:6 #: bookwyrm/templates/feed/suggested_books.html:6
#: bookwyrm/templates/layout.html:114 #: bookwyrm/templates/user_menu.html:35
msgid "Your Books" msgid "Your Books"
msgstr "Omat kirjat" msgstr "Omat kirjat"
@ -2218,7 +2221,7 @@ msgid "Login"
msgstr "Kirjaudu sisään" msgstr "Kirjaudu sisään"
#: bookwyrm/templates/landing/login.html:7 #: 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 #: bookwyrm/templates/ostatus/error.html:37
msgid "Log in" msgid "Log in"
msgstr "Kirjaudu sisään" msgstr "Kirjaudu sisään"
@ -2227,7 +2230,7 @@ msgstr "Kirjaudu sisään"
msgid "Success! Email address confirmed." msgid "Success! Email address confirmed."
msgstr "Sähköpostiosoite vahvistettu." msgstr "Sähköpostiosoite vahvistettu."
#: 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/ostatus/error.html:28
#: bookwyrm/templates/snippets/register_form.html:4 #: bookwyrm/templates/snippets/register_form.html:4
msgid "Username:" msgid "Username:"
@ -2235,12 +2238,12 @@ msgstr "Käyttäjänimi:"
#: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/login.html:27
#: bookwyrm/templates/landing/password_reset.html:26 #: 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 #: bookwyrm/templates/snippets/register_form.html:45
msgid "Password:" msgid "Password:"
msgstr "Salasana:" msgstr "Salasana:"
#: 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 #: bookwyrm/templates/ostatus/error.html:34
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "Unohtuiko salasana?" msgstr "Unohtuiko salasana?"
@ -2284,54 +2287,38 @@ msgstr "Päävalikko"
msgid "Feed" msgid "Feed"
msgstr "Syöte" msgstr "Syöte"
#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 #: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
msgid "Settings"
msgstr "Asetukset"
#: 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 "Kutsut"
#: bookwyrm/templates/layout.html:147
msgid "Log out"
msgstr "Kirjaudu ulos"
#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156
#: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:5
#: bookwyrm/templates/notifications/notifications_page.html:10 #: bookwyrm/templates/notifications/notifications_page.html:10
msgid "Notifications" msgid "Notifications"
msgstr "Ilmoitukset" msgstr "Ilmoitukset"
#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 #: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33
msgid "password" msgid "password"
msgstr "salasana" msgstr "salasana"
#: bookwyrm/templates/layout.html:195 #: bookwyrm/templates/layout.html:139
msgid "Join" msgid "Join"
msgstr "Liity" msgstr "Liity"
#: bookwyrm/templates/layout.html:229 #: bookwyrm/templates/layout.html:173
msgid "Successfully posted status" msgid "Successfully posted status"
msgstr "Tilapäivitys onnistui" msgstr "Tilapäivitys onnistui"
#: bookwyrm/templates/layout.html:230 #: bookwyrm/templates/layout.html:174
msgid "Error posting status" msgid "Error posting status"
msgstr "Virhe tilapäivityksessä" msgstr "Virhe tilapäivityksessä"
#: bookwyrm/templates/layout.html:246 #: bookwyrm/templates/layout.html:190
msgid "Documentation" msgid "Documentation"
msgstr "Käyttöohjeet" msgstr "Käyttöohjeet"
#: bookwyrm/templates/layout.html:253 #: bookwyrm/templates/layout.html:197
#, python-format #, python-format
msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
msgstr "Tue %(site_name)s-sivustoa osoitteessa <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgstr "Tue %(site_name)s-sivustoa osoitteessa <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
#: 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 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
msgstr "BookWyrmin lähdekoodi on avointa. Kehitystyöhön voi osallistua ja ongelmista voi ilmoittaa <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHubissa</a>." msgstr "BookWyrmin lähdekoodi on avointa. Kehitystyöhön voi osallistua ja ongelmista voi ilmoittaa <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHubissa</a>."
@ -2912,6 +2899,7 @@ msgstr "Muokkaa profiilia"
#: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:12
#: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/preferences/edit_user.html:25
#: bookwyrm/templates/settings/users/user_info.html:7 #: bookwyrm/templates/settings/users/user_info.html:7
#: bookwyrm/templates/user_menu.html:25
msgid "Profile" msgid "Profile"
msgstr "Profiili" msgstr "Profiili"
@ -3146,7 +3134,7 @@ msgstr "Hakutyyppi"
#: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:23
#: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/search/layout.html:46
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: 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/layout.html:36
#: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user.html:13
#: bookwyrm/templates/settings/users/user_admin.html:5 #: bookwyrm/templates/settings/users/user_admin.html:5
@ -3213,7 +3201,7 @@ msgid "Create Announcement"
msgstr "Luo tiedote" msgstr "Luo tiedote"
#: bookwyrm/templates/settings/announcements/announcements.html:21 #: 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" msgid "Date added"
msgstr "Lisätty" msgstr "Lisätty"
@ -3608,16 +3596,21 @@ msgstr "Onnistuneesti estetyt:"
msgid "Failed:" msgid "Failed:"
msgstr "Epäonnistuneet:" 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 #: bookwyrm/templates/settings/users/server_filter.html:5
msgid "Instance name" msgid "Instance name"
msgstr "Palvelimen nimi" 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" msgid "Software"
msgstr "Ohjelmisto" msgstr "Ohjelmisto"
#: bookwyrm/templates/settings/federation/instance_list.html:63 #: bookwyrm/templates/settings/federation/instance_list.html:69
msgid "No instances found" msgid "No instances found"
msgstr "Palvelimia ei löytynyt" msgstr "Palvelimia ei löytynyt"
@ -3628,6 +3621,14 @@ msgstr "Palvelimia ei löytynyt"
msgid "Invite Requests" msgid "Invite Requests"
msgstr "Kutsupyynnöt" msgstr "Kutsupyynnöt"
#: 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 "Kutsut"
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23
msgid "Ignored Invite Requests" msgid "Ignored Invite Requests"
msgstr "Hylätyt kutsupyynnöt" msgstr "Hylätyt kutsupyynnöt"
@ -4284,6 +4285,10 @@ msgstr "Verkkotunnus näyttää väärin muotoillulta. Siinä ei saa olla protok
msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production." msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production."
msgstr "BookWyrm on tuotantokäytössä ilman https-protokollaa. Tuotantokäytössä tulee ottaa käyttöön <strong>USE_HTTPS</strong>-valinta." msgstr "BookWyrm on tuotantokäytössä ilman https-protokollaa. Tuotantokäytössä tulee ottaa käyttöön <strong>USE_HTTPS</strong>-valinta."
#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45
msgid "Settings"
msgstr "Asetukset"
#: bookwyrm/templates/setup/config.html:56 #: bookwyrm/templates/setup/config.html:56
msgid "Instance domain:" msgid "Instance domain:"
msgstr "Palvelimen verkkotunnus:" msgstr "Palvelimen verkkotunnus:"
@ -4925,7 +4930,7 @@ msgstr "Tykkää tilapäivityksestä"
#: bookwyrm/templates/snippets/status/status.html:10 #: bookwyrm/templates/snippets/status/status.html:10
msgid "boosted" msgid "boosted"
msgstr "kaiutettu" msgstr "kaiutti"
#: bookwyrm/templates/snippets/status/status_options.html:7 #: bookwyrm/templates/snippets/status/status_options.html:7
#: bookwyrm/templates/snippets/user_options.html:7 #: bookwyrm/templates/snippets/user_options.html:7
@ -5092,6 +5097,14 @@ msgstr[1] "%(mutuals_display)s seuraajaa, joita seuraat itse"
msgid "No followers you follow" msgid "No followers you follow"
msgstr "Ei seuraajia, joita seuraat itse" msgstr "Ei seuraajia, joita seuraat itse"
#: bookwyrm/templates/user_menu.html:7
msgid "View profile and more"
msgstr "Näytä profiili ja muita tietoja"
#: bookwyrm/templates/user_menu.html:72
msgid "Log out"
msgstr "Kirjaudu ulos"
#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28
msgid "File exceeds maximum size: 10MB" msgid "File exceeds maximum size: 10MB"
msgstr "Tiedosto on enimmäiskokoa 10 Mt suurempi" msgstr "Tiedosto on enimmäiskokoa 10 Mt suurempi"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-26 20:16+0000\n" "POT-Creation-Date: 2022-04-08 21:00+0000\n"
"PO-Revision-Date: 2022-03-27 10:08\n" "PO-Revision-Date: 2022-04-09 08:36\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: French\n" "Language-Team: French\n"
"Language: fr\n" "Language: fr\n"
@ -165,14 +165,14 @@ msgstr "Couverture souple"
#: bookwyrm/models/federated_server.py:11 #: bookwyrm/models/federated_server.py:11
#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: 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" msgid "Federated"
msgstr "Fédéré" msgstr "Fédéré"
#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71
#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/edit_instance.html:56
#: bookwyrm/templates/settings/federation/instance.html:10 #: 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 #: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Bloqué" msgstr "Bloqué"
@ -187,7 +187,7 @@ msgstr "%(value)s nest pas une remote_id valide."
msgid "%(value)s is not a valid username" msgid "%(value)s is not a valid username"
msgstr "%(value)s nest pas un nom de compte valide." msgstr "%(value)s nest pas un nom de compte valide."
#: 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 #: bookwyrm/templates/ostatus/error.html:29
msgid "username" msgid "username"
msgstr "nom du compte:" msgstr "nom du compte:"
@ -300,38 +300,42 @@ msgid "Italiano (Italian)"
msgstr "Italiano (italien)" msgstr "Italiano (italien)"
#: bookwyrm/settings.py:287 #: bookwyrm/settings.py:287
msgid "Suomi (Finnish)"
msgstr "Suomi (finnois)"
#: bookwyrm/settings.py:288
msgid "Français (French)" msgid "Français (French)"
msgstr "Français" msgstr "Français"
#: bookwyrm/settings.py:288 #: bookwyrm/settings.py:289
msgid "Lietuvių (Lithuanian)" msgid "Lietuvių (Lithuanian)"
msgstr "Lietuvių (Lituanien)" msgstr "Lietuvių (Lituanien)"
#: bookwyrm/settings.py:289 #: bookwyrm/settings.py:290
msgid "Norsk (Norwegian)" msgid "Norsk (Norwegian)"
msgstr "Norsk (norvégien)" msgstr "Norsk (norvégien)"
#: bookwyrm/settings.py:290 #: bookwyrm/settings.py:291
msgid "Português do Brasil (Brazilian Portuguese)" msgid "Português do Brasil (Brazilian Portuguese)"
msgstr "Português do Brasil (Portugais brésilien)" msgstr "Português do Brasil (Portugais brésilien)"
#: bookwyrm/settings.py:291 #: bookwyrm/settings.py:292
msgid "Português Europeu (European Portuguese)" msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Portugais européen)" msgstr "Português Europeu (Portugais européen)"
#: bookwyrm/settings.py:292 #: bookwyrm/settings.py:293
msgid "Română (Romanian)" msgid "Română (Romanian)"
msgstr "Română (roumain)" msgstr "Română (roumain)"
#: bookwyrm/settings.py:293 #: bookwyrm/settings.py:294
msgid "Svenska (Swedish)" msgid "Svenska (Swedish)"
msgstr "Svenska (Suédois)" msgstr "Svenska (Suédois)"
#: bookwyrm/settings.py:294 #: bookwyrm/settings.py:295
msgid "简体中文 (Simplified Chinese)" msgid "简体中文 (Simplified Chinese)"
msgstr "简化字" msgstr "简化字"
#: bookwyrm/settings.py:295 #: bookwyrm/settings.py:296
msgid "繁體中文 (Traditional Chinese)" msgid "繁體中文 (Traditional Chinese)"
msgstr "Infos supplémentaires:" msgstr "Infos supplémentaires:"
@ -403,7 +407,7 @@ msgstr "Ladministration et la modération de %(site_name)s maintiennent le si
msgid "Moderator" msgid "Moderator"
msgstr "Modérateur/modératrice" msgstr "Modérateur/modératrice"
#: 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" msgid "Admin"
msgstr "Admin" msgstr "Admin"
@ -434,7 +438,7 @@ msgid "Software version:"
msgstr "Version logicielle :" msgstr "Version logicielle :"
#: bookwyrm/templates/about/layout.html:30 #: 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 #, python-format
msgid "About %(site_name)s" msgid "About %(site_name)s"
msgstr "À propos de %(site_name)s" msgstr "À propos de %(site_name)s"
@ -1195,7 +1199,6 @@ msgstr "Domaine"
#: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:37
#: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47
#: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/invites/status_filter.html:5
#: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_admin.html:52
@ -1363,7 +1366,7 @@ msgstr "Communauté fédérée"
#: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:4
#: bookwyrm/templates/directory/directory.html:9 #: bookwyrm/templates/directory/directory.html:9
#: bookwyrm/templates/layout.html:109 #: bookwyrm/templates/user_menu.html:30
msgid "Directory" msgid "Directory"
msgstr "Répertoire" msgstr "Répertoire"
@ -1606,13 +1609,13 @@ msgstr "Réinitialiser votre mot de passe sur %(site_name)s"
msgid "%(site_name)s home page" msgid "%(site_name)s home page"
msgstr "%(site_name)s page d'accueil" msgstr "%(site_name)s page d'accueil"
#: 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" msgid "Contact site admin"
msgstr "Contacter ladministrateur du site" msgstr "Contacter ladministrateur du site"
#: bookwyrm/templates/embed-layout.html:46 #: bookwyrm/templates/embed-layout.html:46
msgid "Join Bookwyrm" msgid "Join BookWyrm"
msgstr "Rejoignez Bookwyrm" msgstr "Rejoindre BookWyrm"
#: bookwyrm/templates/feed/direct_messages.html:8 #: bookwyrm/templates/feed/direct_messages.html:8
#, python-format #, python-format
@ -1620,7 +1623,7 @@ msgid "Direct Messages with <a href=\"%(path)s\">%(username)s</a>"
msgstr "Messages directs avec <a href=\"%(path)s\">%(username)s</a>" msgstr "Messages directs avec <a href=\"%(path)s\">%(username)s</a>"
#: bookwyrm/templates/feed/direct_messages.html:10 #: bookwyrm/templates/feed/direct_messages.html:10
#: bookwyrm/templates/layout.html:119 #: bookwyrm/templates/user_menu.html:40
msgid "Direct Messages" msgid "Direct Messages"
msgstr "Messages directs" msgstr "Messages directs"
@ -1657,7 +1660,7 @@ msgid "Updates"
msgstr "Mises à jour" msgstr "Mises à jour"
#: bookwyrm/templates/feed/suggested_books.html:6 #: bookwyrm/templates/feed/suggested_books.html:6
#: bookwyrm/templates/layout.html:114 #: bookwyrm/templates/user_menu.html:35
msgid "Your Books" msgid "Your Books"
msgstr "Vos Livres" msgstr "Vos Livres"
@ -2218,7 +2221,7 @@ msgid "Login"
msgstr "Connexion" msgstr "Connexion"
#: bookwyrm/templates/landing/login.html:7 #: 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 #: bookwyrm/templates/ostatus/error.html:37
msgid "Log in" msgid "Log in"
msgstr "Se connecter" msgstr "Se connecter"
@ -2227,7 +2230,7 @@ msgstr "Se connecter"
msgid "Success! Email address confirmed." msgid "Success! Email address confirmed."
msgstr "Bravo! Ladresse email a été confirmée." msgstr "Bravo! Ladresse email a été confirmée."
#: 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/ostatus/error.html:28
#: bookwyrm/templates/snippets/register_form.html:4 #: bookwyrm/templates/snippets/register_form.html:4
msgid "Username:" msgid "Username:"
@ -2235,12 +2238,12 @@ msgstr "Nom du compte:"
#: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/login.html:27
#: bookwyrm/templates/landing/password_reset.html:26 #: 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 #: bookwyrm/templates/snippets/register_form.html:45
msgid "Password:" msgid "Password:"
msgstr "Mot de passe:" msgstr "Mot de passe:"
#: 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 #: bookwyrm/templates/ostatus/error.html:34
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "Mot de passe oublié?" msgstr "Mot de passe oublié?"
@ -2284,54 +2287,38 @@ msgstr "Menu de navigation principal "
msgid "Feed" msgid "Feed"
msgstr "Fil dactualité" msgstr "Fil dactualité"
#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 #: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
msgid "Settings"
msgstr "Paramètres"
#: 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 "Invitations"
#: bookwyrm/templates/layout.html:147
msgid "Log out"
msgstr "Se déconnecter"
#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156
#: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:5
#: bookwyrm/templates/notifications/notifications_page.html:10 #: bookwyrm/templates/notifications/notifications_page.html:10
msgid "Notifications" msgid "Notifications"
msgstr "Notifications" msgstr "Notifications"
#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 #: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33
msgid "password" msgid "password"
msgstr "Mot de passe" msgstr "Mot de passe"
#: bookwyrm/templates/layout.html:195 #: bookwyrm/templates/layout.html:139
msgid "Join" msgid "Join"
msgstr "Rejoindre" msgstr "Rejoindre"
#: bookwyrm/templates/layout.html:229 #: bookwyrm/templates/layout.html:173
msgid "Successfully posted status" msgid "Successfully posted status"
msgstr "Publié !" msgstr "Publié !"
#: bookwyrm/templates/layout.html:230 #: bookwyrm/templates/layout.html:174
msgid "Error posting status" msgid "Error posting status"
msgstr "Erreur lors de la publication" msgstr "Erreur lors de la publication"
#: bookwyrm/templates/layout.html:246 #: bookwyrm/templates/layout.html:190
msgid "Documentation" msgid "Documentation"
msgstr "Documentation" msgstr "Documentation"
#: bookwyrm/templates/layout.html:253 #: bookwyrm/templates/layout.html:197
#, python-format #, python-format
msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
msgstr "Soutenez %(site_name)s avec <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgstr "Soutenez %(site_name)s avec <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
#: 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 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
msgstr "BookWyrm est un logiciel libre. Vous pouvez contribuer ou faire des rapports de bogues via <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgstr "BookWyrm est un logiciel libre. Vous pouvez contribuer ou faire des rapports de bogues via <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
@ -2912,6 +2899,7 @@ msgstr "Modifier le profil"
#: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:12
#: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/preferences/edit_user.html:25
#: bookwyrm/templates/settings/users/user_info.html:7 #: bookwyrm/templates/settings/users/user_info.html:7
#: bookwyrm/templates/user_menu.html:25
msgid "Profile" msgid "Profile"
msgstr "Profil" msgstr "Profil"
@ -3146,7 +3134,7 @@ msgstr "Type de recherche"
#: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:23
#: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/search/layout.html:46
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: 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/layout.html:36
#: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user.html:13
#: bookwyrm/templates/settings/users/user_admin.html:5 #: bookwyrm/templates/settings/users/user_admin.html:5
@ -3213,7 +3201,7 @@ msgid "Create Announcement"
msgstr "Ajouter une annonce" msgstr "Ajouter une annonce"
#: bookwyrm/templates/settings/announcements/announcements.html:21 #: 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" msgid "Date added"
msgstr "Date dajout" msgstr "Date dajout"
@ -3608,16 +3596,21 @@ msgstr "Blocage réussi:"
msgid "Failed:" msgid "Failed:"
msgstr "Échec:" 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 #: bookwyrm/templates/settings/users/server_filter.html:5
msgid "Instance name" msgid "Instance name"
msgstr "Nom de linstance" msgstr "Nom de linstance"
#: 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" msgid "Software"
msgstr "Logiciel" msgstr "Logiciel"
#: bookwyrm/templates/settings/federation/instance_list.html:63 #: bookwyrm/templates/settings/federation/instance_list.html:69
msgid "No instances found" msgid "No instances found"
msgstr "Aucune instance trouvée" msgstr "Aucune instance trouvée"
@ -3628,6 +3621,14 @@ msgstr "Aucune instance trouvée"
msgid "Invite Requests" msgid "Invite Requests"
msgstr "Demandes dinvitation" msgstr "Demandes dinvitation"
#: 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 "Invitations"
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23
msgid "Ignored Invite Requests" msgid "Ignored Invite Requests"
msgstr "Invitations ignorées" msgstr "Invitations ignorées"
@ -4284,6 +4285,10 @@ msgstr "Votre domaine semble être mal configuré. Il ne doit pas inclure de pro
msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production." msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production."
msgstr "Vous utilisez BookWyrm en mode production sans https. <strong>USE_HTTPS</strong> doit être activé en production." msgstr "Vous utilisez BookWyrm en mode production sans https. <strong>USE_HTTPS</strong> doit être activé en production."
#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45
msgid "Settings"
msgstr "Paramètres"
#: bookwyrm/templates/setup/config.html:56 #: bookwyrm/templates/setup/config.html:56
msgid "Instance domain:" msgid "Instance domain:"
msgstr "Domaine de l'instance :" msgstr "Domaine de l'instance :"
@ -5092,6 +5097,14 @@ msgstr[1] "%(mutuals_display)s abonné(e)s que vous suivez"
msgid "No followers you follow" msgid "No followers you follow"
msgstr "Aucun·e abonné·e que vous suivez" msgstr "Aucun·e abonné·e que vous suivez"
#: bookwyrm/templates/user_menu.html:7
msgid "View profile and more"
msgstr "Voir le profil et plus"
#: bookwyrm/templates/user_menu.html:72
msgid "Log out"
msgstr "Se déconnecter"
#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28
msgid "File exceeds maximum size: 10MB" msgid "File exceeds maximum size: 10MB"
msgstr "Ce fichier dépasse la taille limite: 10Mo" msgstr "Ce fichier dépasse la taille limite: 10Mo"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-26 20:16+0000\n" "POT-Creation-Date: 2022-04-08 21:00+0000\n"
"PO-Revision-Date: 2022-03-29 07:20\n" "PO-Revision-Date: 2022-04-09 14:02\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Galician\n" "Language-Team: Galician\n"
"Language: gl\n" "Language: gl\n"
@ -64,7 +64,7 @@ msgstr "Esta ligazón co tipo de ficheiro xa foi engadida para este libro. Se no
#: bookwyrm/forms/lists.py:26 #: bookwyrm/forms/lists.py:26
msgid "List Order" msgid "List Order"
msgstr "Orde da listaxe" msgstr "Orde da lista"
#: bookwyrm/forms/lists.py:27 #: bookwyrm/forms/lists.py:27
msgid "Book Title" msgid "Book Title"
@ -165,14 +165,14 @@ msgstr "En rústica"
#: bookwyrm/models/federated_server.py:11 #: bookwyrm/models/federated_server.py:11
#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: 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" msgid "Federated"
msgstr "Federado" msgstr "Federado"
#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71
#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/edit_instance.html:56
#: bookwyrm/templates/settings/federation/instance.html:10 #: 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 #: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Bloqueado" msgstr "Bloqueado"
@ -187,7 +187,7 @@ msgstr "%(value)s non é un remote_id válido"
msgid "%(value)s is not a valid username" msgid "%(value)s is not a valid username"
msgstr "%(value)s non é un nome de usuaria válido" msgstr "%(value)s non é un nome de usuaria válido"
#: 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 #: bookwyrm/templates/ostatus/error.html:29
msgid "username" msgid "username"
msgstr "nome de usuaria" msgstr "nome de usuaria"
@ -285,53 +285,57 @@ msgstr "English (Inglés)"
#: bookwyrm/settings.py:283 #: bookwyrm/settings.py:283
msgid "Deutsch (German)" msgid "Deutsch (German)"
msgstr "Alemán (Alemaña)" msgstr "Deutsch (Alemán)"
#: bookwyrm/settings.py:284 #: bookwyrm/settings.py:284
msgid "Español (Spanish)" msgid "Español (Spanish)"
msgstr "Español (España)" msgstr "Español (Español)"
#: bookwyrm/settings.py:285 #: bookwyrm/settings.py:285
msgid "Galego (Galician)" msgid "Galego (Galician)"
msgstr "Galego (Galician)" msgstr "Galego (Galego)"
#: bookwyrm/settings.py:286 #: bookwyrm/settings.py:286
msgid "Italiano (Italian)" msgid "Italiano (Italian)"
msgstr "Italiano (Italian)" msgstr "Italiano (Italiano)"
#: bookwyrm/settings.py:287 #: bookwyrm/settings.py:287
msgid "Français (French)" msgid "Suomi (Finnish)"
msgstr "Francés (Francia)" msgstr "Suomi (Finés)"
#: bookwyrm/settings.py:288 #: bookwyrm/settings.py:288
msgid "Lietuvių (Lithuanian)" msgid "Français (French)"
msgstr "Lietuvių (Lithuanian)" msgstr "Français (Francés)"
#: bookwyrm/settings.py:289 #: bookwyrm/settings.py:289
msgid "Norsk (Norwegian)" msgid "Lietuvių (Lithuanian)"
msgstr "Noruegués (Norwegian)" msgstr "Lietuvių (Lituano)"
#: bookwyrm/settings.py:290 #: bookwyrm/settings.py:290
msgid "Norsk (Norwegian)"
msgstr "Norsk (Noruegués)"
#: bookwyrm/settings.py:291
msgid "Português do Brasil (Brazilian Portuguese)" msgid "Português do Brasil (Brazilian Portuguese)"
msgstr "Português do Brasil (Portugués brasileiro)" msgstr "Português do Brasil (Portugués brasileiro)"
#: bookwyrm/settings.py:291 #: bookwyrm/settings.py:292
msgid "Português Europeu (European Portuguese)" msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Portugués europeo)" msgstr "Português Europeu (Portugués europeo)"
#: bookwyrm/settings.py:292 #: bookwyrm/settings.py:293
msgid "Română (Romanian)" msgid "Română (Romanian)"
msgstr "Română (Rumanés)" msgstr "Română (Rumanés)"
#: bookwyrm/settings.py:293
msgid "Svenska (Swedish)"
msgstr "Sueco (Swedish)"
#: bookwyrm/settings.py:294 #: bookwyrm/settings.py:294
msgid "Svenska (Swedish)"
msgstr "Svenska (Sueco)"
#: bookwyrm/settings.py:295
msgid "简体中文 (Simplified Chinese)" msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Chinés simplificado)" msgstr "简体中文 (Chinés simplificado)"
#: bookwyrm/settings.py:295 #: bookwyrm/settings.py:296
msgid "繁體中文 (Traditional Chinese)" msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Chinés tradicional)" msgstr "繁體中文 (Chinés tradicional)"
@ -403,7 +407,7 @@ msgstr "A moderación e administración de %(site_name)s coidan e xestionan o si
msgid "Moderator" msgid "Moderator"
msgstr "Moderación" msgstr "Moderación"
#: 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" msgid "Admin"
msgstr "Admin" msgstr "Admin"
@ -434,7 +438,7 @@ msgid "Software version:"
msgstr "Versión do software:" msgstr "Versión do software:"
#: bookwyrm/templates/about/layout.html:30 #: 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 #, python-format
msgid "About %(site_name)s" msgid "About %(site_name)s"
msgstr "Acerca de %(site_name)s" msgstr "Acerca de %(site_name)s"
@ -877,11 +881,11 @@ msgstr "Lugares"
#: bookwyrm/templates/search/layout.html:50 #: bookwyrm/templates/search/layout.html:50
#: bookwyrm/templates/user/layout.html:85 #: bookwyrm/templates/user/layout.html:85
msgid "Lists" msgid "Lists"
msgstr "Listaxes" msgstr "Listas"
#: bookwyrm/templates/book/book.html:377 #: bookwyrm/templates/book/book.html:377
msgid "Add to list" msgid "Add to list"
msgstr "Engadir a listaxe" msgstr "Engadir á lista"
#: bookwyrm/templates/book/book.html:387 #: bookwyrm/templates/book/book.html:387
#: bookwyrm/templates/book/cover_add_modal.html:32 #: bookwyrm/templates/book/cover_add_modal.html:32
@ -1195,7 +1199,6 @@ msgstr "Dominio"
#: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:37
#: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47
#: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/invites/status_filter.html:5
#: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_admin.html:52
@ -1363,7 +1366,7 @@ msgstr "Comunidade federada"
#: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:4
#: bookwyrm/templates/directory/directory.html:9 #: bookwyrm/templates/directory/directory.html:9
#: bookwyrm/templates/layout.html:109 #: bookwyrm/templates/user_menu.html:30
msgid "Directory" msgid "Directory"
msgstr "Directorio" msgstr "Directorio"
@ -1606,12 +1609,12 @@ msgstr "Restablece o contrasinal en %(site_name)s"
msgid "%(site_name)s home page" msgid "%(site_name)s home page"
msgstr "Páxina de inicio de %(site_name)s" msgstr "Páxina de inicio de %(site_name)s"
#: 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" msgid "Contact site admin"
msgstr "Contacta coa administración" msgstr "Contacta coa administración"
#: bookwyrm/templates/embed-layout.html:46 #: bookwyrm/templates/embed-layout.html:46
msgid "Join Bookwyrm" msgid "Join BookWyrm"
msgstr "Únete a BookWyrm" msgstr "Únete a BookWyrm"
#: bookwyrm/templates/feed/direct_messages.html:8 #: bookwyrm/templates/feed/direct_messages.html:8
@ -1620,7 +1623,7 @@ msgid "Direct Messages with <a href=\"%(path)s\">%(username)s</a>"
msgstr "Mensaxes Directas con <a href=\"%(path)s\">%(username)s</a>" msgstr "Mensaxes Directas con <a href=\"%(path)s\">%(username)s</a>"
#: bookwyrm/templates/feed/direct_messages.html:10 #: bookwyrm/templates/feed/direct_messages.html:10
#: bookwyrm/templates/layout.html:119 #: bookwyrm/templates/user_menu.html:40
msgid "Direct Messages" msgid "Direct Messages"
msgstr "Mensaxes Directas" msgstr "Mensaxes Directas"
@ -1657,7 +1660,7 @@ msgid "Updates"
msgstr "Actualizacións" msgstr "Actualizacións"
#: bookwyrm/templates/feed/suggested_books.html:6 #: bookwyrm/templates/feed/suggested_books.html:6
#: bookwyrm/templates/layout.html:114 #: bookwyrm/templates/user_menu.html:35
msgid "Your Books" msgid "Your Books"
msgstr "Os teus libros" msgstr "Os teus libros"
@ -1906,7 +1909,7 @@ msgstr "Crear lista"
#: bookwyrm/templates/groups/group.html:39 #: bookwyrm/templates/groups/group.html:39
msgid "This group has no lists" msgid "This group has no lists"
msgstr "Este grupo non ten listaxes" msgstr "Este grupo non ten listas"
#: bookwyrm/templates/groups/layout.html:17 #: bookwyrm/templates/groups/layout.html:17
msgid "Edit group" msgid "Edit group"
@ -2218,7 +2221,7 @@ msgid "Login"
msgstr "Acceder" msgstr "Acceder"
#: bookwyrm/templates/landing/login.html:7 #: 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 #: bookwyrm/templates/ostatus/error.html:37
msgid "Log in" msgid "Log in"
msgstr "Accede" msgstr "Accede"
@ -2227,7 +2230,7 @@ msgstr "Accede"
msgid "Success! Email address confirmed." msgid "Success! Email address confirmed."
msgstr "Correcto! Enderezo de email confirmado." msgstr "Correcto! Enderezo de email confirmado."
#: 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/ostatus/error.html:28
#: bookwyrm/templates/snippets/register_form.html:4 #: bookwyrm/templates/snippets/register_form.html:4
msgid "Username:" msgid "Username:"
@ -2235,12 +2238,12 @@ msgstr "Nome de usuaria:"
#: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/login.html:27
#: bookwyrm/templates/landing/password_reset.html:26 #: 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 #: bookwyrm/templates/snippets/register_form.html:45
msgid "Password:" msgid "Password:"
msgstr "Contrasinal:" msgstr "Contrasinal:"
#: 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 #: bookwyrm/templates/ostatus/error.html:34
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "Esqueceches o contrasinal?" msgstr "Esqueceches o contrasinal?"
@ -2282,56 +2285,40 @@ msgstr "Menú principal de navegación"
#: bookwyrm/templates/layout.html:80 #: bookwyrm/templates/layout.html:80
msgid "Feed" msgid "Feed"
msgstr "Fonte" msgstr "Cronoloxía"
#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 #: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
msgid "Settings"
msgstr "Axustes"
#: 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 "Convites"
#: bookwyrm/templates/layout.html:147
msgid "Log out"
msgstr "Desconectar"
#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156
#: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:5
#: bookwyrm/templates/notifications/notifications_page.html:10 #: bookwyrm/templates/notifications/notifications_page.html:10
msgid "Notifications" msgid "Notifications"
msgstr "Notificacións" msgstr "Notificacións"
#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 #: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33
msgid "password" msgid "password"
msgstr "contrasinal" msgstr "contrasinal"
#: bookwyrm/templates/layout.html:195 #: bookwyrm/templates/layout.html:139
msgid "Join" msgid "Join"
msgstr "Únete" msgstr "Únete"
#: bookwyrm/templates/layout.html:229 #: bookwyrm/templates/layout.html:173
msgid "Successfully posted status" msgid "Successfully posted status"
msgstr "Publicación correcta" msgstr "Publicación correcta"
#: bookwyrm/templates/layout.html:230 #: bookwyrm/templates/layout.html:174
msgid "Error posting status" msgid "Error posting status"
msgstr "Erro ao publicar" msgstr "Erro ao publicar"
#: bookwyrm/templates/layout.html:246 #: bookwyrm/templates/layout.html:190
msgid "Documentation" msgid "Documentation"
msgstr "Documentación" msgstr "Documentación"
#: bookwyrm/templates/layout.html:253 #: bookwyrm/templates/layout.html:197
#, python-format #, python-format
msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
msgstr "Axuda a %(site_name)s en <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgstr "Axuda a %(site_name)s en <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
#: 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 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
msgstr "O código fonte de BookWyrm é público. Podes colaborar ou informar de problemas en <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgstr "O código fonte de BookWyrm é público. Podes colaborar ou informar de problemas en <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
@ -2912,6 +2899,7 @@ msgstr "Editar perfil"
#: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:12
#: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/preferences/edit_user.html:25
#: bookwyrm/templates/settings/users/user_info.html:7 #: bookwyrm/templates/settings/users/user_info.html:7
#: bookwyrm/templates/user_menu.html:25
msgid "Profile" msgid "Profile"
msgstr "Perfil" msgstr "Perfil"
@ -2921,7 +2909,7 @@ msgstr "Perfil"
#: bookwyrm/templates/settings/site.html:77 #: bookwyrm/templates/settings/site.html:77
#: bookwyrm/templates/setup/config.html:91 #: bookwyrm/templates/setup/config.html:91
msgid "Display" msgid "Display"
msgstr "Mostrar" msgstr "Axustes"
#: bookwyrm/templates/preferences/edit_user.html:14 #: bookwyrm/templates/preferences/edit_user.html:14
#: bookwyrm/templates/preferences/edit_user.html:112 #: bookwyrm/templates/preferences/edit_user.html:112
@ -3146,7 +3134,7 @@ msgstr "Tipo de busca"
#: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:23
#: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/search/layout.html:46
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: 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/layout.html:36
#: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user.html:13
#: bookwyrm/templates/settings/users/user_admin.html:5 #: bookwyrm/templates/settings/users/user_admin.html:5
@ -3213,7 +3201,7 @@ msgid "Create Announcement"
msgstr "Crear Anuncio" msgstr "Crear Anuncio"
#: bookwyrm/templates/settings/announcements/announcements.html:21 #: 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" msgid "Date added"
msgstr "Data engadida" msgstr "Data engadida"
@ -3608,16 +3596,21 @@ msgstr "Bloqueaches a:"
msgid "Failed:" msgid "Failed:"
msgstr "Fallou:" 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 #: bookwyrm/templates/settings/users/server_filter.html:5
msgid "Instance name" msgid "Instance name"
msgstr "Nome da instancia" 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" msgid "Software"
msgstr "Software" msgstr "Software"
#: bookwyrm/templates/settings/federation/instance_list.html:63 #: bookwyrm/templates/settings/federation/instance_list.html:69
msgid "No instances found" msgid "No instances found"
msgstr "Non hai instancias" msgstr "Non hai instancias"
@ -3628,6 +3621,14 @@ msgstr "Non hai instancias"
msgid "Invite Requests" msgid "Invite Requests"
msgstr "Solicitudes de convite" msgstr "Solicitudes de convite"
#: 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 "Convites"
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23
msgid "Ignored Invite Requests" msgid "Ignored Invite Requests"
msgstr "Solicitudes de convite ignoradas" msgstr "Solicitudes de convite ignoradas"
@ -4284,6 +4285,10 @@ msgstr "Semella non está ben configurado o dominio. Non debería incluír o pro
msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production." msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production."
msgstr "Estás executando BookWyrm en modo produción sen https. En produción, <strong>USE_HTTPS</strong> debería estar activado." msgstr "Estás executando BookWyrm en modo produción sen https. En produción, <strong>USE_HTTPS</strong> debería estar activado."
#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45
msgid "Settings"
msgstr "Axustes"
#: bookwyrm/templates/setup/config.html:56 #: bookwyrm/templates/setup/config.html:56
msgid "Instance domain:" msgid "Instance domain:"
msgstr "Dominio da instancia:" msgstr "Dominio da instancia:"
@ -4530,7 +4535,7 @@ msgstr "A túa recensión de '%(book_title)s'"
#: bookwyrm/templates/snippets/create_status/review.html:39 #: bookwyrm/templates/snippets/create_status/review.html:39
msgid "Review:" msgid "Review:"
msgstr "Recensión:" msgstr "Revisar:"
#: bookwyrm/templates/snippets/fav_button.html:16 #: bookwyrm/templates/snippets/fav_button.html:16
#: bookwyrm/templates/snippets/fav_button.html:17 #: bookwyrm/templates/snippets/fav_button.html:17
@ -4610,8 +4615,8 @@ msgstr[1] "%(rating)s estrelas"
#, python-format #, python-format
msgid "set a goal to read %(counter)s book in %(year)s" 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" msgid_plural "set a goal to read %(counter)s books in %(year)s"
msgstr[0] "establecer obxectivo de %(counter)s libro ao %(year)s" msgstr[0] "quere ler %(counter)s libro en %(year)s"
msgstr[1] "establecer obxectivo de ler %(counter)s libros ao %(year)s" msgstr[1] "quere ler %(counter)s libros en %(year)s"
#: bookwyrm/templates/snippets/generated_status/rating.html:3 #: bookwyrm/templates/snippets/generated_status/rating.html:3
#, python-format #, python-format
@ -4891,7 +4896,7 @@ msgstr "comezou a ler <a href=\"%(book_path)s\">%(book)s</a>"
#: bookwyrm/templates/snippets/status/headers/review.html:8 #: bookwyrm/templates/snippets/status/headers/review.html:8
#, python-format #, python-format
msgid "reviewed <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>" msgid "reviewed <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>"
msgstr "revisou <a href=\"%(book_path)s\">%(book)s</a> de <a href=\"%(author_path)s\">%(author_name)s</a>" msgstr "recensionou <a href=\"%(book_path)s\">%(book)s</a> de <a href=\"%(author_path)s\">%(author_name)s</a>"
#: bookwyrm/templates/snippets/status/headers/review.html:15 #: bookwyrm/templates/snippets/status/headers/review.html:15
#, python-format #, python-format
@ -5067,7 +5072,7 @@ msgstr "Sen actividade!"
#: bookwyrm/templates/user/user_preview.html:22 #: bookwyrm/templates/user/user_preview.html:22
#, python-format #, python-format
msgid "Joined %(date)s" msgid "Joined %(date)s"
msgstr "Uniuse en %(date)s" msgstr "Desde hai %(date)s"
#: bookwyrm/templates/user/user_preview.html:26 #: bookwyrm/templates/user/user_preview.html:26
#, python-format #, python-format
@ -5092,6 +5097,14 @@ msgstr[1] "%(mutuals_display)s seguidoras que segues"
msgid "No followers you follow" msgid "No followers you follow"
msgstr "Sen seguidoras que ti segues" msgstr "Sen seguidoras que ti segues"
#: bookwyrm/templates/user_menu.html:7
msgid "View profile and more"
msgstr "Ver perfil e máis"
#: bookwyrm/templates/user_menu.html:72
msgid "Log out"
msgstr "Desconectar"
#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28
msgid "File exceeds maximum size: 10MB" msgid "File exceeds maximum size: 10MB"
msgstr "O ficheiro supera o tamaño máximo: 10MB" msgstr "O ficheiro supera o tamaño máximo: 10MB"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-26 20:16+0000\n" "POT-Creation-Date: 2022-04-08 21:00+0000\n"
"PO-Revision-Date: 2022-03-27 11:26\n" "PO-Revision-Date: 2022-04-20 22:49\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Italian\n" "Language-Team: Italian\n"
"Language: it\n" "Language: it\n"
@ -165,14 +165,14 @@ msgstr "Brossura"
#: bookwyrm/models/federated_server.py:11 #: bookwyrm/models/federated_server.py:11
#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: 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" msgid "Federated"
msgstr "Federato" msgstr "Federato"
#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71
#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/edit_instance.html:56
#: bookwyrm/templates/settings/federation/instance.html:10 #: 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 #: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Bloccato" msgstr "Bloccato"
@ -187,7 +187,7 @@ msgstr "%(value)s non è un Id remoto valido"
msgid "%(value)s is not a valid username" msgid "%(value)s is not a valid username"
msgstr "%(value)s non è un nome utente valido" msgstr "%(value)s non è un nome utente valido"
#: 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 #: bookwyrm/templates/ostatus/error.html:29
msgid "username" msgid "username"
msgstr "nome utente" msgstr "nome utente"
@ -300,38 +300,42 @@ msgid "Italiano (Italian)"
msgstr "Italiano (Italiano)" msgstr "Italiano (Italiano)"
#: bookwyrm/settings.py:287 #: bookwyrm/settings.py:287
msgid "Suomi (Finnish)"
msgstr "Suomi (Finlandese)"
#: bookwyrm/settings.py:288
msgid "Français (French)" msgid "Français (French)"
msgstr "Français (Francese)" msgstr "Français (Francese)"
#: bookwyrm/settings.py:288 #: bookwyrm/settings.py:289
msgid "Lietuvių (Lithuanian)" msgid "Lietuvių (Lithuanian)"
msgstr "Lietuvių (Lituano)" msgstr "Lietuvių (Lituano)"
#: bookwyrm/settings.py:289 #: bookwyrm/settings.py:290
msgid "Norsk (Norwegian)" msgid "Norsk (Norwegian)"
msgstr "Norsk (Norvegese)" msgstr "Norsk (Norvegese)"
#: bookwyrm/settings.py:290 #: bookwyrm/settings.py:291
msgid "Português do Brasil (Brazilian Portuguese)" msgid "Português do Brasil (Brazilian Portuguese)"
msgstr "Português do Brasil (Portoghese Brasiliano)" msgstr "Português do Brasil (Portoghese Brasiliano)"
#: bookwyrm/settings.py:291 #: bookwyrm/settings.py:292
msgid "Português Europeu (European Portuguese)" msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Portoghese europeo)" msgstr "Português Europeu (Portoghese europeo)"
#: bookwyrm/settings.py:292 #: bookwyrm/settings.py:293
msgid "Română (Romanian)" msgid "Română (Romanian)"
msgstr "Rumeno (Romanian)" msgstr "Rumeno (Romanian)"
#: bookwyrm/settings.py:293 #: bookwyrm/settings.py:294
msgid "Svenska (Swedish)" msgid "Svenska (Swedish)"
msgstr "Svenska (Svedese)" msgstr "Svenska (Svedese)"
#: bookwyrm/settings.py:294 #: bookwyrm/settings.py:295
msgid "简体中文 (Simplified Chinese)" msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Cinese Semplificato)" msgstr "简体中文 (Cinese Semplificato)"
#: bookwyrm/settings.py:295 #: bookwyrm/settings.py:296
msgid "繁體中文 (Traditional Chinese)" msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Cinese Tradizionale)" msgstr "繁體中文 (Cinese Tradizionale)"
@ -403,7 +407,7 @@ msgstr "I moderatori e gli amministratori di %(site_name)s mantengono il sito at
msgid "Moderator" msgid "Moderator"
msgstr "Moderatori" msgstr "Moderatori"
#: 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" msgid "Admin"
msgstr "Admin" msgstr "Admin"
@ -434,7 +438,7 @@ msgid "Software version:"
msgstr "Versione del software:" msgstr "Versione del software:"
#: bookwyrm/templates/about/layout.html:30 #: 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 #, python-format
msgid "About %(site_name)s" msgid "About %(site_name)s"
msgstr "Informazioni su %(site_name)s" msgstr "Informazioni su %(site_name)s"
@ -1195,7 +1199,6 @@ msgstr "Dominio"
#: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:37
#: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47
#: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/invites/status_filter.html:5
#: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_admin.html:52
@ -1363,7 +1366,7 @@ msgstr "Comunità federata"
#: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:4
#: bookwyrm/templates/directory/directory.html:9 #: bookwyrm/templates/directory/directory.html:9
#: bookwyrm/templates/layout.html:109 #: bookwyrm/templates/user_menu.html:30
msgid "Directory" msgid "Directory"
msgstr "Directory" msgstr "Directory"
@ -1606,13 +1609,13 @@ msgstr "Reimposta la password di %(site_name)s"
msgid "%(site_name)s home page" msgid "%(site_name)s home page"
msgstr "%(site_name)s Home page" msgstr "%(site_name)s Home page"
#: 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" msgid "Contact site admin"
msgstr "Contatta amministratore del sito" msgstr "Contatta amministratore del sito"
#: bookwyrm/templates/embed-layout.html:46 #: bookwyrm/templates/embed-layout.html:46
msgid "Join Bookwyrm" msgid "Join BookWyrm"
msgstr "Unisciti A Bookwyrm" msgstr "Unisciti a BookWyrm"
#: bookwyrm/templates/feed/direct_messages.html:8 #: bookwyrm/templates/feed/direct_messages.html:8
#, python-format #, python-format
@ -1620,7 +1623,7 @@ msgid "Direct Messages with <a href=\"%(path)s\">%(username)s</a>"
msgstr "Messaggi diretti con <a href=\"%(path)s\">%(username)s</a>" msgstr "Messaggi diretti con <a href=\"%(path)s\">%(username)s</a>"
#: bookwyrm/templates/feed/direct_messages.html:10 #: bookwyrm/templates/feed/direct_messages.html:10
#: bookwyrm/templates/layout.html:119 #: bookwyrm/templates/user_menu.html:40
msgid "Direct Messages" msgid "Direct Messages"
msgstr "Messaggi Diretti" msgstr "Messaggi Diretti"
@ -1657,7 +1660,7 @@ msgid "Updates"
msgstr "Aggiornamenti" msgstr "Aggiornamenti"
#: bookwyrm/templates/feed/suggested_books.html:6 #: bookwyrm/templates/feed/suggested_books.html:6
#: bookwyrm/templates/layout.html:114 #: bookwyrm/templates/user_menu.html:35
msgid "Your Books" msgid "Your Books"
msgstr "I Tuoi Libri" msgstr "I Tuoi Libri"
@ -2218,7 +2221,7 @@ msgid "Login"
msgstr "Accedi" msgstr "Accedi"
#: bookwyrm/templates/landing/login.html:7 #: 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 #: bookwyrm/templates/ostatus/error.html:37
msgid "Log in" msgid "Log in"
msgstr "Accedi" msgstr "Accedi"
@ -2227,7 +2230,7 @@ msgstr "Accedi"
msgid "Success! Email address confirmed." msgid "Success! Email address confirmed."
msgstr "Indirizzo email confermato con successo." msgstr "Indirizzo email confermato con successo."
#: 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/ostatus/error.html:28
#: bookwyrm/templates/snippets/register_form.html:4 #: bookwyrm/templates/snippets/register_form.html:4
msgid "Username:" msgid "Username:"
@ -2235,12 +2238,12 @@ msgstr "Nome utente:"
#: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/login.html:27
#: bookwyrm/templates/landing/password_reset.html:26 #: 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 #: bookwyrm/templates/snippets/register_form.html:45
msgid "Password:" msgid "Password:"
msgstr "Password:" msgstr "Password:"
#: 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 #: bookwyrm/templates/ostatus/error.html:34
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "Hai dimenticato la tua password?" msgstr "Hai dimenticato la tua password?"
@ -2284,54 +2287,38 @@ msgstr "Barra di navigazione principale"
msgid "Feed" msgid "Feed"
msgstr "Feed" msgstr "Feed"
#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 #: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
msgid "Settings"
msgstr "Impostazioni"
#: 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 "Inviti"
#: bookwyrm/templates/layout.html:147
msgid "Log out"
msgstr "Esci"
#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156
#: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:5
#: bookwyrm/templates/notifications/notifications_page.html:10 #: bookwyrm/templates/notifications/notifications_page.html:10
msgid "Notifications" msgid "Notifications"
msgstr "Notifiche" msgstr "Notifiche"
#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 #: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33
msgid "password" msgid "password"
msgstr "password" msgstr "password"
#: bookwyrm/templates/layout.html:195 #: bookwyrm/templates/layout.html:139
msgid "Join" msgid "Join"
msgstr "Entra" msgstr "Entra"
#: bookwyrm/templates/layout.html:229 #: bookwyrm/templates/layout.html:173
msgid "Successfully posted status" msgid "Successfully posted status"
msgstr "Stato pubblicato correttamente" msgstr "Stato pubblicato correttamente"
#: bookwyrm/templates/layout.html:230 #: bookwyrm/templates/layout.html:174
msgid "Error posting status" msgid "Error posting status"
msgstr "Errore nel pubblicare lo stato" msgstr "Errore nel pubblicare lo stato"
#: bookwyrm/templates/layout.html:246 #: bookwyrm/templates/layout.html:190
msgid "Documentation" msgid "Documentation"
msgstr "Documentazione" msgstr "Documentazione"
#: bookwyrm/templates/layout.html:253 #: bookwyrm/templates/layout.html:197
#, python-format #, python-format
msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
msgstr "Supporta %(site_name)s su <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgstr "Supporta %(site_name)s su <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
#: 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 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
msgstr "Il codice sorgente di BookWyrm è disponibile liberamente. Puoi contribuire o segnalare problemi su <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgstr "Il codice sorgente di BookWyrm è disponibile liberamente. Puoi contribuire o segnalare problemi su <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
@ -2912,6 +2899,7 @@ msgstr "Modifica profilo"
#: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:12
#: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/preferences/edit_user.html:25
#: bookwyrm/templates/settings/users/user_info.html:7 #: bookwyrm/templates/settings/users/user_info.html:7
#: bookwyrm/templates/user_menu.html:25
msgid "Profile" msgid "Profile"
msgstr "Profilo" msgstr "Profilo"
@ -3146,7 +3134,7 @@ msgstr "Tipo di ricerca"
#: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:23
#: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/search/layout.html:46
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: 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/layout.html:36
#: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user.html:13
#: bookwyrm/templates/settings/users/user_admin.html:5 #: bookwyrm/templates/settings/users/user_admin.html:5
@ -3213,7 +3201,7 @@ msgid "Create Announcement"
msgstr "Crea annuncio" msgstr "Crea annuncio"
#: bookwyrm/templates/settings/announcements/announcements.html:21 #: 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" msgid "Date added"
msgstr "Data inserimento" msgstr "Data inserimento"
@ -3608,16 +3596,21 @@ msgstr "Bloccato con successo:"
msgid "Failed:" msgid "Failed:"
msgstr "Non riuscito:" 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 #: bookwyrm/templates/settings/users/server_filter.html:5
msgid "Instance name" msgid "Instance name"
msgstr "Nome dell'istanza" msgstr "Nome dell'istanza"
#: bookwyrm/templates/settings/federation/instance_list.html:40 #: bookwyrm/templates/settings/federation/instance_list.html:43
msgid "Last updated"
msgstr "Ultimo aggiornamento"
#: bookwyrm/templates/settings/federation/instance_list.html:47
#: bookwyrm/templates/settings/federation/software_filter.html:5
msgid "Software" msgid "Software"
msgstr "Software" msgstr "Software"
#: bookwyrm/templates/settings/federation/instance_list.html:63 #: bookwyrm/templates/settings/federation/instance_list.html:69
msgid "No instances found" msgid "No instances found"
msgstr "Nessun istanza trovata" msgstr "Nessun istanza trovata"
@ -3628,6 +3621,14 @@ msgstr "Nessun istanza trovata"
msgid "Invite Requests" msgid "Invite Requests"
msgstr "Invia richiesta di invito" msgstr "Invia richiesta di invito"
#: 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 "Inviti"
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23
msgid "Ignored Invite Requests" msgid "Ignored Invite Requests"
msgstr "Richieste di invito ignorate" msgstr "Richieste di invito ignorate"
@ -4158,7 +4159,7 @@ msgstr "Visualizza il profilo dell'utente"
#: bookwyrm/templates/settings/users/user_info.html:19 #: bookwyrm/templates/settings/users/user_info.html:19
msgid "Go to user admin" msgid "Go to user admin"
msgstr "" msgstr "Vai ad amministratore utente"
#: bookwyrm/templates/settings/users/user_info.html:40 #: bookwyrm/templates/settings/users/user_info.html:40
msgid "Local" msgid "Local"
@ -4284,6 +4285,10 @@ msgstr "Il tuo dominio sembra essere mal configurato. Non dovrebbe includere pro
msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production." msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production."
msgstr "Stai eseguendo BookWyrm in modalità di produzione senza https. <strong>USE_HTTPS</strong> dovrebbe essere abilitato in produzione." msgstr "Stai eseguendo BookWyrm in modalità di produzione senza https. <strong>USE_HTTPS</strong> dovrebbe essere abilitato in produzione."
#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45
msgid "Settings"
msgstr "Impostazioni"
#: bookwyrm/templates/setup/config.html:56 #: bookwyrm/templates/setup/config.html:56
msgid "Instance domain:" msgid "Instance domain:"
msgstr "Dominio dell'istanza:" msgstr "Dominio dell'istanza:"
@ -5092,6 +5097,14 @@ msgstr[1] "%(mutuals_display)s followers che segui"
msgid "No followers you follow" msgid "No followers you follow"
msgstr "Nessun follower che segui" msgstr "Nessun follower che segui"
#: bookwyrm/templates/user_menu.html:7
msgid "View profile and more"
msgstr "Visualizza profilo e altro"
#: bookwyrm/templates/user_menu.html:72
msgid "Log out"
msgstr "Esci"
#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28
msgid "File exceeds maximum size: 10MB" msgid "File exceeds maximum size: 10MB"
msgstr "Il file supera la dimensione massima: 10MB" msgstr "Il file supera la dimensione massima: 10MB"

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-26 20:16+0000\n" "POT-Creation-Date: 2022-04-08 21:00+0000\n"
"PO-Revision-Date: 2022-03-31 15:40\n" "PO-Revision-Date: 2022-04-08 21:50\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Norwegian\n" "Language-Team: Norwegian\n"
"Language: no\n" "Language: no\n"
@ -165,14 +165,14 @@ msgstr "Paperback"
#: bookwyrm/models/federated_server.py:11 #: bookwyrm/models/federated_server.py:11
#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: 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" msgid "Federated"
msgstr "Føderert" msgstr "Føderert"
#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71
#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/edit_instance.html:56
#: bookwyrm/templates/settings/federation/instance.html:10 #: 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 #: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Blokkert" msgstr "Blokkert"
@ -187,7 +187,7 @@ msgstr "%(value)s er en ugyldig remote_id"
msgid "%(value)s is not a valid username" msgid "%(value)s is not a valid username"
msgstr "%(value)s er et ugyldig brukernavn" msgstr "%(value)s er et ugyldig brukernavn"
#: 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 #: bookwyrm/templates/ostatus/error.html:29
msgid "username" msgid "username"
msgstr "brukernavn" msgstr "brukernavn"
@ -300,38 +300,42 @@ msgid "Italiano (Italian)"
msgstr "Italiano (Italiensk)" msgstr "Italiano (Italiensk)"
#: bookwyrm/settings.py:287 #: bookwyrm/settings.py:287
msgid "Suomi (Finnish)"
msgstr ""
#: bookwyrm/settings.py:288
msgid "Français (French)" msgid "Français (French)"
msgstr "Français (Fransk)" msgstr "Français (Fransk)"
#: bookwyrm/settings.py:288 #: bookwyrm/settings.py:289
msgid "Lietuvių (Lithuanian)" msgid "Lietuvių (Lithuanian)"
msgstr "Lietuvių (Litauisk)" msgstr "Lietuvių (Litauisk)"
#: bookwyrm/settings.py:289 #: bookwyrm/settings.py:290
msgid "Norsk (Norwegian)" msgid "Norsk (Norwegian)"
msgstr "Norsk (Norsk)" msgstr "Norsk (Norsk)"
#: bookwyrm/settings.py:290 #: bookwyrm/settings.py:291
msgid "Português do Brasil (Brazilian Portuguese)" msgid "Português do Brasil (Brazilian Portuguese)"
msgstr "Português - Brasil (Brasiliansk portugisisk)" msgstr "Português - Brasil (Brasiliansk portugisisk)"
#: bookwyrm/settings.py:291 #: bookwyrm/settings.py:292
msgid "Português Europeu (European Portuguese)" msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Europeisk Portugisisk)" msgstr "Português Europeu (Europeisk Portugisisk)"
#: bookwyrm/settings.py:292 #: bookwyrm/settings.py:293
msgid "Română (Romanian)" msgid "Română (Romanian)"
msgstr "" msgstr ""
#: bookwyrm/settings.py:293 #: bookwyrm/settings.py:294
msgid "Svenska (Swedish)" msgid "Svenska (Swedish)"
msgstr "Svenska (Svensk)" msgstr "Svenska (Svensk)"
#: bookwyrm/settings.py:294 #: bookwyrm/settings.py:295
msgid "简体中文 (Simplified Chinese)" msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Forenklet kinesisk)" msgstr "简体中文 (Forenklet kinesisk)"
#: bookwyrm/settings.py:295 #: bookwyrm/settings.py:296
msgid "繁體中文 (Traditional Chinese)" msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Tradisjonelt kinesisk)" msgstr "繁體中文 (Tradisjonelt kinesisk)"
@ -403,7 +407,7 @@ msgstr "%(site_name)s sine moderatorer og administratorer holder nettsida oppe o
msgid "Moderator" msgid "Moderator"
msgstr "Moderator" msgstr "Moderator"
#: 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" msgid "Admin"
msgstr "Admin" msgstr "Admin"
@ -434,7 +438,7 @@ msgid "Software version:"
msgstr "Programvareversjon:" msgstr "Programvareversjon:"
#: bookwyrm/templates/about/layout.html:30 #: 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 #, python-format
msgid "About %(site_name)s" msgid "About %(site_name)s"
msgstr "Om %(site_name)s" msgstr "Om %(site_name)s"
@ -1195,7 +1199,6 @@ msgstr "Domene"
#: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:37
#: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47
#: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/invites/status_filter.html:5
#: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_admin.html:52
@ -1363,7 +1366,7 @@ msgstr "Føderte samfunn"
#: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:4
#: bookwyrm/templates/directory/directory.html:9 #: bookwyrm/templates/directory/directory.html:9
#: bookwyrm/templates/layout.html:109 #: bookwyrm/templates/user_menu.html:30
msgid "Directory" msgid "Directory"
msgstr "Katalog" msgstr "Katalog"
@ -1606,13 +1609,13 @@ msgstr "Tilbakestill passordet ditt på %(site_name)s"
msgid "%(site_name)s home page" msgid "%(site_name)s home page"
msgstr "%(site_name)s hjemmeside" msgstr "%(site_name)s hjemmeside"
#: 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" msgid "Contact site admin"
msgstr "Kontakt administrator" msgstr "Kontakt administrator"
#: bookwyrm/templates/embed-layout.html:46 #: bookwyrm/templates/embed-layout.html:46
msgid "Join Bookwyrm" msgid "Join BookWyrm"
msgstr "Bli med i Bokwyrm" msgstr ""
#: bookwyrm/templates/feed/direct_messages.html:8 #: bookwyrm/templates/feed/direct_messages.html:8
#, python-format #, python-format
@ -1620,7 +1623,7 @@ msgid "Direct Messages with <a href=\"%(path)s\">%(username)s</a>"
msgstr "Direktemeldinger med <a href=\"%(path)s\">%(username)s</a>" msgstr "Direktemeldinger med <a href=\"%(path)s\">%(username)s</a>"
#: bookwyrm/templates/feed/direct_messages.html:10 #: bookwyrm/templates/feed/direct_messages.html:10
#: bookwyrm/templates/layout.html:119 #: bookwyrm/templates/user_menu.html:40
msgid "Direct Messages" msgid "Direct Messages"
msgstr "Direktemeldinger" msgstr "Direktemeldinger"
@ -1657,7 +1660,7 @@ msgid "Updates"
msgstr "Oppdateringer" msgstr "Oppdateringer"
#: bookwyrm/templates/feed/suggested_books.html:6 #: bookwyrm/templates/feed/suggested_books.html:6
#: bookwyrm/templates/layout.html:114 #: bookwyrm/templates/user_menu.html:35
msgid "Your Books" msgid "Your Books"
msgstr "Bøkene dine" msgstr "Bøkene dine"
@ -2218,7 +2221,7 @@ msgid "Login"
msgstr "Logg inn" msgstr "Logg inn"
#: bookwyrm/templates/landing/login.html:7 #: 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 #: bookwyrm/templates/ostatus/error.html:37
msgid "Log in" msgid "Log in"
msgstr "Logg inn" msgstr "Logg inn"
@ -2227,7 +2230,7 @@ msgstr "Logg inn"
msgid "Success! Email address confirmed." msgid "Success! Email address confirmed."
msgstr "Vellykket! E-postadressen din er bekreftet." msgstr "Vellykket! E-postadressen din er bekreftet."
#: 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/ostatus/error.html:28
#: bookwyrm/templates/snippets/register_form.html:4 #: bookwyrm/templates/snippets/register_form.html:4
msgid "Username:" msgid "Username:"
@ -2235,12 +2238,12 @@ msgstr "Brukernavn:"
#: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/login.html:27
#: bookwyrm/templates/landing/password_reset.html:26 #: 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 #: bookwyrm/templates/snippets/register_form.html:45
msgid "Password:" msgid "Password:"
msgstr "Passord:" msgstr "Passord:"
#: 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 #: bookwyrm/templates/ostatus/error.html:34
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "Glemt passord?" msgstr "Glemt passord?"
@ -2284,54 +2287,38 @@ msgstr "Hovednavigasjonsmeny"
msgid "Feed" msgid "Feed"
msgstr "Strøm" msgstr "Strøm"
#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 #: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
msgid "Settings"
msgstr "Innstillinger"
#: 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 "Invitasjoner"
#: bookwyrm/templates/layout.html:147
msgid "Log out"
msgstr "Logg ut"
#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156
#: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:5
#: bookwyrm/templates/notifications/notifications_page.html:10 #: bookwyrm/templates/notifications/notifications_page.html:10
msgid "Notifications" msgid "Notifications"
msgstr "Varsler" msgstr "Varsler"
#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 #: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33
msgid "password" msgid "password"
msgstr "passord" msgstr "passord"
#: bookwyrm/templates/layout.html:195 #: bookwyrm/templates/layout.html:139
msgid "Join" msgid "Join"
msgstr "Delta" msgstr "Delta"
#: bookwyrm/templates/layout.html:229 #: bookwyrm/templates/layout.html:173
msgid "Successfully posted status" msgid "Successfully posted status"
msgstr "Status ble opprettet" msgstr "Status ble opprettet"
#: bookwyrm/templates/layout.html:230 #: bookwyrm/templates/layout.html:174
msgid "Error posting status" msgid "Error posting status"
msgstr "Feil ved lagring av status" msgstr "Feil ved lagring av status"
#: bookwyrm/templates/layout.html:246 #: bookwyrm/templates/layout.html:190
msgid "Documentation" msgid "Documentation"
msgstr "Dokumentasjon" msgstr "Dokumentasjon"
#: bookwyrm/templates/layout.html:253 #: bookwyrm/templates/layout.html:197
#, python-format #, python-format
msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
msgstr "Støtt %(site_name)s på <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgstr "Støtt %(site_name)s på <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
#: 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 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
msgstr "BookWyrms kildekode er fritt tilgjengelig. Du kan bidra eller rapportere problemer på <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgstr "BookWyrms kildekode er fritt tilgjengelig. Du kan bidra eller rapportere problemer på <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
@ -2912,6 +2899,7 @@ msgstr "Rediger profil"
#: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:12
#: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/preferences/edit_user.html:25
#: bookwyrm/templates/settings/users/user_info.html:7 #: bookwyrm/templates/settings/users/user_info.html:7
#: bookwyrm/templates/user_menu.html:25
msgid "Profile" msgid "Profile"
msgstr "Profil" msgstr "Profil"
@ -3144,7 +3132,7 @@ msgstr "Søketype"
#: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:23
#: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/search/layout.html:46
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: 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/layout.html:36
#: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user.html:13
#: bookwyrm/templates/settings/users/user_admin.html:5 #: bookwyrm/templates/settings/users/user_admin.html:5
@ -3211,7 +3199,7 @@ msgid "Create Announcement"
msgstr "Opprett en kunngjøring" msgstr "Opprett en kunngjøring"
#: bookwyrm/templates/settings/announcements/announcements.html:21 #: 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" msgid "Date added"
msgstr "Dato lagt til" msgstr "Dato lagt til"
@ -3606,16 +3594,21 @@ msgstr "Klarte å blokkere:"
msgid "Failed:" msgid "Failed:"
msgstr "Mislyktes:" 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 #: bookwyrm/templates/settings/users/server_filter.html:5
msgid "Instance name" msgid "Instance name"
msgstr "Instansnavn" 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" msgid "Software"
msgstr "Programvare" msgstr "Programvare"
#: bookwyrm/templates/settings/federation/instance_list.html:63 #: bookwyrm/templates/settings/federation/instance_list.html:69
msgid "No instances found" msgid "No instances found"
msgstr "Ingen instanser funnet" msgstr "Ingen instanser funnet"
@ -3626,6 +3619,14 @@ msgstr "Ingen instanser funnet"
msgid "Invite Requests" msgid "Invite Requests"
msgstr "Invitasjonsforespørsler" msgstr "Invitasjonsforespørsler"
#: 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 "Invitasjoner"
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23
msgid "Ignored Invite Requests" msgid "Ignored Invite Requests"
msgstr "Ignorerte invitasjonsforespørsler" msgstr "Ignorerte invitasjonsforespørsler"
@ -4282,6 +4283,10 @@ msgstr ""
msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production." msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production."
msgstr "" msgstr ""
#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45
msgid "Settings"
msgstr "Innstillinger"
#: bookwyrm/templates/setup/config.html:56 #: bookwyrm/templates/setup/config.html:56
msgid "Instance domain:" msgid "Instance domain:"
msgstr "" msgstr ""
@ -5090,6 +5095,14 @@ msgstr[1] "%(mutuals_display)s følgere du følger"
msgid "No followers you follow" msgid "No followers you follow"
msgstr "Ingen følgere du følger" msgstr "Ingen følgere du følger"
#: bookwyrm/templates/user_menu.html:7
msgid "View profile and more"
msgstr ""
#: bookwyrm/templates/user_menu.html:72
msgid "Log out"
msgstr "Logg ut"
#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28
msgid "File exceeds maximum size: 10MB" msgid "File exceeds maximum size: 10MB"
msgstr "Filen overskrider maksimal størrelse: 10MB" msgstr "Filen overskrider maksimal størrelse: 10MB"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-26 20:16+0000\n" "POT-Creation-Date: 2022-04-08 21:00+0000\n"
"PO-Revision-Date: 2022-03-26 23:28\n" "PO-Revision-Date: 2022-04-08 23:12\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Portuguese, Brazilian\n" "Language-Team: Portuguese, Brazilian\n"
"Language: pt\n" "Language: pt\n"
@ -165,14 +165,14 @@ msgstr "Capa mole"
#: bookwyrm/models/federated_server.py:11 #: bookwyrm/models/federated_server.py:11
#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: 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" msgid "Federated"
msgstr "Federado" msgstr "Federado"
#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71
#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/edit_instance.html:56
#: bookwyrm/templates/settings/federation/instance.html:10 #: 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 #: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Bloqueado" msgstr "Bloqueado"
@ -187,7 +187,7 @@ msgstr "%(value)s não é um remote_id válido"
msgid "%(value)s is not a valid username" msgid "%(value)s is not a valid username"
msgstr "%(value)s não é um nome de usuário válido" msgstr "%(value)s não é um nome de usuário válido"
#: 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 #: bookwyrm/templates/ostatus/error.html:29
msgid "username" msgid "username"
msgstr "nome de usuário" msgstr "nome de usuário"
@ -300,38 +300,42 @@ msgid "Italiano (Italian)"
msgstr "Italiano (Italiano)" msgstr "Italiano (Italiano)"
#: bookwyrm/settings.py:287 #: bookwyrm/settings.py:287
msgid "Suomi (Finnish)"
msgstr "Suomi (Finlandês)"
#: bookwyrm/settings.py:288
msgid "Français (French)" msgid "Français (French)"
msgstr "Français (Francês)" msgstr "Français (Francês)"
#: bookwyrm/settings.py:288 #: bookwyrm/settings.py:289
msgid "Lietuvių (Lithuanian)" msgid "Lietuvių (Lithuanian)"
msgstr "Lietuvių (Lituano)" msgstr "Lietuvių (Lituano)"
#: bookwyrm/settings.py:289 #: bookwyrm/settings.py:290
msgid "Norsk (Norwegian)" msgid "Norsk (Norwegian)"
msgstr "Norsk (Norueguês)" msgstr "Norsk (Norueguês)"
#: bookwyrm/settings.py:290 #: bookwyrm/settings.py:291
msgid "Português do Brasil (Brazilian Portuguese)" msgid "Português do Brasil (Brazilian Portuguese)"
msgstr "Português do Brasil (Português do Brasil)" msgstr "Português do Brasil (Português do Brasil)"
#: bookwyrm/settings.py:291 #: bookwyrm/settings.py:292
msgid "Português Europeu (European Portuguese)" msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Português Europeu)" msgstr "Português Europeu (Português Europeu)"
#: bookwyrm/settings.py:292 #: bookwyrm/settings.py:293
msgid "Română (Romanian)" msgid "Română (Romanian)"
msgstr "Română (Romeno)" msgstr "Română (Romeno)"
#: bookwyrm/settings.py:293 #: bookwyrm/settings.py:294
msgid "Svenska (Swedish)" msgid "Svenska (Swedish)"
msgstr "Svenska (Sueco)" msgstr "Svenska (Sueco)"
#: bookwyrm/settings.py:294 #: bookwyrm/settings.py:295
msgid "简体中文 (Simplified Chinese)" msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Chinês simplificado)" msgstr "简体中文 (Chinês simplificado)"
#: bookwyrm/settings.py:295 #: bookwyrm/settings.py:296
msgid "繁體中文 (Traditional Chinese)" msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Chinês tradicional)" msgstr "繁體中文 (Chinês tradicional)"
@ -403,7 +407,7 @@ msgstr "Moderadores e administradores de %(site_name)s's mantêm o site funciona
msgid "Moderator" msgid "Moderator"
msgstr "Moderador/a" msgstr "Moderador/a"
#: 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" msgid "Admin"
msgstr "Admin" msgstr "Admin"
@ -434,7 +438,7 @@ msgid "Software version:"
msgstr "Versão do software:" msgstr "Versão do software:"
#: bookwyrm/templates/about/layout.html:30 #: 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 #, python-format
msgid "About %(site_name)s" msgid "About %(site_name)s"
msgstr "Sobre %(site_name)s" msgstr "Sobre %(site_name)s"
@ -1195,7 +1199,6 @@ msgstr "Domínio"
#: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:37
#: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47
#: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/invites/status_filter.html:5
#: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_admin.html:52
@ -1363,7 +1366,7 @@ msgstr "Comunidade federada"
#: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:4
#: bookwyrm/templates/directory/directory.html:9 #: bookwyrm/templates/directory/directory.html:9
#: bookwyrm/templates/layout.html:109 #: bookwyrm/templates/user_menu.html:30
msgid "Directory" msgid "Directory"
msgstr "Diretório" msgstr "Diretório"
@ -1606,12 +1609,12 @@ msgstr "Redefinir sua senha no %(site_name)s"
msgid "%(site_name)s home page" msgid "%(site_name)s home page"
msgstr "Página inicial de %(site_name)s" msgstr "Página inicial de %(site_name)s"
#: 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" msgid "Contact site admin"
msgstr "Falar com a administração" msgstr "Falar com a administração"
#: bookwyrm/templates/embed-layout.html:46 #: bookwyrm/templates/embed-layout.html:46
msgid "Join Bookwyrm" msgid "Join BookWyrm"
msgstr "Participe da BookWyrm" msgstr "Participe da BookWyrm"
#: bookwyrm/templates/feed/direct_messages.html:8 #: bookwyrm/templates/feed/direct_messages.html:8
@ -1620,7 +1623,7 @@ msgid "Direct Messages with <a href=\"%(path)s\">%(username)s</a>"
msgstr "Mensagens diretas com <a href=\"%(path)s\">%(username)s</a>" msgstr "Mensagens diretas com <a href=\"%(path)s\">%(username)s</a>"
#: bookwyrm/templates/feed/direct_messages.html:10 #: bookwyrm/templates/feed/direct_messages.html:10
#: bookwyrm/templates/layout.html:119 #: bookwyrm/templates/user_menu.html:40
msgid "Direct Messages" msgid "Direct Messages"
msgstr "Mensagens diretas" msgstr "Mensagens diretas"
@ -1657,7 +1660,7 @@ msgid "Updates"
msgstr "Atualizações" msgstr "Atualizações"
#: bookwyrm/templates/feed/suggested_books.html:6 #: bookwyrm/templates/feed/suggested_books.html:6
#: bookwyrm/templates/layout.html:114 #: bookwyrm/templates/user_menu.html:35
msgid "Your Books" msgid "Your Books"
msgstr "Seus livros" msgstr "Seus livros"
@ -2218,7 +2221,7 @@ msgid "Login"
msgstr "Entrar" msgstr "Entrar"
#: bookwyrm/templates/landing/login.html:7 #: 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 #: bookwyrm/templates/ostatus/error.html:37
msgid "Log in" msgid "Log in"
msgstr "Entrar" msgstr "Entrar"
@ -2227,7 +2230,7 @@ msgstr "Entrar"
msgid "Success! Email address confirmed." msgid "Success! Email address confirmed."
msgstr "Endereço de e-mail confirmado com sucesso." msgstr "Endereço de e-mail confirmado com sucesso."
#: 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/ostatus/error.html:28
#: bookwyrm/templates/snippets/register_form.html:4 #: bookwyrm/templates/snippets/register_form.html:4
msgid "Username:" msgid "Username:"
@ -2235,12 +2238,12 @@ msgstr "Usuário:"
#: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/login.html:27
#: bookwyrm/templates/landing/password_reset.html:26 #: 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 #: bookwyrm/templates/snippets/register_form.html:45
msgid "Password:" msgid "Password:"
msgstr "Senha:" msgstr "Senha:"
#: 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 #: bookwyrm/templates/ostatus/error.html:34
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "Esqueceu sua senha?" msgstr "Esqueceu sua senha?"
@ -2284,54 +2287,38 @@ msgstr "Menu de navegação principal"
msgid "Feed" msgid "Feed"
msgstr "Novidades" msgstr "Novidades"
#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 #: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
msgid "Settings"
msgstr "Configurações"
#: 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 "Convites"
#: bookwyrm/templates/layout.html:147
msgid "Log out"
msgstr "Sair"
#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156
#: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:5
#: bookwyrm/templates/notifications/notifications_page.html:10 #: bookwyrm/templates/notifications/notifications_page.html:10
msgid "Notifications" msgid "Notifications"
msgstr "Notificações" msgstr "Notificações"
#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 #: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33
msgid "password" msgid "password"
msgstr "senha" msgstr "senha"
#: bookwyrm/templates/layout.html:195 #: bookwyrm/templates/layout.html:139
msgid "Join" msgid "Join"
msgstr "Registrar" msgstr "Registrar"
#: bookwyrm/templates/layout.html:229 #: bookwyrm/templates/layout.html:173
msgid "Successfully posted status" msgid "Successfully posted status"
msgstr "Publicação feita com sucesso" msgstr "Publicação feita com sucesso"
#: bookwyrm/templates/layout.html:230 #: bookwyrm/templates/layout.html:174
msgid "Error posting status" msgid "Error posting status"
msgstr "Erro ao publicar" msgstr "Erro ao publicar"
#: bookwyrm/templates/layout.html:246 #: bookwyrm/templates/layout.html:190
msgid "Documentation" msgid "Documentation"
msgstr "Documentação" msgstr "Documentação"
#: bookwyrm/templates/layout.html:253 #: bookwyrm/templates/layout.html:197
#, python-format #, python-format
msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
msgstr "Apoie a instância %(site_name)s: <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgstr "Apoie a instância %(site_name)s: <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
#: 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 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
msgstr "O código-fonte da BookWyrm está disponível gratuitamente. Você pode contribuir ou reportar problemas no <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgstr "O código-fonte da BookWyrm está disponível gratuitamente. Você pode contribuir ou reportar problemas no <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
@ -2912,6 +2899,7 @@ msgstr "Editar perfil"
#: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:12
#: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/preferences/edit_user.html:25
#: bookwyrm/templates/settings/users/user_info.html:7 #: bookwyrm/templates/settings/users/user_info.html:7
#: bookwyrm/templates/user_menu.html:25
msgid "Profile" msgid "Profile"
msgstr "Perfil" msgstr "Perfil"
@ -3146,7 +3134,7 @@ msgstr "Tipo de pesquisa"
#: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:23
#: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/search/layout.html:46
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: 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/layout.html:36
#: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user.html:13
#: bookwyrm/templates/settings/users/user_admin.html:5 #: bookwyrm/templates/settings/users/user_admin.html:5
@ -3213,7 +3201,7 @@ msgid "Create Announcement"
msgstr "Criar aviso" msgstr "Criar aviso"
#: bookwyrm/templates/settings/announcements/announcements.html:21 #: 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" msgid "Date added"
msgstr "Adicionada em" msgstr "Adicionada em"
@ -3608,16 +3596,21 @@ msgstr "Bloqueada com sucesso:"
msgid "Failed:" msgid "Failed:"
msgstr "Falhou:" 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 #: bookwyrm/templates/settings/users/server_filter.html:5
msgid "Instance name" msgid "Instance name"
msgstr "Nome da instância" 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" msgid "Software"
msgstr "Software" msgstr "Software"
#: bookwyrm/templates/settings/federation/instance_list.html:63 #: bookwyrm/templates/settings/federation/instance_list.html:69
msgid "No instances found" msgid "No instances found"
msgstr "Nenhuma instância encontrada" msgstr "Nenhuma instância encontrada"
@ -3628,6 +3621,14 @@ msgstr "Nenhuma instância encontrada"
msgid "Invite Requests" msgid "Invite Requests"
msgstr "Solicitações de convite" msgstr "Solicitações de convite"
#: 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 "Convites"
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23
msgid "Ignored Invite Requests" msgid "Ignored Invite Requests"
msgstr "Ignorar solicitações de convite" msgstr "Ignorar solicitações de convite"
@ -4284,6 +4285,10 @@ msgstr "Seu domínio parece estar mal configurado. Ele não deve incluir protoco
msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production." msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production."
msgstr "Você está rodando a BookWyrm em produção sem https. <strong>USE_HTTPS</strong> deve ser habilitado em produção." msgstr "Você está rodando a BookWyrm em produção sem https. <strong>USE_HTTPS</strong> deve ser habilitado em produção."
#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45
msgid "Settings"
msgstr "Configurações"
#: bookwyrm/templates/setup/config.html:56 #: bookwyrm/templates/setup/config.html:56
msgid "Instance domain:" msgid "Instance domain:"
msgstr "Domínio da instância:" msgstr "Domínio da instância:"
@ -5092,6 +5097,14 @@ msgstr[1] "%(mutuals_display)s seguidores que você segue"
msgid "No followers you follow" msgid "No followers you follow"
msgstr "Nenhum seguidor que você segue" msgstr "Nenhum seguidor que você segue"
#: bookwyrm/templates/user_menu.html:7
msgid "View profile and more"
msgstr "Ver perfil e mais"
#: bookwyrm/templates/user_menu.html:72
msgid "Log out"
msgstr "Sair"
#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28
msgid "File exceeds maximum size: 10MB" msgid "File exceeds maximum size: 10MB"
msgstr "Arquivo excede o tamanho máximo: 10MB" msgstr "Arquivo excede o tamanho máximo: 10MB"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-26 20:16+0000\n" "POT-Creation-Date: 2022-04-08 21:00+0000\n"
"PO-Revision-Date: 2022-03-26 22:29\n" "PO-Revision-Date: 2022-04-08 21:50\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Portuguese\n" "Language-Team: Portuguese\n"
"Language: pt\n" "Language: pt\n"
@ -165,14 +165,14 @@ msgstr "Capa mole"
#: bookwyrm/models/federated_server.py:11 #: bookwyrm/models/federated_server.py:11
#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: 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" msgid "Federated"
msgstr "Federado" msgstr "Federado"
#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71
#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/edit_instance.html:56
#: bookwyrm/templates/settings/federation/instance.html:10 #: 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 #: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Bloqueado" msgstr "Bloqueado"
@ -187,7 +187,7 @@ msgstr "%(value)s não é um remote_id válido"
msgid "%(value)s is not a valid username" msgid "%(value)s is not a valid username"
msgstr "%(value)s não é um nome de utilizador válido" msgstr "%(value)s não é um nome de utilizador válido"
#: 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 #: bookwyrm/templates/ostatus/error.html:29
msgid "username" msgid "username"
msgstr "nome de utilizador" msgstr "nome de utilizador"
@ -300,38 +300,42 @@ msgid "Italiano (Italian)"
msgstr "Italiano (Italiano)" msgstr "Italiano (Italiano)"
#: bookwyrm/settings.py:287 #: bookwyrm/settings.py:287
msgid "Suomi (Finnish)"
msgstr ""
#: bookwyrm/settings.py:288
msgid "Français (French)" msgid "Français (French)"
msgstr "Français (Francês)" msgstr "Français (Francês)"
#: bookwyrm/settings.py:288 #: bookwyrm/settings.py:289
msgid "Lietuvių (Lithuanian)" msgid "Lietuvių (Lithuanian)"
msgstr "Lietuvių (lituano)" msgstr "Lietuvių (lituano)"
#: bookwyrm/settings.py:289 #: bookwyrm/settings.py:290
msgid "Norsk (Norwegian)" msgid "Norsk (Norwegian)"
msgstr "Norsk (Norueguês)" msgstr "Norsk (Norueguês)"
#: bookwyrm/settings.py:290 #: bookwyrm/settings.py:291
msgid "Português do Brasil (Brazilian Portuguese)" msgid "Português do Brasil (Brazilian Portuguese)"
msgstr "Português do Brasil (Português brasileiro)" msgstr "Português do Brasil (Português brasileiro)"
#: bookwyrm/settings.py:291 #: bookwyrm/settings.py:292
msgid "Português Europeu (European Portuguese)" msgid "Português Europeu (European Portuguese)"
msgstr "Português (Português Europeu)" msgstr "Português (Português Europeu)"
#: bookwyrm/settings.py:292 #: bookwyrm/settings.py:293
msgid "Română (Romanian)" msgid "Română (Romanian)"
msgstr "" msgstr ""
#: bookwyrm/settings.py:293 #: bookwyrm/settings.py:294
msgid "Svenska (Swedish)" msgid "Svenska (Swedish)"
msgstr "" msgstr ""
#: bookwyrm/settings.py:294 #: bookwyrm/settings.py:295
msgid "简体中文 (Simplified Chinese)" msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Chinês simplificado)" msgstr "简体中文 (Chinês simplificado)"
#: bookwyrm/settings.py:295 #: bookwyrm/settings.py:296
msgid "繁體中文 (Traditional Chinese)" msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Chinês tradicional)" msgstr "繁體中文 (Chinês tradicional)"
@ -403,7 +407,7 @@ msgstr ""
msgid "Moderator" msgid "Moderator"
msgstr "Moderador" msgstr "Moderador"
#: 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" msgid "Admin"
msgstr "Admin" msgstr "Admin"
@ -434,7 +438,7 @@ msgid "Software version:"
msgstr "Versão do software:" msgstr "Versão do software:"
#: bookwyrm/templates/about/layout.html:30 #: 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 #, python-format
msgid "About %(site_name)s" msgid "About %(site_name)s"
msgstr "Acerca de %(site_name)s" msgstr "Acerca de %(site_name)s"
@ -1195,7 +1199,6 @@ msgstr "Domínio"
#: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:37
#: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47
#: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/invites/status_filter.html:5
#: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_admin.html:52
@ -1363,7 +1366,7 @@ msgstr "Comunidade federada"
#: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:4
#: bookwyrm/templates/directory/directory.html:9 #: bookwyrm/templates/directory/directory.html:9
#: bookwyrm/templates/layout.html:109 #: bookwyrm/templates/user_menu.html:30
msgid "Directory" msgid "Directory"
msgstr "Diretório" msgstr "Diretório"
@ -1606,13 +1609,13 @@ msgstr "Redefinir a tua palavra-passe do %(site_name)s"
msgid "%(site_name)s home page" msgid "%(site_name)s home page"
msgstr "%(site_name)s página inicial" msgstr "%(site_name)s página inicial"
#: 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" msgid "Contact site admin"
msgstr "Contactar administrador do website" msgstr "Contactar administrador do website"
#: bookwyrm/templates/embed-layout.html:46 #: bookwyrm/templates/embed-layout.html:46
msgid "Join Bookwyrm" msgid "Join BookWyrm"
msgstr "Junta-te ao Boookwyrm" msgstr ""
#: bookwyrm/templates/feed/direct_messages.html:8 #: bookwyrm/templates/feed/direct_messages.html:8
#, python-format #, python-format
@ -1620,7 +1623,7 @@ msgid "Direct Messages with <a href=\"%(path)s\">%(username)s</a>"
msgstr "Mensagens Diretas com <a href=\"%(path)s\">%(username)s</a>" msgstr "Mensagens Diretas com <a href=\"%(path)s\">%(username)s</a>"
#: bookwyrm/templates/feed/direct_messages.html:10 #: bookwyrm/templates/feed/direct_messages.html:10
#: bookwyrm/templates/layout.html:119 #: bookwyrm/templates/user_menu.html:40
msgid "Direct Messages" msgid "Direct Messages"
msgstr "Mensagens Diretas" msgstr "Mensagens Diretas"
@ -1657,7 +1660,7 @@ msgid "Updates"
msgstr "Atualizações" msgstr "Atualizações"
#: bookwyrm/templates/feed/suggested_books.html:6 #: bookwyrm/templates/feed/suggested_books.html:6
#: bookwyrm/templates/layout.html:114 #: bookwyrm/templates/user_menu.html:35
msgid "Your Books" msgid "Your Books"
msgstr "Os teus Livros" msgstr "Os teus Livros"
@ -2218,7 +2221,7 @@ msgid "Login"
msgstr "Login" msgstr "Login"
#: bookwyrm/templates/landing/login.html:7 #: 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 #: bookwyrm/templates/ostatus/error.html:37
msgid "Log in" msgid "Log in"
msgstr "Iniciar sessão" msgstr "Iniciar sessão"
@ -2227,7 +2230,7 @@ msgstr "Iniciar sessão"
msgid "Success! Email address confirmed." msgid "Success! Email address confirmed."
msgstr "Sucesso! O teu E-Mail está confirmado." msgstr "Sucesso! O teu E-Mail está confirmado."
#: 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/ostatus/error.html:28
#: bookwyrm/templates/snippets/register_form.html:4 #: bookwyrm/templates/snippets/register_form.html:4
msgid "Username:" msgid "Username:"
@ -2235,12 +2238,12 @@ msgstr "Nome de utilizador:"
#: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/login.html:27
#: bookwyrm/templates/landing/password_reset.html:26 #: 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 #: bookwyrm/templates/snippets/register_form.html:45
msgid "Password:" msgid "Password:"
msgstr "Palavra-passe:" msgstr "Palavra-passe:"
#: 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 #: bookwyrm/templates/ostatus/error.html:34
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "Esqueces-te a tua palavra-passe?" msgstr "Esqueces-te a tua palavra-passe?"
@ -2284,54 +2287,38 @@ msgstr "Menu principal"
msgid "Feed" msgid "Feed"
msgstr "Feed" msgstr "Feed"
#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 #: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
msgid "Settings"
msgstr "Configurações"
#: 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 "Convites"
#: bookwyrm/templates/layout.html:147
msgid "Log out"
msgstr "Terminar sessão"
#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156
#: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:5
#: bookwyrm/templates/notifications/notifications_page.html:10 #: bookwyrm/templates/notifications/notifications_page.html:10
msgid "Notifications" msgid "Notifications"
msgstr "Notificações" msgstr "Notificações"
#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 #: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33
msgid "password" msgid "password"
msgstr "palavra-passe" msgstr "palavra-passe"
#: bookwyrm/templates/layout.html:195 #: bookwyrm/templates/layout.html:139
msgid "Join" msgid "Join"
msgstr "Junta-te" msgstr "Junta-te"
#: bookwyrm/templates/layout.html:229 #: bookwyrm/templates/layout.html:173
msgid "Successfully posted status" msgid "Successfully posted status"
msgstr "Estado publicado com sucesso" msgstr "Estado publicado com sucesso"
#: bookwyrm/templates/layout.html:230 #: bookwyrm/templates/layout.html:174
msgid "Error posting status" msgid "Error posting status"
msgstr "Erro ao publicar estado" msgstr "Erro ao publicar estado"
#: bookwyrm/templates/layout.html:246 #: bookwyrm/templates/layout.html:190
msgid "Documentation" msgid "Documentation"
msgstr "Documentação" msgstr "Documentação"
#: bookwyrm/templates/layout.html:253 #: bookwyrm/templates/layout.html:197
#, python-format #, python-format
msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
msgstr "Apoia %(site_name)s em <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgstr "Apoia %(site_name)s em <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
#: 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 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
msgstr "O código de fonte do BookWyrm está disponível gratuitamente. E também podes contribuir ou reportar problemas no <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgstr "O código de fonte do BookWyrm está disponível gratuitamente. E também podes contribuir ou reportar problemas no <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
@ -2912,6 +2899,7 @@ msgstr "Editar Perfil"
#: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:12
#: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/preferences/edit_user.html:25
#: bookwyrm/templates/settings/users/user_info.html:7 #: bookwyrm/templates/settings/users/user_info.html:7
#: bookwyrm/templates/user_menu.html:25
msgid "Profile" msgid "Profile"
msgstr "Perfil" msgstr "Perfil"
@ -3144,7 +3132,7 @@ msgstr "Tipo de pesquisa"
#: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:23
#: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/search/layout.html:46
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: 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/layout.html:36
#: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user.html:13
#: bookwyrm/templates/settings/users/user_admin.html:5 #: bookwyrm/templates/settings/users/user_admin.html:5
@ -3211,7 +3199,7 @@ msgid "Create Announcement"
msgstr "Criar comunicado" msgstr "Criar comunicado"
#: bookwyrm/templates/settings/announcements/announcements.html:21 #: 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" msgid "Date added"
msgstr "Data de adição" msgstr "Data de adição"
@ -3606,16 +3594,21 @@ msgstr "Bloqueado com sucesso:"
msgid "Failed:" msgid "Failed:"
msgstr "Falha:" 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 #: bookwyrm/templates/settings/users/server_filter.html:5
msgid "Instance name" msgid "Instance name"
msgstr "Nome do domínio" 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" msgid "Software"
msgstr "Software" msgstr "Software"
#: bookwyrm/templates/settings/federation/instance_list.html:63 #: bookwyrm/templates/settings/federation/instance_list.html:69
msgid "No instances found" msgid "No instances found"
msgstr "Nenhum domínio encontrado" msgstr "Nenhum domínio encontrado"
@ -3626,6 +3619,14 @@ msgstr "Nenhum domínio encontrado"
msgid "Invite Requests" msgid "Invite Requests"
msgstr "Pedidos de Convite" msgstr "Pedidos de Convite"
#: 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 "Convites"
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23
msgid "Ignored Invite Requests" msgid "Ignored Invite Requests"
msgstr "Pedidos de Convite Ignorados" msgstr "Pedidos de Convite Ignorados"
@ -4282,6 +4283,10 @@ msgstr ""
msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production." msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production."
msgstr "" msgstr ""
#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45
msgid "Settings"
msgstr "Configurações"
#: bookwyrm/templates/setup/config.html:56 #: bookwyrm/templates/setup/config.html:56
msgid "Instance domain:" msgid "Instance domain:"
msgstr "" msgstr ""
@ -5090,6 +5095,14 @@ msgstr[1] "%(mutuals_display)s seguidores que tu segues"
msgid "No followers you follow" msgid "No followers you follow"
msgstr "Não há seguidores que tu segues" msgstr "Não há seguidores que tu segues"
#: bookwyrm/templates/user_menu.html:7
msgid "View profile and more"
msgstr ""
#: bookwyrm/templates/user_menu.html:72
msgid "Log out"
msgstr "Terminar sessão"
#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28
msgid "File exceeds maximum size: 10MB" msgid "File exceeds maximum size: 10MB"
msgstr "Ficheiro excede o tamanho máximo: 10MB" msgstr "Ficheiro excede o tamanho máximo: 10MB"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-26 20:16+0000\n" "POT-Creation-Date: 2022-04-08 21:00+0000\n"
"PO-Revision-Date: 2022-03-31 15:40\n" "PO-Revision-Date: 2022-04-08 21:50\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Romanian\n" "Language-Team: Romanian\n"
"Language: ro\n" "Language: ro\n"
@ -165,14 +165,14 @@ msgstr "Broșură"
#: bookwyrm/models/federated_server.py:11 #: bookwyrm/models/federated_server.py:11
#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: 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" msgid "Federated"
msgstr "Federat" msgstr "Federat"
#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71
#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/edit_instance.html:56
#: bookwyrm/templates/settings/federation/instance.html:10 #: 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 #: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Blocat" msgstr "Blocat"
@ -187,7 +187,7 @@ msgstr "%(value)s nu este un remote_id valid"
msgid "%(value)s is not a valid username" msgid "%(value)s is not a valid username"
msgstr "%(value)s nu este un nume de utilizator valid" msgstr "%(value)s nu este un nume de utilizator valid"
#: 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 #: bookwyrm/templates/ostatus/error.html:29
msgid "username" msgid "username"
msgstr "nume de utilizator" msgstr "nume de utilizator"
@ -300,38 +300,42 @@ msgid "Italiano (Italian)"
msgstr "Italiano (italiană)" msgstr "Italiano (italiană)"
#: bookwyrm/settings.py:287 #: bookwyrm/settings.py:287
msgid "Suomi (Finnish)"
msgstr ""
#: bookwyrm/settings.py:288
msgid "Français (French)" msgid "Français (French)"
msgstr "Français (franceză)" msgstr "Français (franceză)"
#: bookwyrm/settings.py:288 #: bookwyrm/settings.py:289
msgid "Lietuvių (Lithuanian)" msgid "Lietuvių (Lithuanian)"
msgstr "Lietuvių (lituaniană)" msgstr "Lietuvių (lituaniană)"
#: bookwyrm/settings.py:289 #: bookwyrm/settings.py:290
msgid "Norsk (Norwegian)" msgid "Norsk (Norwegian)"
msgstr "Norsk (norvegiană)" msgstr "Norsk (norvegiană)"
#: bookwyrm/settings.py:290 #: bookwyrm/settings.py:291
msgid "Português do Brasil (Brazilian Portuguese)" msgid "Português do Brasil (Brazilian Portuguese)"
msgstr "Português do Brasil (portugheză braziliană)" msgstr "Português do Brasil (portugheză braziliană)"
#: bookwyrm/settings.py:291 #: bookwyrm/settings.py:292
msgid "Português Europeu (European Portuguese)" msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (portugheză europeană)" msgstr "Português Europeu (portugheză europeană)"
#: bookwyrm/settings.py:292 #: bookwyrm/settings.py:293
msgid "Română (Romanian)" msgid "Română (Romanian)"
msgstr "" msgstr ""
#: bookwyrm/settings.py:293 #: bookwyrm/settings.py:294
msgid "Svenska (Swedish)" msgid "Svenska (Swedish)"
msgstr "Svenska (suedeză)" msgstr "Svenska (suedeză)"
#: bookwyrm/settings.py:294 #: bookwyrm/settings.py:295
msgid "简体中文 (Simplified Chinese)" msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (chineză simplificată)" msgstr "简体中文 (chineză simplificată)"
#: bookwyrm/settings.py:295 #: bookwyrm/settings.py:296
msgid "繁體中文 (Traditional Chinese)" msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (chineză tradițională)" msgstr "繁體中文 (chineză tradițională)"
@ -403,7 +407,7 @@ msgstr "Moderatorii și administratorii %(site_name)s mențin site-ul în picioa
msgid "Moderator" msgid "Moderator"
msgstr "Moderator" msgstr "Moderator"
#: 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" msgid "Admin"
msgstr "Admin" msgstr "Admin"
@ -434,7 +438,7 @@ msgid "Software version:"
msgstr "Versiunea programului:" msgstr "Versiunea programului:"
#: bookwyrm/templates/about/layout.html:30 #: 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 #, python-format
msgid "About %(site_name)s" msgid "About %(site_name)s"
msgstr "Despre %(site_name)s" msgstr "Despre %(site_name)s"
@ -1201,7 +1205,6 @@ msgstr "Domeniu"
#: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:37
#: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47
#: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/invites/status_filter.html:5
#: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_admin.html:52
@ -1369,7 +1372,7 @@ msgstr "Comunitate federată"
#: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:4
#: bookwyrm/templates/directory/directory.html:9 #: bookwyrm/templates/directory/directory.html:9
#: bookwyrm/templates/layout.html:109 #: bookwyrm/templates/user_menu.html:30
msgid "Directory" msgid "Directory"
msgstr "Dosar" msgstr "Dosar"
@ -1614,13 +1617,13 @@ msgstr "Reinițializați parola dvs. pentru %(site_name)s"
msgid "%(site_name)s home page" msgid "%(site_name)s home page"
msgstr "Pagina principală a %(site_name)s" msgstr "Pagina principală a %(site_name)s"
#: 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" msgid "Contact site admin"
msgstr "Contactați adminul site-ului" msgstr "Contactați adminul site-ului"
#: bookwyrm/templates/embed-layout.html:46 #: bookwyrm/templates/embed-layout.html:46
msgid "Join Bookwyrm" msgid "Join BookWyrm"
msgstr "Alăturați-vă BookWyrm" msgstr ""
#: bookwyrm/templates/feed/direct_messages.html:8 #: bookwyrm/templates/feed/direct_messages.html:8
#, python-format #, python-format
@ -1628,7 +1631,7 @@ msgid "Direct Messages with <a href=\"%(path)s\">%(username)s</a>"
msgstr "Mesajele directe cu <a href=\"%(path)s\">%(username)s</a>" msgstr "Mesajele directe cu <a href=\"%(path)s\">%(username)s</a>"
#: bookwyrm/templates/feed/direct_messages.html:10 #: bookwyrm/templates/feed/direct_messages.html:10
#: bookwyrm/templates/layout.html:119 #: bookwyrm/templates/user_menu.html:40
msgid "Direct Messages" msgid "Direct Messages"
msgstr "Mesaje directe" msgstr "Mesaje directe"
@ -1665,7 +1668,7 @@ msgid "Updates"
msgstr "Actualizări" msgstr "Actualizări"
#: bookwyrm/templates/feed/suggested_books.html:6 #: bookwyrm/templates/feed/suggested_books.html:6
#: bookwyrm/templates/layout.html:114 #: bookwyrm/templates/user_menu.html:35
msgid "Your Books" msgid "Your Books"
msgstr "Cărțile voastre" msgstr "Cărțile voastre"
@ -2230,7 +2233,7 @@ msgid "Login"
msgstr "Autentificare" msgstr "Autentificare"
#: bookwyrm/templates/landing/login.html:7 #: 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 #: bookwyrm/templates/ostatus/error.html:37
msgid "Log in" msgid "Log in"
msgstr "Autentificați-vă" msgstr "Autentificați-vă"
@ -2239,7 +2242,7 @@ msgstr "Autentificați-vă"
msgid "Success! Email address confirmed." msgid "Success! Email address confirmed."
msgstr "Succes! Adresa email a fost confirmată." msgstr "Succes! Adresa email a fost confirmată."
#: 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/ostatus/error.html:28
#: bookwyrm/templates/snippets/register_form.html:4 #: bookwyrm/templates/snippets/register_form.html:4
msgid "Username:" msgid "Username:"
@ -2247,12 +2250,12 @@ msgstr "Nume de utilizator:"
#: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/login.html:27
#: bookwyrm/templates/landing/password_reset.html:26 #: 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 #: bookwyrm/templates/snippets/register_form.html:45
msgid "Password:" msgid "Password:"
msgstr "Parolă:" msgstr "Parolă:"
#: 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 #: bookwyrm/templates/ostatus/error.html:34
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "Parolă uitată?" msgstr "Parolă uitată?"
@ -2296,54 +2299,38 @@ msgstr "Meniul principal de navigație"
msgid "Feed" msgid "Feed"
msgstr "Fir de actualitate" msgstr "Fir de actualitate"
#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 #: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
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:5
#: bookwyrm/templates/notifications/notifications_page.html:10 #: bookwyrm/templates/notifications/notifications_page.html:10
msgid "Notifications" msgid "Notifications"
msgstr "Notificări" msgstr "Notificări"
#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 #: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33
msgid "password" msgid "password"
msgstr "parolă" msgstr "parolă"
#: bookwyrm/templates/layout.html:195 #: bookwyrm/templates/layout.html:139
msgid "Join" msgid "Join"
msgstr "Alăturați-vă" msgstr "Alăturați-vă"
#: bookwyrm/templates/layout.html:229 #: bookwyrm/templates/layout.html:173
msgid "Successfully posted status" msgid "Successfully posted status"
msgstr "Stare postată cu succes" msgstr "Stare postată cu succes"
#: bookwyrm/templates/layout.html:230 #: bookwyrm/templates/layout.html:174
msgid "Error posting status" msgid "Error posting status"
msgstr "Eroare la postarea stării" msgstr "Eroare la postarea stării"
#: bookwyrm/templates/layout.html:246 #: bookwyrm/templates/layout.html:190
msgid "Documentation" msgid "Documentation"
msgstr "Documentație" msgstr "Documentație"
#: bookwyrm/templates/layout.html:253 #: bookwyrm/templates/layout.html:197
#, python-format #, python-format
msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
msgstr "Susțineți %(site_name)s la <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgstr "Susțineți %(site_name)s la <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
#: 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 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
msgstr "Codul sursă a lui BookWyrm este disponibil gratuit. Puteți contribui sau raporta probleme la <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgstr "Codul sursă a lui BookWyrm este disponibil gratuit. Puteți contribui sau raporta probleme la <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
@ -2924,6 +2911,7 @@ msgstr "Editați profilul"
#: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:12
#: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/preferences/edit_user.html:25
#: bookwyrm/templates/settings/users/user_info.html:7 #: bookwyrm/templates/settings/users/user_info.html:7
#: bookwyrm/templates/user_menu.html:25
msgid "Profile" msgid "Profile"
msgstr "Profil" msgstr "Profil"
@ -3157,7 +3145,7 @@ msgstr "Tipul căutării"
#: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:23
#: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/search/layout.html:46
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: 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/layout.html:36
#: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user.html:13
#: bookwyrm/templates/settings/users/user_admin.html:5 #: bookwyrm/templates/settings/users/user_admin.html:5
@ -3224,7 +3212,7 @@ msgid "Create Announcement"
msgstr "Creați anunț" msgstr "Creați anunț"
#: bookwyrm/templates/settings/announcements/announcements.html:21 #: 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" msgid "Date added"
msgstr "Dată adăugată" msgstr "Dată adăugată"
@ -3623,16 +3611,21 @@ msgstr ""
msgid "Failed:" msgid "Failed:"
msgstr "" 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 #: bookwyrm/templates/settings/users/server_filter.html:5
msgid "Instance name" msgid "Instance name"
msgstr "" 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" msgid "Software"
msgstr "" msgstr ""
#: bookwyrm/templates/settings/federation/instance_list.html:63 #: bookwyrm/templates/settings/federation/instance_list.html:69
msgid "No instances found" msgid "No instances found"
msgstr "" msgstr ""
@ -3643,6 +3636,14 @@ msgstr ""
msgid "Invite Requests" msgid "Invite Requests"
msgstr "" 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 "Invitații"
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23
msgid "Ignored Invite Requests" msgid "Ignored Invite Requests"
msgstr "" msgstr ""
@ -4299,6 +4300,10 @@ msgstr ""
msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production." msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production."
msgstr "" msgstr ""
#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45
msgid "Settings"
msgstr "Setări"
#: bookwyrm/templates/setup/config.html:56 #: bookwyrm/templates/setup/config.html:56
msgid "Instance domain:" msgid "Instance domain:"
msgstr "" msgstr ""
@ -5116,6 +5121,14 @@ msgstr[2] ""
msgid "No followers you follow" msgid "No followers you follow"
msgstr "" msgstr ""
#: bookwyrm/templates/user_menu.html:7
msgid "View profile and more"
msgstr ""
#: bookwyrm/templates/user_menu.html:72
msgid "Log out"
msgstr "Deconectați-vă"
#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28
msgid "File exceeds maximum size: 10MB" msgid "File exceeds maximum size: 10MB"
msgstr "" msgstr ""

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-26 20:16+0000\n" "POT-Creation-Date: 2022-04-08 21:00+0000\n"
"PO-Revision-Date: 2022-03-31 07:13\n" "PO-Revision-Date: 2022-04-08 21:50\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Swedish\n" "Language-Team: Swedish\n"
"Language: sv\n" "Language: sv\n"
@ -165,14 +165,14 @@ msgstr "Pocketbok"
#: bookwyrm/models/federated_server.py:11 #: bookwyrm/models/federated_server.py:11
#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: 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" msgid "Federated"
msgstr "Federerad" msgstr "Federerad"
#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71
#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/edit_instance.html:56
#: bookwyrm/templates/settings/federation/instance.html:10 #: 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 #: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "Blockerad" msgstr "Blockerad"
@ -187,7 +187,7 @@ msgstr "%(value)s är inte ett giltigt remote_id"
msgid "%(value)s is not a valid username" msgid "%(value)s is not a valid username"
msgstr "%(value)s är inte ett giltigt användarnamn" msgstr "%(value)s är inte ett giltigt användarnamn"
#: 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 #: bookwyrm/templates/ostatus/error.html:29
msgid "username" msgid "username"
msgstr "användarnamn" msgstr "användarnamn"
@ -300,38 +300,42 @@ msgid "Italiano (Italian)"
msgstr "Italienska (Italiensk)" msgstr "Italienska (Italiensk)"
#: bookwyrm/settings.py:287 #: bookwyrm/settings.py:287
msgid "Suomi (Finnish)"
msgstr "Finland (Finska)"
#: bookwyrm/settings.py:288
msgid "Français (French)" msgid "Français (French)"
msgstr "Franska (Fransk)" msgstr "Franska (Fransk)"
#: bookwyrm/settings.py:288 #: bookwyrm/settings.py:289
msgid "Lietuvių (Lithuanian)" msgid "Lietuvių (Lithuanian)"
msgstr "Litauiska (Litauisk)" msgstr "Litauiska (Litauisk)"
#: bookwyrm/settings.py:289 #: bookwyrm/settings.py:290
msgid "Norsk (Norwegian)" msgid "Norsk (Norwegian)"
msgstr "Norska (Norska)" msgstr "Norska (Norska)"
#: bookwyrm/settings.py:290 #: bookwyrm/settings.py:291
msgid "Português do Brasil (Brazilian Portuguese)" msgid "Português do Brasil (Brazilian Portuguese)"
msgstr "Português d Brasil (Brasiliansk Portugisiska)" msgstr "Português d Brasil (Brasiliansk Portugisiska)"
#: bookwyrm/settings.py:291 #: bookwyrm/settings.py:292
msgid "Português Europeu (European Portuguese)" msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu (Europeisk Portugisiska)" msgstr "Português Europeu (Europeisk Portugisiska)"
#: bookwyrm/settings.py:292
msgid "Română (Romanian)"
msgstr ""
#: bookwyrm/settings.py:293 #: bookwyrm/settings.py:293
msgid "Română (Romanian)"
msgstr "Rumänien (Rumänska)"
#: bookwyrm/settings.py:294
msgid "Svenska (Swedish)" msgid "Svenska (Swedish)"
msgstr "Svenska (Svenska)" msgstr "Svenska (Svenska)"
#: bookwyrm/settings.py:294 #: bookwyrm/settings.py:295
msgid "简体中文 (Simplified Chinese)" msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文 (Förenklad Kinesiska)" msgstr "简体中文 (Förenklad Kinesiska)"
#: bookwyrm/settings.py:295 #: bookwyrm/settings.py:296
msgid "繁體中文 (Traditional Chinese)" msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文 (Traditionell Kinesiska)" msgstr "繁體中文 (Traditionell Kinesiska)"
@ -397,13 +401,13 @@ msgstr "Träffa dina administratörer"
#: bookwyrm/templates/about/about.html:101 #: bookwyrm/templates/about/about.html:101
#, python-format #, python-format
msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the <a href=\"%(coc_path)s\">code of conduct</a>, and respond when users report spam and bad behavior." msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the <a href=\"%(coc_path)s\">code of conduct</a>, 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 <a href=\"%(coc_path)s\">uppförandekoden</a> och svarar när användarna rapporterar skräppost och dåligt uppförande."
#: bookwyrm/templates/about/about.html:115 #: bookwyrm/templates/about/about.html:115
msgid "Moderator" msgid "Moderator"
msgstr "Moderator" msgstr "Moderator"
#: 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" msgid "Admin"
msgstr "Administratör" msgstr "Administratör"
@ -434,7 +438,7 @@ msgid "Software version:"
msgstr "Programvaruversion:" msgstr "Programvaruversion:"
#: bookwyrm/templates/about/layout.html:30 #: 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 #, python-format
msgid "About %(site_name)s" msgid "About %(site_name)s"
msgstr "Om %(site_name)s" msgstr "Om %(site_name)s"
@ -786,7 +790,7 @@ msgstr "Bekräfta"
#: bookwyrm/templates/book/book.html:19 #: bookwyrm/templates/book/book.html:19
msgid "Unable to connect to remote source." 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 #: bookwyrm/templates/book/book.html:64 bookwyrm/templates/book/book.html:65
msgid "Edit Book" msgid "Edit Book"
@ -825,8 +829,8 @@ msgstr "Beskrivning:"
#, python-format #, python-format
msgid "%(count)s edition" msgid "%(count)s edition"
msgid_plural "%(count)s editions" msgid_plural "%(count)s editions"
msgstr[0] "" msgstr[0] "%(count)s utgåva"
msgstr[1] "" msgstr[1] "%(count)s utgåvor"
#: bookwyrm/templates/book/book.html:228 #: bookwyrm/templates/book/book.html:228
msgid "You have shelved this edition in:" 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/book/file_links/edit_links.html:36
#: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:37
#: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47
#: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/invites/status_filter.html:5
#: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_admin.html:52
@ -1341,7 +1344,7 @@ msgstr "E-postadress:"
#: bookwyrm/templates/confirm_email/resend_modal.html:28 #: bookwyrm/templates/confirm_email/resend_modal.html:28
msgid "No user matching this email address found." 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 #: bookwyrm/templates/confirm_email/resend_modal.html:38
msgid "Resend link" msgid "Resend link"
@ -1363,7 +1366,7 @@ msgstr "Federerad gemenskap"
#: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:4
#: bookwyrm/templates/directory/directory.html:9 #: bookwyrm/templates/directory/directory.html:9
#: bookwyrm/templates/layout.html:109 #: bookwyrm/templates/user_menu.html:30
msgid "Directory" msgid "Directory"
msgstr "Mapp" msgstr "Mapp"
@ -1606,13 +1609,13 @@ msgstr "Återställ lösenordet för %(site_name)s"
msgid "%(site_name)s home page" msgid "%(site_name)s home page"
msgstr "Hemsida för %(site_name)s" msgstr "Hemsida för %(site_name)s"
#: 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" msgid "Contact site admin"
msgstr "Kontakta webbplatsens administratör" msgstr "Kontakta webbplatsens administratör"
#: bookwyrm/templates/embed-layout.html:46 #: bookwyrm/templates/embed-layout.html:46
msgid "Join Bookwyrm" msgid "Join BookWyrm"
msgstr "Gå med i BookWyrm" msgstr ""
#: bookwyrm/templates/feed/direct_messages.html:8 #: bookwyrm/templates/feed/direct_messages.html:8
#, python-format #, python-format
@ -1620,7 +1623,7 @@ msgid "Direct Messages with <a href=\"%(path)s\">%(username)s</a>"
msgstr "Direktmeddelanden med <a href=\"%(path)s\">%(username)s</a>" msgstr "Direktmeddelanden med <a href=\"%(path)s\">%(username)s</a>"
#: bookwyrm/templates/feed/direct_messages.html:10 #: bookwyrm/templates/feed/direct_messages.html:10
#: bookwyrm/templates/layout.html:119 #: bookwyrm/templates/user_menu.html:40
msgid "Direct Messages" msgid "Direct Messages"
msgstr "Direktmeddelanden" msgstr "Direktmeddelanden"
@ -1657,7 +1660,7 @@ msgid "Updates"
msgstr "Uppdateringar" msgstr "Uppdateringar"
#: bookwyrm/templates/feed/suggested_books.html:6 #: bookwyrm/templates/feed/suggested_books.html:6
#: bookwyrm/templates/layout.html:114 #: bookwyrm/templates/user_menu.html:35
msgid "Your Books" msgid "Your Books"
msgstr "Dina böcker" msgstr "Dina böcker"
@ -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 #: bookwyrm/templates/feed/suggested_books.html:13
msgid "Do you have book data from another service like GoodReads?" 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 #: bookwyrm/templates/feed/suggested_books.html:16
msgid "Import your reading history" msgid "Import your reading history"
@ -2218,7 +2221,7 @@ msgid "Login"
msgstr "Inloggning" msgstr "Inloggning"
#: bookwyrm/templates/landing/login.html:7 #: 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 #: bookwyrm/templates/ostatus/error.html:37
msgid "Log in" msgid "Log in"
msgstr "Logga in" msgstr "Logga in"
@ -2227,7 +2230,7 @@ msgstr "Logga in"
msgid "Success! Email address confirmed." msgid "Success! Email address confirmed."
msgstr "Lyckades! E-postadressen bekräftades." msgstr "Lyckades! E-postadressen bekräftades."
#: 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/ostatus/error.html:28
#: bookwyrm/templates/snippets/register_form.html:4 #: bookwyrm/templates/snippets/register_form.html:4
msgid "Username:" msgid "Username:"
@ -2235,12 +2238,12 @@ msgstr "Användarnamn:"
#: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/login.html:27
#: bookwyrm/templates/landing/password_reset.html:26 #: 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 #: bookwyrm/templates/snippets/register_form.html:45
msgid "Password:" msgid "Password:"
msgstr "Lösenord:" msgstr "Lösenord:"
#: 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 #: bookwyrm/templates/ostatus/error.html:34
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "Glömt ditt lösenord?" msgstr "Glömt ditt lösenord?"
@ -2284,54 +2287,38 @@ msgstr "Huvudsaklig navigeringsmeny"
msgid "Feed" msgid "Feed"
msgstr "Flöde" msgstr "Flöde"
#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 #: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
msgid "Settings"
msgstr "Inställningar"
#: 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 "Inbjudningar"
#: bookwyrm/templates/layout.html:147
msgid "Log out"
msgstr "Logga ut"
#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156
#: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:5
#: bookwyrm/templates/notifications/notifications_page.html:10 #: bookwyrm/templates/notifications/notifications_page.html:10
msgid "Notifications" msgid "Notifications"
msgstr "Aviseringar" msgstr "Aviseringar"
#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 #: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33
msgid "password" msgid "password"
msgstr "lösenord" msgstr "lösenord"
#: bookwyrm/templates/layout.html:195 #: bookwyrm/templates/layout.html:139
msgid "Join" msgid "Join"
msgstr "Gå med" msgstr "Gå med"
#: bookwyrm/templates/layout.html:229 #: bookwyrm/templates/layout.html:173
msgid "Successfully posted status" msgid "Successfully posted status"
msgstr "Statusen har publicerats" msgstr "Statusen har publicerats"
#: bookwyrm/templates/layout.html:230 #: bookwyrm/templates/layout.html:174
msgid "Error posting status" msgid "Error posting status"
msgstr "Fel uppstod när statusen skulle publiceras" msgstr "Fel uppstod när statusen skulle publiceras"
#: bookwyrm/templates/layout.html:246 #: bookwyrm/templates/layout.html:190
msgid "Documentation" msgid "Documentation"
msgstr "Dokumentation" msgstr "Dokumentation"
#: bookwyrm/templates/layout.html:253 #: bookwyrm/templates/layout.html:197
#, python-format #, python-format
msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
msgstr "Stötta %(site_name)s på <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgstr "Stötta %(site_name)s på <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
#: 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 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
msgstr "BookWyrm's källkod är fritt tillgängligt. Du kan bidra eller rapportera problem på <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgstr "BookWyrm's källkod är fritt tillgängligt. Du kan bidra eller rapportera problem på <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
@ -2912,6 +2899,7 @@ msgstr "Redigera profil"
#: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:12
#: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/preferences/edit_user.html:25
#: bookwyrm/templates/settings/users/user_info.html:7 #: bookwyrm/templates/settings/users/user_info.html:7
#: bookwyrm/templates/user_menu.html:25
msgid "Profile" msgid "Profile"
msgstr "Profil" msgstr "Profil"
@ -3146,7 +3134,7 @@ msgstr "Typ av sökning"
#: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:23
#: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/search/layout.html:46
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: 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/layout.html:36
#: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user.html:13
#: bookwyrm/templates/settings/users/user_admin.html:5 #: bookwyrm/templates/settings/users/user_admin.html:5
@ -3213,7 +3201,7 @@ msgid "Create Announcement"
msgstr "Skapa ett tillkännagivande" msgstr "Skapa ett tillkännagivande"
#: bookwyrm/templates/settings/announcements/announcements.html:21 #: 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" msgid "Date added"
msgstr "Datumet lades till" msgstr "Datumet lades till"
@ -3608,16 +3596,21 @@ msgstr "Blockerades framgångsrikt:"
msgid "Failed:" msgid "Failed:"
msgstr "Misslyckades:" 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 #: bookwyrm/templates/settings/users/server_filter.html:5
msgid "Instance name" msgid "Instance name"
msgstr "Namn på instans" 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" msgid "Software"
msgstr "Mjukvara" msgstr "Mjukvara"
#: bookwyrm/templates/settings/federation/instance_list.html:63 #: bookwyrm/templates/settings/federation/instance_list.html:69
msgid "No instances found" msgid "No instances found"
msgstr "Inga instanser hittades" msgstr "Inga instanser hittades"
@ -3628,6 +3621,14 @@ msgstr "Inga instanser hittades"
msgid "Invite Requests" msgid "Invite Requests"
msgstr "Inbjudningsförfrågningar" msgstr "Inbjudningsförfrågningar"
#: 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 "Inbjudningar"
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23
msgid "Ignored Invite Requests" msgid "Ignored Invite Requests"
msgstr "Ignorerade inbjudningsförfrågningar" msgstr "Ignorerade inbjudningsförfrågningar"
@ -4284,6 +4285,10 @@ msgstr "Din domän verkar vara felkonfigurerad. Den bör inte inkludera protokol
msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production." msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production."
msgstr "Du kör BookWyrm i produktionsläge utan https. <strong>USE_HTTPS</strong> bör aktiveras i konfigureringen." msgstr "Du kör BookWyrm i produktionsläge utan https. <strong>USE_HTTPS</strong> bör aktiveras i konfigureringen."
#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45
msgid "Settings"
msgstr "Inställningar"
#: bookwyrm/templates/setup/config.html:56 #: bookwyrm/templates/setup/config.html:56
msgid "Instance domain:" msgid "Instance domain:"
msgstr "Domän för instansen:" msgstr "Domän för instansen:"
@ -5092,6 +5097,14 @@ msgstr[1] "%(mutuals_display)s följare som du följer"
msgid "No followers you follow" msgid "No followers you follow"
msgstr "Inga följare som du följer" msgstr "Inga följare som du följer"
#: bookwyrm/templates/user_menu.html:7
msgid "View profile and more"
msgstr ""
#: bookwyrm/templates/user_menu.html:72
msgid "Log out"
msgstr "Logga ut"
#: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28
msgid "File exceeds maximum size: 10MB" msgid "File exceeds maximum size: 10MB"
msgstr "Filen överskrider maximal storlek: 10 MB" msgstr "Filen överskrider maximal storlek: 10 MB"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-26 20:16+0000\n" "POT-Creation-Date: 2022-04-08 21:00+0000\n"
"PO-Revision-Date: 2022-03-27 01:36\n" "PO-Revision-Date: 2022-04-10 05:48\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Chinese Simplified\n" "Language-Team: Chinese Simplified\n"
"Language: zh\n" "Language: zh\n"
@ -165,14 +165,14 @@ msgstr "平装"
#: bookwyrm/models/federated_server.py:11 #: bookwyrm/models/federated_server.py:11
#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: 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" msgid "Federated"
msgstr "跨站" msgstr "跨站"
#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71
#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/edit_instance.html:56
#: bookwyrm/templates/settings/federation/instance.html:10 #: 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 #: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "已屏蔽" msgstr "已屏蔽"
@ -187,7 +187,7 @@ msgstr "%(value)s 不是有效的 remote_id"
msgid "%(value)s is not a valid username" msgid "%(value)s is not a valid username"
msgstr "%(value)s 不是有效的用户名" msgstr "%(value)s 不是有效的用户名"
#: 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 #: bookwyrm/templates/ostatus/error.html:29
msgid "username" msgid "username"
msgstr "用户名" msgstr "用户名"
@ -300,38 +300,42 @@ msgid "Italiano (Italian)"
msgstr "Italiano意大利语" msgstr "Italiano意大利语"
#: bookwyrm/settings.py:287 #: bookwyrm/settings.py:287
msgid "Suomi (Finnish)"
msgstr "Suomi Finnish/芬兰语)"
#: bookwyrm/settings.py:288
msgid "Français (French)" msgid "Français (French)"
msgstr "Français法语" msgstr "Français法语"
#: bookwyrm/settings.py:288 #: bookwyrm/settings.py:289
msgid "Lietuvių (Lithuanian)" msgid "Lietuvių (Lithuanian)"
msgstr "Lietuvių立陶宛语" msgstr "Lietuvių立陶宛语"
#: bookwyrm/settings.py:289 #: bookwyrm/settings.py:290
msgid "Norsk (Norwegian)" msgid "Norsk (Norwegian)"
msgstr "Norsk挪威语" msgstr "Norsk挪威语"
#: bookwyrm/settings.py:290 #: bookwyrm/settings.py:291
msgid "Português do Brasil (Brazilian Portuguese)" msgid "Português do Brasil (Brazilian Portuguese)"
msgstr "Português do Brasil巴西葡萄牙语" msgstr "Português do Brasil巴西葡萄牙语"
#: bookwyrm/settings.py:291 #: bookwyrm/settings.py:292
msgid "Português Europeu (European Portuguese)" msgid "Português Europeu (European Portuguese)"
msgstr "Português Europeu欧洲葡萄牙语" msgstr "Português Europeu欧洲葡萄牙语"
#: bookwyrm/settings.py:292 #: bookwyrm/settings.py:293
msgid "Română (Romanian)" msgid "Română (Romanian)"
msgstr "Română (罗马尼亚语)" msgstr "Română (罗马尼亚语)"
#: bookwyrm/settings.py:293 #: bookwyrm/settings.py:294
msgid "Svenska (Swedish)" msgid "Svenska (Swedish)"
msgstr "Svenska瑞典语" msgstr "Svenska瑞典语"
#: bookwyrm/settings.py:294 #: bookwyrm/settings.py:295
msgid "简体中文 (Simplified Chinese)" msgid "简体中文 (Simplified Chinese)"
msgstr "简体中文" msgstr "简体中文"
#: bookwyrm/settings.py:295 #: bookwyrm/settings.py:296
msgid "繁體中文 (Traditional Chinese)" msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文(繁体中文)" msgstr "繁體中文(繁体中文)"
@ -403,7 +407,7 @@ msgstr "%(site_name)s 的仲裁员和管理员负责维持站点运行, 执行
msgid "Moderator" msgid "Moderator"
msgstr "仲裁员" 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" msgid "Admin"
msgstr "管理员" msgstr "管理员"
@ -434,7 +438,7 @@ msgid "Software version:"
msgstr "软件版本:" msgstr "软件版本:"
#: bookwyrm/templates/about/layout.html:30 #: 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 #, python-format
msgid "About %(site_name)s" msgid "About %(site_name)s"
msgstr "关于 %(site_name)s" msgstr "关于 %(site_name)s"
@ -1189,7 +1193,6 @@ msgstr "域名"
#: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:37
#: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47
#: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/invites/status_filter.html:5
#: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_admin.html:52
@ -1357,7 +1360,7 @@ msgstr "跨站社区"
#: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:4
#: bookwyrm/templates/directory/directory.html:9 #: bookwyrm/templates/directory/directory.html:9
#: bookwyrm/templates/layout.html:109 #: bookwyrm/templates/user_menu.html:30
msgid "Directory" msgid "Directory"
msgstr "目录" msgstr "目录"
@ -1598,12 +1601,12 @@ msgstr "重置你在 %(site_name)s 的密码"
msgid "%(site_name)s home page" msgid "%(site_name)s home page"
msgstr "%(site_name)s 首页" msgstr "%(site_name)s 首页"
#: 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" msgid "Contact site admin"
msgstr "联系站点管理员" msgstr "联系站点管理员"
#: bookwyrm/templates/embed-layout.html:46 #: bookwyrm/templates/embed-layout.html:46
msgid "Join Bookwyrm" msgid "Join BookWyrm"
msgstr "加入BookWyrm" msgstr "加入BookWyrm"
#: bookwyrm/templates/feed/direct_messages.html:8 #: bookwyrm/templates/feed/direct_messages.html:8
@ -1612,7 +1615,7 @@ msgid "Direct Messages with <a href=\"%(path)s\">%(username)s</a>"
msgstr "与 <a href=\"%(path)s\">%(username)s</a> 私信" msgstr "与 <a href=\"%(path)s\">%(username)s</a> 私信"
#: bookwyrm/templates/feed/direct_messages.html:10 #: bookwyrm/templates/feed/direct_messages.html:10
#: bookwyrm/templates/layout.html:119 #: bookwyrm/templates/user_menu.html:40
msgid "Direct Messages" msgid "Direct Messages"
msgstr "私信" msgstr "私信"
@ -1649,7 +1652,7 @@ msgid "Updates"
msgstr "更新" msgstr "更新"
#: bookwyrm/templates/feed/suggested_books.html:6 #: bookwyrm/templates/feed/suggested_books.html:6
#: bookwyrm/templates/layout.html:114 #: bookwyrm/templates/user_menu.html:35
msgid "Your Books" msgid "Your Books"
msgstr "你的书目" msgstr "你的书目"
@ -2206,7 +2209,7 @@ msgid "Login"
msgstr "登录" msgstr "登录"
#: bookwyrm/templates/landing/login.html:7 #: 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 #: bookwyrm/templates/ostatus/error.html:37
msgid "Log in" msgid "Log in"
msgstr "登录" msgstr "登录"
@ -2215,7 +2218,7 @@ msgstr "登录"
msgid "Success! Email address confirmed." msgid "Success! Email address confirmed."
msgstr "成功!邮箱地址已确认。" 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/ostatus/error.html:28
#: bookwyrm/templates/snippets/register_form.html:4 #: bookwyrm/templates/snippets/register_form.html:4
msgid "Username:" msgid "Username:"
@ -2223,12 +2226,12 @@ msgstr "用户名:"
#: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/login.html:27
#: bookwyrm/templates/landing/password_reset.html:26 #: 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 #: bookwyrm/templates/snippets/register_form.html:45
msgid "Password:" msgid "Password:"
msgstr "密码:" 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 #: bookwyrm/templates/ostatus/error.html:34
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "忘记了密码?" msgstr "忘记了密码?"
@ -2272,54 +2275,38 @@ msgstr "主导航菜单"
msgid "Feed" msgid "Feed"
msgstr "动态" msgstr "动态"
#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 #: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
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/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:5
#: bookwyrm/templates/notifications/notifications_page.html:10 #: bookwyrm/templates/notifications/notifications_page.html:10
msgid "Notifications" msgid "Notifications"
msgstr "通知" 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" msgid "password"
msgstr "密码" msgstr "密码"
#: bookwyrm/templates/layout.html:195 #: bookwyrm/templates/layout.html:139
msgid "Join" msgid "Join"
msgstr "加入" msgstr "加入"
#: bookwyrm/templates/layout.html:229 #: bookwyrm/templates/layout.html:173
msgid "Successfully posted status" msgid "Successfully posted status"
msgstr "成功发布的状态" msgstr "成功发布的状态"
#: bookwyrm/templates/layout.html:230 #: bookwyrm/templates/layout.html:174
msgid "Error posting status" msgid "Error posting status"
msgstr "发布状态时出错" msgstr "发布状态时出错"
#: bookwyrm/templates/layout.html:246 #: bookwyrm/templates/layout.html:190
msgid "Documentation" msgid "Documentation"
msgstr "文档" msgstr "文档"
#: bookwyrm/templates/layout.html:253 #: bookwyrm/templates/layout.html:197
#, python-format #, python-format
msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
msgstr "在 <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a> 上支持 %(site_name)s" msgstr "在 <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a> 上支持 %(site_name)s"
#: 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 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
msgstr "BookWyrm 是开源软件。你可以在 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a> 贡献或报告问题。" msgstr "BookWyrm 是开源软件。你可以在 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a> 贡献或报告问题。"
@ -2900,6 +2887,7 @@ msgstr "编辑个人资料"
#: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:12
#: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/preferences/edit_user.html:25
#: bookwyrm/templates/settings/users/user_info.html:7 #: bookwyrm/templates/settings/users/user_info.html:7
#: bookwyrm/templates/user_menu.html:25
msgid "Profile" msgid "Profile"
msgstr "个人资料" msgstr "个人资料"
@ -3134,7 +3122,7 @@ msgstr "搜索类型"
#: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:23
#: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/search/layout.html:46
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: 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/layout.html:36
#: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user.html:13
#: bookwyrm/templates/settings/users/user_admin.html:5 #: bookwyrm/templates/settings/users/user_admin.html:5
@ -3201,7 +3189,7 @@ msgid "Create Announcement"
msgstr "创建公告" msgstr "创建公告"
#: bookwyrm/templates/settings/announcements/announcements.html:21 #: 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" msgid "Date added"
msgstr "添加日期:" msgstr "添加日期:"
@ -3592,16 +3580,21 @@ msgstr "成功屏蔽了"
msgid "Failed:" msgid "Failed:"
msgstr "已失败:" 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 #: bookwyrm/templates/settings/users/server_filter.html:5
msgid "Instance name" msgid "Instance name"
msgstr "实例名称" 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" msgid "Software"
msgstr "软件" msgstr "软件"
#: bookwyrm/templates/settings/federation/instance_list.html:63 #: bookwyrm/templates/settings/federation/instance_list.html:69
msgid "No instances found" msgid "No instances found"
msgstr "未找到实例" msgstr "未找到实例"
@ -3612,6 +3605,14 @@ msgstr "未找到实例"
msgid "Invite Requests" msgid "Invite Requests"
msgstr "邀请请求" 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 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23
msgid "Ignored Invite Requests" msgid "Ignored Invite Requests"
msgstr "已忽略的邀请请求" msgstr "已忽略的邀请请求"
@ -4268,6 +4269,10 @@ msgstr "你的域名似乎配置出错了。它不应该包括协议或斜杠。
msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production." msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production."
msgstr "您正在没有https的实际使用模式下运行BookWyrm<strong>USE_HTTPS</strong>应该在实际使用中启用。" msgstr "您正在没有https的实际使用模式下运行BookWyrm<strong>USE_HTTPS</strong>应该在实际使用中启用。"
#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45
msgid "Settings"
msgstr "设置"
#: bookwyrm/templates/setup/config.html:56 #: bookwyrm/templates/setup/config.html:56
msgid "Instance domain:" msgid "Instance domain:"
msgstr "实例域名:" msgstr "实例域名:"
@ -5067,6 +5072,14 @@ msgstr[0] "%(mutuals_display)s 个你也关注的关注者"
msgid "No followers you follow" msgid "No followers you follow"
msgstr "没有你关注的关注者" 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 #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28
msgid "File exceeds maximum size: 10MB" msgid "File exceeds maximum size: 10MB"
msgstr "文件超过了最大大小: 10MB" msgstr "文件超过了最大大小: 10MB"

Binary file not shown.

View file

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: bookwyrm\n" "Project-Id-Version: bookwyrm\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-26 20:16+0000\n" "POT-Creation-Date: 2022-04-08 21:00+0000\n"
"PO-Revision-Date: 2022-03-26 22:29\n" "PO-Revision-Date: 2022-04-08 21:50\n"
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n" "Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
"Language-Team: Chinese Traditional\n" "Language-Team: Chinese Traditional\n"
"Language: zh\n" "Language: zh\n"
@ -165,14 +165,14 @@ msgstr ""
#: bookwyrm/models/federated_server.py:11 #: bookwyrm/models/federated_server.py:11
#: bookwyrm/templates/settings/federation/edit_instance.html:55 #: 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" msgid "Federated"
msgstr "跨站" msgstr "跨站"
#: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71
#: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/edit_instance.html:56
#: bookwyrm/templates/settings/federation/instance.html:10 #: 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 #: bookwyrm/templates/settings/link_domains/link_domains.html:27
msgid "Blocked" msgid "Blocked"
msgstr "已封鎖" msgstr "已封鎖"
@ -187,7 +187,7 @@ msgstr "%(value)s 不是有效的 remote_id"
msgid "%(value)s is not a valid username" msgid "%(value)s is not a valid username"
msgstr "%(value)s 不是有效的使用者名稱" msgstr "%(value)s 不是有效的使用者名稱"
#: 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 #: bookwyrm/templates/ostatus/error.html:29
msgid "username" msgid "username"
msgstr "使用者名稱" msgstr "使用者名稱"
@ -300,38 +300,42 @@ msgid "Italiano (Italian)"
msgstr "" msgstr ""
#: bookwyrm/settings.py:287 #: bookwyrm/settings.py:287
msgid "Suomi (Finnish)"
msgstr ""
#: bookwyrm/settings.py:288
msgid "Français (French)" msgid "Français (French)"
msgstr "Français法語" msgstr "Français法語"
#: bookwyrm/settings.py:288 #: bookwyrm/settings.py:289
msgid "Lietuvių (Lithuanian)" msgid "Lietuvių (Lithuanian)"
msgstr "" msgstr ""
#: bookwyrm/settings.py:289 #: bookwyrm/settings.py:290
msgid "Norsk (Norwegian)" msgid "Norsk (Norwegian)"
msgstr "" msgstr ""
#: bookwyrm/settings.py:290 #: bookwyrm/settings.py:291
msgid "Português do Brasil (Brazilian Portuguese)" msgid "Português do Brasil (Brazilian Portuguese)"
msgstr "" msgstr ""
#: bookwyrm/settings.py:291 #: bookwyrm/settings.py:292
msgid "Português Europeu (European Portuguese)" msgid "Português Europeu (European Portuguese)"
msgstr "" msgstr ""
#: bookwyrm/settings.py:292 #: bookwyrm/settings.py:293
msgid "Română (Romanian)" msgid "Română (Romanian)"
msgstr "" msgstr ""
#: bookwyrm/settings.py:293 #: bookwyrm/settings.py:294
msgid "Svenska (Swedish)" msgid "Svenska (Swedish)"
msgstr "" msgstr ""
#: bookwyrm/settings.py:294 #: bookwyrm/settings.py:295
msgid "简体中文 (Simplified Chinese)" msgid "简体中文 (Simplified Chinese)"
msgstr "簡體中文" msgstr "簡體中文"
#: bookwyrm/settings.py:295 #: bookwyrm/settings.py:296
msgid "繁體中文 (Traditional Chinese)" msgid "繁體中文 (Traditional Chinese)"
msgstr "繁體中文" msgstr "繁體中文"
@ -403,7 +407,7 @@ msgstr ""
msgid "Moderator" msgid "Moderator"
msgstr "" 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" msgid "Admin"
msgstr "管理員" msgstr "管理員"
@ -434,7 +438,7 @@ msgid "Software version:"
msgstr "" msgstr ""
#: bookwyrm/templates/about/layout.html:30 #: 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 #, python-format
msgid "About %(site_name)s" msgid "About %(site_name)s"
msgstr "關於 %(site_name)s" msgstr "關於 %(site_name)s"
@ -1189,7 +1193,6 @@ msgstr ""
#: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/book/file_links/edit_links.html:36
#: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/import/import_status.html:127
#: bookwyrm/templates/settings/announcements/announcements.html:37 #: bookwyrm/templates/settings/announcements/announcements.html:37
#: bookwyrm/templates/settings/federation/instance_list.html:46
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47
#: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/invites/status_filter.html:5
#: bookwyrm/templates/settings/users/user_admin.html:52 #: bookwyrm/templates/settings/users/user_admin.html:52
@ -1357,7 +1360,7 @@ msgstr "跨站社群"
#: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:4
#: bookwyrm/templates/directory/directory.html:9 #: bookwyrm/templates/directory/directory.html:9
#: bookwyrm/templates/layout.html:109 #: bookwyrm/templates/user_menu.html:30
msgid "Directory" msgid "Directory"
msgstr "目錄" msgstr "目錄"
@ -1598,12 +1601,12 @@ msgstr "重置你在 %(site_name)s 的密碼"
msgid "%(site_name)s home page" msgid "%(site_name)s home page"
msgstr "" 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" msgid "Contact site admin"
msgstr "聯絡網站管理員" msgstr "聯絡網站管理員"
#: bookwyrm/templates/embed-layout.html:46 #: bookwyrm/templates/embed-layout.html:46
msgid "Join Bookwyrm" msgid "Join BookWyrm"
msgstr "" msgstr ""
#: bookwyrm/templates/feed/direct_messages.html:8 #: bookwyrm/templates/feed/direct_messages.html:8
@ -1612,7 +1615,7 @@ msgid "Direct Messages with <a href=\"%(path)s\">%(username)s</a>"
msgstr "與 <a href=\"%(path)s\">%(username)s</a> 私信" msgstr "與 <a href=\"%(path)s\">%(username)s</a> 私信"
#: bookwyrm/templates/feed/direct_messages.html:10 #: bookwyrm/templates/feed/direct_messages.html:10
#: bookwyrm/templates/layout.html:119 #: bookwyrm/templates/user_menu.html:40
msgid "Direct Messages" msgid "Direct Messages"
msgstr "私信" msgstr "私信"
@ -1649,7 +1652,7 @@ msgid "Updates"
msgstr "更新" msgstr "更新"
#: bookwyrm/templates/feed/suggested_books.html:6 #: bookwyrm/templates/feed/suggested_books.html:6
#: bookwyrm/templates/layout.html:114 #: bookwyrm/templates/user_menu.html:35
msgid "Your Books" msgid "Your Books"
msgstr "你的書目" msgstr "你的書目"
@ -2206,7 +2209,7 @@ msgid "Login"
msgstr "登入" msgstr "登入"
#: bookwyrm/templates/landing/login.html:7 #: 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 #: bookwyrm/templates/ostatus/error.html:37
msgid "Log in" msgid "Log in"
msgstr "登入" msgstr "登入"
@ -2215,7 +2218,7 @@ msgstr "登入"
msgid "Success! Email address confirmed." msgid "Success! Email address confirmed."
msgstr "" 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/ostatus/error.html:28
#: bookwyrm/templates/snippets/register_form.html:4 #: bookwyrm/templates/snippets/register_form.html:4
msgid "Username:" msgid "Username:"
@ -2223,12 +2226,12 @@ msgstr "使用者名稱:"
#: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/login.html:27
#: bookwyrm/templates/landing/password_reset.html:26 #: 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 #: bookwyrm/templates/snippets/register_form.html:45
msgid "Password:" msgid "Password:"
msgstr "密碼:" 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 #: bookwyrm/templates/ostatus/error.html:34
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "忘記了密碼?" msgstr "忘記了密碼?"
@ -2272,54 +2275,38 @@ msgstr "主導航選單"
msgid "Feed" msgid "Feed"
msgstr "動態" msgstr "動態"
#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 #: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100
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/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:5
#: bookwyrm/templates/notifications/notifications_page.html:10 #: bookwyrm/templates/notifications/notifications_page.html:10
msgid "Notifications" msgid "Notifications"
msgstr "通知" 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" msgid "password"
msgstr "密碼" msgstr "密碼"
#: bookwyrm/templates/layout.html:195 #: bookwyrm/templates/layout.html:139
msgid "Join" msgid "Join"
msgstr "加入" msgstr "加入"
#: bookwyrm/templates/layout.html:229 #: bookwyrm/templates/layout.html:173
msgid "Successfully posted status" msgid "Successfully posted status"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:230 #: bookwyrm/templates/layout.html:174
msgid "Error posting status" msgid "Error posting status"
msgstr "" msgstr ""
#: bookwyrm/templates/layout.html:246 #: bookwyrm/templates/layout.html:190
msgid "Documentation" msgid "Documentation"
msgstr "文件:" msgstr "文件:"
#: bookwyrm/templates/layout.html:253 #: bookwyrm/templates/layout.html:197
#, python-format #, python-format
msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>" msgid "Support %(site_name)s on <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>"
msgstr "在 <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a> 上支援 %(site_name)s" msgstr "在 <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a> 上支援 %(site_name)s"
#: 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 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>." msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
msgstr "BookWyrm 是開源軟體。你可以在 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a> 貢獻或報告問題。" msgstr "BookWyrm 是開源軟體。你可以在 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a> 貢獻或報告問題。"
@ -2900,6 +2887,7 @@ msgstr "編輯使用者資料"
#: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:12
#: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/preferences/edit_user.html:25
#: bookwyrm/templates/settings/users/user_info.html:7 #: bookwyrm/templates/settings/users/user_info.html:7
#: bookwyrm/templates/user_menu.html:25
msgid "Profile" msgid "Profile"
msgstr "使用者資料" msgstr "使用者資料"
@ -3132,7 +3120,7 @@ msgstr "搜尋類別"
#: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:23
#: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/search/layout.html:46
#: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 #: 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/layout.html:36
#: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user.html:13
#: bookwyrm/templates/settings/users/user_admin.html:5 #: bookwyrm/templates/settings/users/user_admin.html:5
@ -3199,7 +3187,7 @@ msgid "Create Announcement"
msgstr "建立公告" msgstr "建立公告"
#: bookwyrm/templates/settings/announcements/announcements.html:21 #: 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" msgid "Date added"
msgstr "新增日期:" msgstr "新增日期:"
@ -3590,16 +3578,21 @@ msgstr "成功封鎖了"
msgid "Failed:" msgid "Failed:"
msgstr "已失敗:" 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 #: bookwyrm/templates/settings/users/server_filter.html:5
msgid "Instance name" msgid "Instance name"
msgstr "實例名稱" 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" msgid "Software"
msgstr "軟體" msgstr "軟體"
#: bookwyrm/templates/settings/federation/instance_list.html:63 #: bookwyrm/templates/settings/federation/instance_list.html:69
msgid "No instances found" msgid "No instances found"
msgstr "" msgstr ""
@ -3610,6 +3603,14 @@ msgstr ""
msgid "Invite Requests" msgid "Invite Requests"
msgstr "邀請請求" 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 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23
msgid "Ignored Invite Requests" msgid "Ignored Invite Requests"
msgstr "已忽略的邀請請求" msgstr "已忽略的邀請請求"
@ -4266,6 +4267,10 @@ msgstr ""
msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production." msgid "You are running BookWyrm in production mode without https. <strong>USE_HTTPS</strong> should be enabled in production."
msgstr "" msgstr ""
#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45
msgid "Settings"
msgstr "設定"
#: bookwyrm/templates/setup/config.html:56 #: bookwyrm/templates/setup/config.html:56
msgid "Instance domain:" msgid "Instance domain:"
msgstr "" msgstr ""
@ -5065,6 +5070,14 @@ msgstr[0] "%(mutuals_display)s 個你也關注的關注者"
msgid "No followers you follow" msgid "No followers you follow"
msgstr "" 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 #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28
msgid "File exceeds maximum size: 10MB" msgid "File exceeds maximum size: 10MB"
msgstr "檔案超過了最大大小: 10MB" msgstr "檔案超過了最大大小: 10MB"

View file

@ -1,6 +1,6 @@
celery==5.2.2 celery==5.2.2
colorthief==0.2.1 colorthief==0.2.1
Django==3.2.12 Django==3.2.13
django-celery-beat==2.2.1 django-celery-beat==2.2.1
django-compressor==2.4.1 django-compressor==2.4.1
django-imagekit==4.1.0 django-imagekit==4.1.0