diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 1b14149f..08661e9c 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -24,5 +24,5 @@ jobs: pip install pylint - name: Analysing the code with pylint run: | - pylint bookwyrm/ --ignore=migrations,tests --disable=E1101,E1135,E1136,R0903,R0901,R0902,W0707,W0511,W0406,R0401,R0801 + pylint bookwyrm/ --ignore=migrations --disable=E1101,E1135,E1136,R0903,R0901,R0902,W0707,W0511,W0406,R0401,R0801 diff --git a/README.md b/README.md index bd7344df..1d3eb543 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,10 @@ Social reading and reviewing, decentralized with ActivityPub - [What it is and isn't](#what-it-is-and-isnt) - [The role of federation](#the-role-of-federation) - [Features](#features) -- [Book data](#book-data) -- [Set up Bookwyrm](#set-up-bookwyrm) +- [Set up BookWyrm](#set-up-bookwyrm) ## Joining BookWyrm -BookWyrm is still a young piece of software, and isn't at the level of stability and feature-richness that you'd find in a production-ready application. But it does what it says on the box! If you'd like to join an instance, you can check out the [instances](https://joinbookwyrm.com/instances/) list. - -You can request an invite by entering your email address at https://bookwyrm.social. +If you'd like to join an instance, you can check out the [instances](https://joinbookwyrm.com/instances/) list. ## Contributing @@ -23,7 +20,7 @@ See [contributing](https://docs.joinbookwyrm.com/how-to-contribute.html) for cod ## About BookWyrm ### What it is and isn't -BookWyrm is a platform for social reading! You can use it to track what you're reading, review books, and follow your friends. It isn't primarily meant for cataloguing or as a data-source for books, but it does do both of those things to some degree. +BookWyrm is a platform for social reading. You can use it to track what you're reading, review books, and follow your friends. It isn't primarily meant for cataloguing or as a data-source for books, but it does do both of those things to some degree. ### The role of federation BookWyrm is built on [ActivityPub](http://activitypub.rocks/). With ActivityPub, it inter-operates with different instances of BookWyrm, and other ActivityPub compliant services, like Mastodon. This means you can run an instance for your book club, and still follow your friend who posts on a server devoted to 20th century Russian speculative fiction. It also means that your friend on mastodon can read and comment on a book review that you post on your BookWyrm instance. @@ -78,8 +75,5 @@ Deployment - [Nginx](https://nginx.org/en/) HTTP server -## Book data -The application is set up to share book and author data between instances, and get book data from arbitrary outside sources. Right now, the only connector is to OpenLibrary, but other connectors could be written. - -## Set up Bookwyrm -The [documentation website](https://docs.joinbookwyrm.com/) has instruction on how to set up Bookwyrm in a [developer environment](https://docs.joinbookwyrm.com/developer-environment.html) or [production](https://docs.joinbookwyrm.com/installing-in-production.html). +## Set up BookWyrm +The [documentation website](https://docs.joinbookwyrm.com/) has instruction on how to set up BookWyrm in a [developer environment](https://docs.joinbookwyrm.com/developer-environment.html) or [production](https://docs.joinbookwyrm.com/installing-in-production.html). diff --git a/bookwyrm/models/fields.py b/bookwyrm/models/fields.py index 5a03df01..62c61cc4 100644 --- a/bookwyrm/models/fields.py +++ b/bookwyrm/models/fields.py @@ -125,7 +125,7 @@ class ActivitypubFieldMixin: """model_field_name to activitypubFieldName""" if self.activitypub_field: return self.activitypub_field - name = self.name.split(".")[-1] + name = self.name.rsplit(".", maxsplit=1)[-1] components = name.split("_") return components[0] + "".join(x.title() for x in components[1:]) diff --git a/bookwyrm/static/css/bookwyrm/utilities/_colors.scss b/bookwyrm/static/css/bookwyrm/utilities/_colors.scss index e44efee9..f38d2a40 100644 --- a/bookwyrm/static/css/bookwyrm/utilities/_colors.scss +++ b/bookwyrm/static/css/bookwyrm/utilities/_colors.scss @@ -23,3 +23,8 @@ .has-background-tertiary { background-color: $background-tertiary !important; } + +/* Workaround for dark theme as .has-text-black doesn't give desired effect. */ +.has-text-default { + color: $text !important; +} diff --git a/bookwyrm/static/css/themes/bookwyrm-dark.scss b/bookwyrm/static/css/themes/bookwyrm-dark.scss index 96997c4a..88ee865b 100644 --- a/bookwyrm/static/css/themes/bookwyrm-dark.scss +++ b/bookwyrm/static/css/themes/bookwyrm-dark.scss @@ -53,6 +53,7 @@ $link-hover: $white-bis; $link-hover-border: #51595d; $link-focus: $white-bis; $link-active: $white-bis; +$link-light: #0d1c26; /* bulma overrides */ $background: $background-secondary; @@ -83,6 +84,13 @@ $progress-value-background-color: $border-light; $family-primary: $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 "../vendor/icons.css"; diff --git a/bookwyrm/static/css/themes/bookwyrm-light.scss b/bookwyrm/static/css/themes/bookwyrm-light.scss index 69c1a806..75f05164 100644 --- a/bookwyrm/static/css/themes/bookwyrm-light.scss +++ b/bookwyrm/static/css/themes/bookwyrm-light.scss @@ -57,5 +57,13 @@ $invisible-overlay-background-color: rgba($scheme-invert, 0.66); $family-primary: $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 "../vendor/icons.css"; diff --git a/bookwyrm/templates/book/editions/editions.html b/bookwyrm/templates/book/editions/editions.html index e15e7a74..16f65e45 100644 --- a/bookwyrm/templates/book/editions/editions.html +++ b/bookwyrm/templates/book/editions/editions.html @@ -21,7 +21,7 @@

- + {{ book|book_title }}

diff --git a/bookwyrm/templates/embed-layout.html b/bookwyrm/templates/embed-layout.html index e0234494..233ba387 100644 --- a/bookwyrm/templates/embed-layout.html +++ b/bookwyrm/templates/embed-layout.html @@ -43,7 +43,7 @@ {% endif %}

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

diff --git a/bookwyrm/templates/groups/members.html b/bookwyrm/templates/groups/members.html index 2c256c61..e9c9047c 100644 --- a/bookwyrm/templates/groups/members.html +++ b/bookwyrm/templates/groups/members.html @@ -38,7 +38,7 @@ {% for membership in group.memberships.all %} {% with member=membership.user %}
- + {% include 'snippets/avatar.html' with user=member large=True %} {{ member.display_name|truncatechars:10 }} @{{ member|username|truncatechars:8 }} diff --git a/bookwyrm/templates/groups/suggested_users.html b/bookwyrm/templates/groups/suggested_users.html index 06f31b44..27001073 100644 --- a/bookwyrm/templates/groups/suggested_users.html +++ b/bookwyrm/templates/groups/suggested_users.html @@ -9,7 +9,7 @@
{% for user in suggested_users %}
- + {% include 'snippets/avatar.html' with user=user large=True %} {{ user.display_name|truncatechars:10 }} @{{ user|username|truncatechars:8 }} diff --git a/bookwyrm/templates/notifications/items/boost.html b/bookwyrm/templates/notifications/items/boost.html index 93bd00cc..5e3e1151 100644 --- a/bookwyrm/templates/notifications/items/boost.html +++ b/bookwyrm/templates/notifications/items/boost.html @@ -47,12 +47,12 @@ {% block preview %} -
+
{% include 'snippets/status_preview.html' with status=related_status %}
-
+
{{ related_status.published_date|timesince }} {% include 'snippets/privacy-icons.html' with item=related_status %}
diff --git a/bookwyrm/templates/notifications/items/fav.html b/bookwyrm/templates/notifications/items/fav.html index 25638574..eb29ebc2 100644 --- a/bookwyrm/templates/notifications/items/fav.html +++ b/bookwyrm/templates/notifications/items/fav.html @@ -47,12 +47,12 @@ {% block preview %} -
+
{% include 'snippets/status_preview.html' with status=related_status %}
-
+
{{ related_status.published_date|timesince }} {% include 'snippets/privacy-icons.html' with item=related_status %}
diff --git a/bookwyrm/templates/notifications/items/layout.html b/bookwyrm/templates/notifications/items/layout.html index d595bf20..e7c3b314 100644 --- a/bookwyrm/templates/notifications/items/layout.html +++ b/bookwyrm/templates/notifications/items/layout.html @@ -1,7 +1,7 @@ {% load notification_page_tags %} {% related_status notification as related_status %}
-
+
{% block icon %}{% endblock %} diff --git a/bookwyrm/templates/notifications/items/mention.html b/bookwyrm/templates/notifications/items/mention.html index dfd40744..e4e78a11 100644 --- a/bookwyrm/templates/notifications/items/mention.html +++ b/bookwyrm/templates/notifications/items/mention.html @@ -48,12 +48,12 @@ {% block preview %} -
+
{% include 'snippets/status_preview.html' with status=related_status %}
-
+
{{ related_status.published_date|timesince }} {% include 'snippets/privacy-icons.html' with item=related_status %}
diff --git a/bookwyrm/templates/notifications/items/reply.html b/bookwyrm/templates/notifications/items/reply.html index 2472e050..30e7eff7 100644 --- a/bookwyrm/templates/notifications/items/reply.html +++ b/bookwyrm/templates/notifications/items/reply.html @@ -51,12 +51,12 @@ {% block preview %} -
+
{% include 'snippets/status_preview.html' with status=related_status %}
-
+
{{ related_status.published_date|timesince }} {% include 'snippets/privacy-icons.html' with item=related_status %}
diff --git a/bookwyrm/templates/snippets/suggested_users.html b/bookwyrm/templates/snippets/suggested_users.html index 74b69d1f..2699ff2a 100644 --- a/bookwyrm/templates/snippets/suggested_users.html +++ b/bookwyrm/templates/snippets/suggested_users.html @@ -5,7 +5,7 @@ {% for user in suggested_users %}
- + {% include 'snippets/avatar.html' with user=user large=True %} {{ user.display_name|truncatechars:10 }} @{{ user|username|truncatechars:8 }} diff --git a/bookwyrm/tests/__init__.py b/bookwyrm/tests/__init__.py index b6e690fd..0879d4ec 100644 --- a/bookwyrm/tests/__init__.py +++ b/bookwyrm/tests/__init__.py @@ -1 +1,2 @@ -from . import * +""" import ALL the tests """ +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/activitypub/__init__.py b/bookwyrm/tests/activitypub/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/activitypub/__init__.py +++ b/bookwyrm/tests/activitypub/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/activitypub/test_author.py b/bookwyrm/tests/activitypub/test_author.py index 0a344340..61d525fc 100644 --- a/bookwyrm/tests/activitypub/test_author.py +++ b/bookwyrm/tests/activitypub/test_author.py @@ -4,7 +4,10 @@ from bookwyrm import models class Author(TestCase): + """serialize author tests""" + def setUp(self): + """initial data""" self.book = models.Edition.objects.create( title="Example Edition", remote_id="https://example.com/book/1", @@ -16,6 +19,7 @@ class Author(TestCase): ) def test_serialize_model(self): + """check presense of author fields""" activity = self.author.to_activity() self.assertEqual(activity["id"], self.author.remote_id) self.assertIsInstance(activity["aliases"], list) diff --git a/bookwyrm/tests/activitystreams/__init__.py b/bookwyrm/tests/activitystreams/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/activitystreams/__init__.py +++ b/bookwyrm/tests/activitystreams/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/connectors/__init__.py b/bookwyrm/tests/connectors/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/connectors/__init__.py +++ b/bookwyrm/tests/connectors/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/importers/__init__.py b/bookwyrm/tests/importers/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/importers/__init__.py +++ b/bookwyrm/tests/importers/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/lists_stream/__init__.py b/bookwyrm/tests/lists_stream/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/lists_stream/__init__.py +++ b/bookwyrm/tests/lists_stream/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/management/__init__.py b/bookwyrm/tests/management/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/management/__init__.py +++ b/bookwyrm/tests/management/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/models/__init__.py b/bookwyrm/tests/models/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/models/__init__.py +++ b/bookwyrm/tests/models/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/models/test_base_model.py b/bookwyrm/tests/models/test_base_model.py index ae6d1207..8a8be214 100644 --- a/bookwyrm/tests/models/test_base_model.py +++ b/bookwyrm/tests/models/test_base_model.py @@ -38,7 +38,7 @@ class BaseModel(TestCase): def test_remote_id(self): """these should be generated""" - self.test_model.id = 1 + self.test_model.id = 1 # pylint: disable=invalid-name expected = self.test_model.get_remote_id() self.assertEqual(expected, f"https://{DOMAIN}/bookwyrmtestmodel/1") diff --git a/bookwyrm/tests/models/test_fields.py b/bookwyrm/tests/models/test_fields.py index f7386c2e..961fbd52 100644 --- a/bookwyrm/tests/models/test_fields.py +++ b/bookwyrm/tests/models/test_fields.py @@ -162,6 +162,7 @@ class ModelFields(TestCase): class TestActivity(ActivityObject): """real simple mock""" + # pylint: disable=invalid-name to: List[str] cc: List[str] id: str = "http://hi.com" diff --git a/bookwyrm/tests/models/test_user_model.py b/bookwyrm/tests/models/test_user_model.py index aa62dce3..adcee8fb 100644 --- a/bookwyrm/tests/models/test_user_model.py +++ b/bookwyrm/tests/models/test_user_model.py @@ -17,7 +17,7 @@ class User(TestCase): "bookwyrm.activitystreams.populate_stream_task.delay" ), patch("bookwyrm.lists_stream.populate_lists_task.delay"): self.user = models.User.objects.create_user( - "mouse@%s" % DOMAIN, + f"mouse@{DOMAIN}", "mouse@mouse.mouse", "mouseword", local=True, @@ -107,7 +107,7 @@ class User(TestCase): def test_get_or_create_remote_server(self): responses.add( responses.GET, - "https://%s/.well-known/nodeinfo" % DOMAIN, + f"https://{DOMAIN}/.well-known/nodeinfo", json={"links": [{"href": "http://www.example.com"}, {}]}, ) responses.add( @@ -124,7 +124,7 @@ class User(TestCase): @responses.activate def test_get_or_create_remote_server_no_wellknown(self): responses.add( - responses.GET, "https://%s/.well-known/nodeinfo" % DOMAIN, status=404 + responses.GET, f"https://{DOMAIN}/.well-known/nodeinfo", status=404 ) server = models.user.get_or_create_remote_server(DOMAIN) @@ -136,7 +136,7 @@ class User(TestCase): def test_get_or_create_remote_server_no_links(self): responses.add( responses.GET, - "https://%s/.well-known/nodeinfo" % DOMAIN, + f"https://{DOMAIN}/.well-known/nodeinfo", json={"links": [{"href": "http://www.example.com"}, {}]}, ) responses.add(responses.GET, "http://www.example.com", status=404) @@ -150,7 +150,7 @@ class User(TestCase): def test_get_or_create_remote_server_unknown_format(self): responses.add( responses.GET, - "https://%s/.well-known/nodeinfo" % DOMAIN, + f"https://{DOMAIN}/.well-known/nodeinfo", json={"links": [{"href": "http://www.example.com"}, {}]}, ) responses.add(responses.GET, "http://www.example.com", json={"fish": "salmon"}) diff --git a/bookwyrm/tests/templatetags/__init__.py b/bookwyrm/tests/templatetags/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/templatetags/__init__.py +++ b/bookwyrm/tests/templatetags/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/test_signing.py b/bookwyrm/tests/test_signing.py index da67a8de..26d5e99a 100644 --- a/bookwyrm/tests/test_signing.py +++ b/bookwyrm/tests/test_signing.py @@ -64,8 +64,8 @@ class Signature(TestCase): def send(self, signature, now, data, digest): """test request""" - c = Client() - return c.post( + client = Client() + return client.post( urlsplit(self.rat.inbox).path, data=data, content_type="application/json", diff --git a/bookwyrm/tests/views/__init__.py b/bookwyrm/tests/views/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/views/__init__.py +++ b/bookwyrm/tests/views/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/admin/__init__.py b/bookwyrm/tests/views/admin/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/views/admin/__init__.py +++ b/bookwyrm/tests/views/admin/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/books/__init__.py b/bookwyrm/tests/views/books/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/views/books/__init__.py +++ b/bookwyrm/tests/views/books/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/imports/__init__.py b/bookwyrm/tests/views/imports/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/views/imports/__init__.py +++ b/bookwyrm/tests/views/imports/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/inbox/__init__.py b/bookwyrm/tests/views/inbox/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/views/inbox/__init__.py +++ b/bookwyrm/tests/views/inbox/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/inbox/test_inbox_announce.py b/bookwyrm/tests/views/inbox/test_inbox_announce.py index 01580c92..c77c18bc 100644 --- a/bookwyrm/tests/views/inbox/test_inbox_announce.py +++ b/bookwyrm/tests/views/inbox/test_inbox_announce.py @@ -61,7 +61,7 @@ class InboxActivities(TestCase): self.assertEqual(models.Notification.objects.count(), 0) activity = { "type": "Announce", - "id": "%s/boost" % self.status.remote_id, + "id": f"{self.status.remote_id}/boost", "actor": self.remote_user.remote_id, "object": self.status.remote_id, "to": ["https://www.w3.org/ns/activitystreams#public"], @@ -94,7 +94,7 @@ class InboxActivities(TestCase): self.assertEqual(models.Notification.objects.count(), 0) activity = { "type": "Announce", - "id": "%s/boost" % self.status.remote_id, + "id": f"{self.status.remote_id}/boost", "actor": self.remote_user.remote_id, "object": "https://remote.com/status/1", "to": ["https://www.w3.org/ns/activitystreams#public"], diff --git a/bookwyrm/tests/views/landing/__init__.py b/bookwyrm/tests/views/landing/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/views/landing/__init__.py +++ b/bookwyrm/tests/views/landing/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/lists/__init__.py b/bookwyrm/tests/views/lists/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/views/lists/__init__.py +++ b/bookwyrm/tests/views/lists/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/preferences/__init__.py b/bookwyrm/tests/views/preferences/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/views/preferences/__init__.py +++ b/bookwyrm/tests/views/preferences/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/shelf/__init__.py b/bookwyrm/tests/views/shelf/__init__.py index b6e690fd..b1753c3a 100644 --- a/bookwyrm/tests/views/shelf/__init__.py +++ b/bookwyrm/tests/views/shelf/__init__.py @@ -1 +1,2 @@ -from . import * +# pylint: disable=missing-module-docstring +from . import * # pylint: disable=import-self diff --git a/bookwyrm/tests/views/test_author.py b/bookwyrm/tests/views/test_author.py index 71daef2a..1f8fc51c 100644 --- a/bookwyrm/tests/views/test_author.py +++ b/bookwyrm/tests/views/test_author.py @@ -66,7 +66,7 @@ class AuthorViews(TestCase): def test_author_page_edition_author(self): """there are so many views, this just makes sure it LOADS""" view = views.Author.as_view() - another_book = models.Edition.objects.create( + models.Edition.objects.create( title="Example Edition", remote_id="https://example.com/book/1", parent_work=self.work, diff --git a/bookwyrm/tests/views/test_helpers.py b/bookwyrm/tests/views/test_helpers.py index 8fe04f51..a092a4c9 100644 --- a/bookwyrm/tests/views/test_helpers.py +++ b/bookwyrm/tests/views/test_helpers.py @@ -139,7 +139,7 @@ class ViewsHelpers(TestCase): } responses.add( responses.GET, - "https://example.com/.well-known/webfinger?resource=acct:%s" % username, + f"https://example.com/.well-known/webfinger?resource=acct:{username}", json=wellknown, status=200, ) diff --git a/bookwyrm/tests/views/test_user.py b/bookwyrm/tests/views/test_user.py index f65ffa51..e632819b 100644 --- a/bookwyrm/tests/views/test_user.py +++ b/bookwyrm/tests/views/test_user.py @@ -83,7 +83,7 @@ class UserViews(TestCase): def test_user_page_domain(self): """when the user domain has dashes in it""" with patch("bookwyrm.models.user.set_remote_server"): - self.remote_user = models.User.objects.create_user( + models.User.objects.create_user( "nutria", "", "nutriaword", diff --git a/locale/de_DE/LC_MESSAGES/django.mo b/locale/de_DE/LC_MESSAGES/django.mo index eff8ec81..bc213c03 100644 Binary files a/locale/de_DE/LC_MESSAGES/django.mo and b/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/locale/de_DE/LC_MESSAGES/django.po b/locale/de_DE/LC_MESSAGES/django.po index 2751f5e1..4743a3ed 100644 --- a/locale/de_DE/LC_MESSAGES/django.po +++ b/locale/de_DE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-27 14:27\n" +"POT-Creation-Date: 2022-04-08 21:00+0000\n" +"PO-Revision-Date: 2022-04-08 21:50\n" "Last-Translator: Mouse Reeve \n" "Language-Team: German\n" "Language: de\n" @@ -165,14 +165,14 @@ msgstr "Taschenbuch" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Föderiert" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Blockiert" @@ -187,7 +187,7 @@ msgstr "%(value)s ist keine gültige remote_id" msgid "%(value)s is not a valid username" 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 msgid "username" msgstr "Benutzer*inname" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano (Italienisch)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (Französisch)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Litauisch)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (Norwegisch)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (brasilianisches Portugiesisch)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portugiesisch)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "Română (Rumänisch)" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Schwedisch)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (vereinfachtes Chinesisch)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Chinesisch, traditionell)" @@ -403,7 +407,7 @@ msgstr "Die Moderator*innen und Administrator*innen von %(site_name)s halten die msgid "Moderator" 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" msgstr "Administration" @@ -434,7 +438,7 @@ msgid "Software version:" msgstr "Softwareversion:" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "Über %(site_name)s" @@ -1195,7 +1199,6 @@ msgstr "Domain" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -1363,7 +1366,7 @@ msgstr "Föderierte Gemeinschaft" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "Verzeichnis" @@ -1606,13 +1609,13 @@ msgstr "Passwort für %(site_name)s zurücksetzen" msgid "%(site_name)s home page" 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" msgstr "Administrator*in kontaktieren" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" -msgstr "Bookwyrm beitreten" +msgid "Join BookWyrm" +msgstr "" #: bookwyrm/templates/feed/direct_messages.html:8 #, python-format @@ -1620,7 +1623,7 @@ msgid "Direct Messages with %(username)s" msgstr "Direktnachrichten mit %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "Direktnachrichten" @@ -1657,7 +1660,7 @@ msgid "Updates" msgstr "Updates" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" msgstr "Deine Bücher" @@ -2218,7 +2221,7 @@ msgid "Login" msgstr "Anmeldung" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Anmelden" @@ -2227,7 +2230,7 @@ msgstr "Anmelden" msgid "Success! Email address confirmed." 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/snippets/register_form.html:4 msgid "Username:" @@ -2235,12 +2238,12 @@ msgstr "Benutzer*inname:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "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 msgid "Forgot your password?" msgstr "Passwort vergessen?" @@ -2284,54 +2287,38 @@ msgstr "Navigations-Hauptmenü" msgid "Feed" msgstr "Feed" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -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/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "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" msgstr "Passwort" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "Beitreten" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "Status veröffentlicht" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "Fehler beim veröffentlichen des Status" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "Handbuch" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "%(site_name)s auf %(support_title)s 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 GitHub." msgstr "BookWyrm ist open source Software. Du kannst dich auf GitHub beteiligen oder etwas melden." @@ -2912,6 +2899,7 @@ msgstr "Profil bearbeiten:" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "Profil" @@ -3146,7 +3134,7 @@ msgstr "Suchart" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3213,7 +3201,7 @@ msgid "Create Announcement" msgstr "Ankündigung erstellen" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Hinzugefügt am" @@ -3608,16 +3596,21 @@ msgstr "Erfolgreich gesperrt:" msgid "Failed:" msgstr "Fehlgeschlagen:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Name der Instanz" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Software" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Keine Instanzen gefunden" @@ -3628,6 +3621,14 @@ msgstr "Keine Instanzen gefunden" msgid "Invite Requests" 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 msgid "Ignored Invite Requests" msgstr "Ignorierte Einladungsanfragen" @@ -4284,6 +4285,10 @@ msgstr "" msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." msgstr "" +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45 +msgid "Settings" +msgstr "Einstellungen" + #: bookwyrm/templates/setup/config.html:56 msgid "Instance domain:" msgstr "" @@ -5092,6 +5097,14 @@ msgstr[1] "%(mutuals_display)s Follower*innen, denen du folgst" msgid "No followers you follow" 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 msgid "File exceeds maximum size: 10MB" msgstr "Datei überschreitet die maximale Größe von 10MB" diff --git a/locale/en_US/LC_MESSAGES/django.po b/locale/en_US/LC_MESSAGES/django.po index 4d1f6f36..86beda9b 100644 --- a/locale/en_US/LC_MESSAGES/django.po +++ b/locale/en_US/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-04-04 22:19+0000\n" +"POT-Creation-Date: 2022-04-26 14:35+0000\n" "PO-Revision-Date: 2021-02-28 17:19-0800\n" "Last-Translator: Mouse Reeve \n" "Language-Team: English \n" @@ -188,7 +188,7 @@ msgstr "" msgid "%(value)s is not a valid username" msgstr "" -#: bookwyrm/models/fields.py:181 bookwyrm/templates/layout.html:179 +#: bookwyrm/models/fields.py:181 bookwyrm/templates/layout.html:123 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "" @@ -408,7 +408,7 @@ msgstr "" msgid "Moderator" msgstr "" -#: bookwyrm/templates/about/about.html:117 bookwyrm/templates/layout.html:140 +#: bookwyrm/templates/about/about.html:117 bookwyrm/templates/user_menu.html:63 msgid "Admin" msgstr "" @@ -439,7 +439,7 @@ msgid "Software version:" msgstr "" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "" @@ -1367,7 +1367,7 @@ msgstr "" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "" @@ -1610,12 +1610,12 @@ msgstr "" msgid "%(site_name)s home page" msgstr "" -#: bookwyrm/templates/embed-layout.html:40 bookwyrm/templates/layout.html:242 +#: bookwyrm/templates/embed-layout.html:40 bookwyrm/templates/layout.html:186 msgid "Contact site admin" msgstr "" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" +msgid "Join BookWyrm" msgstr "" #: bookwyrm/templates/feed/direct_messages.html:8 @@ -1624,7 +1624,7 @@ msgid "Direct Messages with %(username)s" msgstr "" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "" @@ -1661,7 +1661,7 @@ msgid "Updates" msgstr "" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" msgstr "" @@ -2222,7 +2222,7 @@ msgid "Login" msgstr "" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "" @@ -2231,7 +2231,7 @@ msgstr "" msgid "Success! Email address confirmed." msgstr "" -#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:178 +#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:122 #: bookwyrm/templates/ostatus/error.html:28 #: bookwyrm/templates/snippets/register_form.html:4 msgid "Username:" @@ -2239,12 +2239,12 @@ msgstr "" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:184 +#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:128 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "" @@ -2288,54 +2288,38 @@ msgstr "" msgid "Feed" msgstr "" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -msgid "Settings" -msgstr "" - -#: bookwyrm/templates/layout.html:133 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 -#: bookwyrm/templates/settings/invites/manage_invites.html:3 -#: bookwyrm/templates/settings/invites/manage_invites.html:15 -#: bookwyrm/templates/settings/layout.html:42 -msgid "Invites" -msgstr "" - -#: bookwyrm/templates/layout.html:147 -msgid "Log out" -msgstr "" - -#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156 +#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "" -#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 +#: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33 msgid "password" msgstr "" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "" -#: bookwyrm/templates/layout.html:257 +#: bookwyrm/templates/layout.html:201 msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." msgstr "" @@ -2916,6 +2900,7 @@ msgstr "" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "" @@ -3636,6 +3621,14 @@ msgstr "" msgid "Invite Requests" msgstr "" +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:56 +msgid "Invites" +msgstr "" + #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 msgid "Ignored Invite Requests" msgstr "" @@ -4292,6 +4285,10 @@ msgstr "" msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." msgstr "" +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45 +msgid "Settings" +msgstr "" + #: bookwyrm/templates/setup/config.html:56 msgid "Instance domain:" msgstr "" @@ -5100,6 +5097,14 @@ msgstr[1] "" msgid "No followers you follow" msgstr "" +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/user_menu.html:72 +msgid "Log out" +msgstr "" + #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 msgid "File exceeds maximum size: 10MB" msgstr "" diff --git a/locale/es_ES/LC_MESSAGES/django.mo b/locale/es_ES/LC_MESSAGES/django.mo index 8260851e..eb96c9c5 100644 Binary files a/locale/es_ES/LC_MESSAGES/django.mo and b/locale/es_ES/LC_MESSAGES/django.mo differ diff --git a/locale/es_ES/LC_MESSAGES/django.po b/locale/es_ES/LC_MESSAGES/django.po index 0051eb95..97ce5286 100644 --- a/locale/es_ES/LC_MESSAGES/django.po +++ b/locale/es_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-31 15:40\n" +"POT-Creation-Date: 2022-04-08 21:00+0000\n" +"PO-Revision-Date: 2022-04-26 11:37\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Spanish\n" "Language: es\n" @@ -48,7 +48,7 @@ msgstr "La fecha final de lectura no puede ser anterior a la fecha de inicio." #: bookwyrm/forms/landing.py:32 msgid "User with this username already exists" -msgstr "" +msgstr "Este nombre de usuario ya está en uso." #: bookwyrm/forms/landing.py:41 msgid "A user with this email already exists." @@ -56,11 +56,11 @@ msgstr "Ya existe un usuario con ese correo electrónico." #: bookwyrm/forms/links.py:36 msgid "This domain is blocked. Please contact your administrator if you think this is an error." -msgstr "Este dominio está bloqueado. Póngase en contacto con su administrador si cree que esto es un error." +msgstr "Este dominio está bloqueado. Ponte en contacto con le admin si crees que se trata de un error." #: bookwyrm/forms/links.py:46 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." -msgstr "Este enlace con ese tipo de archivo ya ha sido añadido a este libro. Si no es visible es porque el dominio todavía está pendiente." +msgstr "Este enlace con ese tipo de archivo ya ha sido añadido a este libro. Si no aparece, es porque el dominio todavía está pendiente." #: bookwyrm/forms/lists.py:26 msgid "List Order" @@ -102,7 +102,7 @@ msgstr "" #: bookwyrm/models/announcement.py:12 msgid "Success" -msgstr "" +msgstr "Hecho" #: bookwyrm/models/announcement.py:13 #: bookwyrm/templates/settings/invites/manage_invites.html:47 @@ -111,15 +111,15 @@ msgstr "Enlace" #: bookwyrm/models/announcement.py:14 msgid "Warning" -msgstr "" +msgstr "Aviso" #: bookwyrm/models/announcement.py:15 msgid "Danger" -msgstr "" +msgstr "Cuidado" #: bookwyrm/models/antispam.py:106 bookwyrm/models/antispam.py:140 msgid "Automatically generated report" -msgstr "" +msgstr "Informe generado automáticamente" #: bookwyrm/models/base_model.py:17 bookwyrm/models/link.py:72 #: bookwyrm/templates/import/import_status.html:200 @@ -165,14 +165,14 @@ msgstr "Tapa blanda" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federalizado" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Bloqueado" @@ -187,7 +187,7 @@ msgstr "%(value)s no es un remote_id válido" msgid "%(value)s is not a valid username" msgstr "%(value)s no es un usuario 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 msgid "username" msgstr "nombre de usuario" @@ -230,7 +230,7 @@ msgstr "Privado" #: bookwyrm/models/link.py:51 msgid "Free" -msgstr "Gratuito" +msgstr "Gratis" #: bookwyrm/models/link.py:52 msgid "Purchasable" @@ -238,7 +238,7 @@ msgstr "Disponible para compra" #: bookwyrm/models/link.py:53 msgid "Available for loan" -msgstr "Disponible para préstamo" +msgstr "Disponible como préstamo" #: bookwyrm/models/link.py:70 #: bookwyrm/templates/settings/link_domains/link_domains.html:23 @@ -293,45 +293,49 @@ msgstr "Español" #: bookwyrm/settings.py:285 msgid "Galego (Galician)" -msgstr "Galego (Gallego)" +msgstr "Galego (gallego)" #: bookwyrm/settings.py:286 msgid "Italiano (Italian)" msgstr "Italiano" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "Suomi (finés)" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (Francés)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lituano)" -#: bookwyrm/settings.py:289 -msgid "Norsk (Norwegian)" -msgstr "Norsk (Noruego)" - #: bookwyrm/settings.py:290 -msgid "Português do Brasil (Brazilian Portuguese)" -msgstr "Português do Brasil (Portugués brasileño)" +msgid "Norsk (Norwegian)" +msgstr "Norsk (noruego)" #: bookwyrm/settings.py:291 +msgid "Português do Brasil (Brazilian Portuguese)" +msgstr "Português do Brasil (portugués brasileño)" + +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portugués europeo)" -#: bookwyrm/settings.py:292 -msgid "Română (Romanian)" -msgstr "" - #: bookwyrm/settings.py:293 +msgid "Română (Romanian)" +msgstr "Română (rumano)" + +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Sueco)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Chino simplificado)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Chino tradicional)" @@ -397,15 +401,15 @@ msgstr "Conoce a tus administradores" #: bookwyrm/templates/about/about.html:101 #, python-format msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." -msgstr "Los moderadores y administradores de %(site_name)s mantienen el sitio en funcionamiento, hacen cumplir el código de conducta y responden cuando los usuarios informan de spam y mal comportamiento." +msgstr "Los moderadores y administradores de %(site_name)s mantienen el sitio en funcionamiento, hacen cumplir el Código de conducta y responden cuando les usuaries informan de spam y mal comportamiento." #: bookwyrm/templates/about/about.html:115 msgid "Moderator" 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" -msgstr "Administrador" +msgstr "Admin" #: bookwyrm/templates/about/about.html:133 #: bookwyrm/templates/settings/users/user_moderation_actions.html:14 @@ -434,7 +438,7 @@ msgid "Software version:" msgstr "Versión del software:" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "Sobre %(site_name)s" @@ -476,7 +480,7 @@ msgstr "¡Copiado!" #: bookwyrm/templates/annual_summary/layout.html:77 msgid "Sharing status: public with key" -msgstr "Nivel de compartido: público con llave" +msgstr "Compartir como público con contraseña" #: bookwyrm/templates/annual_summary/layout.html:78 msgid "The page can be seen by anyone with the complete address." @@ -484,11 +488,11 @@ msgstr "La página puede ser vista por cualquier persona que tenga la dirección #: bookwyrm/templates/annual_summary/layout.html:83 msgid "Make page private" -msgstr "Hacer privada la página" +msgstr "Hacer privada" #: bookwyrm/templates/annual_summary/layout.html:89 msgid "Sharing status: private" -msgstr "Nivel de compartido: privado" +msgstr "Compartir como privado" #: bookwyrm/templates/annual_summary/layout.html:90 msgid "The page is private, only you can see it." @@ -516,7 +520,7 @@ msgstr[1] "En %(year)s %(display_name)s ha leído %(books_total)s libros
¡ #: bookwyrm/templates/annual_summary/layout.html:124 msgid "That’s great!" -msgstr "¡Eso es genial!" +msgstr "¡Vaya, genial!" #: bookwyrm/templates/annual_summary/layout.html:127 #, python-format @@ -532,7 +536,7 @@ msgstr[1] "(%(no_page_number)s libros no tienen páginas)" #: bookwyrm/templates/annual_summary/layout.html:148 msgid "Their shortest read this year…" -msgstr "Su lectura más corta de este año…" +msgstr "El libro más corto que ha leído este año…" #: bookwyrm/templates/annual_summary/layout.html:155 #: bookwyrm/templates/annual_summary/layout.html:176 @@ -552,7 +556,7 @@ msgstr "%(pages)s páginas" #: bookwyrm/templates/annual_summary/layout.html:169 msgid "…and the longest" -msgstr "… y la más larga" +msgstr "… y el más largo" #: bookwyrm/templates/annual_summary/layout.html:200 #, python-format @@ -574,7 +578,7 @@ msgstr[1] "%(display_name)s dio %(ratings_total)s valoraciones,
su valorac #: bookwyrm/templates/annual_summary/layout.html:238 msgid "Their best rated review" -msgstr "Su mejor valoración" +msgstr "Su mejor reseña" #: bookwyrm/templates/annual_summary/layout.html:251 #, python-format @@ -584,7 +588,7 @@ msgstr "Su valoración: %(rating)s" #: bookwyrm/templates/annual_summary/layout.html:268 #, python-format msgid "All the books %(display_name)s read in %(year)s" -msgstr "Todos los libros que ha leído %(display_name)s en %(year)s" +msgstr "Todos los libros que %(display_name)s ha leído en %(year)s" #: bookwyrm/templates/author/author.html:18 #: bookwyrm/templates/author/author.html:19 @@ -593,7 +597,7 @@ msgstr "Editar Autor/Autora" #: bookwyrm/templates/author/author.html:35 msgid "Author details" -msgstr "Detalles sobre el/la autor/a" +msgstr "Información sobre le autore" #: bookwyrm/templates/author/author.html:39 #: bookwyrm/templates/author/edit_author.html:42 @@ -786,7 +790,7 @@ msgstr "Confirmar" #: bookwyrm/templates/book/book.html:19 msgid "Unable to connect to remote source." -msgstr "" +msgstr "No se ha podido conectar con la fuente remota." #: bookwyrm/templates/book/book.html:64 bookwyrm/templates/book/book.html:65 msgid "Edit Book" @@ -826,11 +830,11 @@ msgstr "Descripción:" msgid "%(count)s edition" msgid_plural "%(count)s editions" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%(count)s ediciones" #: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" -msgstr "Has guardado esta edición en la estantería de:" +msgstr "Has guardado esta edición en:" #: bookwyrm/templates/book/book.html:243 #, python-format @@ -1008,19 +1012,19 @@ msgstr "Idiomas:" #: bookwyrm/templates/book/edit/edit_book_form.html:86 msgid "Subjects:" -msgstr "" +msgstr "Temas:" #: bookwyrm/templates/book/edit/edit_book_form.html:90 msgid "Add subject" -msgstr "" +msgstr "Añadir tema" #: bookwyrm/templates/book/edit/edit_book_form.html:108 msgid "Remove subject" -msgstr "" +msgstr "Quitar tema" #: bookwyrm/templates/book/edit/edit_book_form.html:131 msgid "Add Another Subject" -msgstr "" +msgstr "Añadir otro tema" #: bookwyrm/templates/book/edit/edit_book_form.html:139 msgid "Publication" @@ -1059,7 +1063,7 @@ msgstr "Agregar Autores:" #: bookwyrm/templates/book/edit/edit_book_form.html:200 #: bookwyrm/templates/book/edit/edit_book_form.html:203 msgid "Add Author" -msgstr "Añadir Autor" +msgstr "Añadir autore" #: bookwyrm/templates/book/edit/edit_book_form.html:201 #: bookwyrm/templates/book/edit/edit_book_form.html:204 @@ -1120,11 +1124,11 @@ msgstr "Ediciones de \"%(work_title)s\"" #: bookwyrm/templates/book/editions/editions.html:55 msgid "Can't find the edition you're looking for?" -msgstr "" +msgstr "¿No encuentras la edición que buscas?" #: bookwyrm/templates/book/editions/editions.html:75 msgid "Add another edition" -msgstr "" +msgstr "Añadir edición" #: bookwyrm/templates/book/editions/format_filter.html:9 #: bookwyrm/templates/book/editions/language_filter.html:9 @@ -1169,7 +1173,7 @@ msgstr "Editar enlaces" #: bookwyrm/templates/book/file_links/edit_links.html:11 #, python-format msgid "Links for \"%(title)s\"" -msgstr "" +msgstr "Enlaces para «%(title)s»" #: bookwyrm/templates/book/file_links/edit_links.html:32 #: bookwyrm/templates/settings/link_domains/link_table.html:6 @@ -1195,7 +1199,6 @@ msgstr "Dominio" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -1341,7 +1344,7 @@ msgstr "Dirección de correo electrónico:" #: bookwyrm/templates/confirm_email/resend_modal.html:28 msgid "No user matching this email address found." -msgstr "" +msgstr "No hay usuarios con esta dirección de correo electrónico." #: bookwyrm/templates/confirm_email/resend_modal.html:38 msgid "Resend link" @@ -1363,7 +1366,7 @@ msgstr "Comunidad federada" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "Directorio" @@ -1373,7 +1376,7 @@ msgstr "Haz que tu perfil sea reconocible a otros usarios de BookWyrm." #: bookwyrm/templates/directory/directory.html:21 msgid "Join Directory" -msgstr "Unirse al Directorio" +msgstr "Unirse al directorio" #: bookwyrm/templates/directory/directory.html:24 #, python-format @@ -1449,37 +1452,37 @@ msgstr "Todos los usuarios conocidos" #: bookwyrm/templates/discover/card-header.html:8 #, python-format msgid "%(username)s wants to read %(book_title)s" -msgstr "%(username)s quiere leer %(book_title)s" +msgstr "%(username)s quiere leer %(book_title)s." #: bookwyrm/templates/discover/card-header.html:13 #, python-format msgid "%(username)s finished reading %(book_title)s" -msgstr "%(username)s ha terminado de leer %(book_title)s" +msgstr "%(username)s ha terminado de leer %(book_title)s." #: bookwyrm/templates/discover/card-header.html:18 #, python-format msgid "%(username)s started reading %(book_title)s" -msgstr "%(username)s ha empezado a leer %(book_title)s" +msgstr "%(username)s ha empezado a leer %(book_title)s." #: bookwyrm/templates/discover/card-header.html:23 #, python-format msgid "%(username)s rated %(book_title)s" -msgstr "%(username)s valoró %(book_title)s" +msgstr "%(username)s ha valorado %(book_title)s." #: bookwyrm/templates/discover/card-header.html:27 #, python-format msgid "%(username)s reviewed %(book_title)s" -msgstr "%(username)s reseñó %(book_title)s" +msgstr "%(username)s ha escrito una reseña de %(book_title)s." #: bookwyrm/templates/discover/card-header.html:31 #, python-format msgid "%(username)s commented on %(book_title)s" -msgstr "%(username)s comentó en %(book_title)s" +msgstr "%(username)s ha escrito un comentario en %(book_title)s" #: bookwyrm/templates/discover/card-header.html:35 #, python-format msgid "%(username)s quoted %(book_title)s" -msgstr "%(username)s citó %(book_title)s" +msgstr "%(username)s ha citado %(book_title)s" #: bookwyrm/templates/discover/discover.html:4 #: bookwyrm/templates/discover/discover.html:10 @@ -1606,12 +1609,12 @@ msgstr "Reestablece tu contraseña de %(site_name)s" msgid "%(site_name)s home page" msgstr "Página 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" msgstr "Comuníquese con el administrador del sitio" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" +msgid "Join BookWyrm" msgstr "Únete a BookWyrm" #: bookwyrm/templates/feed/direct_messages.html:8 @@ -1620,7 +1623,7 @@ msgid "Direct Messages with %(username)s" msgstr "Mensajes directos con %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "Mensajes directos" @@ -1657,7 +1660,7 @@ msgid "Updates" msgstr "Actualizaciones" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" msgstr "Tus libros" @@ -1667,11 +1670,11 @@ msgstr "¡No hay ningún libro aquí ahorita! Busca a un libro para empezar" #: bookwyrm/templates/feed/suggested_books.html:13 msgid "Do you have book data from another service like GoodReads?" -msgstr "" +msgstr "¿Tienes datos de otros servicios como GoodReads?" #: bookwyrm/templates/feed/suggested_books.html:16 msgid "Import your reading history" -msgstr "" +msgstr "Importa tu historial de lectura" #: bookwyrm/templates/feed/suggested_users.html:5 #: bookwyrm/templates/get_started/users.html:6 @@ -1914,7 +1917,7 @@ msgstr "Editar grupo" #: bookwyrm/templates/groups/members.html:11 msgid "Search to add a user" -msgstr "Buscar para agregar un usuario" +msgstr "Buscar para añadir une usuarie" #: bookwyrm/templates/groups/members.html:32 msgid "Leave group" @@ -1930,7 +1933,7 @@ msgstr "Te sigue" #: bookwyrm/templates/groups/suggested_users.html:7 msgid "Add new members!" -msgstr "¡Agrega nuevos miembros!" +msgstr "¡Añade miembros nuevos!" #: bookwyrm/templates/groups/suggested_users.html:20 #: bookwyrm/templates/snippets/suggested_users.html:16 @@ -2218,7 +2221,7 @@ msgid "Login" msgstr "Iniciar sesión" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Iniciar sesión" @@ -2227,7 +2230,7 @@ msgstr "Iniciar sesión" msgid "Success! Email address confirmed." msgstr "¡Éxito! Dirección de correo electrónico confirmada." -#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:178 +#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:122 #: bookwyrm/templates/ostatus/error.html:28 #: bookwyrm/templates/snippets/register_form.html:4 msgid "Username:" @@ -2235,12 +2238,12 @@ msgstr "Nombre de usuario:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Contraseña:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:184 +#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:128 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "¿Olvidaste tu contraseña?" @@ -2274,7 +2277,7 @@ msgstr "Buscar un libro o un usuario o una lista" #: bookwyrm/templates/layout.html:61 bookwyrm/templates/layout.html:62 msgid "Scan Barcode" -msgstr "" +msgstr "Escanear código de barras" #: bookwyrm/templates/layout.html:72 msgid "Main navigation menu" @@ -2284,54 +2287,38 @@ msgstr "Menú de navigación central" msgid "Feed" msgstr "Actividad" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -msgid "Settings" -msgstr "Configuración" - -#: 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 "Invitaciones" - -#: bookwyrm/templates/layout.html:147 -msgid "Log out" -msgstr "Cerrar sesión" - -#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156 +#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "Notificaciones" -#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 +#: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33 msgid "password" msgstr "contraseña" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "Unirse" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "Estado publicado con éxito" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "Error al publicar el estado" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "Documentación de Django" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "Apoyar %(site_name)s en %(support_title)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 GitHub." msgstr "BookWyrm es software de código abierto. Puedes contribuir o reportar problemas en GitHub." @@ -2371,7 +2358,7 @@ msgstr "Creado por %(username)s" #: bookwyrm/templates/lists/curate.html:12 msgid "Curate" -msgstr "Comisariar" +msgstr "Organizar sugerencias" #: bookwyrm/templates/lists/curate.html:21 msgid "Pending Books" @@ -2442,7 +2429,7 @@ msgstr "Cualquier usuario puede sugerir libros, en cuanto lo hayas aprobado" #: bookwyrm/templates/lists/form.html:65 msgctxt "curation type" msgid "Open" -msgstr "Abrir" +msgstr "Abierta" #: bookwyrm/templates/lists/form.html:68 msgid "Anyone can add books to this list" @@ -2487,7 +2474,7 @@ msgstr "Una nota opcional que se mostrará con el libro." #: bookwyrm/templates/lists/list.html:37 msgid "That book is already on this list." -msgstr "" +msgstr "El libro ya está en la lista." #: bookwyrm/templates/lists/list.html:45 msgid "You successfully suggested a book for this list!" @@ -2854,7 +2841,7 @@ msgstr "Oh-oh..." #: bookwyrm/templates/ostatus/subscribe.html:20 msgid "Let's log in first..." -msgstr "Iniciemos sesión primero..." +msgstr "Primero inicia sesión..." #: bookwyrm/templates/ostatus/subscribe.html:51 #, python-format @@ -2912,6 +2899,7 @@ msgstr "Editar perfil" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "Perfil" @@ -2921,7 +2909,7 @@ msgstr "Perfil" #: bookwyrm/templates/settings/site.html:77 #: bookwyrm/templates/setup/config.html:91 msgid "Display" -msgstr "" +msgstr "Apariencia" #: bookwyrm/templates/preferences/edit_user.html:14 #: bookwyrm/templates/preferences/edit_user.html:112 @@ -2951,7 +2939,7 @@ msgstr "Huso horario preferido:" #: bookwyrm/templates/preferences/edit_user.html:101 msgid "Theme:" -msgstr "" +msgstr "Tema:" #: bookwyrm/templates/preferences/edit_user.html:117 msgid "Manually approve followers" @@ -2959,7 +2947,7 @@ msgstr "Aprobar seguidores manualmente" #: bookwyrm/templates/preferences/edit_user.html:123 msgid "Hide followers and following on profile" -msgstr "" +msgstr "Ocultar a quién sigo y quién me sigue en el perfil." #: bookwyrm/templates/preferences/edit_user.html:128 msgid "Default post privacy:" @@ -2968,11 +2956,11 @@ msgstr "Privacidad de publicación por defecto:" #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 msgid "CSV Export" -msgstr "" +msgstr "Exportar CSV" #: bookwyrm/templates/preferences/export.html:13 msgid "Your export will include all the books on your shelves, books you have reviewed, and books with reading activity." -msgstr "" +msgstr "Se exportarán todos los libros que tengas en las estanterías, las reseñas y los libros que estés leyendo." #: bookwyrm/templates/preferences/layout.html:11 msgid "Account" @@ -3080,38 +3068,40 @@ msgstr "Reportar" msgid "\n" " Scan Barcode\n" " " -msgstr "" +msgstr "\n" +" Escanear código de barras\n" +" " #: bookwyrm/templates/search/barcode_modal.html:23 msgid "Requesting camera..." -msgstr "" +msgstr "Solicitando acceso a cámara..." #: bookwyrm/templates/search/barcode_modal.html:24 msgid "Grant access to the camera to scan a book's barcode." -msgstr "" +msgstr "Otorga acceso a la cámara para poder escanear el código de barras de tus libros." #: bookwyrm/templates/search/barcode_modal.html:29 msgid "Could not access camera" -msgstr "" +msgstr "No se ha podido acceder a la cámara." #: bookwyrm/templates/search/barcode_modal.html:33 msgctxt "barcode scanner" msgid "Scanning..." -msgstr "" +msgstr "Escaneando..." #: bookwyrm/templates/search/barcode_modal.html:34 msgid "Align your book's barcode with the camera." -msgstr "" +msgstr "Alinea el código de barras del libro con la cámara." #: bookwyrm/templates/search/barcode_modal.html:38 msgctxt "barcode scanner" msgid "ISBN scanned" -msgstr "" +msgstr "Se ha escaneado el ISBN." #: bookwyrm/templates/search/barcode_modal.html:39 msgctxt "followed by ISBN" msgid "Searching for book:" -msgstr "" +msgstr "Buscando libro:" #: bookwyrm/templates/search/book.html:44 msgid "Results from" @@ -3144,7 +3134,7 @@ msgstr "Tipo de búsqueda" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3211,7 +3201,7 @@ msgid "Create Announcement" msgstr "Crear anuncio" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Fecha agregada" @@ -3249,7 +3239,7 @@ msgstr "" #: bookwyrm/templates/settings/announcements/edit_announcement.html:57 msgid "Details:" -msgstr "" +msgstr "Información:" #: bookwyrm/templates/settings/announcements/edit_announcement.html:65 msgid "Event date:" @@ -3257,37 +3247,37 @@ msgstr "Fecha de evento:" #: bookwyrm/templates/settings/announcements/edit_announcement.html:73 msgid "Display settings" -msgstr "" +msgstr "Configurar apariencia" #: bookwyrm/templates/settings/announcements/edit_announcement.html:98 msgid "Color:" -msgstr "" +msgstr "Color:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 #: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" -msgstr "" +msgstr "Reglas de automoderación" #: bookwyrm/templates/settings/automod/rules.html:18 msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." -msgstr "" +msgstr "Las reglas de automoderación crearán informes sobre cualquier usuarie local o estado que coincidan con la cadena proporcionada." #: bookwyrm/templates/settings/automod/rules.html:19 msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." -msgstr "" +msgstr "No se marcarán les usuaries que ya hayan sido denunciades (sin importar si la denuncia se ha resuelto)." #: bookwyrm/templates/settings/automod/rules.html:26 msgid "Schedule:" -msgstr "" +msgstr "Programar:" #: bookwyrm/templates/settings/automod/rules.html:33 msgid "Last run:" -msgstr "" +msgstr "Última ejecución:" #: bookwyrm/templates/settings/automod/rules.html:40 msgid "Total run count:" -msgstr "" +msgstr "Ejecuciones totales:" #: bookwyrm/templates/settings/automod/rules.html:47 msgid "Enabled:" @@ -3295,59 +3285,59 @@ msgstr "" #: bookwyrm/templates/settings/automod/rules.html:59 msgid "Delete schedule" -msgstr "" +msgstr "Eliminar programación" #: bookwyrm/templates/settings/automod/rules.html:63 msgid "Run now" -msgstr "" +msgstr "Ejecutar" #: bookwyrm/templates/settings/automod/rules.html:64 msgid "Last run date will not be updated" -msgstr "" +msgstr "La última ejecución no se actualizará" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 msgid "Schedule scan" -msgstr "" +msgstr "Programar escaneo" #: bookwyrm/templates/settings/automod/rules.html:101 msgid "Successfully added rule" -msgstr "" +msgstr "Regla añadida correctamente" #: bookwyrm/templates/settings/automod/rules.html:107 msgid "Add Rule" -msgstr "" +msgstr "Añadir regla" #: bookwyrm/templates/settings/automod/rules.html:116 #: bookwyrm/templates/settings/automod/rules.html:160 msgid "String match" -msgstr "" +msgstr "Coincidencia de cadena" #: bookwyrm/templates/settings/automod/rules.html:126 #: bookwyrm/templates/settings/automod/rules.html:163 msgid "Flag users" -msgstr "" +msgstr "Marcar usuaries" #: bookwyrm/templates/settings/automod/rules.html:133 #: bookwyrm/templates/settings/automod/rules.html:166 msgid "Flag statuses" -msgstr "" +msgstr "Marcar estados" #: bookwyrm/templates/settings/automod/rules.html:140 msgid "Add rule" -msgstr "" +msgstr "Añadir regla" #: bookwyrm/templates/settings/automod/rules.html:147 msgid "Current Rules" -msgstr "" +msgstr "Reglas actuales" #: bookwyrm/templates/settings/automod/rules.html:151 msgid "Show rules" -msgstr "" +msgstr "Mostrar reglas" #: bookwyrm/templates/settings/automod/rules.html:188 msgid "Remove rule" -msgstr "" +msgstr "Quitar regla" #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 @@ -3398,7 +3388,7 @@ msgstr[1] "%(display_count)s solicitaciones de invitado" #: bookwyrm/templates/settings/dashboard/dashboard.html:79 #, python-format msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." -msgstr "" +msgstr "Hay una actualización disponible. La versión que estás usando es la %(current)s, mientras que la actual es %(available)s." #: bookwyrm/templates/settings/dashboard/dashboard.html:88 msgid "Instance Activity" @@ -3524,7 +3514,7 @@ msgstr "Versión:" #: bookwyrm/templates/settings/federation/instance.html:17 msgid "Refresh data" -msgstr "" +msgstr "Actualizar" #: bookwyrm/templates/settings/federation/instance.html:37 msgid "Details" @@ -3606,16 +3596,21 @@ msgstr "Se bloqueó exitosamente:" msgid "Failed:" msgstr "Falló:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Nombre de instancia" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "Última actualización" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Software" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "No se encontró ningun anuncio" @@ -3626,6 +3621,14 @@ msgstr "No se encontró ningun anuncio" msgid "Invite Requests" msgstr "Solicitudes de invitación" +#: 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 "Invitaciones" + #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 msgid "Ignored Invite Requests" msgstr "Solicitudes de invitación ignoradas" @@ -3645,7 +3648,7 @@ msgstr "Correo electronico" #: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 msgid "Answer" -msgstr "" +msgstr "Responder" #: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 msgid "Action" @@ -3800,7 +3803,7 @@ msgstr "Configuración de sitio" #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 msgid "Themes" -msgstr "" +msgstr "Temas" #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format @@ -3849,7 +3852,7 @@ msgstr "Actualización de tu denuncia:" #: bookwyrm/templates/settings/reports/report.html:36 msgid "Reported status" -msgstr "" +msgstr "Estado denunciado" #: bookwyrm/templates/settings/reports/report.html:38 msgid "Status has been deleted" @@ -3943,11 +3946,11 @@ msgstr "Registración" #: bookwyrm/templates/settings/site.html:22 msgid "Settings saved" -msgstr "" +msgstr "Configuración guardada" #: bookwyrm/templates/settings/site.html:31 msgid "Unable to save settings" -msgstr "" +msgstr "No se ha podido guardar la configuración." #: bookwyrm/templates/settings/site.html:47 msgid "Instance Name:" @@ -3995,7 +3998,7 @@ msgstr "Favicon:" #: bookwyrm/templates/settings/site.html:98 msgid "Default theme:" -msgstr "" +msgstr "Tema por defecto:" #: bookwyrm/templates/settings/site.html:113 msgid "Support link:" @@ -4031,11 +4034,11 @@ msgstr "Permitir solicitudes de invitación" #: bookwyrm/templates/settings/site.html:158 msgid "Set a question for invite requests" -msgstr "" +msgstr "Establece una pregunta para las solicitudes de invitación." #: bookwyrm/templates/settings/site.html:163 msgid "Question:" -msgstr "" +msgstr "Pregunta:" #: bookwyrm/templates/settings/site.html:168 msgid "Registration closed text:" @@ -4047,57 +4050,57 @@ msgstr "Texto de solicitud de invitación:" #: bookwyrm/templates/settings/themes.html:10 msgid "Set instance default theme" -msgstr "" +msgstr "Usar tema por defecto de la instancia" #: bookwyrm/templates/settings/themes.html:19 msgid "Successfully added theme" -msgstr "" +msgstr "El tema se ha añadido." #: bookwyrm/templates/settings/themes.html:26 msgid "How to add a theme" -msgstr "" +msgstr "¿Cómo añadir un tema?" #: bookwyrm/templates/settings/themes.html:29 msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." -msgstr "" +msgstr "Copia el nombre de archivo al directorio bookwyrm/static/css/themes en tu servidor desde la línea de comandos." #: bookwyrm/templates/settings/themes.html:32 msgid "Run ./bw-dev collectstatic." -msgstr "" +msgstr "Introduce ./bw-dev collectstatic." #: bookwyrm/templates/settings/themes.html:35 msgid "Add the file name using the form below to make it available in the application interface." -msgstr "" +msgstr "Añade el nombre de archivo del formulario que aparece acontinuación para que esté disponible en la aplicación." #: bookwyrm/templates/settings/themes.html:42 #: bookwyrm/templates/settings/themes.html:83 msgid "Add theme" -msgstr "" +msgstr "Añadir tema" #: bookwyrm/templates/settings/themes.html:48 msgid "Unable to save theme" -msgstr "" +msgstr "No se ha podido guardar el tema." #: bookwyrm/templates/settings/themes.html:64 #: bookwyrm/templates/settings/themes.html:94 msgid "Theme name" -msgstr "" +msgstr "Nombrar tema" #: bookwyrm/templates/settings/themes.html:74 msgid "Theme filename" -msgstr "" +msgstr "Nombre de archivo del tema" #: bookwyrm/templates/settings/themes.html:89 msgid "Available Themes" -msgstr "" +msgstr "Temas disponibles" #: bookwyrm/templates/settings/themes.html:97 msgid "File" -msgstr "" +msgstr "Archivo" #: bookwyrm/templates/settings/themes.html:112 msgid "Remove theme" -msgstr "" +msgstr "Quitar tema" #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32 @@ -4156,7 +4159,7 @@ msgstr "Ver perfil de usuario" #: bookwyrm/templates/settings/users/user_info.html:19 msgid "Go to user admin" -msgstr "" +msgstr "Ve a Administración de usuaries" #: bookwyrm/templates/settings/users/user_info.html:40 msgid "Local" @@ -4232,71 +4235,75 @@ msgstr "Nivel de acceso:" #: bookwyrm/templates/setup/admin.html:5 msgid "Set up BookWyrm" -msgstr "" +msgstr "Configura BookWyrm" #: bookwyrm/templates/setup/admin.html:7 msgid "Your account as a user and an admin" -msgstr "" +msgstr "Esta cuenta es de usuarie y admin." #: bookwyrm/templates/setup/admin.html:13 msgid "Create your account" -msgstr "" +msgstr "Crear cuenta" #: bookwyrm/templates/setup/admin.html:20 msgid "Admin key:" -msgstr "" +msgstr "Contraseña de administrador:" #: bookwyrm/templates/setup/admin.html:32 msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." -msgstr "" +msgstr "Al instalar BookWyrm, creaste una contraseña de administrador. Para obtenerla, usa el código ./bw-dev admin_code en la línea de comandos de tu servidor." #: bookwyrm/templates/setup/admin.html:45 msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." -msgstr "" +msgstr "Como admin, podrás configurar el nombre y descripción de la instancia, además de moderarla. Eso quiere decir que tienes acceso a información privada de tus usuarios y eres responsable de responder a denuncias y actuar ante comportamientos inadecuados o spam." #: bookwyrm/templates/setup/admin.html:51 msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." -msgstr "" +msgstr "Cuando la instancia esté lista, podrás otorgar permisos de moderación o administración a otres usuaries desde el panel de administración." #: bookwyrm/templates/setup/admin.html:55 msgid "Learn more about moderation" -msgstr "" +msgstr "Más información sobre moderación" #: bookwyrm/templates/setup/config.html:5 msgid "Instance Configuration" -msgstr "" +msgstr "Configurar instancia" #: bookwyrm/templates/setup/config.html:7 msgid "Make sure everything looks right before proceeding" -msgstr "" +msgstr "Asegúrate de que todo está tal y como quieres antes de seguir." #: bookwyrm/templates/setup/config.html:18 msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." -msgstr "" +msgstr "Estás ejecutando BookWyrm en modo debug. Este modo no debería usarse en un entrono de producción." #: bookwyrm/templates/setup/config.html:30 msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." -msgstr "" +msgstr "Parece que tu dominio no está bien configurado. No includas protocolos o barras diagonales." #: bookwyrm/templates/setup/config.html:42 msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "" +msgstr "Estás ejecutando BookWyrm en modo producción sin https. Activa USE_HTTPS." + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45 +msgid "Settings" +msgstr "Configuración" #: bookwyrm/templates/setup/config.html:56 msgid "Instance domain:" -msgstr "" +msgstr "Domino de la instancia:" #: bookwyrm/templates/setup/config.html:63 msgid "Protocol:" -msgstr "" +msgstr "Protocolo:" #: bookwyrm/templates/setup/config.html:81 msgid "Using S3:" -msgstr "" +msgstr "Usar S3:" #: bookwyrm/templates/setup/config.html:95 msgid "Default interface language:" -msgstr "" +msgstr "Idioma por defecto:" #: bookwyrm/templates/setup/config.html:102 msgid "Email sender:" @@ -4304,31 +4311,31 @@ msgstr "" #: bookwyrm/templates/setup/config.html:109 msgid "Enable preview images:" -msgstr "" +msgstr "Permitir previsualizar imágenes:" #: bookwyrm/templates/setup/config.html:116 msgid "Enable image thumbnails:" -msgstr "" +msgstr "Permitir miniaturas de imágenes:" #: bookwyrm/templates/setup/config.html:128 msgid "Does everything look right?" -msgstr "" +msgstr "¿Lo tienes todo a punto?" #: bookwyrm/templates/setup/config.html:130 msgid "This is your last chance to set your domain and protocol." -msgstr "" +msgstr "Esta es tu última oportunidad para establecer tu dominio y protocolo." #: bookwyrm/templates/setup/config.html:144 msgid "You can change your instance settings in the .env file on your server." -msgstr "" +msgstr "Puedes cambiar la configuración de tu instancia en el archivo .env de tu servidor." #: bookwyrm/templates/setup/config.html:148 msgid "View installation instructions" -msgstr "" +msgstr "Ver instrucciones de instalación" #: bookwyrm/templates/setup/layout.html:5 msgid "Instance Setup" -msgstr "" +msgstr "Configurar instancia" #: bookwyrm/templates/setup/layout.html:15 msgid "Installing BookWyrm" @@ -4336,7 +4343,7 @@ msgstr "" #: bookwyrm/templates/setup/layout.html:18 msgid "Need help?" -msgstr "" +msgstr "¿Necesitas ayuda?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 #: bookwyrm/templates/shelf/shelf.html:72 @@ -4485,7 +4492,7 @@ msgstr "Incluir alerta de spoiler" #: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 msgid "Spoilers/content warnings:" -msgstr "" +msgstr "Spoilers/Avisos de contenido:" #: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 msgid "Spoilers ahead!" @@ -4659,7 +4666,7 @@ msgstr "Establecer meta" #: bookwyrm/templates/snippets/goal_progress.html:7 msgctxt "Goal successfully completed" msgid "Success!" -msgstr "" +msgstr "¡Hecho!" #: bookwyrm/templates/snippets/goal_progress.html:9 #, python-format @@ -4737,7 +4744,7 @@ msgstr "Quiero leer \"%(book_title)s\"" #: bookwyrm/templates/snippets/register_form.html:18 msgid "Choose wisely! Your username cannot be changed." -msgstr "" +msgstr "¡Elige bien! No podrás cambiar tu nombre du usuarie más adelante." #: bookwyrm/templates/snippets/register_form.html:64 msgid "Sign Up" @@ -4923,7 +4930,7 @@ msgstr "Me gusta estado" #: bookwyrm/templates/snippets/status/status.html:10 msgid "boosted" -msgstr "difundió" +msgstr "lo difundió" #: bookwyrm/templates/snippets/status/status_options.html:7 #: bookwyrm/templates/snippets/user_options.html:7 @@ -5090,6 +5097,14 @@ msgstr[1] "%(mutuals_display)s seguidores que sigues" msgid "No followers you follow" msgstr "No le sigue nadie que tu sigas" +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "Ver perfil y más" + +#: bookwyrm/templates/user_menu.html:72 +msgid "Log out" +msgstr "Cerrar sesión" + #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 msgid "File exceeds maximum size: 10MB" msgstr "Archivo excede el tamaño máximo: 10MB" diff --git a/locale/fi_FI/LC_MESSAGES/django.mo b/locale/fi_FI/LC_MESSAGES/django.mo index fbde7d10..27e9faa8 100644 Binary files a/locale/fi_FI/LC_MESSAGES/django.mo and b/locale/fi_FI/LC_MESSAGES/django.mo differ diff --git a/locale/fi_FI/LC_MESSAGES/django.po b/locale/fi_FI/LC_MESSAGES/django.po index 6504dc60..f3f2ac4d 100644 --- a/locale/fi_FI/LC_MESSAGES/django.po +++ b/locale/fi_FI/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-31 15:40\n" +"POT-Creation-Date: 2022-04-08 21:00+0000\n" +"PO-Revision-Date: 2022-04-11 04:29\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Finnish\n" "Language: fi\n" @@ -165,14 +165,14 @@ msgstr "Pehmeäkantinen" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federoitu" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Estetty" @@ -187,7 +187,7 @@ msgstr "%(value)s ei ole kelvollinen remote_id" msgid "%(value)s is not a valid username" 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 msgid "username" msgstr "käyttäjänimi" @@ -293,45 +293,49 @@ msgstr "Español (espanja)" #: bookwyrm/settings.py:285 msgid "Galego (Galician)" -msgstr "Galego (galicia)" +msgstr "Galego (galego)" #: bookwyrm/settings.py:286 msgid "Italiano (Italian)" msgstr "Italiano (italia)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "suomi" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (ranska)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (liettua)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (norja)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (brasilianportugali)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (portugali)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "Română (romania)" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (ruotsi)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (yksinkertaistettu kiina)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (perinteinen kiina)" @@ -403,7 +407,7 @@ msgstr "%(site_name)s pyörii moderaattorien ja ylläpitäjien työllä. He myö msgid "Moderator" 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" msgstr "Ylläpitäjä" @@ -434,7 +438,7 @@ msgid "Software version:" msgstr "Ohjelmistoversio:" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "%(site_name)s — tietoja" @@ -1195,7 +1199,6 @@ msgstr "Verkkotunnus" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -1363,7 +1366,7 @@ msgstr "Yhteisö fediversumissa" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "Hakemisto" @@ -1606,12 +1609,12 @@ msgstr "Palauta %(site_name)s-salasanasi" msgid "%(site_name)s home page" 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" msgstr "Ota yhteyttä ylläpitäjään" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" +msgid "Join BookWyrm" msgstr "Liity BookWyrmiin" #: bookwyrm/templates/feed/direct_messages.html:8 @@ -1620,7 +1623,7 @@ msgid "Direct Messages with %(username)s" msgstr "Yksityisviestit käyttäjän %(username)s kanssa" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "Yksityisviestit" @@ -1657,7 +1660,7 @@ msgid "Updates" msgstr "Päivitykset" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" msgstr "Omat kirjat" @@ -2218,7 +2221,7 @@ msgid "Login" msgstr "Kirjaudu sisään" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Kirjaudu sisään" @@ -2227,7 +2230,7 @@ msgstr "Kirjaudu sisään" msgid "Success! Email address confirmed." 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/snippets/register_form.html:4 msgid "Username:" @@ -2235,12 +2238,12 @@ msgstr "Käyttäjänimi:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "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 msgid "Forgot your password?" msgstr "Unohtuiko salasana?" @@ -2284,54 +2287,38 @@ msgstr "Päävalikko" msgid "Feed" msgstr "Syöte" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -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/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "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" msgstr "salasana" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "Liity" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "Tilapäivitys onnistui" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "Virhe tilapäivityksessä" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "Käyttöohjeet" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "Tue %(site_name)s-sivustoa osoitteessa %(support_title)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 GitHub." msgstr "BookWyrmin lähdekoodi on avointa. Kehitystyöhön voi osallistua ja ongelmista voi ilmoittaa GitHubissa." @@ -2912,6 +2899,7 @@ msgstr "Muokkaa profiilia" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "Profiili" @@ -3146,7 +3134,7 @@ msgstr "Hakutyyppi" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3213,7 +3201,7 @@ msgid "Create Announcement" msgstr "Luo tiedote" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Lisätty" @@ -3608,16 +3596,21 @@ msgstr "Onnistuneesti estetyt:" msgid "Failed:" msgstr "Epäonnistuneet:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Palvelimen nimi" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "Viimeisin päivitys" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Ohjelmisto" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Palvelimia ei löytynyt" @@ -3628,6 +3621,14 @@ msgstr "Palvelimia ei löytynyt" msgid "Invite Requests" 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 msgid "Ignored Invite Requests" 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. USE_HTTPS should be enabled in production." msgstr "BookWyrm on tuotantokäytössä ilman https-protokollaa. Tuotantokäytössä tulee ottaa käyttöön USE_HTTPS-valinta." +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45 +msgid "Settings" +msgstr "Asetukset" + #: bookwyrm/templates/setup/config.html:56 msgid "Instance domain:" msgstr "Palvelimen verkkotunnus:" @@ -4851,7 +4856,7 @@ msgstr "kommentoi teosta %(book)s" #: bookwyrm/templates/snippets/status/headers/note.html:8 #, python-format msgid "replied to %(username)s's status" -msgstr "vastasi käyttäjän %(username)s tilapäivitykseen" +msgstr "vastasi käyttäjän %(username)s tilapäivitykseen" #: bookwyrm/templates/snippets/status/headers/quotation.html:8 #, python-format @@ -4925,7 +4930,7 @@ msgstr "Tykkää tilapäivityksestä" #: bookwyrm/templates/snippets/status/status.html:10 msgid "boosted" -msgstr "kaiutettu" +msgstr "kaiutti" #: bookwyrm/templates/snippets/status/status_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" 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 msgid "File exceeds maximum size: 10MB" msgstr "Tiedosto on enimmäiskokoa 10 Mt suurempi" diff --git a/locale/fr_FR/LC_MESSAGES/django.mo b/locale/fr_FR/LC_MESSAGES/django.mo index 6a956603..8bc56029 100644 Binary files a/locale/fr_FR/LC_MESSAGES/django.mo and b/locale/fr_FR/LC_MESSAGES/django.mo differ diff --git a/locale/fr_FR/LC_MESSAGES/django.po b/locale/fr_FR/LC_MESSAGES/django.po index 3fc7bbd3..1b472de9 100644 --- a/locale/fr_FR/LC_MESSAGES/django.po +++ b/locale/fr_FR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-27 10:08\n" +"POT-Creation-Date: 2022-04-08 21:00+0000\n" +"PO-Revision-Date: 2022-04-09 08:36\n" "Last-Translator: Mouse Reeve \n" "Language-Team: French\n" "Language: fr\n" @@ -165,14 +165,14 @@ msgstr "Couverture souple" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Fédéré" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Bloqué" @@ -187,7 +187,7 @@ msgstr "%(value)s n’est pas une remote_id valide." msgid "%(value)s is not a valid username" msgstr "%(value)s n’est 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 msgid "username" msgstr "nom du compte :" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano (italien)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "Suomi (finnois)" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lituanien)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (norvégien)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Portugais brésilien)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portugais européen)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "Română (roumain)" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Suédois)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简化字" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "Infos supplémentaires :" @@ -403,7 +407,7 @@ msgstr "L’administration et la modération de %(site_name)s maintiennent le si msgid "Moderator" 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" msgstr "Admin" @@ -434,7 +438,7 @@ msgid "Software version:" msgstr "Version logicielle :" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "À propos de %(site_name)s" @@ -1195,7 +1199,6 @@ msgstr "Domaine" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -1363,7 +1366,7 @@ msgstr "Communauté fédérée" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "Répertoire" @@ -1606,13 +1609,13 @@ msgstr "Réinitialiser votre mot de passe sur %(site_name)s" msgid "%(site_name)s home page" 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" msgstr "Contacter l’administrateur du site" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" -msgstr "Rejoignez Bookwyrm" +msgid "Join BookWyrm" +msgstr "Rejoindre BookWyrm" #: bookwyrm/templates/feed/direct_messages.html:8 #, python-format @@ -1620,7 +1623,7 @@ msgid "Direct Messages with %(username)s" msgstr "Messages directs avec %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "Messages directs" @@ -1657,7 +1660,7 @@ msgid "Updates" msgstr "Mises à jour" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" msgstr "Vos Livres" @@ -2218,7 +2221,7 @@ msgid "Login" msgstr "Connexion" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Se connecter" @@ -2227,7 +2230,7 @@ msgstr "Se connecter" msgid "Success! Email address confirmed." msgstr "Bravo ! L’adresse 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/snippets/register_form.html:4 msgid "Username:" @@ -2235,12 +2238,12 @@ msgstr "Nom du compte :" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "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 msgid "Forgot your password?" msgstr "Mot de passe oublié ?" @@ -2284,54 +2287,38 @@ msgstr "Menu de navigation principal " msgid "Feed" msgstr "Fil d’actualité" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -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/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "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" msgstr "Mot de passe" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "Rejoindre" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "Publié !" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "Erreur lors de la publication" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "Documentation" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "Soutenez %(site_name)s avec %(support_title)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 GitHub." msgstr "BookWyrm est un logiciel libre. Vous pouvez contribuer ou faire des rapports de bogues via GitHub." @@ -2912,6 +2899,7 @@ msgstr "Modifier le profil" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "Profil" @@ -3146,7 +3134,7 @@ msgstr "Type de recherche" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3213,7 +3201,7 @@ msgid "Create Announcement" msgstr "Ajouter une annonce" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Date d’ajout" @@ -3608,16 +3596,21 @@ msgstr "Blocage réussi :" msgid "Failed:" msgstr "Échec :" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Nom de l’instance" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "Dernière modification" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Logiciel" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Aucune instance trouvée" @@ -3628,6 +3621,14 @@ msgstr "Aucune instance trouvée" msgid "Invite Requests" msgstr "Demandes d’invitation" +#: 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 msgid "Ignored Invite Requests" 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. USE_HTTPS should be enabled in production." msgstr "Vous utilisez BookWyrm en mode production sans https. USE_HTTPS 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 msgid "Instance domain:" 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" 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 msgid "File exceeds maximum size: 10MB" msgstr "Ce fichier dépasse la taille limite : 10 Mo" diff --git a/locale/gl_ES/LC_MESSAGES/django.mo b/locale/gl_ES/LC_MESSAGES/django.mo index ef8386ae..94b9ad76 100644 Binary files a/locale/gl_ES/LC_MESSAGES/django.mo and b/locale/gl_ES/LC_MESSAGES/django.mo differ diff --git a/locale/gl_ES/LC_MESSAGES/django.po b/locale/gl_ES/LC_MESSAGES/django.po index c9b11af0..8d05e8d9 100644 --- a/locale/gl_ES/LC_MESSAGES/django.po +++ b/locale/gl_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-29 07:20\n" +"POT-Creation-Date: 2022-04-08 21:00+0000\n" +"PO-Revision-Date: 2022-04-09 14:02\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Galician\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 msgid "List Order" -msgstr "Orde da listaxe" +msgstr "Orde da lista" #: bookwyrm/forms/lists.py:27 msgid "Book Title" @@ -165,14 +165,14 @@ msgstr "En rústica" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federado" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Bloqueado" @@ -187,7 +187,7 @@ msgstr "%(value)s non é un remote_id válido" msgid "%(value)s is not a valid username" 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 msgid "username" msgstr "nome de usuaria" @@ -285,53 +285,57 @@ msgstr "English (Inglés)" #: bookwyrm/settings.py:283 msgid "Deutsch (German)" -msgstr "Alemán (Alemaña)" +msgstr "Deutsch (Alemán)" #: bookwyrm/settings.py:284 msgid "Español (Spanish)" -msgstr "Español (España)" +msgstr "Español (Español)" #: bookwyrm/settings.py:285 msgid "Galego (Galician)" -msgstr "Galego (Galician)" +msgstr "Galego (Galego)" #: bookwyrm/settings.py:286 msgid "Italiano (Italian)" -msgstr "Italiano (Italian)" +msgstr "Italiano (Italiano)" #: bookwyrm/settings.py:287 -msgid "Français (French)" -msgstr "Francés (Francia)" +msgid "Suomi (Finnish)" +msgstr "Suomi (Finés)" #: bookwyrm/settings.py:288 -msgid "Lietuvių (Lithuanian)" -msgstr "Lietuvių (Lithuanian)" +msgid "Français (French)" +msgstr "Français (Francés)" #: bookwyrm/settings.py:289 -msgid "Norsk (Norwegian)" -msgstr "Noruegués (Norwegian)" +msgid "Lietuvių (Lithuanian)" +msgstr "Lietuvių (Lituano)" #: bookwyrm/settings.py:290 +msgid "Norsk (Norwegian)" +msgstr "Norsk (Noruegués)" + +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Portugués brasileiro)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portugués europeo)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "Română (Rumanés)" -#: bookwyrm/settings.py:293 -msgid "Svenska (Swedish)" -msgstr "Sueco (Swedish)" - #: bookwyrm/settings.py:294 +msgid "Svenska (Swedish)" +msgstr "Svenska (Sueco)" + +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Chinés simplificado)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Chinés tradicional)" @@ -403,7 +407,7 @@ msgstr "A moderación e administración de %(site_name)s coidan e xestionan o si msgid "Moderator" 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" msgstr "Admin" @@ -434,7 +438,7 @@ msgid "Software version:" msgstr "Versión do software:" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "Acerca de %(site_name)s" @@ -877,11 +881,11 @@ msgstr "Lugares" #: bookwyrm/templates/search/layout.html:50 #: bookwyrm/templates/user/layout.html:85 msgid "Lists" -msgstr "Listaxes" +msgstr "Listas" #: bookwyrm/templates/book/book.html:377 msgid "Add to list" -msgstr "Engadir a listaxe" +msgstr "Engadir á lista" #: bookwyrm/templates/book/book.html:387 #: 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/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -1363,7 +1366,7 @@ msgstr "Comunidade federada" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "Directorio" @@ -1606,12 +1609,12 @@ msgstr "Restablece o contrasinal en %(site_name)s" msgid "%(site_name)s home page" 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" msgstr "Contacta coa administración" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" +msgid "Join BookWyrm" msgstr "Únete a BookWyrm" #: bookwyrm/templates/feed/direct_messages.html:8 @@ -1620,7 +1623,7 @@ msgid "Direct Messages with %(username)s" msgstr "Mensaxes Directas con %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "Mensaxes Directas" @@ -1657,7 +1660,7 @@ msgid "Updates" msgstr "Actualizacións" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" msgstr "Os teus libros" @@ -1906,7 +1909,7 @@ msgstr "Crear lista" #: bookwyrm/templates/groups/group.html:39 msgid "This group has no lists" -msgstr "Este grupo non ten listaxes" +msgstr "Este grupo non ten listas" #: bookwyrm/templates/groups/layout.html:17 msgid "Edit group" @@ -2218,7 +2221,7 @@ msgid "Login" msgstr "Acceder" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Accede" @@ -2227,7 +2230,7 @@ msgstr "Accede" msgid "Success! Email address confirmed." 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/snippets/register_form.html:4 msgid "Username:" @@ -2235,12 +2238,12 @@ msgstr "Nome de usuaria:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "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 msgid "Forgot your password?" msgstr "Esqueceches o contrasinal?" @@ -2282,56 +2285,40 @@ msgstr "Menú principal de navegación" #: bookwyrm/templates/layout.html:80 msgid "Feed" -msgstr "Fonte" +msgstr "Cronoloxía" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -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/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "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" msgstr "contrasinal" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "Únete" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "Publicación correcta" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "Erro ao publicar" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "Documentación" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "Axuda a %(site_name)s en %(support_title)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 GitHub." msgstr "O código fonte de BookWyrm é público. Podes colaborar ou informar de problemas en GitHub." @@ -2912,6 +2899,7 @@ msgstr "Editar perfil" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "Perfil" @@ -2921,7 +2909,7 @@ msgstr "Perfil" #: bookwyrm/templates/settings/site.html:77 #: bookwyrm/templates/setup/config.html:91 msgid "Display" -msgstr "Mostrar" +msgstr "Axustes" #: bookwyrm/templates/preferences/edit_user.html:14 #: 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:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3213,7 +3201,7 @@ msgid "Create Announcement" msgstr "Crear Anuncio" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Data engadida" @@ -3608,16 +3596,21 @@ msgstr "Bloqueaches a:" msgid "Failed:" msgstr "Fallou:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Nome da instancia" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "Última actualización" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Software" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Non hai instancias" @@ -3628,6 +3621,14 @@ msgstr "Non hai instancias" msgid "Invite Requests" 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 msgid "Ignored Invite Requests" 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. USE_HTTPS should be enabled in production." msgstr "Estás executando BookWyrm en modo produción sen https. En produción, USE_HTTPS 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 msgid "Instance domain:" 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 msgid "Review:" -msgstr "Recensión:" +msgstr "Revisar:" #: bookwyrm/templates/snippets/fav_button.html:16 #: bookwyrm/templates/snippets/fav_button.html:17 @@ -4610,8 +4615,8 @@ msgstr[1] "%(rating)s estrelas" #, python-format msgid "set a goal to read %(counter)s book in %(year)s" msgid_plural "set a goal to read %(counter)s books in %(year)s" -msgstr[0] "establecer obxectivo de %(counter)s libro ao %(year)s" -msgstr[1] "establecer obxectivo de ler %(counter)s libros ao %(year)s" +msgstr[0] "quere ler %(counter)s libro en %(year)s" +msgstr[1] "quere ler %(counter)s libros en %(year)s" #: bookwyrm/templates/snippets/generated_status/rating.html:3 #, python-format @@ -4891,7 +4896,7 @@ msgstr "comezou a ler %(book)s" #: bookwyrm/templates/snippets/status/headers/review.html:8 #, python-format msgid "reviewed %(book)s by %(author_name)s" -msgstr "revisou %(book)s de %(author_name)s" +msgstr "recensionou %(book)s de %(author_name)s" #: bookwyrm/templates/snippets/status/headers/review.html:15 #, python-format @@ -5067,7 +5072,7 @@ msgstr "Sen actividade!" #: bookwyrm/templates/user/user_preview.html:22 #, python-format msgid "Joined %(date)s" -msgstr "Uniuse en %(date)s" +msgstr "Desde hai %(date)s" #: bookwyrm/templates/user/user_preview.html:26 #, python-format @@ -5092,6 +5097,14 @@ msgstr[1] "%(mutuals_display)s seguidoras que segues" msgid "No followers you follow" 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 msgid "File exceeds maximum size: 10MB" msgstr "O ficheiro supera o tamaño máximo: 10MB" diff --git a/locale/it_IT/LC_MESSAGES/django.mo b/locale/it_IT/LC_MESSAGES/django.mo index 98423270..df949ed1 100644 Binary files a/locale/it_IT/LC_MESSAGES/django.mo and b/locale/it_IT/LC_MESSAGES/django.mo differ diff --git a/locale/it_IT/LC_MESSAGES/django.po b/locale/it_IT/LC_MESSAGES/django.po index 1fd99914..80b09cbe 100644 --- a/locale/it_IT/LC_MESSAGES/django.po +++ b/locale/it_IT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-27 11:26\n" +"POT-Creation-Date: 2022-04-08 21:00+0000\n" +"PO-Revision-Date: 2022-04-20 22:49\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Italian\n" "Language: it\n" @@ -165,14 +165,14 @@ msgstr "Brossura" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federato" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Bloccato" @@ -187,7 +187,7 @@ msgstr "%(value)s non è un Id remoto valido" msgid "%(value)s is not a valid username" 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 msgid "username" msgstr "nome utente" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano (Italiano)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "Suomi (Finlandese)" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (Francese)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lituano)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (Norvegese)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Portoghese Brasiliano)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Portoghese europeo)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "Rumeno (Romanian)" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Svedese)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Cinese Semplificato)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Cinese Tradizionale)" @@ -403,7 +407,7 @@ msgstr "I moderatori e gli amministratori di %(site_name)s mantengono il sito at msgid "Moderator" 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" msgstr "Admin" @@ -434,7 +438,7 @@ msgid "Software version:" msgstr "Versione del software:" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "Informazioni su %(site_name)s" @@ -1195,7 +1199,6 @@ msgstr "Dominio" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -1363,7 +1366,7 @@ msgstr "Comunità federata" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "Directory" @@ -1606,13 +1609,13 @@ msgstr "Reimposta la password di %(site_name)s" msgid "%(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" msgstr "Contatta amministratore del sito" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" -msgstr "Unisciti A Bookwyrm" +msgid "Join BookWyrm" +msgstr "Unisciti a BookWyrm" #: bookwyrm/templates/feed/direct_messages.html:8 #, python-format @@ -1620,7 +1623,7 @@ msgid "Direct Messages with %(username)s" msgstr "Messaggi diretti con %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "Messaggi Diretti" @@ -1657,7 +1660,7 @@ msgid "Updates" msgstr "Aggiornamenti" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" msgstr "I Tuoi Libri" @@ -2218,7 +2221,7 @@ msgid "Login" msgstr "Accedi" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Accedi" @@ -2227,7 +2230,7 @@ msgstr "Accedi" msgid "Success! Email address confirmed." 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/snippets/register_form.html:4 msgid "Username:" @@ -2235,12 +2238,12 @@ msgstr "Nome utente:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "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 msgid "Forgot your password?" msgstr "Hai dimenticato la tua password?" @@ -2284,54 +2287,38 @@ msgstr "Barra di navigazione principale" msgid "Feed" msgstr "Feed" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -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/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "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" msgstr "password" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "Entra" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "Stato pubblicato correttamente" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "Errore nel pubblicare lo stato" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "Documentazione" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "Supporta %(site_name)s su %(support_title)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 GitHub." msgstr "Il codice sorgente di BookWyrm è disponibile liberamente. Puoi contribuire o segnalare problemi su GitHub." @@ -2912,6 +2899,7 @@ msgstr "Modifica profilo" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "Profilo" @@ -3146,7 +3134,7 @@ msgstr "Tipo di ricerca" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3213,7 +3201,7 @@ msgid "Create Announcement" msgstr "Crea annuncio" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Data inserimento" @@ -3608,16 +3596,21 @@ msgstr "Bloccato con successo:" msgid "Failed:" msgstr "Non riuscito:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Nome dell'istanza" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "Ultimo aggiornamento" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Software" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Nessun istanza trovata" @@ -3628,6 +3621,14 @@ msgstr "Nessun istanza trovata" msgid "Invite Requests" 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 msgid "Ignored Invite Requests" msgstr "Richieste di invito ignorate" @@ -4158,7 +4159,7 @@ msgstr "Visualizza il profilo dell'utente" #: bookwyrm/templates/settings/users/user_info.html:19 msgid "Go to user admin" -msgstr "" +msgstr "Vai ad amministratore utente" #: bookwyrm/templates/settings/users/user_info.html:40 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. USE_HTTPS should be enabled in production." msgstr "Stai eseguendo BookWyrm in modalità di produzione senza https. USE_HTTPS 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 msgid "Instance domain:" msgstr "Dominio dell'istanza:" @@ -5092,6 +5097,14 @@ msgstr[1] "%(mutuals_display)s followers che segui" msgid "No followers you follow" 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 msgid "File exceeds maximum size: 10MB" msgstr "Il file supera la dimensione massima: 10MB" diff --git a/locale/lt_LT/LC_MESSAGES/django.mo b/locale/lt_LT/LC_MESSAGES/django.mo index fbd6af4e..034db685 100644 Binary files a/locale/lt_LT/LC_MESSAGES/django.mo and b/locale/lt_LT/LC_MESSAGES/django.mo differ diff --git a/locale/lt_LT/LC_MESSAGES/django.po b/locale/lt_LT/LC_MESSAGES/django.po index 80a5b32f..a5bb31df 100644 --- a/locale/lt_LT/LC_MESSAGES/django.po +++ b/locale/lt_LT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-31 15:40\n" +"POT-Creation-Date: 2022-04-08 21:00+0000\n" +"PO-Revision-Date: 2022-04-10 07:54\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Lithuanian\n" "Language: lt\n" @@ -48,7 +48,7 @@ msgstr "Skaitymo pabaigos data negali būti prieš skaitymo pradžios datą." #: bookwyrm/forms/landing.py:32 msgid "User with this username already exists" -msgstr "" +msgstr "Toks naudotojo vardas jau egzistuoja" #: bookwyrm/forms/landing.py:41 msgid "A user with this email already exists." @@ -56,11 +56,11 @@ msgstr "Vartotojas su šiuo el. pašto adresu jau yra." #: bookwyrm/forms/links.py:36 msgid "This domain is blocked. Please contact your administrator if you think this is an error." -msgstr "" +msgstr "Šis domenas užblokuotas. Jei manote, kad tai klaida, susisiekite su savo administratoriumi." #: bookwyrm/forms/links.py:46 msgid "This link with file type has already been added for this book. If it is not visible, the domain is still pending." -msgstr "" +msgstr "Ši nuoroda su failo tipu knygai jau buvo pridėta. Jei nematote, reiškia dar laukiama domeno." #: bookwyrm/forms/lists.py:26 msgid "List Order" @@ -98,11 +98,11 @@ msgstr "Nepavyko rasti tokios knygos" #: bookwyrm/models/announcement.py:11 msgid "Primary" -msgstr "" +msgstr "Pirminis" #: bookwyrm/models/announcement.py:12 msgid "Success" -msgstr "" +msgstr "Sėkmingai" #: bookwyrm/models/announcement.py:13 #: bookwyrm/templates/settings/invites/manage_invites.html:47 @@ -111,15 +111,15 @@ msgstr "Nuoroda" #: bookwyrm/models/announcement.py:14 msgid "Warning" -msgstr "" +msgstr "Įspėjimas" #: bookwyrm/models/announcement.py:15 msgid "Danger" -msgstr "" +msgstr "Pavojus" #: bookwyrm/models/antispam.py:106 bookwyrm/models/antispam.py:140 msgid "Automatically generated report" -msgstr "" +msgstr "Automatiškai sugeneruota ataskaita" #: bookwyrm/models/base_model.py:17 bookwyrm/models/link.py:72 #: bookwyrm/templates/import/import_status.html:200 @@ -165,14 +165,14 @@ msgstr "Knyga minkštais viršeliais" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Susijungę" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Užblokuoti" @@ -187,7 +187,7 @@ msgstr "%(value)s yra negaliojantis remote_id" msgid "%(value)s is not a valid username" msgstr "%(value)s yra negaliojantis naudotojo vardas" -#: bookwyrm/models/fields.py:181 bookwyrm/templates/layout.html:179 +#: bookwyrm/models/fields.py:181 bookwyrm/templates/layout.html:123 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "naudotojo vardas" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italų (Italian)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "Suomi (suomių)" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (Prancūzų)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norvegų (Norwegian)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português brasileiro (Brazilijos portugalų)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Europos portugalų)" -#: bookwyrm/settings.py:292 -msgid "Română (Romanian)" -msgstr "" - #: bookwyrm/settings.py:293 +msgid "Română (Romanian)" +msgstr "Română (rumunų)" + +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Švedų)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Supaprastinta kinų)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Tradicinė kinų)" @@ -403,7 +407,7 @@ msgstr "Svetainės %(site_name)s moderatoriai ir administratoriai nuolat atnauji msgid "Moderator" msgstr "Moderatorius" -#: bookwyrm/templates/about/about.html:117 bookwyrm/templates/layout.html:140 +#: bookwyrm/templates/about/about.html:117 bookwyrm/templates/user_menu.html:63 msgid "Admin" msgstr "Administravimas" @@ -434,7 +438,7 @@ msgid "Software version:" msgstr "Serverio programinės įrangos versija:" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "Apie %(site_name)s" @@ -794,7 +798,7 @@ msgstr "Patvirtinti" #: bookwyrm/templates/book/book.html:19 msgid "Unable to connect to remote source." -msgstr "" +msgstr "Nepavyksta prisijungti prie nuotolinio šaltinio." #: bookwyrm/templates/book/book.html:64 bookwyrm/templates/book/book.html:65 msgid "Edit Book" @@ -835,10 +839,10 @@ msgstr "Aprašymas:" #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%(count)s leidimas" +msgstr[1] "%(count)s leidimai" +msgstr[2] "%(count)s leidimai" +msgstr[3] "%(count)s leidimai" #: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" @@ -1020,19 +1024,19 @@ msgstr "Kalbos:" #: bookwyrm/templates/book/edit/edit_book_form.html:86 msgid "Subjects:" -msgstr "" +msgstr "Temos:" #: bookwyrm/templates/book/edit/edit_book_form.html:90 msgid "Add subject" -msgstr "" +msgstr "Pridėti temą" #: bookwyrm/templates/book/edit/edit_book_form.html:108 msgid "Remove subject" -msgstr "" +msgstr "Pašalinti temą" #: bookwyrm/templates/book/edit/edit_book_form.html:131 msgid "Add Another Subject" -msgstr "" +msgstr "Pridėti kitą temą" #: bookwyrm/templates/book/edit/edit_book_form.html:139 msgid "Publication" @@ -1132,11 +1136,11 @@ msgstr "\"%(work_title)s\" leidimai" #: bookwyrm/templates/book/editions/editions.html:55 msgid "Can't find the edition you're looking for?" -msgstr "" +msgstr "Nepavyksta rasti norimo leidimo?" #: bookwyrm/templates/book/editions/editions.html:75 msgid "Add another edition" -msgstr "" +msgstr "Pridėti kitą leidimą" #: bookwyrm/templates/book/editions/format_filter.html:9 #: bookwyrm/templates/book/editions/language_filter.html:9 @@ -1181,7 +1185,7 @@ msgstr "Redaguoti nuorodas" #: bookwyrm/templates/book/file_links/edit_links.html:11 #, python-format msgid "Links for \"%(title)s\"" -msgstr "" +msgstr "Nuorodos, skirtos „%(title)s“" #: bookwyrm/templates/book/file_links/edit_links.html:32 #: bookwyrm/templates/settings/link_domains/link_table.html:6 @@ -1207,7 +1211,6 @@ msgstr "Domenas" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -1353,7 +1356,7 @@ msgstr "El. pašto adresas:" #: bookwyrm/templates/confirm_email/resend_modal.html:28 msgid "No user matching this email address found." -msgstr "" +msgstr "Naudotojas su šiuo el. pašto adresu nerastas." #: bookwyrm/templates/confirm_email/resend_modal.html:38 msgid "Resend link" @@ -1375,7 +1378,7 @@ msgstr "Sujungta bendruomenė" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "Bendruomenė" @@ -1622,13 +1625,13 @@ msgstr "Keisti %(site_name)s slaptažodį" msgid "%(site_name)s home page" msgstr "%(site_name)s pagrindinis puslapis" -#: bookwyrm/templates/embed-layout.html:40 bookwyrm/templates/layout.html:242 +#: bookwyrm/templates/embed-layout.html:40 bookwyrm/templates/layout.html:186 msgid "Contact site admin" msgstr "Puslapio administratorius" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" -msgstr "Prisijunkite prie „Bookwyrm“" +msgid "Join BookWyrm" +msgstr "Prisijunkite prie „BookWyrm“" #: bookwyrm/templates/feed/direct_messages.html:8 #, python-format @@ -1636,7 +1639,7 @@ msgid "Direct Messages with %(username)s" msgstr "Asmeninis susirašinėjimas su %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "Asmeninės žinutės" @@ -1673,7 +1676,7 @@ msgid "Updates" msgstr "Atnaujinimai" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" msgstr "Jūsų knygos" @@ -1683,11 +1686,11 @@ msgstr "Knygų neturite. Raskite knygą ir pradėkite." #: bookwyrm/templates/feed/suggested_books.html:13 msgid "Do you have book data from another service like GoodReads?" -msgstr "" +msgstr "Ar turite su knygomis susijusių duomenų iš kitų paslaugų tiekėjų, pvz., „GoodReads“?" #: bookwyrm/templates/feed/suggested_books.html:16 msgid "Import your reading history" -msgstr "" +msgstr "Importuokite savo skaitymo istoriją" #: bookwyrm/templates/feed/suggested_users.html:5 #: bookwyrm/templates/get_started/users.html:6 @@ -2242,7 +2245,7 @@ msgid "Login" msgstr "Prisijungti" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Prisijunkite" @@ -2251,7 +2254,7 @@ msgstr "Prisijunkite" msgid "Success! Email address confirmed." msgstr "Džiugu, el. pašto adresas patvirtintas." -#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:178 +#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:122 #: bookwyrm/templates/ostatus/error.html:28 #: bookwyrm/templates/snippets/register_form.html:4 msgid "Username:" @@ -2259,12 +2262,12 @@ msgstr "Naudotojo vardas:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Slaptažodis:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:184 +#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:128 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Pamiršote slaptažodį?" @@ -2298,7 +2301,7 @@ msgstr "Ieškoti knygos, naudotojo arba sąrašo" #: bookwyrm/templates/layout.html:61 bookwyrm/templates/layout.html:62 msgid "Scan Barcode" -msgstr "" +msgstr "Skenuoti brūkšninį kodą" #: bookwyrm/templates/layout.html:72 msgid "Main navigation menu" @@ -2308,54 +2311,38 @@ msgstr "Pagrindinis navigacijos meniu" msgid "Feed" msgstr "Srautas" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -msgid "Settings" -msgstr "Nustatymai" - -#: 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 "Pakvietimai" - -#: bookwyrm/templates/layout.html:147 -msgid "Log out" -msgstr "Atsijungti" - -#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156 +#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "Pranešimai" -#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 +#: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33 msgid "password" msgstr "slaptažodis" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "Prisijungti" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "Būsena publikuota sėkmingai" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "Klaida, publikuojant būseną" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "Dokumentacija" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "Paremkite %(site_name)s per %(support_title)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 GitHub." msgstr "„BookWyrm“ šaltinio kodas yra laisvai prieinamas. Galite prisidėti arba pranešti apie klaidas per GitHub." @@ -2511,7 +2498,7 @@ msgstr "Papildomi užrašai, kurie rodomi kartu su knyga." #: bookwyrm/templates/lists/list.html:37 msgid "That book is already on this list." -msgstr "" +msgstr "Knyga jau yra sąraše." #: bookwyrm/templates/lists/list.html:45 msgid "You successfully suggested a book for this list!" @@ -2936,6 +2923,7 @@ msgstr "Redaguoti paskyrą" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "Paskyra" @@ -2945,7 +2933,7 @@ msgstr "Paskyra" #: bookwyrm/templates/settings/site.html:77 #: bookwyrm/templates/setup/config.html:91 msgid "Display" -msgstr "" +msgstr "Rodyti" #: bookwyrm/templates/preferences/edit_user.html:14 #: bookwyrm/templates/preferences/edit_user.html:112 @@ -2975,7 +2963,7 @@ msgstr "Laiko juosta: " #: bookwyrm/templates/preferences/edit_user.html:101 msgid "Theme:" -msgstr "" +msgstr "Grafinis apvalkalas:" #: bookwyrm/templates/preferences/edit_user.html:117 msgid "Manually approve followers" @@ -2983,7 +2971,7 @@ msgstr "Noriu tvirtinti sekėjus" #: bookwyrm/templates/preferences/edit_user.html:123 msgid "Hide followers and following on profile" -msgstr "" +msgstr "Slėpti paskyros sekėjus" #: bookwyrm/templates/preferences/edit_user.html:128 msgid "Default post privacy:" @@ -2992,11 +2980,11 @@ msgstr "Numatytasis įrašo privatumas:" #: bookwyrm/templates/preferences/export.html:4 #: bookwyrm/templates/preferences/export.html:7 msgid "CSV Export" -msgstr "" +msgstr "CSV eksportas" #: bookwyrm/templates/preferences/export.html:13 msgid "Your export will include all the books on your shelves, books you have reviewed, and books with reading activity." -msgstr "" +msgstr "Į eksportavimą įeis visos jūsų lentynose esančios knygos, peržiūrėtos knygos bei tos, kurias neseniai skaitėte." #: bookwyrm/templates/preferences/layout.html:11 msgid "Account" @@ -3004,11 +2992,11 @@ msgstr "Paskyra" #: bookwyrm/templates/preferences/layout.html:27 msgid "Data" -msgstr "" +msgstr "Duomenys" #: bookwyrm/templates/preferences/layout.html:35 msgid "CSV export" -msgstr "" +msgstr "CSV eksportas" #: bookwyrm/templates/preferences/layout.html:38 msgid "Relationships" @@ -3104,38 +3092,40 @@ msgstr "Pranešti" msgid "\n" " Scan Barcode\n" " " -msgstr "" +msgstr "\n" +" Nuskaityti barkodą\n" +" " #: bookwyrm/templates/search/barcode_modal.html:23 msgid "Requesting camera..." -msgstr "" +msgstr "Reikia kameros..." #: bookwyrm/templates/search/barcode_modal.html:24 msgid "Grant access to the camera to scan a book's barcode." -msgstr "" +msgstr "Suteikite prieigą prie kameros, kad galėtumėte nuskaityti knygos barkodą." #: bookwyrm/templates/search/barcode_modal.html:29 msgid "Could not access camera" -msgstr "" +msgstr "Nepavyko pasiekti kameros" #: bookwyrm/templates/search/barcode_modal.html:33 msgctxt "barcode scanner" msgid "Scanning..." -msgstr "" +msgstr "Skenuojama..." #: bookwyrm/templates/search/barcode_modal.html:34 msgid "Align your book's barcode with the camera." -msgstr "" +msgstr "Kamerą laikykite virš barkodo." #: bookwyrm/templates/search/barcode_modal.html:38 msgctxt "barcode scanner" msgid "ISBN scanned" -msgstr "" +msgstr "ISBN nuskaitytas" #: bookwyrm/templates/search/barcode_modal.html:39 msgctxt "followed by ISBN" msgid "Searching for book:" -msgstr "" +msgstr "Ieškoma knygos:" #: bookwyrm/templates/search/book.html:44 msgid "Results from" @@ -3168,7 +3158,7 @@ msgstr "Paieškos tipas" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3235,7 +3225,7 @@ msgid "Create Announcement" msgstr "Sukurti pranešimą" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Pridėjimo data" @@ -3269,11 +3259,11 @@ msgstr "Redaguoti pranešimą" #: bookwyrm/templates/settings/announcements/edit_announcement.html:45 msgid "Announcement content" -msgstr "" +msgstr "Pranešimo turinys" #: bookwyrm/templates/settings/announcements/edit_announcement.html:57 msgid "Details:" -msgstr "" +msgstr "Išsami informacija:" #: bookwyrm/templates/settings/announcements/edit_announcement.html:65 msgid "Event date:" @@ -3281,97 +3271,97 @@ msgstr "Įvykio data:" #: bookwyrm/templates/settings/announcements/edit_announcement.html:73 msgid "Display settings" -msgstr "" +msgstr "Ekrano nustatymai" #: bookwyrm/templates/settings/announcements/edit_announcement.html:98 msgid "Color:" -msgstr "" +msgstr "Spalva:" #: bookwyrm/templates/settings/automod/rules.html:7 #: bookwyrm/templates/settings/automod/rules.html:11 #: bookwyrm/templates/settings/layout.html:61 msgid "Auto-moderation rules" -msgstr "" +msgstr "Automatinio moderavimo taisyklės" #: bookwyrm/templates/settings/automod/rules.html:18 msgid "Auto-moderation rules will create reports for any local user or status with fields matching the provided string." -msgstr "" +msgstr "Automatinio moderavimo taisyklės sukurs ataskaitas bet kokiam naudotojui arba būsenai su laukeliais, kurie atitinka pateiktą informaciją." #: bookwyrm/templates/settings/automod/rules.html:19 msgid "Users or statuses that have already been reported (regardless of whether the report was resolved) will not be flagged." -msgstr "" +msgstr "Nebus žymimi naudotojai arba būsenos, apie kurias jau pranešta (nepaisant to, ar pranešimas jau išspręstas ir uždarytas)." #: bookwyrm/templates/settings/automod/rules.html:26 msgid "Schedule:" -msgstr "" +msgstr "Tvarkaraštis:" #: bookwyrm/templates/settings/automod/rules.html:33 msgid "Last run:" -msgstr "" +msgstr "Pastarąjį kartą leista:" #: bookwyrm/templates/settings/automod/rules.html:40 msgid "Total run count:" -msgstr "" +msgstr "Iš viso leista kartų:" #: bookwyrm/templates/settings/automod/rules.html:47 msgid "Enabled:" -msgstr "" +msgstr "Įjungta:" #: bookwyrm/templates/settings/automod/rules.html:59 msgid "Delete schedule" -msgstr "" +msgstr "Ištrinti tvarkaraštį" #: bookwyrm/templates/settings/automod/rules.html:63 msgid "Run now" -msgstr "" +msgstr "Paleisti dabar" #: bookwyrm/templates/settings/automod/rules.html:64 msgid "Last run date will not be updated" -msgstr "" +msgstr "Pastarojo leidimo data nebus atnaujinta" #: bookwyrm/templates/settings/automod/rules.html:69 #: bookwyrm/templates/settings/automod/rules.html:92 msgid "Schedule scan" -msgstr "" +msgstr "Nustatyti skanavimą" #: bookwyrm/templates/settings/automod/rules.html:101 msgid "Successfully added rule" -msgstr "" +msgstr "Taisyklė pridėta sėkmingai" #: bookwyrm/templates/settings/automod/rules.html:107 msgid "Add Rule" -msgstr "" +msgstr "Pridėti taisyklę" #: bookwyrm/templates/settings/automod/rules.html:116 #: bookwyrm/templates/settings/automod/rules.html:160 msgid "String match" -msgstr "" +msgstr "Eilutės sutapimas" #: bookwyrm/templates/settings/automod/rules.html:126 #: bookwyrm/templates/settings/automod/rules.html:163 msgid "Flag users" -msgstr "" +msgstr "Pažymėti naudotojus" #: bookwyrm/templates/settings/automod/rules.html:133 #: bookwyrm/templates/settings/automod/rules.html:166 msgid "Flag statuses" -msgstr "" +msgstr "Žymėjimo būsenos" #: bookwyrm/templates/settings/automod/rules.html:140 msgid "Add rule" -msgstr "" +msgstr "Pridėti taisyklę" #: bookwyrm/templates/settings/automod/rules.html:147 msgid "Current Rules" -msgstr "" +msgstr "Esamos taisyklės" #: bookwyrm/templates/settings/automod/rules.html:151 msgid "Show rules" -msgstr "" +msgstr "Rodyti taisykles" #: bookwyrm/templates/settings/automod/rules.html:188 msgid "Remove rule" -msgstr "" +msgstr "Pašalinti taisyklę" #: bookwyrm/templates/settings/dashboard/dashboard.html:6 #: bookwyrm/templates/settings/dashboard/dashboard.html:8 @@ -3428,7 +3418,7 @@ msgstr[3] "%(display_count)s prašymai pakviesti" #: bookwyrm/templates/settings/dashboard/dashboard.html:79 #, python-format msgid "An update is available! You're running v%(current)s and the latest release is %(available)s." -msgstr "" +msgstr "Jau yra naujinys. Jūsų versija – %(current)s, o naujausia –%(available)s." #: bookwyrm/templates/settings/dashboard/dashboard.html:88 msgid "Instance Activity" @@ -3556,7 +3546,7 @@ msgstr "Versija:" #: bookwyrm/templates/settings/federation/instance.html:17 msgid "Refresh data" -msgstr "" +msgstr "Atnaujinti duomenis" #: bookwyrm/templates/settings/federation/instance.html:37 msgid "Details" @@ -3638,16 +3628,21 @@ msgstr "Sėkmingai užblokuota:" msgid "Failed:" msgstr "Nepavyko:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Serverio pavadinimas" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "Paskutinį kartą atnaujinta" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Programinė įranga" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Serverių nerasta" @@ -3658,6 +3653,14 @@ msgstr "Serverių nerasta" msgid "Invite Requests" msgstr "Kvietimo prašymai" +#: 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 "Pakvietimai" + #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 msgid "Ignored Invite Requests" msgstr "Ignoruoti kvietimo prašymai" @@ -3677,7 +3680,7 @@ msgstr "El. paštas" #: bookwyrm/templates/settings/invites/manage_invite_requests.html:44 msgid "Answer" -msgstr "" +msgstr "Atsakyti" #: bookwyrm/templates/settings/invites/manage_invite_requests.html:50 msgid "Action" @@ -3832,7 +3835,7 @@ msgstr "Puslapio nustatymai" #: bookwyrm/templates/settings/themes.html:4 #: bookwyrm/templates/settings/themes.html:6 msgid "Themes" -msgstr "" +msgstr "Temos" #: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:5 #, python-format @@ -3881,7 +3884,7 @@ msgstr "Naujausia informacija apie jūsų pranešimą:" #: bookwyrm/templates/settings/reports/report.html:36 msgid "Reported status" -msgstr "" +msgstr "Pranešta būsena" #: bookwyrm/templates/settings/reports/report.html:38 msgid "Status has been deleted" @@ -3975,11 +3978,11 @@ msgstr "Registracija" #: bookwyrm/templates/settings/site.html:22 msgid "Settings saved" -msgstr "" +msgstr "Nustatymai išsaugoti" #: bookwyrm/templates/settings/site.html:31 msgid "Unable to save settings" -msgstr "" +msgstr "Nepavyko išsaugoti nustatymų" #: bookwyrm/templates/settings/site.html:47 msgid "Instance Name:" @@ -4027,7 +4030,7 @@ msgstr "Puslapio ikonėlė:" #: bookwyrm/templates/settings/site.html:98 msgid "Default theme:" -msgstr "" +msgstr "Numatytoji tema:" #: bookwyrm/templates/settings/site.html:113 msgid "Support link:" @@ -4063,11 +4066,11 @@ msgstr "Leisti prašyti kvietimų" #: bookwyrm/templates/settings/site.html:158 msgid "Set a question for invite requests" -msgstr "" +msgstr "Kvietimo užklausoms parinkite klausimą" #: bookwyrm/templates/settings/site.html:163 msgid "Question:" -msgstr "" +msgstr "Klausimas:" #: bookwyrm/templates/settings/site.html:168 msgid "Registration closed text:" @@ -4079,57 +4082,57 @@ msgstr "Kvietimo prašymo tekstas:" #: bookwyrm/templates/settings/themes.html:10 msgid "Set instance default theme" -msgstr "" +msgstr "Nustatyti numatytąją serverio temą" #: bookwyrm/templates/settings/themes.html:19 msgid "Successfully added theme" -msgstr "" +msgstr "Tema pridėta sėkmingai" #: bookwyrm/templates/settings/themes.html:26 msgid "How to add a theme" -msgstr "" +msgstr "Kaip pridėti temą" #: bookwyrm/templates/settings/themes.html:29 msgid "Copy the theme file into the bookwyrm/static/css/themes directory on your server from the command line." -msgstr "" +msgstr "Nukopijuokite fialus į serverio katalogą bookwyrm/static/css/themes iš komandinės eilutės." #: bookwyrm/templates/settings/themes.html:32 msgid "Run ./bw-dev collectstatic." -msgstr "" +msgstr "Paleiskite ./bw-dev collectstatic." #: bookwyrm/templates/settings/themes.html:35 msgid "Add the file name using the form below to make it available in the application interface." -msgstr "" +msgstr "Pridėkite failo pavadinimą, naudodamiesi žemiau esančia forma, kad jis atsirastų programėlėje." #: bookwyrm/templates/settings/themes.html:42 #: bookwyrm/templates/settings/themes.html:83 msgid "Add theme" -msgstr "" +msgstr "Pridėti temą" #: bookwyrm/templates/settings/themes.html:48 msgid "Unable to save theme" -msgstr "" +msgstr "Nepavyko išsaugoti temos" #: bookwyrm/templates/settings/themes.html:64 #: bookwyrm/templates/settings/themes.html:94 msgid "Theme name" -msgstr "" +msgstr "Temos pavadinimas" #: bookwyrm/templates/settings/themes.html:74 msgid "Theme filename" -msgstr "" +msgstr "Temos failo vardas" #: bookwyrm/templates/settings/themes.html:89 msgid "Available Themes" -msgstr "" +msgstr "Galimos temos" #: bookwyrm/templates/settings/themes.html:97 msgid "File" -msgstr "" +msgstr "Failas" #: bookwyrm/templates/settings/themes.html:112 msgid "Remove theme" -msgstr "" +msgstr "Pašalinti temą" #: bookwyrm/templates/settings/users/delete_user_form.html:5 #: bookwyrm/templates/settings/users/user_moderation_actions.html:32 @@ -4188,7 +4191,7 @@ msgstr "Peržiūrėti nario paskyrą" #: bookwyrm/templates/settings/users/user_info.html:19 msgid "Go to user admin" -msgstr "" +msgstr "Eiti į administratoriaus naudotoją" #: bookwyrm/templates/settings/users/user_info.html:40 msgid "Local" @@ -4216,7 +4219,7 @@ msgstr "Užblokavę:" #: bookwyrm/templates/settings/users/user_info.html:74 msgid "Date added:" -msgstr "" +msgstr "Pridėjimo data:" #: bookwyrm/templates/settings/users/user_info.html:77 msgid "Last active date:" @@ -4264,111 +4267,115 @@ msgstr "Priėjimo lygis:" #: bookwyrm/templates/setup/admin.html:5 msgid "Set up BookWyrm" -msgstr "" +msgstr "Nustatyti „BookWyrm“" #: bookwyrm/templates/setup/admin.html:7 msgid "Your account as a user and an admin" -msgstr "" +msgstr "Jūsų, kaip naudotojo ir administratoriaus paskyra" #: bookwyrm/templates/setup/admin.html:13 msgid "Create your account" -msgstr "" +msgstr "Kurti paskyrą" #: bookwyrm/templates/setup/admin.html:20 msgid "Admin key:" -msgstr "" +msgstr "Administratoriaus raktas:" #: bookwyrm/templates/setup/admin.html:32 msgid "An admin key was created when you installed BookWyrm. You can get your admin key by running ./bw-dev admin_code from the command line on your server." -msgstr "" +msgstr "„BookWyrm“ buvo sukurtas ir įdiegtas administratoriaus raktas. Savo administratoriaus raktą galite gauti, paleisdami ./bw-dev admin_code iš komandinės eilutės, esančios savo serveryje." #: bookwyrm/templates/setup/admin.html:45 msgid "As an admin, you'll be able to configure the instance name and information, and moderate your instance. This means you will have access to private information about your users, and are responsible for responding to reports of bad behavior or spam." -msgstr "" +msgstr "Kaip administratorius galėsite konfigūruoti serverio vardą ir informaciją, keisti nustatymus. Tai reiškia, kad turėsite prieigą prie asmeninės naudotojų informacijos ir būsite atsakingi už pranešimų apie blogą elgesį arba brukalus administravimą." #: bookwyrm/templates/setup/admin.html:51 msgid "Once the instance is set up, you can promote other users to moderator or admin roles from the admin panel." -msgstr "" +msgstr "Kai viską nustatysite, administratoriaus valdymo panelėje galėsite ir kitus naudotojus paskirti moderatoriais arba administratoriais." #: bookwyrm/templates/setup/admin.html:55 msgid "Learn more about moderation" -msgstr "" +msgstr "Sužinokite daugiau apie moderavimą" #: bookwyrm/templates/setup/config.html:5 msgid "Instance Configuration" -msgstr "" +msgstr "Serverio konfigūravimas" #: bookwyrm/templates/setup/config.html:7 msgid "Make sure everything looks right before proceeding" -msgstr "" +msgstr "Prieš tęsdami įsitikinkite, kad viskas atrodo gerai" #: bookwyrm/templates/setup/config.html:18 msgid "You are running BookWyrm in debug mode. This should never be used in a production environment." -msgstr "" +msgstr "„BookWyrm“ paleistas debug būsenoje. To niekada neturėtumėte naudoti produkcinėje aplinkoje." #: bookwyrm/templates/setup/config.html:30 msgid "Your domain appears to be misconfigured. It should not include protocol or slashes." -msgstr "" +msgstr "Atrodo, kad jūsų domenas nesukonfigūruotas. Į jį neturėtų įeiti protokolas arba pasvirieji brūkšniai." #: bookwyrm/templates/setup/config.html:42 msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." -msgstr "" +msgstr "„BookWyrm“ leidžiate produkcinėje būsenoje be https. Produkcinėje aplinkoje turi būti įjungtasUSE_HTTPS." + +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45 +msgid "Settings" +msgstr "Nustatymai" #: bookwyrm/templates/setup/config.html:56 msgid "Instance domain:" -msgstr "" +msgstr "Serverio informacija:" #: bookwyrm/templates/setup/config.html:63 msgid "Protocol:" -msgstr "" +msgstr "Protokolas:" #: bookwyrm/templates/setup/config.html:81 msgid "Using S3:" -msgstr "" +msgstr "Naudojama S3:" #: bookwyrm/templates/setup/config.html:95 msgid "Default interface language:" -msgstr "" +msgstr "Įprastinė sąsajos kalba:" #: bookwyrm/templates/setup/config.html:102 msgid "Email sender:" -msgstr "" +msgstr "El. pašto siuntėjas:" #: bookwyrm/templates/setup/config.html:109 msgid "Enable preview images:" -msgstr "" +msgstr "Įjungti paveikslėlių peržiūrą:" #: bookwyrm/templates/setup/config.html:116 msgid "Enable image thumbnails:" -msgstr "" +msgstr "Įjungti paveikslėlių miniatūras:" #: bookwyrm/templates/setup/config.html:128 msgid "Does everything look right?" -msgstr "" +msgstr "Ar viskas atrodo gerai?" #: bookwyrm/templates/setup/config.html:130 msgid "This is your last chance to set your domain and protocol." -msgstr "" +msgstr "Tai paskutinė galimybė nustatyti savo domeną ir protokolą." #: bookwyrm/templates/setup/config.html:144 msgid "You can change your instance settings in the .env file on your server." -msgstr "" +msgstr "Nustatymus galite pakeisti .env faile, esančiame jūsų serveryje." #: bookwyrm/templates/setup/config.html:148 msgid "View installation instructions" -msgstr "" +msgstr "Žiūrėti diegimo instrukcijas" #: bookwyrm/templates/setup/layout.html:5 msgid "Instance Setup" -msgstr "" +msgstr "Serverio nustatymai" #: bookwyrm/templates/setup/layout.html:15 msgid "Installing BookWyrm" -msgstr "" +msgstr "Diegiamas „BookWyrm“" #: bookwyrm/templates/setup/layout.html:18 msgid "Need help?" -msgstr "" +msgstr "Reikia pagalbos?" #: bookwyrm/templates/shelf/create_shelf_form.html:5 #: bookwyrm/templates/shelf/shelf.html:72 @@ -4521,7 +4528,7 @@ msgstr "Įdėti įspėjimą apie turinio atskleidimą" #: bookwyrm/templates/snippets/create_status/content_warning_field.html:18 msgid "Spoilers/content warnings:" -msgstr "" +msgstr "Įspėjimas apie atskleistą turinį:" #: bookwyrm/templates/snippets/create_status/content_warning_field.html:27 msgid "Spoilers ahead!" @@ -4705,7 +4712,7 @@ msgstr "Nustatyti tikslą" #: bookwyrm/templates/snippets/goal_progress.html:7 msgctxt "Goal successfully completed" msgid "Success!" -msgstr "" +msgstr "Sėkmingai!" #: bookwyrm/templates/snippets/goal_progress.html:9 #, python-format @@ -4783,7 +4790,7 @@ msgstr "Noriu perskaityti „%(book_title)s“" #: bookwyrm/templates/snippets/register_form.html:18 msgid "Choose wisely! Your username cannot be changed." -msgstr "" +msgstr "Rinkitės išmintingai! Naudotojo vardo negalima pakeisti." #: bookwyrm/templates/snippets/register_form.html:64 msgid "Sign Up" @@ -5140,6 +5147,14 @@ msgstr[3] "%(mutuals_display)s sekėjai, kuriuos sekate jūs" msgid "No followers you follow" msgstr "Jūs kartu nieko nesekate" +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "Žiūrėti paskyrą ir dar daugiau" + +#: bookwyrm/templates/user_menu.html:72 +msgid "Log out" +msgstr "Atsijungti" + #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 msgid "File exceeds maximum size: 10MB" msgstr "Failas viršijo maksimalų dydį: 10 MB" diff --git a/locale/no_NO/LC_MESSAGES/django.mo b/locale/no_NO/LC_MESSAGES/django.mo index 3454c0de..8df82422 100644 Binary files a/locale/no_NO/LC_MESSAGES/django.mo and b/locale/no_NO/LC_MESSAGES/django.mo differ diff --git a/locale/no_NO/LC_MESSAGES/django.po b/locale/no_NO/LC_MESSAGES/django.po index f2094c48..21cd784c 100644 --- a/locale/no_NO/LC_MESSAGES/django.po +++ b/locale/no_NO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-31 15:40\n" +"POT-Creation-Date: 2022-04-08 21:00+0000\n" +"PO-Revision-Date: 2022-04-08 21:50\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Norwegian\n" "Language: no\n" @@ -165,14 +165,14 @@ msgstr "Paperback" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Føderert" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Blokkert" @@ -187,7 +187,7 @@ msgstr "%(value)s er en ugyldig remote_id" msgid "%(value)s is not a valid username" 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 msgid "username" msgstr "brukernavn" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano (Italiensk)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (Fransk)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Litauisk)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (Norsk)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português - Brasil (Brasiliansk portugisisk)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Europeisk Portugisisk)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Svensk)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Forenklet kinesisk)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Tradisjonelt kinesisk)" @@ -403,7 +407,7 @@ msgstr "%(site_name)s sine moderatorer og administratorer holder nettsida oppe o msgid "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" msgstr "Admin" @@ -434,7 +438,7 @@ msgid "Software version:" msgstr "Programvareversjon:" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "Om %(site_name)s" @@ -1195,7 +1199,6 @@ msgstr "Domene" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -1363,7 +1366,7 @@ msgstr "Føderte samfunn" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "Katalog" @@ -1606,13 +1609,13 @@ msgstr "Tilbakestill passordet ditt på %(site_name)s" msgid "%(site_name)s home page" 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" msgstr "Kontakt administrator" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" -msgstr "Bli med i Bokwyrm" +msgid "Join BookWyrm" +msgstr "" #: bookwyrm/templates/feed/direct_messages.html:8 #, python-format @@ -1620,7 +1623,7 @@ msgid "Direct Messages with %(username)s" msgstr "Direktemeldinger med %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "Direktemeldinger" @@ -1657,7 +1660,7 @@ msgid "Updates" msgstr "Oppdateringer" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" msgstr "Bøkene dine" @@ -2218,7 +2221,7 @@ msgid "Login" msgstr "Logg inn" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Logg inn" @@ -2227,7 +2230,7 @@ msgstr "Logg inn" msgid "Success! Email address confirmed." 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/snippets/register_form.html:4 msgid "Username:" @@ -2235,12 +2238,12 @@ msgstr "Brukernavn:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "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 msgid "Forgot your password?" msgstr "Glemt passord?" @@ -2284,54 +2287,38 @@ msgstr "Hovednavigasjonsmeny" msgid "Feed" msgstr "Strøm" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -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/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "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" msgstr "passord" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "Delta" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "Status ble opprettet" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "Feil ved lagring av status" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "Dokumentasjon" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "Støtt %(site_name)s på %(support_title)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 GitHub." msgstr "BookWyrms kildekode er fritt tilgjengelig. Du kan bidra eller rapportere problemer på GitHub." @@ -2912,6 +2899,7 @@ msgstr "Rediger profil" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "Profil" @@ -3144,7 +3132,7 @@ msgstr "Søketype" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3211,7 +3199,7 @@ msgid "Create Announcement" msgstr "Opprett en kunngjøring" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Dato lagt til" @@ -3606,16 +3594,21 @@ msgstr "Klarte å blokkere:" msgid "Failed:" msgstr "Mislyktes:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Instansnavn" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Programvare" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Ingen instanser funnet" @@ -3626,6 +3619,14 @@ msgstr "Ingen instanser funnet" msgid "Invite Requests" 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 msgid "Ignored Invite Requests" msgstr "Ignorerte invitasjonsforespørsler" @@ -4282,6 +4283,10 @@ msgstr "" msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." msgstr "" +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45 +msgid "Settings" +msgstr "Innstillinger" + #: bookwyrm/templates/setup/config.html:56 msgid "Instance domain:" msgstr "" @@ -5090,6 +5095,14 @@ msgstr[1] "%(mutuals_display)s følgere du følger" msgid "No followers you follow" 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 msgid "File exceeds maximum size: 10MB" msgstr "Filen overskrider maksimal størrelse: 10MB" diff --git a/locale/pt_BR/LC_MESSAGES/django.mo b/locale/pt_BR/LC_MESSAGES/django.mo index fc9e3930..88416d0e 100644 Binary files a/locale/pt_BR/LC_MESSAGES/django.mo and b/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/locale/pt_BR/LC_MESSAGES/django.po b/locale/pt_BR/LC_MESSAGES/django.po index cca56822..617f1581 100644 --- a/locale/pt_BR/LC_MESSAGES/django.po +++ b/locale/pt_BR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-26 23:28\n" +"POT-Creation-Date: 2022-04-08 21:00+0000\n" +"PO-Revision-Date: 2022-04-08 23:12\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt\n" @@ -165,14 +165,14 @@ msgstr "Capa mole" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federado" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Bloqueado" @@ -187,7 +187,7 @@ msgstr "%(value)s não é um remote_id válido" msgid "%(value)s is not a valid username" 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 msgid "username" msgstr "nome de usuário" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano (Italiano)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "Suomi (Finlandês)" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (Francês)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (Lituano)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (Norueguês)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Português do Brasil)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Português Europeu)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "Română (Romeno)" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Sueco)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Chinês simplificado)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Chinês tradicional)" @@ -403,7 +407,7 @@ msgstr "Moderadores e administradores de %(site_name)s's mantêm o site funciona msgid "Moderator" 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" msgstr "Admin" @@ -434,7 +438,7 @@ msgid "Software version:" msgstr "Versão do software:" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "Sobre %(site_name)s" @@ -1195,7 +1199,6 @@ msgstr "Domínio" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -1363,7 +1366,7 @@ msgstr "Comunidade federada" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "Diretório" @@ -1606,12 +1609,12 @@ msgstr "Redefinir sua senha no %(site_name)s" msgid "%(site_name)s home page" 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" msgstr "Falar com a administração" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" +msgid "Join BookWyrm" msgstr "Participe da BookWyrm" #: bookwyrm/templates/feed/direct_messages.html:8 @@ -1620,7 +1623,7 @@ msgid "Direct Messages with %(username)s" msgstr "Mensagens diretas com %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "Mensagens diretas" @@ -1657,7 +1660,7 @@ msgid "Updates" msgstr "Atualizações" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" msgstr "Seus livros" @@ -2218,7 +2221,7 @@ msgid "Login" msgstr "Entrar" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Entrar" @@ -2227,7 +2230,7 @@ msgstr "Entrar" msgid "Success! Email address confirmed." 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/snippets/register_form.html:4 msgid "Username:" @@ -2235,12 +2238,12 @@ msgstr "Usuário:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "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 msgid "Forgot your password?" msgstr "Esqueceu sua senha?" @@ -2284,54 +2287,38 @@ msgstr "Menu de navegação principal" msgid "Feed" msgstr "Novidades" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -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/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "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" msgstr "senha" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "Registrar" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "Publicação feita com sucesso" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "Erro ao publicar" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "Documentação" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "Apoie a instância %(site_name)s: %(support_title)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 GitHub." msgstr "O código-fonte da BookWyrm está disponível gratuitamente. Você pode contribuir ou reportar problemas no GitHub." @@ -2912,6 +2899,7 @@ msgstr "Editar perfil" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "Perfil" @@ -3146,7 +3134,7 @@ msgstr "Tipo de pesquisa" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3213,7 +3201,7 @@ msgid "Create Announcement" msgstr "Criar aviso" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Adicionada em" @@ -3608,16 +3596,21 @@ msgstr "Bloqueada com sucesso:" msgid "Failed:" msgstr "Falhou:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Nome da instância" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "Última atualização" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Software" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Nenhuma instância encontrada" @@ -3628,6 +3621,14 @@ msgstr "Nenhuma instância encontrada" msgid "Invite Requests" 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 msgid "Ignored Invite Requests" 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. USE_HTTPS should be enabled in production." msgstr "Você está rodando a BookWyrm em produção sem https. USE_HTTPS 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 msgid "Instance domain:" msgstr "Domínio da instância:" @@ -5092,6 +5097,14 @@ msgstr[1] "%(mutuals_display)s seguidores que você segue" msgid "No followers you follow" 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 msgid "File exceeds maximum size: 10MB" msgstr "Arquivo excede o tamanho máximo: 10MB" diff --git a/locale/pt_PT/LC_MESSAGES/django.mo b/locale/pt_PT/LC_MESSAGES/django.mo index 961732ab..9a01ddde 100644 Binary files a/locale/pt_PT/LC_MESSAGES/django.mo and b/locale/pt_PT/LC_MESSAGES/django.mo differ diff --git a/locale/pt_PT/LC_MESSAGES/django.po b/locale/pt_PT/LC_MESSAGES/django.po index ab1399ff..e03d337b 100644 --- a/locale/pt_PT/LC_MESSAGES/django.po +++ b/locale/pt_PT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-26 22:29\n" +"POT-Creation-Date: 2022-04-08 21:00+0000\n" +"PO-Revision-Date: 2022-04-08 21:50\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Portuguese\n" "Language: pt\n" @@ -165,14 +165,14 @@ msgstr "Capa mole" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federado" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Bloqueado" @@ -187,7 +187,7 @@ msgstr "%(value)s não é um remote_id válido" msgid "%(value)s is not a valid username" 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 msgid "username" msgstr "nome de utilizador" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano (Italiano)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (Francês)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (lituano)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (Norueguês)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (Português brasileiro)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português (Português Europeu)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Chinês simplificado)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Chinês tradicional)" @@ -403,7 +407,7 @@ msgstr "" msgid "Moderator" 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" msgstr "Admin" @@ -434,7 +438,7 @@ msgid "Software version:" msgstr "Versão do software:" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "Acerca de %(site_name)s" @@ -1195,7 +1199,6 @@ msgstr "Domínio" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -1363,7 +1366,7 @@ msgstr "Comunidade federada" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "Diretório" @@ -1606,13 +1609,13 @@ msgstr "Redefinir a tua palavra-passe do %(site_name)s" msgid "%(site_name)s home page" 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" msgstr "Contactar administrador do website" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" -msgstr "Junta-te ao Boookwyrm" +msgid "Join BookWyrm" +msgstr "" #: bookwyrm/templates/feed/direct_messages.html:8 #, python-format @@ -1620,7 +1623,7 @@ msgid "Direct Messages with %(username)s" msgstr "Mensagens Diretas com %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "Mensagens Diretas" @@ -1657,7 +1660,7 @@ msgid "Updates" msgstr "Atualizações" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" msgstr "Os teus Livros" @@ -2218,7 +2221,7 @@ msgid "Login" msgstr "Login" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Iniciar sessão" @@ -2227,7 +2230,7 @@ msgstr "Iniciar sessão" msgid "Success! Email address confirmed." 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/snippets/register_form.html:4 msgid "Username:" @@ -2235,12 +2238,12 @@ msgstr "Nome de utilizador:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "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 msgid "Forgot your password?" msgstr "Esqueces-te a tua palavra-passe?" @@ -2284,54 +2287,38 @@ msgstr "Menu principal" msgid "Feed" msgstr "Feed" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -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/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "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" msgstr "palavra-passe" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "Junta-te" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "Estado publicado com sucesso" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "Erro ao publicar estado" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "Documentação" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "Apoia %(site_name)s em %(support_title)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 GitHub." msgstr "O código de fonte do BookWyrm está disponível gratuitamente. E também podes contribuir ou reportar problemas no GitHub." @@ -2912,6 +2899,7 @@ msgstr "Editar Perfil" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "Perfil" @@ -3144,7 +3132,7 @@ msgstr "Tipo de pesquisa" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3211,7 +3199,7 @@ msgid "Create Announcement" msgstr "Criar comunicado" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Data de adição" @@ -3606,16 +3594,21 @@ msgstr "Bloqueado com sucesso:" msgid "Failed:" msgstr "Falha:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Nome do domínio" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Software" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Nenhum domínio encontrado" @@ -3626,6 +3619,14 @@ msgstr "Nenhum domínio encontrado" msgid "Invite Requests" 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 msgid "Ignored Invite Requests" msgstr "Pedidos de Convite Ignorados" @@ -4282,6 +4283,10 @@ msgstr "" msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." msgstr "" +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45 +msgid "Settings" +msgstr "Configurações" + #: bookwyrm/templates/setup/config.html:56 msgid "Instance domain:" msgstr "" @@ -5090,6 +5095,14 @@ msgstr[1] "%(mutuals_display)s seguidores que tu segues" msgid "No followers you follow" 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 msgid "File exceeds maximum size: 10MB" msgstr "Ficheiro excede o tamanho máximo: 10MB" diff --git a/locale/ro_RO/LC_MESSAGES/django.mo b/locale/ro_RO/LC_MESSAGES/django.mo index 64649bd6..6ea0729c 100644 Binary files a/locale/ro_RO/LC_MESSAGES/django.mo and b/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/locale/ro_RO/LC_MESSAGES/django.po b/locale/ro_RO/LC_MESSAGES/django.po index 73a0d400..fa1e4f8e 100644 --- a/locale/ro_RO/LC_MESSAGES/django.po +++ b/locale/ro_RO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-31 15:40\n" +"POT-Creation-Date: 2022-04-08 21:00+0000\n" +"PO-Revision-Date: 2022-04-08 21:50\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Romanian\n" "Language: ro\n" @@ -165,14 +165,14 @@ msgstr "Broșură" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federat" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Blocat" @@ -187,7 +187,7 @@ msgstr "%(value)s nu este un remote_id valid" msgid "%(value)s is not a valid username" msgstr "%(value)s nu este un nume de utilizator valid" -#: bookwyrm/models/fields.py:181 bookwyrm/templates/layout.html:179 +#: bookwyrm/models/fields.py:181 bookwyrm/templates/layout.html:123 #: bookwyrm/templates/ostatus/error.html:29 msgid "username" msgstr "nume de utilizator" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano (italiană)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français (franceză)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių (lituaniană)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk (norvegiană)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil (portugheză braziliană)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (portugheză europeană)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (suedeză)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (chineză simplificată)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (chineză tradițională)" @@ -403,7 +407,7 @@ msgstr "Moderatorii și administratorii %(site_name)s mențin site-ul în picioa msgid "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" msgstr "Admin" @@ -434,7 +438,7 @@ msgid "Software version:" msgstr "Versiunea programului:" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "Despre %(site_name)s" @@ -1201,7 +1205,6 @@ msgstr "Domeniu" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -1369,7 +1372,7 @@ msgstr "Comunitate federată" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "Dosar" @@ -1614,13 +1617,13 @@ msgstr "Reinițializați parola dvs. pentru %(site_name)s" msgid "%(site_name)s home page" 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" msgstr "Contactați adminul site-ului" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" -msgstr "Alăturați-vă BookWyrm" +msgid "Join BookWyrm" +msgstr "" #: bookwyrm/templates/feed/direct_messages.html:8 #, python-format @@ -1628,7 +1631,7 @@ msgid "Direct Messages with %(username)s" msgstr "Mesajele directe cu %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "Mesaje directe" @@ -1665,7 +1668,7 @@ msgid "Updates" msgstr "Actualizări" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" msgstr "Cărțile voastre" @@ -2230,7 +2233,7 @@ msgid "Login" msgstr "Autentificare" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Autentificați-vă" @@ -2239,7 +2242,7 @@ msgstr "Autentificați-vă" msgid "Success! Email address confirmed." msgstr "Succes! Adresa email a fost confirmată." -#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:178 +#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:122 #: bookwyrm/templates/ostatus/error.html:28 #: bookwyrm/templates/snippets/register_form.html:4 msgid "Username:" @@ -2247,12 +2250,12 @@ msgstr "Nume de utilizator:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "Parolă:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:184 +#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:128 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "Parolă uitată?" @@ -2296,54 +2299,38 @@ msgstr "Meniul principal de navigație" msgid "Feed" msgstr "Fir de actualitate" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -msgid "Settings" -msgstr "Setări" - -#: bookwyrm/templates/layout.html:133 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 -#: bookwyrm/templates/settings/invites/manage_invites.html:3 -#: bookwyrm/templates/settings/invites/manage_invites.html:15 -#: bookwyrm/templates/settings/layout.html:42 -msgid "Invites" -msgstr "Invitații" - -#: bookwyrm/templates/layout.html:147 -msgid "Log out" -msgstr "Deconectați-vă" - -#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156 +#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "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" msgstr "parolă" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "Alăturați-vă" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "Stare postată cu succes" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "Eroare la postarea stării" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "Documentație" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "Susțineți %(site_name)s la %(support_title)s" -#: bookwyrm/templates/layout.html:257 +#: bookwyrm/templates/layout.html:201 msgid "BookWyrm's source code is freely available. You can contribute or report issues on GitHub." msgstr "Codul sursă a lui BookWyrm este disponibil gratuit. Puteți contribui sau raporta probleme la GitHub." @@ -2924,6 +2911,7 @@ msgstr "Editați profilul" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "Profil" @@ -3157,7 +3145,7 @@ msgstr "Tipul căutării" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3224,7 +3212,7 @@ msgid "Create Announcement" msgstr "Creați anunț" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Dată adăugată" @@ -3623,16 +3611,21 @@ msgstr "" msgid "Failed:" msgstr "" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "" @@ -3643,6 +3636,14 @@ msgstr "" msgid "Invite Requests" msgstr "" +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:56 +msgid "Invites" +msgstr "Invitații" + #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 msgid "Ignored Invite Requests" msgstr "" @@ -4299,6 +4300,10 @@ msgstr "" msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." msgstr "" +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45 +msgid "Settings" +msgstr "Setări" + #: bookwyrm/templates/setup/config.html:56 msgid "Instance domain:" msgstr "" @@ -5116,6 +5121,14 @@ msgstr[2] "" msgid "No followers you follow" msgstr "" +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/user_menu.html:72 +msgid "Log out" +msgstr "Deconectați-vă" + #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 msgid "File exceeds maximum size: 10MB" msgstr "" diff --git a/locale/sv_SE/LC_MESSAGES/django.mo b/locale/sv_SE/LC_MESSAGES/django.mo index 9a87866d..70fc627e 100644 Binary files a/locale/sv_SE/LC_MESSAGES/django.mo and b/locale/sv_SE/LC_MESSAGES/django.mo differ diff --git a/locale/sv_SE/LC_MESSAGES/django.po b/locale/sv_SE/LC_MESSAGES/django.po index b1d8b62b..0ff60929 100644 --- a/locale/sv_SE/LC_MESSAGES/django.po +++ b/locale/sv_SE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-31 07:13\n" +"POT-Creation-Date: 2022-04-08 21:00+0000\n" +"PO-Revision-Date: 2022-04-08 21:50\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Swedish\n" "Language: sv\n" @@ -165,14 +165,14 @@ msgstr "Pocketbok" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "Federerad" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "Blockerad" @@ -187,7 +187,7 @@ msgstr "%(value)s är inte ett giltigt remote_id" msgid "%(value)s is not a valid username" 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 msgid "username" msgstr "användarnamn" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italienska (Italiensk)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "Finland (Finska)" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Franska (Fransk)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Litauiska (Litauisk)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norska (Norska)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português d Brasil (Brasiliansk Portugisiska)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu (Europeisk Portugisiska)" -#: bookwyrm/settings.py:292 -msgid "Română (Romanian)" -msgstr "" - #: bookwyrm/settings.py:293 +msgid "Română (Romanian)" +msgstr "Rumänien (Rumänska)" + +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska (Svenska)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文 (Förenklad Kinesiska)" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文 (Traditionell Kinesiska)" @@ -397,13 +401,13 @@ msgstr "Träffa dina administratörer" #: bookwyrm/templates/about/about.html:101 #, python-format msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the code of conduct, and respond when users report spam and bad behavior." -msgstr "" +msgstr "%(site_name)s's moderatorer och administratörer håller hemsidan uppe och fungerande, upprätthåller uppförandekoden och svarar när användarna rapporterar skräppost och dåligt uppförande." #: bookwyrm/templates/about/about.html:115 msgid "Moderator" 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" msgstr "Administratör" @@ -434,7 +438,7 @@ msgid "Software version:" msgstr "Programvaruversion:" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "Om %(site_name)s" @@ -786,7 +790,7 @@ msgstr "Bekräfta" #: bookwyrm/templates/book/book.html:19 msgid "Unable to connect to remote source." -msgstr "" +msgstr "Kunde inte ansluta till fjärrkälla." #: bookwyrm/templates/book/book.html:64 bookwyrm/templates/book/book.html:65 msgid "Edit Book" @@ -825,8 +829,8 @@ msgstr "Beskrivning:" #, python-format msgid "%(count)s edition" msgid_plural "%(count)s editions" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%(count)s utgåva" +msgstr[1] "%(count)s utgåvor" #: bookwyrm/templates/book/book.html:228 msgid "You have shelved this edition in:" @@ -1195,7 +1199,6 @@ msgstr "Domän" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -1341,7 +1344,7 @@ msgstr "E-postadress:" #: bookwyrm/templates/confirm_email/resend_modal.html:28 msgid "No user matching this email address found." -msgstr "" +msgstr "Ingen användare hittades med den här e-postadressen." #: bookwyrm/templates/confirm_email/resend_modal.html:38 msgid "Resend link" @@ -1363,7 +1366,7 @@ msgstr "Federerad gemenskap" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "Mapp" @@ -1606,13 +1609,13 @@ msgstr "Återställ lösenordet för %(site_name)s" msgid "%(site_name)s home page" 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" msgstr "Kontakta webbplatsens administratör" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" -msgstr "Gå med i BookWyrm" +msgid "Join BookWyrm" +msgstr "" #: bookwyrm/templates/feed/direct_messages.html:8 #, python-format @@ -1620,7 +1623,7 @@ msgid "Direct Messages with %(username)s" msgstr "Direktmeddelanden med %(username)s" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "Direktmeddelanden" @@ -1657,7 +1660,7 @@ msgid "Updates" msgstr "Uppdateringar" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" 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 msgid "Do you have book data from another service like GoodReads?" -msgstr "" +msgstr "Har du bok-data från en annan tjänst liknande som GoodReads?" #: bookwyrm/templates/feed/suggested_books.html:16 msgid "Import your reading history" @@ -2218,7 +2221,7 @@ msgid "Login" msgstr "Inloggning" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "Logga in" @@ -2227,7 +2230,7 @@ msgstr "Logga in" msgid "Success! Email address confirmed." 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/snippets/register_form.html:4 msgid "Username:" @@ -2235,12 +2238,12 @@ msgstr "Användarnamn:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "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 msgid "Forgot your password?" msgstr "Glömt ditt lösenord?" @@ -2284,54 +2287,38 @@ msgstr "Huvudsaklig navigeringsmeny" msgid "Feed" msgstr "Flöde" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -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/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "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" msgstr "lösenord" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "Gå med" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "Statusen har publicerats" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "Fel uppstod när statusen skulle publiceras" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "Dokumentation" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "Stötta %(site_name)s på %(support_title)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 GitHub." msgstr "BookWyrm's källkod är fritt tillgängligt. Du kan bidra eller rapportera problem på GitHub." @@ -2912,6 +2899,7 @@ msgstr "Redigera profil" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "Profil" @@ -3146,7 +3134,7 @@ msgstr "Typ av sökning" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3213,7 +3201,7 @@ msgid "Create Announcement" msgstr "Skapa ett tillkännagivande" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "Datumet lades till" @@ -3608,16 +3596,21 @@ msgstr "Blockerades framgångsrikt:" msgid "Failed:" msgstr "Misslyckades:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "Namn på instans" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "Uppdaterades senast" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "Mjukvara" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "Inga instanser hittades" @@ -3628,6 +3621,14 @@ msgstr "Inga instanser hittades" msgid "Invite Requests" 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 msgid "Ignored Invite Requests" 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. USE_HTTPS should be enabled in production." msgstr "Du kör BookWyrm i produktionsläge utan https. USE_HTTPS 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 msgid "Instance domain:" 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" 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 msgid "File exceeds maximum size: 10MB" msgstr "Filen överskrider maximal storlek: 10 MB" diff --git a/locale/zh_Hans/LC_MESSAGES/django.mo b/locale/zh_Hans/LC_MESSAGES/django.mo index f4f8aca7..7d4b3465 100644 Binary files a/locale/zh_Hans/LC_MESSAGES/django.mo and b/locale/zh_Hans/LC_MESSAGES/django.mo differ diff --git a/locale/zh_Hans/LC_MESSAGES/django.po b/locale/zh_Hans/LC_MESSAGES/django.po index b92e80b3..a92ed934 100644 --- a/locale/zh_Hans/LC_MESSAGES/django.po +++ b/locale/zh_Hans/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-27 01:36\n" +"POT-Creation-Date: 2022-04-08 21:00+0000\n" +"PO-Revision-Date: 2022-04-10 05:48\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Chinese Simplified\n" "Language: zh\n" @@ -165,14 +165,14 @@ msgstr "平装" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "跨站" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "已屏蔽" @@ -187,7 +187,7 @@ msgstr "%(value)s 不是有效的 remote_id" msgid "%(value)s is not a valid username" 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 msgid "username" msgstr "用户名" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "Italiano(意大利语)" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "Suomi (Finnish/芬兰语)" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français(法语)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "Lietuvių(立陶宛语)" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "Norsk(挪威语)" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "Português do Brasil(巴西葡萄牙语)" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "Português Europeu(欧洲葡萄牙语)" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "Română (罗马尼亚语)" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "Svenska(瑞典语)" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "简体中文" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文(繁体中文)" @@ -403,7 +407,7 @@ msgstr "%(site_name)s 的仲裁员和管理员负责维持站点运行, 执行 msgid "Moderator" msgstr "仲裁员" -#: bookwyrm/templates/about/about.html:117 bookwyrm/templates/layout.html:140 +#: bookwyrm/templates/about/about.html:117 bookwyrm/templates/user_menu.html:63 msgid "Admin" msgstr "管理员" @@ -434,7 +438,7 @@ msgid "Software version:" msgstr "软件版本:" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "关于 %(site_name)s" @@ -1189,7 +1193,6 @@ msgstr "域名" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -1357,7 +1360,7 @@ msgstr "跨站社区" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "目录" @@ -1598,13 +1601,13 @@ msgstr "重置你在 %(site_name)s 的密码" msgid "%(site_name)s home page" 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" msgstr "联系站点管理员" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" -msgstr "加入 BookWyrm" +msgid "Join BookWyrm" +msgstr "加入BookWyrm" #: bookwyrm/templates/feed/direct_messages.html:8 #, python-format @@ -1612,7 +1615,7 @@ msgid "Direct Messages with %(username)s" msgstr "与 %(username)s 私信" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "私信" @@ -1649,7 +1652,7 @@ msgid "Updates" msgstr "更新" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" msgstr "你的书目" @@ -2206,7 +2209,7 @@ msgid "Login" msgstr "登录" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "登录" @@ -2215,7 +2218,7 @@ msgstr "登录" msgid "Success! Email address confirmed." msgstr "成功!邮箱地址已确认。" -#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:178 +#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:122 #: bookwyrm/templates/ostatus/error.html:28 #: bookwyrm/templates/snippets/register_form.html:4 msgid "Username:" @@ -2223,12 +2226,12 @@ msgstr "用户名:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "密码:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:184 +#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:128 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "忘记了密码?" @@ -2272,54 +2275,38 @@ msgstr "主导航菜单" msgid "Feed" msgstr "动态" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -msgid "Settings" -msgstr "设置" - -#: bookwyrm/templates/layout.html:133 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 -#: bookwyrm/templates/settings/invites/manage_invites.html:3 -#: bookwyrm/templates/settings/invites/manage_invites.html:15 -#: bookwyrm/templates/settings/layout.html:42 -msgid "Invites" -msgstr "邀请" - -#: bookwyrm/templates/layout.html:147 -msgid "Log out" -msgstr "登出" - -#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156 +#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "通知" -#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 +#: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33 msgid "password" msgstr "密码" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "加入" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "成功发布的状态" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "发布状态时出错" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "文档" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "在 %(support_title)s 上支持 %(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 GitHub." msgstr "BookWyrm 是开源软件。你可以在 GitHub 贡献或报告问题。" @@ -2900,6 +2887,7 @@ msgstr "编辑个人资料" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "个人资料" @@ -3134,7 +3122,7 @@ msgstr "搜索类型" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3201,7 +3189,7 @@ msgid "Create Announcement" msgstr "创建公告" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "添加日期:" @@ -3592,16 +3580,21 @@ msgstr "成功屏蔽了" msgid "Failed:" msgstr "已失败:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "实例名称" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "最近更新" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "软件" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "未找到实例" @@ -3612,6 +3605,14 @@ msgstr "未找到实例" msgid "Invite Requests" msgstr "邀请请求" +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:56 +msgid "Invites" +msgstr "邀请" + #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 msgid "Ignored Invite Requests" msgstr "已忽略的邀请请求" @@ -4268,6 +4269,10 @@ msgstr "你的域名似乎配置出错了。它不应该包括协议或斜杠。 msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." msgstr "您正在没有https的实际使用模式下运行BookWyrm,USE_HTTPS应该在实际使用中启用。" +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45 +msgid "Settings" +msgstr "设置" + #: bookwyrm/templates/setup/config.html:56 msgid "Instance domain:" msgstr "实例域名:" @@ -5067,6 +5072,14 @@ msgstr[0] "%(mutuals_display)s 个你也关注的关注者" msgid "No followers you follow" msgstr "没有你关注的关注者" +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "查看档案和其他" + +#: bookwyrm/templates/user_menu.html:72 +msgid "Log out" +msgstr "登出" + #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 msgid "File exceeds maximum size: 10MB" msgstr "文件超过了最大大小: 10MB" diff --git a/locale/zh_Hant/LC_MESSAGES/django.mo b/locale/zh_Hant/LC_MESSAGES/django.mo index a7d44d11..ef20d119 100644 Binary files a/locale/zh_Hant/LC_MESSAGES/django.mo and b/locale/zh_Hant/LC_MESSAGES/django.mo differ diff --git a/locale/zh_Hant/LC_MESSAGES/django.po b/locale/zh_Hant/LC_MESSAGES/django.po index be4549e4..4d4f155d 100644 --- a/locale/zh_Hant/LC_MESSAGES/django.po +++ b/locale/zh_Hant/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: bookwyrm\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-03-26 20:16+0000\n" -"PO-Revision-Date: 2022-03-26 22:29\n" +"POT-Creation-Date: 2022-04-08 21:00+0000\n" +"PO-Revision-Date: 2022-04-08 21:50\n" "Last-Translator: Mouse Reeve \n" "Language-Team: Chinese Traditional\n" "Language: zh\n" @@ -165,14 +165,14 @@ msgstr "" #: bookwyrm/models/federated_server.py:11 #: bookwyrm/templates/settings/federation/edit_instance.html:55 -#: bookwyrm/templates/settings/federation/instance_list.html:19 +#: bookwyrm/templates/settings/federation/instance_list.html:22 msgid "Federated" msgstr "跨站" #: bookwyrm/models/federated_server.py:12 bookwyrm/models/link.py:71 #: bookwyrm/templates/settings/federation/edit_instance.html:56 #: bookwyrm/templates/settings/federation/instance.html:10 -#: bookwyrm/templates/settings/federation/instance_list.html:23 +#: bookwyrm/templates/settings/federation/instance_list.html:26 #: bookwyrm/templates/settings/link_domains/link_domains.html:27 msgid "Blocked" msgstr "已封鎖" @@ -187,7 +187,7 @@ msgstr "%(value)s 不是有效的 remote_id" msgid "%(value)s is not a valid username" 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 msgid "username" msgstr "使用者名稱" @@ -300,38 +300,42 @@ msgid "Italiano (Italian)" msgstr "" #: bookwyrm/settings.py:287 +msgid "Suomi (Finnish)" +msgstr "" + +#: bookwyrm/settings.py:288 msgid "Français (French)" msgstr "Français(法語)" -#: bookwyrm/settings.py:288 +#: bookwyrm/settings.py:289 msgid "Lietuvių (Lithuanian)" msgstr "" -#: bookwyrm/settings.py:289 +#: bookwyrm/settings.py:290 msgid "Norsk (Norwegian)" msgstr "" -#: bookwyrm/settings.py:290 +#: bookwyrm/settings.py:291 msgid "Português do Brasil (Brazilian Portuguese)" msgstr "" -#: bookwyrm/settings.py:291 +#: bookwyrm/settings.py:292 msgid "Português Europeu (European Portuguese)" msgstr "" -#: bookwyrm/settings.py:292 +#: bookwyrm/settings.py:293 msgid "Română (Romanian)" msgstr "" -#: bookwyrm/settings.py:293 +#: bookwyrm/settings.py:294 msgid "Svenska (Swedish)" msgstr "" -#: bookwyrm/settings.py:294 +#: bookwyrm/settings.py:295 msgid "简体中文 (Simplified Chinese)" msgstr "簡體中文" -#: bookwyrm/settings.py:295 +#: bookwyrm/settings.py:296 msgid "繁體中文 (Traditional Chinese)" msgstr "繁體中文" @@ -403,7 +407,7 @@ msgstr "" msgid "Moderator" msgstr "" -#: bookwyrm/templates/about/about.html:117 bookwyrm/templates/layout.html:140 +#: bookwyrm/templates/about/about.html:117 bookwyrm/templates/user_menu.html:63 msgid "Admin" msgstr "管理員" @@ -434,7 +438,7 @@ msgid "Software version:" msgstr "" #: bookwyrm/templates/about/layout.html:30 -#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:238 +#: bookwyrm/templates/embed-layout.html:34 bookwyrm/templates/layout.html:182 #, python-format msgid "About %(site_name)s" msgstr "關於 %(site_name)s" @@ -1189,7 +1193,6 @@ msgstr "" #: bookwyrm/templates/book/file_links/edit_links.html:36 #: bookwyrm/templates/import/import_status.html:127 #: bookwyrm/templates/settings/announcements/announcements.html:37 -#: bookwyrm/templates/settings/federation/instance_list.html:46 #: bookwyrm/templates/settings/invites/manage_invite_requests.html:47 #: bookwyrm/templates/settings/invites/status_filter.html:5 #: bookwyrm/templates/settings/users/user_admin.html:52 @@ -1357,7 +1360,7 @@ msgstr "跨站社群" #: bookwyrm/templates/directory/directory.html:4 #: bookwyrm/templates/directory/directory.html:9 -#: bookwyrm/templates/layout.html:109 +#: bookwyrm/templates/user_menu.html:30 msgid "Directory" msgstr "目錄" @@ -1598,12 +1601,12 @@ msgstr "重置你在 %(site_name)s 的密碼" msgid "%(site_name)s home page" msgstr "" -#: bookwyrm/templates/embed-layout.html:40 bookwyrm/templates/layout.html:242 +#: bookwyrm/templates/embed-layout.html:40 bookwyrm/templates/layout.html:186 msgid "Contact site admin" msgstr "聯絡網站管理員" #: bookwyrm/templates/embed-layout.html:46 -msgid "Join Bookwyrm" +msgid "Join BookWyrm" msgstr "" #: bookwyrm/templates/feed/direct_messages.html:8 @@ -1612,7 +1615,7 @@ msgid "Direct Messages with %(username)s" msgstr "與 %(username)s 私信" #: bookwyrm/templates/feed/direct_messages.html:10 -#: bookwyrm/templates/layout.html:119 +#: bookwyrm/templates/user_menu.html:40 msgid "Direct Messages" msgstr "私信" @@ -1649,7 +1652,7 @@ msgid "Updates" msgstr "更新" #: bookwyrm/templates/feed/suggested_books.html:6 -#: bookwyrm/templates/layout.html:114 +#: bookwyrm/templates/user_menu.html:35 msgid "Your Books" msgstr "你的書目" @@ -2206,7 +2209,7 @@ msgid "Login" msgstr "登入" #: bookwyrm/templates/landing/login.html:7 -#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:187 +#: bookwyrm/templates/landing/login.html:36 bookwyrm/templates/layout.html:131 #: bookwyrm/templates/ostatus/error.html:37 msgid "Log in" msgstr "登入" @@ -2215,7 +2218,7 @@ msgstr "登入" msgid "Success! Email address confirmed." msgstr "" -#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:178 +#: bookwyrm/templates/landing/login.html:21 bookwyrm/templates/layout.html:122 #: bookwyrm/templates/ostatus/error.html:28 #: bookwyrm/templates/snippets/register_form.html:4 msgid "Username:" @@ -2223,12 +2226,12 @@ msgstr "使用者名稱:" #: bookwyrm/templates/landing/login.html:27 #: bookwyrm/templates/landing/password_reset.html:26 -#: bookwyrm/templates/layout.html:182 bookwyrm/templates/ostatus/error.html:32 +#: bookwyrm/templates/layout.html:126 bookwyrm/templates/ostatus/error.html:32 #: bookwyrm/templates/snippets/register_form.html:45 msgid "Password:" msgstr "密碼:" -#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:184 +#: bookwyrm/templates/landing/login.html:39 bookwyrm/templates/layout.html:128 #: bookwyrm/templates/ostatus/error.html:34 msgid "Forgot your password?" msgstr "忘記了密碼?" @@ -2272,54 +2275,38 @@ msgstr "主導航選單" msgid "Feed" msgstr "動態" -#: bookwyrm/templates/layout.html:124 bookwyrm/templates/setup/config.html:52 -msgid "Settings" -msgstr "設定" - -#: bookwyrm/templates/layout.html:133 -#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 -#: bookwyrm/templates/settings/invites/manage_invites.html:3 -#: bookwyrm/templates/settings/invites/manage_invites.html:15 -#: bookwyrm/templates/settings/layout.html:42 -msgid "Invites" -msgstr "邀請" - -#: bookwyrm/templates/layout.html:147 -msgid "Log out" -msgstr "登出" - -#: bookwyrm/templates/layout.html:155 bookwyrm/templates/layout.html:156 +#: bookwyrm/templates/layout.html:99 bookwyrm/templates/layout.html:100 #: bookwyrm/templates/notifications/notifications_page.html:5 #: bookwyrm/templates/notifications/notifications_page.html:10 msgid "Notifications" msgstr "通知" -#: bookwyrm/templates/layout.html:183 bookwyrm/templates/ostatus/error.html:33 +#: bookwyrm/templates/layout.html:127 bookwyrm/templates/ostatus/error.html:33 msgid "password" msgstr "密碼" -#: bookwyrm/templates/layout.html:195 +#: bookwyrm/templates/layout.html:139 msgid "Join" msgstr "加入" -#: bookwyrm/templates/layout.html:229 +#: bookwyrm/templates/layout.html:173 msgid "Successfully posted status" msgstr "" -#: bookwyrm/templates/layout.html:230 +#: bookwyrm/templates/layout.html:174 msgid "Error posting status" msgstr "" -#: bookwyrm/templates/layout.html:246 +#: bookwyrm/templates/layout.html:190 msgid "Documentation" msgstr "文件:" -#: bookwyrm/templates/layout.html:253 +#: bookwyrm/templates/layout.html:197 #, python-format msgid "Support %(site_name)s on %(support_title)s" msgstr "在 %(support_title)s 上支援 %(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 GitHub." msgstr "BookWyrm 是開源軟體。你可以在 GitHub 貢獻或報告問題。" @@ -2900,6 +2887,7 @@ msgstr "編輯使用者資料" #: bookwyrm/templates/preferences/edit_user.html:12 #: bookwyrm/templates/preferences/edit_user.html:25 #: bookwyrm/templates/settings/users/user_info.html:7 +#: bookwyrm/templates/user_menu.html:25 msgid "Profile" msgstr "使用者資料" @@ -3132,7 +3120,7 @@ msgstr "搜尋類別" #: bookwyrm/templates/search/layout.html:23 #: bookwyrm/templates/search/layout.html:46 #: bookwyrm/templates/settings/email_blocklist/email_blocklist.html:27 -#: bookwyrm/templates/settings/federation/instance_list.html:44 +#: bookwyrm/templates/settings/federation/instance_list.html:51 #: bookwyrm/templates/settings/layout.html:36 #: bookwyrm/templates/settings/users/user.html:13 #: bookwyrm/templates/settings/users/user_admin.html:5 @@ -3199,7 +3187,7 @@ msgid "Create Announcement" msgstr "建立公告" #: bookwyrm/templates/settings/announcements/announcements.html:21 -#: bookwyrm/templates/settings/federation/instance_list.html:36 +#: bookwyrm/templates/settings/federation/instance_list.html:39 msgid "Date added" msgstr "新增日期:" @@ -3590,16 +3578,21 @@ msgstr "成功封鎖了" msgid "Failed:" msgstr "已失敗:" -#: bookwyrm/templates/settings/federation/instance_list.html:32 +#: bookwyrm/templates/settings/federation/instance_list.html:35 #: bookwyrm/templates/settings/users/server_filter.html:5 msgid "Instance name" msgstr "實例名稱" -#: bookwyrm/templates/settings/federation/instance_list.html:40 +#: bookwyrm/templates/settings/federation/instance_list.html:43 +msgid "Last updated" +msgstr "" + +#: bookwyrm/templates/settings/federation/instance_list.html:47 +#: bookwyrm/templates/settings/federation/software_filter.html:5 msgid "Software" msgstr "軟體" -#: bookwyrm/templates/settings/federation/instance_list.html:63 +#: bookwyrm/templates/settings/federation/instance_list.html:69 msgid "No instances found" msgstr "" @@ -3610,6 +3603,14 @@ msgstr "" msgid "Invite Requests" msgstr "邀請請求" +#: bookwyrm/templates/settings/invites/manage_invite_requests.html:15 +#: bookwyrm/templates/settings/invites/manage_invites.html:3 +#: bookwyrm/templates/settings/invites/manage_invites.html:15 +#: bookwyrm/templates/settings/layout.html:42 +#: bookwyrm/templates/user_menu.html:56 +msgid "Invites" +msgstr "邀請" + #: bookwyrm/templates/settings/invites/manage_invite_requests.html:23 msgid "Ignored Invite Requests" msgstr "已忽略的邀請請求" @@ -4266,6 +4267,10 @@ msgstr "" msgid "You are running BookWyrm in production mode without https. USE_HTTPS should be enabled in production." msgstr "" +#: bookwyrm/templates/setup/config.html:52 bookwyrm/templates/user_menu.html:45 +msgid "Settings" +msgstr "設定" + #: bookwyrm/templates/setup/config.html:56 msgid "Instance domain:" msgstr "" @@ -5065,6 +5070,14 @@ msgstr[0] "%(mutuals_display)s 個你也關注的關注者" msgid "No followers you follow" msgstr "" +#: bookwyrm/templates/user_menu.html:7 +msgid "View profile and more" +msgstr "" + +#: bookwyrm/templates/user_menu.html:72 +msgid "Log out" +msgstr "登出" + #: bookwyrm/templates/widgets/clearable_file_input_with_warning.html:28 msgid "File exceeds maximum size: 10MB" msgstr "檔案超過了最大大小: 10MB" diff --git a/requirements.txt b/requirements.txt index 88a7c2bc..43294104 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ celery==5.2.2 colorthief==0.2.1 -Django==3.2.12 +Django==3.2.13 django-celery-beat==2.2.1 django-compressor==2.4.1 django-imagekit==4.1.0