mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +00:00
Merge branch 'main' into production
This commit is contained in:
commit
7cfccf2710
52 changed files with 1832 additions and 650 deletions
|
@ -7,6 +7,7 @@ from django.utils.translation import gettext_lazy as _
|
|||
import pyotp
|
||||
|
||||
from bookwyrm import models
|
||||
from bookwyrm.settings import DOMAIN
|
||||
from .custom_form import CustomForm
|
||||
|
||||
|
||||
|
@ -20,6 +21,21 @@ class LoginForm(CustomForm):
|
|||
"password": forms.PasswordInput(),
|
||||
}
|
||||
|
||||
def infer_username(self):
|
||||
"""Users may enter their localname, username, or email"""
|
||||
localname = self.data.get("localname")
|
||||
if "@" in localname: # looks like an email address to me
|
||||
try:
|
||||
return models.User.objects.get(email=localname).username
|
||||
except models.User.DoesNotExist: # maybe it's a full username?
|
||||
return localname
|
||||
return f"{localname}@{DOMAIN}"
|
||||
|
||||
def add_invalid_password_error(self):
|
||||
"""We don't want to be too specific about this"""
|
||||
# pylint: disable=attribute-defined-outside-init
|
||||
self.non_field_errors = _("Username or password are incorrect")
|
||||
|
||||
|
||||
class RegisterForm(CustomForm):
|
||||
class Meta:
|
||||
|
|
52
bookwyrm/migrations/0160_auto_20221101_2251.py
Normal file
52
bookwyrm/migrations/0160_auto_20221101_2251.py
Normal file
|
@ -0,0 +1,52 @@
|
|||
# Generated by Django 3.2.15 on 2022-11-01 22:51
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("bookwyrm", "0159_auto_20220924_0634"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="user",
|
||||
name="allow_reactivation",
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="connector",
|
||||
name="deactivation_reason",
|
||||
field=models.CharField(
|
||||
blank=True,
|
||||
choices=[
|
||||
("pending", "Pending"),
|
||||
("self_deletion", "Self deletion"),
|
||||
("self_deactivation", "Self deactivation"),
|
||||
("moderator_suspension", "Moderator suspension"),
|
||||
("moderator_deletion", "Moderator deletion"),
|
||||
("domain_block", "Domain block"),
|
||||
],
|
||||
max_length=255,
|
||||
null=True,
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="user",
|
||||
name="deactivation_reason",
|
||||
field=models.CharField(
|
||||
blank=True,
|
||||
choices=[
|
||||
("pending", "Pending"),
|
||||
("self_deletion", "Self deletion"),
|
||||
("self_deactivation", "Self deactivation"),
|
||||
("moderator_suspension", "Moderator suspension"),
|
||||
("moderator_deletion", "Moderator deletion"),
|
||||
("domain_block", "Domain block"),
|
||||
],
|
||||
max_length=255,
|
||||
null=True,
|
||||
),
|
||||
),
|
||||
]
|
|
@ -0,0 +1,13 @@
|
|||
# Generated by Django 3.2.15 on 2022-11-10 20:34
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("bookwyrm", "0160_auto_20221101_2251"),
|
||||
("bookwyrm", "0162_importjob_task_id"),
|
||||
]
|
||||
|
||||
operations = []
|
|
@ -17,6 +17,7 @@ from .fields import RemoteIdField
|
|||
DeactivationReason = [
|
||||
("pending", _("Pending")),
|
||||
("self_deletion", _("Self deletion")),
|
||||
("self_deactivation", _("Self deactivation")),
|
||||
("moderator_suspension", _("Moderator suspension")),
|
||||
("moderator_deletion", _("Moderator deletion")),
|
||||
("domain_block", _("Domain block")),
|
||||
|
|
|
@ -47,6 +47,7 @@ def site_link():
|
|||
return f"{protocol}://{DOMAIN}"
|
||||
|
||||
|
||||
# pylint: disable=too-many-public-methods
|
||||
class User(OrderedCollectionPageMixin, AbstractUser):
|
||||
"""a user who wants to read books"""
|
||||
|
||||
|
@ -169,6 +170,7 @@ class User(OrderedCollectionPageMixin, AbstractUser):
|
|||
max_length=255, choices=DeactivationReason, null=True, blank=True
|
||||
)
|
||||
deactivation_date = models.DateTimeField(null=True, blank=True)
|
||||
allow_reactivation = models.BooleanField(default=False)
|
||||
confirmation_code = models.CharField(max_length=32, default=new_access_code)
|
||||
|
||||
name_field = "username"
|
||||
|
@ -367,12 +369,28 @@ class User(OrderedCollectionPageMixin, AbstractUser):
|
|||
self.create_shelves()
|
||||
|
||||
def delete(self, *args, **kwargs):
|
||||
"""deactivate rather than delete a user"""
|
||||
"""We don't actually delete the database entry"""
|
||||
# pylint: disable=attribute-defined-outside-init
|
||||
self.is_active = False
|
||||
# skip the logic in this class's save()
|
||||
super().save(*args, **kwargs)
|
||||
|
||||
def deactivate(self):
|
||||
"""Disable the user but allow them to reactivate"""
|
||||
# pylint: disable=attribute-defined-outside-init
|
||||
self.is_active = False
|
||||
self.deactivation_reason = "self_deactivation"
|
||||
self.allow_reactivation = True
|
||||
super().save(broadcast=False)
|
||||
|
||||
def reactivate(self):
|
||||
"""Now you want to come back, huh?"""
|
||||
# pylint: disable=attribute-defined-outside-init
|
||||
self.is_active = True
|
||||
self.deactivation_reason = None
|
||||
self.allow_reactivation = False
|
||||
super().save(broadcast=False)
|
||||
|
||||
@property
|
||||
def local_path(self):
|
||||
"""this model doesn't inherit bookwyrm model, so here we are"""
|
||||
|
|
|
@ -21,7 +21,7 @@ RELEASE_API = env(
|
|||
PAGE_LENGTH = env("PAGE_LENGTH", 15)
|
||||
DEFAULT_LANGUAGE = env("DEFAULT_LANGUAGE", "English")
|
||||
|
||||
JS_CACHE = "e678183b"
|
||||
JS_CACHE = "e678183c"
|
||||
|
||||
# email
|
||||
EMAIL_BACKEND = env("EMAIL_BACKEND", "django.core.mail.backends.smtp.EmailBackend")
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
{% if show_confirmed_email %}
|
||||
<p class="notification is-success">{% trans "Success! Email address confirmed." %}</p>
|
||||
{% endif %}
|
||||
<form name="login-confirm" method="post" action="/login">
|
||||
<form name="login-confirm" method="post" action="{% url 'login' %}">
|
||||
{% csrf_token %}
|
||||
{% if show_confirmed_email %}<input type="hidden" name="first_login" value="true">{% endif %}
|
||||
<div class="field">
|
||||
|
|
60
bookwyrm/templates/landing/reactivate.html
Normal file
60
bookwyrm/templates/landing/reactivate.html
Normal file
|
@ -0,0 +1,60 @@
|
|||
{% extends 'layout.html' %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block title %}{% trans "Reactivate Account" %}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<h1 class="title">{% trans "Reactivate Account" %}</h1>
|
||||
<div class="columns is-multiline">
|
||||
<div class="column is-half">
|
||||
{% if login_form.non_field_errors %}
|
||||
<p class="notification is-danger">{{ login_form.non_field_errors }}</p>
|
||||
{% endif %}
|
||||
|
||||
<form name="login-confirm" method="post" action="{% url 'prefs-reactivate' %}">
|
||||
{% csrf_token %}
|
||||
<div class="field">
|
||||
<label class="label" for="id_localname_confirm">{% trans "Username:" %}</label>
|
||||
<div class="control">
|
||||
<input type="text" name="localname" maxlength="255" class="input" required="" id="id_localname_confirm" value="{{ login_form.localname.value|default:'' }}">
|
||||
</div>
|
||||
</div>
|
||||
<div class="field">
|
||||
<label class="label" for="id_password_confirm">{% trans "Password:" %}</label>
|
||||
<div class="control">
|
||||
<input type="password" name="password" maxlength="128" class="input" required="" id="id_password_confirm" aria-describedby="desc_password">
|
||||
</div>
|
||||
|
||||
{% include 'snippets/form_errors.html' with errors_list=login_form.password.errors id="desc_password" %}
|
||||
</div>
|
||||
<div class="field is-grouped">
|
||||
<div class="control">
|
||||
<button class="button is-primary" type="submit">{% trans "Reactivate account" %}</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
{% if site.allow_registration %}
|
||||
<div class="column is-half">
|
||||
<div class="box has-background-primary-light">
|
||||
<h2 class="title">{% trans "Create an Account" %}</h2>
|
||||
<form name="register" method="post" action="/register">
|
||||
{% include 'snippets/register_form.html' %}
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="column">
|
||||
<div class="box">
|
||||
{% include 'snippets/about.html' %}
|
||||
|
||||
<p class="block">
|
||||
<a href="{% url 'about' %}">{% trans "More about this site" %}</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
|
@ -8,22 +8,37 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block panel %}
|
||||
<div class="block">
|
||||
<h2 class="title is-4">{% trans "Deactivate account" %}</h2>
|
||||
<div class="box">
|
||||
<p class="notification is-link is-light">
|
||||
{% trans "Your account will be hidden. You can log back in at any time to re-activate your account." %}
|
||||
</p>
|
||||
|
||||
<form name="deactivate-user" action="{% url 'prefs-deactivate' %}" method="post">
|
||||
{% csrf_token %}
|
||||
<button type="submit" class="button is-link">{% trans "Deactivate Account" %}</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="block">
|
||||
<h2 class="title is-4">{% trans "Permanently delete account" %}</h2>
|
||||
<p class="notification is-danger is-light">
|
||||
{% trans "Deleting your account cannot be undone. The username will not be available to register in the future." %}
|
||||
</p>
|
||||
<div class="box">
|
||||
<p class="notification is-danger is-light">
|
||||
{% trans "Deleting your account cannot be undone. The username will not be available to register in the future." %}
|
||||
</p>
|
||||
|
||||
<form name="delete-user" action="{% url 'prefs-delete' %}" method="post">
|
||||
{% csrf_token %}
|
||||
<div class="field">
|
||||
<label class="label" for="id_password">{% trans "Confirm password:" %}</label>
|
||||
<input class="input {% if form.password.errors %}is-danger{% endif %}" type="password" name="password" id="id_password" required aria-describedby="desc_password">
|
||||
<form name="delete-user" action="{% url 'prefs-delete' %}" method="post">
|
||||
{% csrf_token %}
|
||||
<div class="field">
|
||||
<label class="label" for="id_password">{% trans "Confirm password:" %}</label>
|
||||
<input class="input {% if form.password.errors %}is-danger{% endif %}" type="password" name="password" id="id_password" required aria-describedby="desc_password">
|
||||
|
||||
{% include 'snippets/form_errors.html' with errors_list=form.password.errors id="desc_password" %}
|
||||
</div>
|
||||
<button type="submit" class="button is-danger">{% trans "Delete Account" %}</button>
|
||||
</form>
|
||||
{% include 'snippets/form_errors.html' with errors_list=form.password.errors id="desc_password" %}
|
||||
</div>
|
||||
<button type="submit" class="button is-danger">{% trans "Delete Account" %}</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -24,6 +24,7 @@ from bookwyrm import activitypub, models, settings
|
|||
class Status(TestCase):
|
||||
"""lotta types of statuses"""
|
||||
|
||||
# pylint: disable=invalid-name
|
||||
def setUp(self):
|
||||
"""useful things for creating a status"""
|
||||
with patch("bookwyrm.suggested_users.rerank_suggestions_task.delay"), patch(
|
||||
|
@ -223,12 +224,12 @@ class Status(TestCase):
|
|||
f'test content<p>(comment on <a href="{self.book.remote_id}">"Test Edition"</a>)</p>',
|
||||
)
|
||||
self.assertEqual(activity["attachment"][0].type, "Document")
|
||||
self.assertTrue(
|
||||
re.match(
|
||||
r"https:\/\/your.domain.here\/images\/covers\/test_[A-z0-9]+.jpg",
|
||||
activity["attachment"][0].url,
|
||||
)
|
||||
)
|
||||
# self.assertTrue(
|
||||
# re.match(
|
||||
# r"https:\/\/your.domain.here\/images\/covers\/test_[A-z0-9]+.jpg",
|
||||
# activity["attachment"][0].url,
|
||||
# )
|
||||
# )
|
||||
self.assertEqual(activity["attachment"][0].name, "Test Edition")
|
||||
|
||||
def test_quotation_to_activity(self, *_):
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
""" test for app action functionality """
|
||||
import datetime
|
||||
import pathlib
|
||||
from unittest.mock import patch
|
||||
|
||||
|
@ -106,3 +107,45 @@ class ImportViews(TestCase):
|
|||
with patch("bookwyrm.models.import_job.import_item_task.delay") as mock:
|
||||
views.retry_item(request, job.id, item.id)
|
||||
self.assertEqual(mock.call_count, 1)
|
||||
|
||||
def test_get_average_import_time_no_imports(self):
|
||||
"""Give people a sense of the timing"""
|
||||
result = views.imports.import_data.get_average_import_time()
|
||||
self.assertIsNone(result)
|
||||
|
||||
def test_get_average_import_time_no_imports_this_week(self):
|
||||
"""Give people a sense of the timing"""
|
||||
models.ImportJob.objects.create(
|
||||
user=self.local_user,
|
||||
created_date=datetime.datetime(2000, 1, 1),
|
||||
updated_date=datetime.datetime(2001, 1, 1),
|
||||
status="complete",
|
||||
complete=True,
|
||||
mappings={},
|
||||
)
|
||||
result = views.imports.import_data.get_average_import_time()
|
||||
self.assertIsNone(result)
|
||||
|
||||
def test_get_average_import_time_with_data(self):
|
||||
"""Now, with data"""
|
||||
now = datetime.datetime.now()
|
||||
two_hours_ago = now - datetime.timedelta(hours=2)
|
||||
four_hours_ago = now - datetime.timedelta(hours=4)
|
||||
models.ImportJob.objects.create(
|
||||
user=self.local_user,
|
||||
created_date=two_hours_ago,
|
||||
updated_date=now,
|
||||
status="complete",
|
||||
complete=True,
|
||||
mappings={},
|
||||
)
|
||||
models.ImportJob.objects.create(
|
||||
user=self.local_user,
|
||||
created_date=four_hours_ago,
|
||||
updated_date=now,
|
||||
status="complete",
|
||||
complete=True,
|
||||
mappings={},
|
||||
)
|
||||
result = views.imports.import_data.get_average_import_time()
|
||||
self.assertEqual(result, 3 * 60 * 60)
|
||||
|
|
|
@ -17,6 +17,7 @@ from bookwyrm.tests.validate_html import validate_html
|
|||
class LoginViews(TestCase):
|
||||
"""login and password management"""
|
||||
|
||||
# pylint: disable=invalid-name
|
||||
def setUp(self):
|
||||
"""we need basic test data and mocks"""
|
||||
self.factory = RequestFactory()
|
||||
|
@ -81,7 +82,7 @@ class LoginViews(TestCase):
|
|||
self.assertEqual(result.status_code, 302)
|
||||
|
||||
def test_login_post_username(self, *_):
|
||||
"""there are so many views, this just makes sure it LOADS"""
|
||||
"""valid login where the user provides their user@domain.com username"""
|
||||
view = views.Login.as_view()
|
||||
form = forms.LoginForm()
|
||||
form.data["localname"] = "mouse@your.domain.here"
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
import json
|
||||
from unittest.mock import patch
|
||||
|
||||
from django.contrib.auth.models import AnonymousUser
|
||||
from django.contrib.sessions.middleware import SessionMiddleware
|
||||
from django.template.response import TemplateResponse
|
||||
from django.test import TestCase
|
||||
|
@ -15,6 +16,7 @@ from bookwyrm.tests.validate_html import validate_html
|
|||
class DeleteUserViews(TestCase):
|
||||
"""view user and edit profile"""
|
||||
|
||||
# pylint: disable=invalid-name
|
||||
def setUp(self):
|
||||
"""we need basic test data and mocks"""
|
||||
self.factory = RequestFactory()
|
||||
|
@ -22,14 +24,18 @@ class DeleteUserViews(TestCase):
|
|||
"bookwyrm.activitystreams.populate_stream_task.delay"
|
||||
), patch("bookwyrm.lists_stream.populate_lists_task.delay"):
|
||||
self.local_user = models.User.objects.create_user(
|
||||
"mouse@local.com",
|
||||
"mouse@your.domain.here",
|
||||
"mouse@mouse.mouse",
|
||||
"password",
|
||||
local=True,
|
||||
localname="mouse",
|
||||
)
|
||||
self.rat = models.User.objects.create_user(
|
||||
"rat@local.com", "rat@rat.rat", "password", local=True, localname="rat"
|
||||
"rat@your.domain.here",
|
||||
"rat@rat.rat",
|
||||
"password",
|
||||
local=True,
|
||||
localname="rat",
|
||||
)
|
||||
|
||||
self.book = models.Edition.objects.create(
|
||||
|
@ -44,6 +50,8 @@ class DeleteUserViews(TestCase):
|
|||
shelf=self.local_user.shelf_set.first(),
|
||||
)
|
||||
|
||||
self.anonymous_user = AnonymousUser
|
||||
self.anonymous_user.is_authenticated = False
|
||||
models.SiteSettings.objects.create()
|
||||
|
||||
def test_delete_user_page(self, _):
|
||||
|
@ -84,3 +92,52 @@ class DeleteUserViews(TestCase):
|
|||
self.local_user.refresh_from_db()
|
||||
self.assertFalse(self.local_user.is_active)
|
||||
self.assertEqual(self.local_user.deactivation_reason, "self_deletion")
|
||||
|
||||
def test_deactivate_user(self, _):
|
||||
"""Impermanent deletion"""
|
||||
self.assertTrue(self.local_user.is_active)
|
||||
view = views.DeactivateUser.as_view()
|
||||
request = self.factory.post("")
|
||||
request.user = self.local_user
|
||||
middleware = SessionMiddleware()
|
||||
middleware.process_request(request)
|
||||
request.session.save()
|
||||
|
||||
view(request)
|
||||
|
||||
self.local_user.refresh_from_db()
|
||||
self.assertFalse(self.local_user.is_active)
|
||||
self.assertEqual(self.local_user.deactivation_reason, "self_deactivation")
|
||||
|
||||
def test_reactivate_user_get(self, _):
|
||||
"""Reactication page"""
|
||||
view = views.ReactivateUser.as_view()
|
||||
request = self.factory.get("")
|
||||
request.user = self.anonymous_user
|
||||
|
||||
result = view(request)
|
||||
self.assertIsInstance(result, TemplateResponse)
|
||||
validate_html(result.render())
|
||||
self.assertEqual(result.status_code, 200)
|
||||
|
||||
def test_reactivate_user_post(self, _):
|
||||
"""Reactivate action"""
|
||||
self.local_user.deactivate()
|
||||
self.local_user.refresh_from_db()
|
||||
|
||||
view = views.ReactivateUser.as_view()
|
||||
form = forms.LoginForm()
|
||||
form.data["localname"] = "mouse"
|
||||
form.data["password"] = "password"
|
||||
request = self.factory.post("", form.data)
|
||||
request.user = self.local_user
|
||||
middleware = SessionMiddleware()
|
||||
middleware.process_request(request)
|
||||
request.session.save()
|
||||
|
||||
with patch("bookwyrm.views.preferences.delete_user.login"):
|
||||
view(request)
|
||||
|
||||
self.local_user.refresh_from_db()
|
||||
self.assertTrue(self.local_user.is_active)
|
||||
self.assertIsNone(self.local_user.deactivation_reason)
|
||||
|
|
|
@ -526,6 +526,16 @@ urlpatterns = [
|
|||
),
|
||||
re_path(r"^preferences/export/?$", views.Export.as_view(), name="prefs-export"),
|
||||
re_path(r"^preferences/delete/?$", views.DeleteUser.as_view(), name="prefs-delete"),
|
||||
re_path(
|
||||
r"^preferences/deactivate/?$",
|
||||
views.DeactivateUser.as_view(),
|
||||
name="prefs-deactivate",
|
||||
),
|
||||
re_path(
|
||||
r"^preferences/reactivate/?$",
|
||||
views.ReactivateUser.as_view(),
|
||||
name="prefs-reactivate",
|
||||
),
|
||||
re_path(r"^preferences/block/?$", views.Block.as_view(), name="prefs-block"),
|
||||
re_path(r"^block/(?P<user_id>\d+)/?$", views.Block.as_view()),
|
||||
re_path(r"^unblock/(?P<user_id>\d+)/?$", views.unblock),
|
||||
|
|
|
@ -31,7 +31,7 @@ from .admin.user_admin import UserAdmin, UserAdminList
|
|||
from .preferences.change_password import ChangePassword
|
||||
from .preferences.edit_user import EditUser
|
||||
from .preferences.export import Export
|
||||
from .preferences.delete_user import DeleteUser
|
||||
from .preferences.delete_user import DeleteUser, DeactivateUser, ReactivateUser
|
||||
from .preferences.block import Block, unblock
|
||||
from .preferences.two_factor_auth import (
|
||||
Edit2FA,
|
||||
|
|
|
@ -22,6 +22,7 @@ from bookwyrm.importers import (
|
|||
OpenLibraryImporter,
|
||||
)
|
||||
from bookwyrm.settings import PAGE_LENGTH
|
||||
from bookwyrm.utils.cache import get_or_set
|
||||
|
||||
# pylint: disable= no-self-use
|
||||
@method_decorator(login_required, name="dispatch")
|
||||
|
@ -43,24 +44,11 @@ class Import(View):
|
|||
),
|
||||
}
|
||||
|
||||
last_week = timezone.now() - datetime.timedelta(days=7)
|
||||
recent_avg = (
|
||||
models.ImportJob.objects.filter(created_date__gte=last_week, complete=True)
|
||||
.annotate(
|
||||
runtime=ExpressionWrapper(
|
||||
F("updated_date") - F("created_date"),
|
||||
output_field=fields.DurationField(),
|
||||
)
|
||||
)
|
||||
.aggregate(Avg("runtime"))
|
||||
.get("runtime__avg")
|
||||
)
|
||||
if recent_avg:
|
||||
seconds = recent_avg.total_seconds()
|
||||
if seconds > 60**2:
|
||||
data["recent_avg_hours"] = recent_avg.seconds / (60**2)
|
||||
else:
|
||||
data["recent_avg_minutes"] = recent_avg.seconds / 60
|
||||
seconds = get_or_set("avg-import-time", get_average_import_time, timeout=86400)
|
||||
if seconds and seconds > 60**2:
|
||||
data["recent_avg_hours"] = seconds / (60**2)
|
||||
elif seconds:
|
||||
data["recent_avg_minutes"] = seconds / 60
|
||||
|
||||
return TemplateResponse(request, "import/import.html", data)
|
||||
|
||||
|
@ -100,3 +88,23 @@ class Import(View):
|
|||
job.start_job()
|
||||
|
||||
return redirect(f"/import/{job.id}")
|
||||
|
||||
|
||||
def get_average_import_time() -> float:
|
||||
"""Helper to figure out how long imports are taking (returns seconds)"""
|
||||
last_week = timezone.now() - datetime.timedelta(days=7)
|
||||
recent_avg = (
|
||||
models.ImportJob.objects.filter(created_date__gte=last_week, status="complete")
|
||||
.annotate(
|
||||
runtime=ExpressionWrapper(
|
||||
F("updated_date") - F("created_date"),
|
||||
output_field=fields.DurationField(),
|
||||
)
|
||||
)
|
||||
.aggregate(Avg("runtime"))
|
||||
.get("runtime__avg")
|
||||
)
|
||||
|
||||
if recent_avg:
|
||||
return recent_avg.total_seconds()
|
||||
return None
|
||||
|
|
|
@ -6,12 +6,10 @@ from django.contrib.auth.decorators import login_required
|
|||
from django.shortcuts import redirect
|
||||
from django.template.response import TemplateResponse
|
||||
from django.utils.decorators import method_decorator
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
from django.views import View
|
||||
from django.views.decorators.debug import sensitive_variables, sensitive_post_parameters
|
||||
|
||||
from bookwyrm import forms, models
|
||||
from bookwyrm.settings import DOMAIN
|
||||
from bookwyrm.views.helpers import set_language
|
||||
|
||||
|
||||
|
@ -40,19 +38,13 @@ class Login(View):
|
|||
return redirect("/")
|
||||
login_form = forms.LoginForm(request.POST)
|
||||
|
||||
localname = login_form.data.get("localname")
|
||||
|
||||
if "@" in localname: # looks like an email address to me
|
||||
try:
|
||||
username = models.User.objects.get(email=localname).username
|
||||
except models.User.DoesNotExist: # maybe it's a full username?
|
||||
username = localname
|
||||
else:
|
||||
username = f"{localname}@{DOMAIN}"
|
||||
# who do we think is trying to log in
|
||||
username = login_form.infer_username()
|
||||
password = login_form.data.get("password")
|
||||
|
||||
# perform authentication
|
||||
user = authenticate(request, username=username, password=password)
|
||||
|
||||
if user is not None:
|
||||
# if 2fa is set, don't log them in until they enter the right code
|
||||
if user.two_factor_auth:
|
||||
|
@ -76,14 +68,22 @@ class Login(View):
|
|||
|
||||
return set_language(user, redirect("/"))
|
||||
|
||||
# maybe the user is pending email confirmation
|
||||
if models.User.objects.filter(
|
||||
username=username, is_active=False, deactivation_reason="pending"
|
||||
).exists():
|
||||
user_attempt = models.User.objects.filter(
|
||||
username=username, is_active=False
|
||||
).first()
|
||||
if user_attempt and user_attempt.deactivation_reason == "pending":
|
||||
# maybe the user is pending email confirmation
|
||||
return redirect("confirm-email")
|
||||
if (
|
||||
user_attempt
|
||||
and user_attempt.allow_reactivation
|
||||
and user_attempt.check_password(password)
|
||||
):
|
||||
# maybe we want to reactivate an account?
|
||||
return redirect("prefs-reactivate")
|
||||
|
||||
# login errors
|
||||
login_form.non_field_errors = _("Username or password are incorrect")
|
||||
login_form.add_invalid_password_error()
|
||||
register_form = forms.RegisterForm()
|
||||
data = {"login_form": login_form, "register_form": register_form}
|
||||
return TemplateResponse(request, "landing/login.html", data)
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
""" edit your own account """
|
||||
from django.contrib.auth import logout
|
||||
import time
|
||||
|
||||
from django.contrib.auth import login, logout
|
||||
from django.contrib.auth.decorators import login_required
|
||||
from django.shortcuts import redirect
|
||||
from django.shortcuts import get_object_or_404, redirect
|
||||
from django.template.response import TemplateResponse
|
||||
from django.utils.decorators import method_decorator
|
||||
from django.views import View
|
||||
|
@ -23,7 +25,7 @@ class DeleteUser(View):
|
|||
return TemplateResponse(request, "preferences/delete_user.html", data)
|
||||
|
||||
def post(self, request):
|
||||
"""les get fancy with images"""
|
||||
"""There's no going back from this"""
|
||||
form = forms.DeleteUserForm(request.POST, instance=request.user)
|
||||
# idk why but I couldn't get check_password to work on request.user
|
||||
user = models.User.objects.get(id=request.user.id)
|
||||
|
@ -36,3 +38,49 @@ class DeleteUser(View):
|
|||
form.errors["password"] = ["Invalid password"]
|
||||
data = {"form": form, "user": request.user}
|
||||
return TemplateResponse(request, "preferences/delete_user.html", data)
|
||||
|
||||
|
||||
@method_decorator(login_required, name="dispatch")
|
||||
class DeactivateUser(View):
|
||||
"""deactivate user view"""
|
||||
|
||||
def post(self, request):
|
||||
"""You can reactivate"""
|
||||
request.user.deactivate()
|
||||
logout(request)
|
||||
return redirect("/")
|
||||
|
||||
|
||||
class ReactivateUser(View):
|
||||
"""now reactivate the user"""
|
||||
|
||||
def get(self, request):
|
||||
"""so you want to rejoin?"""
|
||||
if request.user.is_authenticated:
|
||||
return redirect("/")
|
||||
data = {"login_form": forms.LoginForm()}
|
||||
return TemplateResponse(request, "landing/reactivate.html", data)
|
||||
|
||||
def post(self, request):
|
||||
"""reactivate that baby"""
|
||||
login_form = forms.LoginForm(request.POST)
|
||||
|
||||
username = login_form.infer_username()
|
||||
password = login_form.data.get("password")
|
||||
user = get_object_or_404(models.User, username=username)
|
||||
|
||||
# we can't use "authenticate" because that requires an active user
|
||||
if not user.check_password(password):
|
||||
login_form.add_invalid_password_error()
|
||||
data = {"login_form": login_form}
|
||||
return TemplateResponse(request, "landing/reactivate.html", data)
|
||||
|
||||
# Correct password, do you need 2fa too?
|
||||
if user.two_factor_auth:
|
||||
request.session["2fa_user"] = user.username
|
||||
request.session["2fa_auth_time"] = time.time()
|
||||
return redirect("login-with-2fa")
|
||||
|
||||
user.reactivate()
|
||||
login(request, user)
|
||||
return redirect("/")
|
||||
|
|
|
@ -133,6 +133,9 @@ class LoginWith2FA(View):
|
|||
request, "two_factor_auth/two_factor_login.html", data
|
||||
)
|
||||
|
||||
# is this a reactivate? let's go for it
|
||||
if not user.is_active and user.allow_reactivation:
|
||||
user.reactivate()
|
||||
# log the user in - we are bypassing standard login
|
||||
login(request, user)
|
||||
user.update_active_date()
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-10-21 21:25\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-03 22:52\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: Catalan\n"
|
||||
"Language: ca\n"
|
||||
|
@ -171,23 +171,23 @@ msgstr "Eliminació pel moderador"
|
|||
msgid "Domain block"
|
||||
msgstr "Bloqueig de domini"
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr "Audiollibre"
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr "Llibre electrònic"
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr "Novel·la gràfica"
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr "Tapa dura"
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr "Edició de butxaca"
|
||||
|
||||
|
@ -629,66 +629,66 @@ msgstr "La seva valoració: <strong>%(rating)s</strong>"
|
|||
msgid "All the books %(display_name)s read in %(year)s"
|
||||
msgstr "Tots els llibres de %(display_name)s llegits el %(year)s"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:18
|
||||
#: bookwyrm/templates/author/author.html:19
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "Editar autoria"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr "Detalls de l'autoria"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "Àlies:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "Data de naixement:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "Data de defunció:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr "Enllaços externs"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "Vikipèdia"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr "Veure el registre ISNI"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr "Carregueu dades"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "Veure a OpenLibrary"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "Veure a Inventaire"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr "Veure a LibraryThing"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr "Veure a Goodreads"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "Llibres de %(name)s"
|
||||
|
@ -809,6 +809,7 @@ msgstr "Desa"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -825,6 +826,7 @@ msgstr "La càrrega de les dades es connectarà a <strong>%(source_name)s</stron
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmeu"
|
||||
|
@ -1303,6 +1305,7 @@ msgstr "Estat"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1978,6 +1981,7 @@ msgstr "Vols esborrar aquest grup?"
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr "Aquesta acció no es pot desfer"
|
||||
|
||||
|
@ -2639,6 +2643,9 @@ msgid "Retry Status"
|
|||
msgstr "Estat del reintent"
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr "Importacions"
|
||||
|
||||
|
@ -4037,7 +4044,7 @@ msgstr "Edita"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "Avisos"
|
||||
|
||||
|
@ -4244,6 +4251,7 @@ msgid "Active Tasks"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4575,6 +4583,52 @@ msgstr "Programari"
|
|||
msgid "No instances found"
|
||||
msgstr "No s'ha trobat cap instància"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Actiu"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4753,21 +4807,21 @@ msgstr "Dominis dels enllaços"
|
|||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "Configuració d'instància"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "Configuració del lloc"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5116,11 +5170,6 @@ msgstr "Actiu per última vegada"
|
|||
msgid "Remote instance"
|
||||
msgstr "Instància remota"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Actiu"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr "Eliminat"
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-10-21 21:25\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-03 22:52\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: German\n"
|
||||
"Language: de\n"
|
||||
|
@ -171,23 +171,23 @@ msgstr "Moderator*in löschen"
|
|||
msgid "Domain block"
|
||||
msgstr "Domainsperrung"
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr "Hörbuch"
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr "E-Book"
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr "Graphic Novel"
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr "Hardcover"
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr "Taschenbuch"
|
||||
|
||||
|
@ -629,66 +629,66 @@ msgstr "Ihre Bewertung: <strong>%(rating)s</strong>"
|
|||
msgid "All the books %(display_name)s read in %(year)s"
|
||||
msgstr "Alle Bücher, die %(display_name)s %(year)s gelesen hat"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:18
|
||||
#: bookwyrm/templates/author/author.html:19
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "Autor*in bearbeiten"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr "Autor*in-Details"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "Alternative Namen:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "Geboren:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "Gestorben:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr "Externe Links"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "Wikipedia"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr "ISNI-Datensatz anzeigen"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr "Lade Daten"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "Auf OpenLibrary ansehen"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "Auf Inventaire anzeigen"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr "Auf LibraryThing anzeigen"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr "Auf Goodreads ansehen"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "Bücher von %(name)s"
|
||||
|
@ -809,6 +809,7 @@ msgstr "Speichern"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -825,6 +826,7 @@ msgstr "Das Laden von Daten wird eine Verbindung zu <strong>%(source_name)s</str
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "Bestätigen"
|
||||
|
@ -1303,6 +1305,7 @@ msgstr "Status"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1978,6 +1981,7 @@ msgstr "Diese Gruppe löschen?"
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr "Diese Aktion kann nicht rückgängig gemacht werden"
|
||||
|
||||
|
@ -2639,6 +2643,9 @@ msgid "Retry Status"
|
|||
msgstr "Wiederholungsstatus"
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr "Importe"
|
||||
|
||||
|
@ -4037,7 +4044,7 @@ msgstr "Ändern"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "Ankündigungen"
|
||||
|
||||
|
@ -4244,6 +4251,7 @@ msgid "Active Tasks"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4575,6 +4583,52 @@ msgstr "Software"
|
|||
msgid "No instances found"
|
||||
msgstr "Keine Instanzen gefunden"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4753,21 +4807,21 @@ msgstr "Domains verlinken"
|
|||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "Instanzeinstellungen"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "Seiteneinstellungen"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5116,11 +5170,6 @@ msgstr "Zuletzt aktiv"
|
|||
msgid "Remote instance"
|
||||
msgstr "Entfernte Instanz"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr "Gelöscht"
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 0.0.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"POT-Creation-Date: 2022-11-07 19:14+0000\n"
|
||||
"PO-Revision-Date: 2021-02-28 17:19-0800\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: English <LL@li.org>\n"
|
||||
|
@ -117,14 +117,6 @@ msgstr ""
|
|||
msgid "Descending"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/importers/importer.py:145 bookwyrm/importers/importer.py:167
|
||||
msgid "Error loading book"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/importers/importer.py:154
|
||||
msgid "Could not find a match for book"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/models/announcement.py:11
|
||||
msgid "Primary"
|
||||
msgstr ""
|
||||
|
@ -150,8 +142,8 @@ msgstr ""
|
|||
msgid "Automatically generated report"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/models/base_model.py:18 bookwyrm/models/link.py:72
|
||||
#: bookwyrm/templates/import/import_status.html:207
|
||||
#: bookwyrm/models/base_model.py:18 bookwyrm/models/import_job.py:47
|
||||
#: bookwyrm/models/link.py:72 bookwyrm/templates/import/import_status.html:214
|
||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:19
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
@ -257,6 +249,33 @@ msgstr ""
|
|||
msgid "Private"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/models/import_job.py:48 bookwyrm/templates/import/import.html:140
|
||||
#: bookwyrm/templates/settings/imports/imports.html:19
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/models/import_job.py:49 bookwyrm/templates/import/import.html:138
|
||||
msgid "Complete"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/models/import_job.py:50
|
||||
msgid "Stopped"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/models/import_job.py:84 bookwyrm/models/import_job.py:92
|
||||
msgid "Import stopped"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/models/import_job.py:359 bookwyrm/models/import_job.py:384
|
||||
msgid "Error loading book"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/models/import_job.py:368
|
||||
msgid "Could not find a match for book"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/models/link.py:51
|
||||
msgid "Free"
|
||||
msgstr ""
|
||||
|
@ -1294,9 +1313,10 @@ msgid "Domain"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/book/file_links/edit_links.html:36
|
||||
#: bookwyrm/templates/import/import_status.html:127
|
||||
#: bookwyrm/templates/import/import.html:105
|
||||
#: bookwyrm/templates/import/import_status.html:134
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:37
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:47
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:48
|
||||
#: bookwyrm/templates/settings/invites/status_filter.html:5
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:56
|
||||
#: bookwyrm/templates/settings/users/user_info.html:24
|
||||
|
@ -1306,7 +1326,7 @@ msgstr ""
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/imports/imports.html:60
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -2598,37 +2618,81 @@ msgstr ""
|
|||
msgid "Import Books"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:18
|
||||
#: bookwyrm/templates/import/import.html:15
|
||||
#, python-format
|
||||
msgid "On average, recent imports have taken %(hours)s hours."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:19
|
||||
#, python-format
|
||||
msgid "On average, recent imports have taken %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:34
|
||||
msgid "Data source:"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:42
|
||||
#: bookwyrm/templates/import/import.html:40
|
||||
msgid "Goodreads (CSV)"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:43
|
||||
msgid "Storygraph (CSV)"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:46
|
||||
msgid "LibraryThing (TSV)"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:49
|
||||
msgid "OpenLibrary (CSV)"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:52
|
||||
msgid "Calibre (CSV)"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:58
|
||||
msgid "You can download your Goodreads data from the <a href=\"https://www.goodreads.com/review/import\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Import/Export page</a> of your Goodreads account."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:51
|
||||
#: bookwyrm/templates/import/import.html:67
|
||||
msgid "Data file:"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:59
|
||||
#: bookwyrm/templates/import/import.html:75
|
||||
msgid "Include reviews"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:64
|
||||
#: bookwyrm/templates/import/import.html:80
|
||||
msgid "Privacy setting for imported reviews:"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:70
|
||||
#: bookwyrm/templates/import/import.html:86
|
||||
#: bookwyrm/templates/preferences/layout.html:35
|
||||
#: bookwyrm/templates/settings/federation/instance_blocklist.html:78
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:75
|
||||
#: bookwyrm/templates/import/import.html:91
|
||||
msgid "Recent Imports"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:77
|
||||
#: bookwyrm/templates/import/import.html:96
|
||||
#: bookwyrm/templates/settings/imports/imports.html:40
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:99
|
||||
msgid "Last Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:102
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import.html:111
|
||||
msgid "No recent imports"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2644,8 +2708,8 @@ msgid "Retry Status"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/imports/imports.html:6
|
||||
#: bookwyrm/templates/settings/imports/imports.html:9
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr ""
|
||||
|
@ -2662,97 +2726,102 @@ msgstr ""
|
|||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:71
|
||||
#: bookwyrm/templates/import/import_status.html:72
|
||||
#: bookwyrm/templates/settings/imports/imports.html:80
|
||||
msgid "Stop import"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:78
|
||||
#, python-format
|
||||
msgid "%(display_counter)s item needs manual approval."
|
||||
msgid_plural "%(display_counter)s items need manual approval."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:76
|
||||
#: bookwyrm/templates/import/import_status.html:83
|
||||
#: bookwyrm/templates/import/manual_review.html:8
|
||||
msgid "Review items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:82
|
||||
#: bookwyrm/templates/import/import_status.html:89
|
||||
#, python-format
|
||||
msgid "%(display_counter)s item failed to import."
|
||||
msgid_plural "%(display_counter)s items failed to import."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:88
|
||||
#: bookwyrm/templates/import/import_status.html:95
|
||||
msgid "View and troubleshoot failed items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:100
|
||||
#: bookwyrm/templates/import/import_status.html:107
|
||||
msgid "Row"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:103
|
||||
#: bookwyrm/templates/import/import_status.html:110
|
||||
#: bookwyrm/templates/shelf/shelf.html:148
|
||||
#: bookwyrm/templates/shelf/shelf.html:170
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:106
|
||||
#: bookwyrm/templates/import/import_status.html:113
|
||||
msgid "ISBN"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:110
|
||||
#: bookwyrm/templates/import/import_status.html:117
|
||||
msgid "Openlibrary key"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:114
|
||||
#: bookwyrm/templates/import/import_status.html:121
|
||||
#: bookwyrm/templates/shelf/shelf.html:149
|
||||
#: bookwyrm/templates/shelf/shelf.html:173
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:117
|
||||
#: bookwyrm/templates/import/import_status.html:124
|
||||
msgid "Shelf"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:120
|
||||
#: bookwyrm/templates/import/import_status.html:127
|
||||
#: bookwyrm/templates/import/manual_review.html:13
|
||||
#: bookwyrm/templates/snippets/create_status.html:16
|
||||
msgid "Review"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:124
|
||||
#: bookwyrm/templates/import/import_status.html:131
|
||||
#: bookwyrm/templates/settings/link_domains/link_table.html:9
|
||||
msgid "Book"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:135
|
||||
#: bookwyrm/templates/import/import_status.html:142
|
||||
msgid "Import preview unavailable."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:143
|
||||
#: bookwyrm/templates/import/import_status.html:150
|
||||
msgid "No items currently need review"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:179
|
||||
#: bookwyrm/templates/import/import_status.html:186
|
||||
msgid "View imported review"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:193
|
||||
#: bookwyrm/templates/import/import_status.html:200
|
||||
msgid "Imported"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:199
|
||||
#: bookwyrm/templates/import/import_status.html:206
|
||||
msgid "Needs manual review"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:212
|
||||
#: bookwyrm/templates/import/import_status.html:219
|
||||
msgid "Retry"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:230
|
||||
#: bookwyrm/templates/import/import_status.html:237
|
||||
msgid "This import is in an old format that is no longer supported. If you would like to troubleshoot missing items from this import, click the button below to update the import format."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:232
|
||||
#: bookwyrm/templates/import/import_status.html:239
|
||||
msgid "Update import"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2776,6 +2845,7 @@ msgid "Reject"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/troubleshoot.html:7
|
||||
#: bookwyrm/templates/settings/imports/imports.html:57
|
||||
msgid "Failed items"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4251,7 +4321,7 @@ msgid "Active Tasks"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
#: bookwyrm/templates/settings/imports/imports.html:34
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4584,49 +4654,31 @@ msgid "No instances found"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgid "Stop import?"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:23
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
#: bookwyrm/templates/settings/imports/imports.html:37
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
#: bookwyrm/templates/settings/imports/imports.html:51
|
||||
msgid "Pending items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
#: bookwyrm/templates/settings/imports/imports.html:54
|
||||
msgid "Successful items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
#: bookwyrm/templates/settings/imports/imports.html:89
|
||||
msgid "No matching imports found."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
|
@ -4648,67 +4700,67 @@ msgstr ""
|
|||
msgid "Ignored Invite Requests"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:35
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:36
|
||||
msgid "Date requested"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:39
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:40
|
||||
msgid "Date accepted"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:42
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:43
|
||||
#: bookwyrm/templates/settings/users/email_filter.html:5
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:44
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:45
|
||||
msgid "Answer"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:50
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:51
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:53
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:54
|
||||
msgid "No requests"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:65
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:66
|
||||
#: bookwyrm/templates/settings/invites/status_filter.html:16
|
||||
msgid "Accepted"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:67
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:68
|
||||
#: bookwyrm/templates/settings/invites/status_filter.html:12
|
||||
msgid "Sent"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:69
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:70
|
||||
#: bookwyrm/templates/settings/invites/status_filter.html:8
|
||||
msgid "Requested"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:79
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:80
|
||||
msgid "Send invite"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:81
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:82
|
||||
msgid "Re-send invite"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:101
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:102
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:103
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:104
|
||||
msgid "Un-ignore"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:114
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116
|
||||
msgid "Back to pending requests"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:116
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:118
|
||||
msgid "View ignored requests"
|
||||
msgstr ""
|
||||
|
||||
|
@ -6167,7 +6219,7 @@ msgstr ""
|
|||
msgid "%(title)s: %(subtitle)s"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/views/imports/import_data.py:70
|
||||
#: bookwyrm/views/imports/import_data.py:98
|
||||
msgid "Not a valid csv file"
|
||||
msgstr ""
|
||||
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-10-21 21:25\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-03 22:52\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: Spanish\n"
|
||||
"Language: es\n"
|
||||
|
@ -171,23 +171,23 @@ msgstr "Eliminación de moderador"
|
|||
msgid "Domain block"
|
||||
msgstr "Bloqueo de dominio"
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr "Audio libro"
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr "Libro electrónico"
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr "Novela gráfica"
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr "Tapa dura"
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr "Tapa blanda"
|
||||
|
||||
|
@ -629,66 +629,66 @@ msgstr "Su valoración: <strong>%(rating)s</strong>"
|
|||
msgid "All the books %(display_name)s read in %(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
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "Editar Autor/Autora"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr "Información sobre le autore"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "Alias:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "Fecha de nacimiento:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "Fecha de defunción:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr "Enlaces externos"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "Wikipedia"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr "Ver registro ISNI"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr "Cargar datos"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "Ver en OpenLibrary"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "Ver en Inventaire"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr "Ver en LibraryThing"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr "Ver en Goodreads"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "Libros de %(name)s"
|
||||
|
@ -809,6 +809,7 @@ msgstr "Guardar"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -825,6 +826,7 @@ msgstr "La carga de datos se conectará a <strong>%(source_name)s</strong> y com
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
@ -1303,6 +1305,7 @@ msgstr "Estado"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1978,6 +1981,7 @@ msgstr "¿Eliminar este grupo?"
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr "Esta acción no se puede deshacer"
|
||||
|
||||
|
@ -2639,6 +2643,9 @@ msgid "Retry Status"
|
|||
msgstr "Estado del Reintento"
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr "Importaciones"
|
||||
|
||||
|
@ -4037,7 +4044,7 @@ msgstr "Editar"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "Anuncios"
|
||||
|
||||
|
@ -4244,6 +4251,7 @@ msgid "Active Tasks"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4575,6 +4583,52 @@ msgstr "Software"
|
|||
msgid "No instances found"
|
||||
msgstr "No se encontró ningun anuncio"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4753,21 +4807,21 @@ msgstr "Dominios de enlaces"
|
|||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "Configurar instancia"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "Configurar sitio"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5116,11 +5170,6 @@ msgstr "Actividad reciente"
|
|||
msgid "Remote instance"
|
||||
msgstr "Instancia remota"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr "Eliminado"
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-11-02 23:20\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-03 22:52\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: Finnish\n"
|
||||
"Language: fi\n"
|
||||
|
@ -171,23 +171,23 @@ msgstr "Moderaattorin poistama"
|
|||
msgid "Domain block"
|
||||
msgstr "Verkkotunnuksen esto"
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr "Äänikirja"
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr "E-kirja"
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr "Sarjakuva"
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr "Kovakantinen"
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr "Pehmeäkantinen"
|
||||
|
||||
|
@ -629,66 +629,66 @@ msgstr "Arvosana: <strong>%(rating)s</strong>"
|
|||
msgid "All the books %(display_name)s read in %(year)s"
|
||||
msgstr "%(display_name)s luki vuonna %(year)s nämä kirjat"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:18
|
||||
#: bookwyrm/templates/author/author.html:19
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "Muokkaa tekijää"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr "Tekijän tiedot"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "Muut nimet:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "Syntynyt:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "Kuollut:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr "Linkit muualle"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "Wikipedia"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr "Näytä ISNI-tietue"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr "Lataa tiedot"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "Näytä OpenLibraryssa"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "Näytä Inventairessa"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr "Näytä LibraryThingissä"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr "Näytä Goodreadsissa"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "Tekijän %(name)s kirjat"
|
||||
|
@ -809,6 +809,7 @@ msgstr "Tallenna"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -825,6 +826,7 @@ msgstr "Tietoja ladattaessa muodostetaan yhteys lähteeseen <strong>%(source_nam
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "Vahvista"
|
||||
|
@ -1303,6 +1305,7 @@ msgstr "Tila"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1978,6 +1981,7 @@ msgstr "Poistetaanko ryhmä?"
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr "Toimintoa ei voi kumota"
|
||||
|
||||
|
@ -2639,6 +2643,9 @@ msgid "Retry Status"
|
|||
msgstr "Uudelleenyrityksen tila"
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr "Tuonnit"
|
||||
|
||||
|
@ -4037,7 +4044,7 @@ msgstr "Muokkaa"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "Tiedotteet"
|
||||
|
||||
|
@ -4244,6 +4251,7 @@ msgid "Active Tasks"
|
|||
msgstr "Aktiiviset tehtävät"
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr "Tunniste"
|
||||
|
||||
|
@ -4575,6 +4583,52 @@ msgstr "Ohjelmisto"
|
|||
msgid "No instances found"
|
||||
msgstr "Palvelimia ei löytynyt"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Aktiivinen"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4753,21 +4807,21 @@ msgstr "Linkkien verkkotunnukset"
|
|||
msgid "System"
|
||||
msgstr "Järjestelmä"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr "Celeryn tila"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "Palvelimen asetukset"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "Sivuston asetukset"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5116,11 +5170,6 @@ msgstr "Viimeksi paikalla"
|
|||
msgid "Remote instance"
|
||||
msgstr "Etäpalvelin"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Aktiivinen"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr "Poistettu"
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-10-27 16:13\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-04 13:55\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: French\n"
|
||||
"Language: fr\n"
|
||||
|
@ -171,23 +171,23 @@ msgstr "Suppression par un modérateur"
|
|||
msgid "Domain block"
|
||||
msgstr "Blocage de domaine"
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr "Livre audio"
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr "eBook"
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr "Roman graphique"
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr "Livre relié"
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr "Livre broché"
|
||||
|
||||
|
@ -629,66 +629,66 @@ msgstr "Sa note : <strong>%(rating)s</strong>"
|
|||
msgid "All the books %(display_name)s read in %(year)s"
|
||||
msgstr "Tous les livres que %(display_name)s a lus en %(year)s"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:18
|
||||
#: bookwyrm/templates/author/author.html:19
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "Modifier l’auteur ou autrice"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr "Informations sur l’auteur ou l’autrice"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "Pseudonymes :"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "Naissance :"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "Décès :"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr "Liens externes"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "Wikipedia"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr "Voir l’enregistrement ISNI"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr "Charger les données"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "Voir sur OpenLibrary"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "Voir sur Inventaire"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr "Voir sur LibraryThing"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr "Voir sur Goodreads"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "Livres de %(name)s"
|
||||
|
@ -809,6 +809,7 @@ msgstr "Enregistrer"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -825,6 +826,7 @@ msgstr "Le chargement des données se connectera à <strong>%(source_name)s</str
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmer"
|
||||
|
@ -1303,6 +1305,7 @@ msgstr "Statut"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1356,7 +1359,7 @@ msgstr "Continuer"
|
|||
#: bookwyrm/templates/book/publisher_info.html:23
|
||||
#, python-format
|
||||
msgid "%(format)s, %(pages)s pages"
|
||||
msgstr "%(format)s, %(pages)s pages"
|
||||
msgstr "%(format)s, %(pages)s pages"
|
||||
|
||||
#: bookwyrm/templates/book/publisher_info.html:25
|
||||
#, python-format
|
||||
|
@ -1978,6 +1981,7 @@ msgstr "Supprimer ce groupe ?"
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr "Cette action ne peut pas être annulée"
|
||||
|
||||
|
@ -2639,6 +2643,9 @@ msgid "Retry Status"
|
|||
msgstr "Statut de la nouvelle tentative"
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr "Importations"
|
||||
|
||||
|
@ -4037,7 +4044,7 @@ msgstr "Modifier"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "Annonces"
|
||||
|
||||
|
@ -4244,6 +4251,7 @@ msgid "Active Tasks"
|
|||
msgstr "Tâches actives"
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -4575,6 +4583,52 @@ msgstr "Logiciel"
|
|||
msgid "No instances found"
|
||||
msgstr "Aucune instance trouvée"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr "Indiquer l'importation comme étant terminée ?"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Actif"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr "Terminé"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr "Marquer une importation comme terminée <em>ne</em> l'arrêtera <em>pas</em>."
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr "Utilisateur"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr "Date de Création"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr "Date de Mise à jour"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr "Éléments"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr "Éléments en attente"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr "Indiquer comme étant terminée"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr "Aucun import correspondant trouvé."
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4753,21 +4807,21 @@ msgstr "Domaines liés"
|
|||
msgid "System"
|
||||
msgstr "Système"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr "Statut de Celery"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "Paramètres de l’instance"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "Paramètres du site"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5116,11 +5170,6 @@ msgstr "Dernière activité"
|
|||
msgid "Remote instance"
|
||||
msgstr "Instance distante"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Actif"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr "Supprimé"
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-10-22 05:55\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-04 06:26\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: Galician\n"
|
||||
"Language: gl\n"
|
||||
|
@ -171,23 +171,23 @@ msgstr "Eliminado pola moderación"
|
|||
msgid "Domain block"
|
||||
msgstr "Bloqueo de dominio"
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr "Audiolibro"
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr "eBook"
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr "Novela gráfica"
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr "Portada dura"
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr "En rústica"
|
||||
|
||||
|
@ -629,66 +629,66 @@ msgstr "Valoración: <strong>%(rating)s</strong>"
|
|||
msgid "All the books %(display_name)s read in %(year)s"
|
||||
msgstr "Tódolos libros que %(display_name)s leu en %(year)s"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:18
|
||||
#: bookwyrm/templates/author/author.html:19
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "Editar Autora"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr "Detalles da autoría"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "Alias:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "Nacemento:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "Morte:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr "Ligazóns externas"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "Wikipedia"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr "Ver rexistro ISNI"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr "Cargar datos"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "Ver en OpenLibrary"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "Ver en Inventaire"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr "Ver en LibraryThing"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr "Ver en Goodreads"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "Libros de %(name)s"
|
||||
|
@ -809,6 +809,7 @@ msgstr "Gardar"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -825,6 +826,7 @@ msgstr "Ao cargar os datos vas conectar con <strong>%(source_name)s</strong> e c
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
@ -1303,6 +1305,7 @@ msgstr "Estado"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1978,6 +1981,7 @@ msgstr "Eliminar este grupo?"
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr "Esta acción non ten volta atrás"
|
||||
|
||||
|
@ -2639,6 +2643,9 @@ msgid "Retry Status"
|
|||
msgstr "Intenta outra vez"
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr "Importacións"
|
||||
|
||||
|
@ -4037,7 +4044,7 @@ msgstr "Editar"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "Anuncios"
|
||||
|
||||
|
@ -4244,6 +4251,7 @@ msgid "Active Tasks"
|
|||
msgstr "Tarefas activas"
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -4575,6 +4583,52 @@ msgstr "Software"
|
|||
msgid "No instances found"
|
||||
msgstr "Non hai instancias"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr "Marcar como completa a importación?"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Activa"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr "Completada"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr "Marcar unha importación como completada <em>non</em> vai detela."
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr "Usuaria"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr "Data de creación"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr "Data de actualización"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr "Elementos"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr "Elementos pendentes"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr "Marcar coma completada"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr "Non se atopan importacións que concorden."
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4753,21 +4807,21 @@ msgstr "Dominios das ligazóns"
|
|||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr "Estado Celery"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "Axustes da instancia"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "Axustes da web"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5116,11 +5170,6 @@ msgstr "Última vez activa"
|
|||
msgid "Remote instance"
|
||||
msgstr "Instancia remota"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Activa"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr "Eliminada"
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-10-21 21:24\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-03 22:52\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: Italian\n"
|
||||
"Language: it\n"
|
||||
|
@ -171,23 +171,23 @@ msgstr "Cancellazione del moderatore"
|
|||
msgid "Domain block"
|
||||
msgstr "Blocco del dominio"
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr "Audiolibro"
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr "eBook"
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr "Graphic novel"
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr "Copertina rigida"
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr "Brossura"
|
||||
|
||||
|
@ -629,66 +629,66 @@ msgstr "La loro valutazione: <strong>%(rating)s</strong>"
|
|||
msgid "All the books %(display_name)s read in %(year)s"
|
||||
msgstr "Tutti i libri %(display_name)s letti nel %(year)s"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:18
|
||||
#: bookwyrm/templates/author/author.html:19
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "Modifica autore"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr "Dettagli autore"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "Alias:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "Nascita:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "Morte:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr "Collegamenti esterni"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "Wikipedia"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr "Visualizza record ISNI"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr "Carica dati"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "Visualizza su OpenLibrary"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "Visualizza su Inventaire"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr "Visualizza su LibraryThing"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr "Visualizza su Goodreads"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "Libri di %(name)s"
|
||||
|
@ -809,6 +809,7 @@ msgstr "Salva"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -825,6 +826,7 @@ msgstr "Il caricamento dei dati si collegherà a <strong>%(source_name)s</strong
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "Conferma"
|
||||
|
@ -1303,6 +1305,7 @@ msgstr "Stato"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1978,6 +1981,7 @@ msgstr "Eliminare questo gruppo?"
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr "Questa azione non può essere annullata"
|
||||
|
||||
|
@ -2639,6 +2643,9 @@ msgid "Retry Status"
|
|||
msgstr "Riprova stato"
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr "Importazioni"
|
||||
|
||||
|
@ -4037,7 +4044,7 @@ msgstr "Modifica"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "Annunci"
|
||||
|
||||
|
@ -4244,6 +4251,7 @@ msgid "Active Tasks"
|
|||
msgstr "Processi attivi"
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -4575,6 +4583,52 @@ msgstr "Software"
|
|||
msgid "No instances found"
|
||||
msgstr "Nessun istanza trovata"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Attivo"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4753,21 +4807,21 @@ msgstr "Link ai domini"
|
|||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr "Celery status"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "Impostazioni dell'istanza"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "Impostazioni Sito"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5116,11 +5170,6 @@ msgstr "Attivo l'ultima volta"
|
|||
msgid "Remote instance"
|
||||
msgstr "Istanza remota"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Attivo"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr "Elimina"
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-10-21 21:24\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-03 22:52\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: Lithuanian\n"
|
||||
"Language: lt\n"
|
||||
|
@ -171,23 +171,23 @@ msgstr "Moderatorius ištrynė"
|
|||
msgid "Domain block"
|
||||
msgstr "Blokuoti pagal domeną"
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr "Audioknyga"
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr "Elektroninė knyga"
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr "Grafinė novelė"
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr "Knyga kietais viršeliais"
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr "Knyga minkštais viršeliais"
|
||||
|
||||
|
@ -637,66 +637,66 @@ msgstr "Įvertinimas: <strong>%(rating)s</strong>"
|
|||
msgid "All the books %(display_name)s read in %(year)s"
|
||||
msgstr "Visos %(display_name)s %(year)s metais perskaitytos knygos"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:18
|
||||
#: bookwyrm/templates/author/author.html:19
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "Keisti autorių"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr "Informacija apie autorių"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "Pseudonimai:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "Gimęs:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "Mirė:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr "Išorinės nuorodos"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "Wikipedia"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr "Peržiūrėti ISNI įrašą"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr "Įkelti duomenis"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "Žiūrėti „OpenLibrary“"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "Žiūrėti „Inventaire“"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr "Žiūrėti „LibraryThing“"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr "Žiūrėti „Goodreads“"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "%(name)s knygos"
|
||||
|
@ -817,6 +817,7 @@ msgstr "Išsaugoti"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -833,6 +834,7 @@ msgstr "Duomenų įkėlimas prisijungs prie <strong>%(source_name)s</strong> ir
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "Patvirtinti"
|
||||
|
@ -1315,6 +1317,7 @@ msgstr "Būsena"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1994,6 +1997,7 @@ msgstr "Ištrinti šią grupę?"
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr "Nebegalite atšaukti šio veiksmo"
|
||||
|
||||
|
@ -2659,6 +2663,9 @@ msgid "Retry Status"
|
|||
msgstr "Pakartojimo būsena"
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr "Importai"
|
||||
|
||||
|
@ -4069,7 +4076,7 @@ msgstr "Redaguoti"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "Pranešimai"
|
||||
|
||||
|
@ -4276,6 +4283,7 @@ msgid "Active Tasks"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4615,6 +4623,52 @@ msgstr "Programinė įranga"
|
|||
msgid "No instances found"
|
||||
msgstr "Serverių nerasta"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Aktyvus"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4793,21 +4847,21 @@ msgstr "Nuorodų puslapiai"
|
|||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "Serverio nustatymai"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "Puslapio nustatymai"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5156,11 +5210,6 @@ msgstr "Paskutinį kartą aktyvus"
|
|||
msgid "Remote instance"
|
||||
msgstr "Nutolęs serveris"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Aktyvus"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr ""
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-10-21 21:24\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-06 10:56\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: Norwegian\n"
|
||||
"Language: no\n"
|
||||
|
@ -52,7 +52,7 @@ msgstr "Passordet samsvarer ikke"
|
|||
|
||||
#: bookwyrm/forms/edit_user.py:118
|
||||
msgid "Incorrect Password"
|
||||
msgstr ""
|
||||
msgstr "Feil passord"
|
||||
|
||||
#: bookwyrm/forms/forms.py:54
|
||||
msgid "Reading finish date cannot be before start date."
|
||||
|
@ -80,7 +80,7 @@ msgstr "Den e-postadressen er allerede registrert."
|
|||
|
||||
#: bookwyrm/forms/landing.py:107 bookwyrm/forms/landing.py:115
|
||||
msgid "Incorrect code"
|
||||
msgstr ""
|
||||
msgstr "Feil kode"
|
||||
|
||||
#: bookwyrm/forms/links.py:36
|
||||
msgid "This domain is blocked. Please contact your administrator if you think this is an error."
|
||||
|
@ -171,23 +171,23 @@ msgstr "Moderatør sletting"
|
|||
msgid "Domain block"
|
||||
msgstr "Domeneblokkering"
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr "Lydbok"
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr "e-bok"
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr "Tegneserie"
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr "Innbundet"
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr "Paperback"
|
||||
|
||||
|
@ -351,7 +351,7 @@ msgstr "Norsk (Norsk)"
|
|||
|
||||
#: bookwyrm/settings.py:292
|
||||
msgid "Polski (Polish)"
|
||||
msgstr ""
|
||||
msgstr "Polski (Polsk)"
|
||||
|
||||
#: bookwyrm/settings.py:293
|
||||
msgid "Português do Brasil (Brazilian Portuguese)"
|
||||
|
@ -629,66 +629,66 @@ msgstr "Deres vurdering: <strong>%(rating)s</strong>"
|
|||
msgid "All the books %(display_name)s read in %(year)s"
|
||||
msgstr "Alle bøkene %(display_name)s leste i %(year)s"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:18
|
||||
#: bookwyrm/templates/author/author.html:19
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "Rediger forfatter"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr "Detaljer om forfatter"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "Kallenavn:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "Født:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "Død:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr "Eksterne lenker"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "Wikipedia"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr "Vis ISNI -oppføring"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr "Last inn data"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "Vis på OpenLibrary"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "Vis på Inventaire"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr "Vis på LibraryThing"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr "Vis på Goodreads"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "Bøker av %(name)s"
|
||||
|
@ -809,6 +809,7 @@ msgstr "Lagre"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -825,6 +826,7 @@ msgstr "Laster inn data kobler til <strong>%(source_name)s</strong> og finner me
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "Bekreft"
|
||||
|
@ -1303,6 +1305,7 @@ msgstr "Status"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1978,6 +1981,7 @@ msgstr "Slette denne gruppa?"
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr "Denne handlingen er endelig"
|
||||
|
||||
|
@ -2639,6 +2643,9 @@ msgid "Retry Status"
|
|||
msgstr "Status for nytt forsøk"
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr "Importer"
|
||||
|
||||
|
@ -4035,7 +4042,7 @@ msgstr "Rediger"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "Kunngjøringer"
|
||||
|
||||
|
@ -4242,6 +4249,7 @@ msgid "Active Tasks"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4573,6 +4581,52 @@ msgstr "Programvare"
|
|||
msgid "No instances found"
|
||||
msgstr "Ingen instanser funnet"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4751,21 +4805,21 @@ msgstr "Lenkedomener"
|
|||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "Instansdetaljer"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "Sideinnstillinger"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5114,11 +5168,6 @@ msgstr "Sist aktiv"
|
|||
msgid "Remote instance"
|
||||
msgstr "Ekstern instans"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr ""
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-10-22 18:12\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-03 22:52\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: Polish\n"
|
||||
"Language: pl\n"
|
||||
|
@ -171,23 +171,23 @@ msgstr "Usunięte przez moderatora"
|
|||
msgid "Domain block"
|
||||
msgstr "Blokada domeny"
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr "Audiobook"
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr "eBook"
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr "Powieść ilustrowana"
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr "Twarda oprawa"
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr "Miękka oprawa"
|
||||
|
||||
|
@ -637,66 +637,66 @@ msgstr "Ich ocena: <strong>%(rating)s</strong>"
|
|||
msgid "All the books %(display_name)s read in %(year)s"
|
||||
msgstr "Wszystkie książki przeczytane przez %(display_name)s w %(year)s roku"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:18
|
||||
#: bookwyrm/templates/author/author.html:19
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "Edytuj autora"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr "Szczegóły o autorze"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "Pseudonimy:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "Data urodzenia:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "Data śmierci:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr "Zewnętrzne odnośniki"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "Wikipedia"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr "Zobacz wpis ISNI"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr "Wczytaj dane"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "Pokaż na OpenLibrary"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "Pokaż na Inventaire"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr "Pokaż na LibraryThing"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr "Pokaż na Goodreads"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "Książki autorstwa %(name)s"
|
||||
|
@ -817,6 +817,7 @@ msgstr "Zapisz"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -833,6 +834,7 @@ msgstr "Wczytanie danych spowoduje połączenie z <strong>%(source_name)s</stron
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "Zatwierdź"
|
||||
|
@ -1315,6 +1317,7 @@ msgstr "Status"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1994,6 +1997,7 @@ msgstr "Usunąć tę grupę?"
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr "Tej czynności nie można cofnąć"
|
||||
|
||||
|
@ -2659,6 +2663,9 @@ msgid "Retry Status"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr "Importowanie"
|
||||
|
||||
|
@ -4069,7 +4076,7 @@ msgstr "Edytuj"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "Ogłoszenia"
|
||||
|
||||
|
@ -4276,6 +4283,7 @@ msgid "Active Tasks"
|
|||
msgstr "Aktywne zadania"
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
|
@ -4615,6 +4623,52 @@ msgstr "Oprogramowanie"
|
|||
msgid "No instances found"
|
||||
msgstr "Brak instancji"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Aktywne"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4793,21 +4847,21 @@ msgstr ""
|
|||
msgid "System"
|
||||
msgstr "System"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr "Status Celery"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "Ustawienia instancji"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "Ustawienia witryny"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5156,11 +5210,6 @@ msgstr "Ostatnia aktywność"
|
|||
msgid "Remote instance"
|
||||
msgstr "Zdalna instancja"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Aktywne"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr "Usunięte"
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-10-21 21:24\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-03 22:52\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"Language: pt\n"
|
||||
|
@ -171,23 +171,23 @@ msgstr "Exclusão de moderador"
|
|||
msgid "Domain block"
|
||||
msgstr "Bloqueio de domínio"
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr "Audiolivro"
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr "e-book"
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr "Graphic novel"
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr "Capa dura"
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr "Capa mole"
|
||||
|
||||
|
@ -629,66 +629,66 @@ msgstr "Avaliação: <strong>%(rating)s</strong>"
|
|||
msgid "All the books %(display_name)s read in %(year)s"
|
||||
msgstr "Todos os livros lidos por %(display_name)s em %(year)s"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:18
|
||||
#: bookwyrm/templates/author/author.html:19
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "Editar autor/a"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr "Detalhes do/a autor/a"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "Pseudônimos:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "Nascimento:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "Morte:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr "Links externos"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "Wikipédia"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr "Ver registro ISNI"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr "Carregar informações"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "Ver na OpenLibrary"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "Ver no Inventaire"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr "Ver no LibraryThing"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr "Ver no Goodreads"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "Livros de %(name)s"
|
||||
|
@ -809,6 +809,7 @@ msgstr "Salvar"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -825,6 +826,7 @@ msgstr "Para carregar informações nos conectaremos a <strong>%(source_name)s</
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
@ -1303,6 +1305,7 @@ msgstr "Publicação"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1978,6 +1981,7 @@ msgstr "Deletar grupo?"
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr "Esta ação não pode ser desfeita"
|
||||
|
||||
|
@ -2639,6 +2643,9 @@ msgid "Retry Status"
|
|||
msgstr "Status da nova tentativa"
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr "Importações"
|
||||
|
||||
|
@ -4037,7 +4044,7 @@ msgstr "Editar"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "Avisos"
|
||||
|
||||
|
@ -4244,6 +4251,7 @@ msgid "Active Tasks"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4575,6 +4583,52 @@ msgstr "Software"
|
|||
msgid "No instances found"
|
||||
msgstr "Nenhuma instância encontrada"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4753,21 +4807,21 @@ msgstr "Domínios de links"
|
|||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "Configurações da instância"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "Configurações do site"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5116,11 +5170,6 @@ msgstr "Última atividade"
|
|||
msgid "Remote instance"
|
||||
msgstr "Instância remota"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr ""
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-10-21 21:24\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-03 22:52\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"Language: pt\n"
|
||||
|
@ -171,23 +171,23 @@ msgstr "Exclusão do moderador"
|
|||
msgid "Domain block"
|
||||
msgstr "Bloqueio de domínio"
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr "Livro-áudio"
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr "eBook"
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr "Novela gráfica"
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr "Capa dura"
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr "Capa mole"
|
||||
|
||||
|
@ -629,66 +629,66 @@ msgstr "A sua avaliação: <strong>%(rating)s</strong>"
|
|||
msgid "All the books %(display_name)s read in %(year)s"
|
||||
msgstr "Todos os livros que %(display_name)s leu em %(year)s"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:18
|
||||
#: bookwyrm/templates/author/author.html:19
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "Editar Autor(a)"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr "Detalhes do autor"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "Pseudónimos:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "Nascido a:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "Morreu em:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr "Links externos"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "Wikipédia"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr "Ver registro do ISNI"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr "Carregar dados"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "Ver na OpenLibrary"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "Ver no Inventaire"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr "Ver na LibraryThing"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr "Ver na Goodreads"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "Livros por %(name)s"
|
||||
|
@ -809,6 +809,7 @@ msgstr "Salvar"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -825,6 +826,7 @@ msgstr "Carregar os dados irá conectar a <strong>%(source_name)s</strong> e ver
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
@ -1303,6 +1305,7 @@ msgstr "Estado"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1978,6 +1981,7 @@ msgstr "Apagar este grupo?"
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr "Esta ação não pode ser desfeita"
|
||||
|
||||
|
@ -2639,6 +2643,9 @@ msgid "Retry Status"
|
|||
msgstr "Estado de repetição"
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr "Importações"
|
||||
|
||||
|
@ -4037,7 +4044,7 @@ msgstr "Editar"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "Comunicados"
|
||||
|
||||
|
@ -4244,6 +4251,7 @@ msgid "Active Tasks"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4575,6 +4583,52 @@ msgstr "Software"
|
|||
msgid "No instances found"
|
||||
msgstr "Nenhum domínio encontrado"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4753,21 +4807,21 @@ msgstr ""
|
|||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "Configurações do domínio"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "Configurações do site"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5116,11 +5170,6 @@ msgstr "Última atividade"
|
|||
msgid "Remote instance"
|
||||
msgstr "Domínio remoto"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr ""
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-10-21 21:25\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-03 22:52\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: Romanian\n"
|
||||
"Language: ro\n"
|
||||
|
@ -171,23 +171,23 @@ msgstr "Șters de moderator"
|
|||
msgid "Domain block"
|
||||
msgstr "Blocat de domeniu"
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr "Carte audio"
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr "Carte digitală"
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr "Roman grafic"
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr "Copertă dură"
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr "Broșură"
|
||||
|
||||
|
@ -633,66 +633,66 @@ msgstr "Recenzia sa: <strong>%(rating)s</strong>"
|
|||
msgid "All the books %(display_name)s read in %(year)s"
|
||||
msgstr "Toate cărțile %(display_name)s citite în %(year)s"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:18
|
||||
#: bookwyrm/templates/author/author.html:19
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "Editați autorul"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr "Detaliile autorului"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "Aliasuri:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "Născut:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "Mort:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr "Legături externe"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "Wikipedia"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr "Vizualizați intrarea ISNI"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr "Încărcați date"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "Vizualizați în OpenLibrary"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "Vizualizați în Inventaire"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr "Vizualizați în LibraryThing"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr "Vizualizați în Goodreads"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "Cărți de %(name)s"
|
||||
|
@ -813,6 +813,7 @@ msgstr "Salvați"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -829,6 +830,7 @@ msgstr "Încărcatul de date se va conecta la <strong>%(source_name)s</strong>
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmați"
|
||||
|
@ -1309,6 +1311,7 @@ msgstr "Status"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1986,6 +1989,7 @@ msgstr "Ștergeți acest grup?"
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr "Această acțiune nu poate fi revocată"
|
||||
|
||||
|
@ -2649,6 +2653,9 @@ msgid "Retry Status"
|
|||
msgstr "Reîncercați stare"
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr "Importuri"
|
||||
|
||||
|
@ -4052,7 +4059,7 @@ msgstr "Editați"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "Anunțuri"
|
||||
|
||||
|
@ -4259,6 +4266,7 @@ msgid "Active Tasks"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4594,6 +4602,52 @@ msgstr "Program"
|
|||
msgid "No instances found"
|
||||
msgstr "N-a fost găsită nicio instanță"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Activ"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4772,21 +4826,21 @@ msgstr "Legături către domenii"
|
|||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "Setările instanței"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "Setările site-ului"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5135,11 +5189,6 @@ msgstr "Ultima dată activ(ă)"
|
|||
msgid "Remote instance"
|
||||
msgstr "Instanță la distanță"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Activ"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr "Șters"
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-10-21 21:24\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-03 22:52\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: Swedish\n"
|
||||
"Language: sv\n"
|
||||
|
@ -171,23 +171,23 @@ msgstr "Borttagning av moderator"
|
|||
msgid "Domain block"
|
||||
msgstr "Domänblockering"
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr "Ljudbok"
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr "eBok"
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr "Grafisk novell"
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr "Inbunden"
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr "Pocketbok"
|
||||
|
||||
|
@ -629,66 +629,66 @@ msgstr "Deras betyg: <strong>%(rating)s</strong>"
|
|||
msgid "All the books %(display_name)s read in %(year)s"
|
||||
msgstr "Alla böcker %(display_name)s läste under %(year)s"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:18
|
||||
#: bookwyrm/templates/author/author.html:19
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "Redigera författare"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr "Författarens detaljer"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "Aliaser:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "Född:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "Dog:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr "Externa länkar"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "Wikipedia"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr "Visa ISNI-samling"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr "Ladda data"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "Visa i OpenLibrary"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "Visa i Inventaire"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr "Visa i LibraryThing"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr "Visa i Goodreads"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "Böcker av %(name)s"
|
||||
|
@ -809,6 +809,7 @@ msgstr "Spara"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -825,6 +826,7 @@ msgstr "Att ladda in data kommer att ansluta till <strong>%(source_name)s</stron
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "Bekräfta"
|
||||
|
@ -1303,6 +1305,7 @@ msgstr "Status"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1978,6 +1981,7 @@ msgstr "Ta bort den här gruppen?"
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr "Den här åtgärden kan inte ångras"
|
||||
|
||||
|
@ -2639,6 +2643,9 @@ msgid "Retry Status"
|
|||
msgstr "Status för nytt försök"
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr "Importer"
|
||||
|
||||
|
@ -4037,7 +4044,7 @@ msgstr "Redigera"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "Tillkännagivanden"
|
||||
|
||||
|
@ -4244,6 +4251,7 @@ msgid "Active Tasks"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4575,6 +4583,52 @@ msgstr "Mjukvara"
|
|||
msgid "No instances found"
|
||||
msgstr "Inga instanser hittades"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4753,21 +4807,21 @@ msgstr "Länka domäner"
|
|||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "Inställningar för instans"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "Inställningar för sidan"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5116,11 +5170,6 @@ msgstr "Senast aktiv"
|
|||
msgid "Remote instance"
|
||||
msgstr "Fjärrinstans"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr ""
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-10-21 21:24\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-03 22:52\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"Language: zh\n"
|
||||
|
@ -171,23 +171,23 @@ msgstr "仲裁员删除"
|
|||
msgid "Domain block"
|
||||
msgstr "域名屏蔽"
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr "有声书籍"
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr "电子书"
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr "图像小说"
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr "精装"
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr "平装"
|
||||
|
||||
|
@ -625,66 +625,66 @@ msgstr "他们的评分:<strong>%(rating)s</strong>"
|
|||
msgid "All the books %(display_name)s read in %(year)s"
|
||||
msgstr "在 %(year)s 里 %(display_name)s 阅读的所有书"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:18
|
||||
#: bookwyrm/templates/author/author.html:19
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "编辑作者"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr "作者详情"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "别名:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "出生:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "逝世:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr "外部链接"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "维基百科"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr "查看 ISNI 记录"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr "加载数据"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "在 OpenLibrary 查看"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "在 Inventaire 查看"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr "在 LibraryThing 查看"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr "在 Goodreads 查看"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "%(name)s 所著的书"
|
||||
|
@ -805,6 +805,7 @@ msgstr "保存"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -821,6 +822,7 @@ msgstr "加载数据会连接到 <strong>%(source_name)s</strong> 并检查这
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "确认"
|
||||
|
@ -1297,6 +1299,7 @@ msgstr "状态"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1970,6 +1973,7 @@ msgstr "删除该群组?"
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr "此操作无法撤销"
|
||||
|
||||
|
@ -2629,6 +2633,9 @@ msgid "Retry Status"
|
|||
msgstr "重试状态"
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr "导入"
|
||||
|
||||
|
@ -4021,7 +4028,7 @@ msgstr "编辑"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "公告"
|
||||
|
||||
|
@ -4228,6 +4235,7 @@ msgid "Active Tasks"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4555,6 +4563,52 @@ msgstr "软件"
|
|||
msgid "No instances found"
|
||||
msgstr "未找到实例"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "活跃"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4733,21 +4787,21 @@ msgstr "链接域名"
|
|||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "实例设置"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "站点设置"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5096,11 +5150,6 @@ msgstr "最后或缺"
|
|||
msgid "Remote instance"
|
||||
msgstr "移除服务器"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "活跃"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr ""
|
||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: bookwyrm\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-10-21 21:11+0000\n"
|
||||
"PO-Revision-Date: 2022-10-21 21:24\n"
|
||||
"POT-Creation-Date: 2022-11-03 18:35+0000\n"
|
||||
"PO-Revision-Date: 2022-11-03 22:52\n"
|
||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"Language: zh\n"
|
||||
|
@ -171,23 +171,23 @@ msgstr ""
|
|||
msgid "Domain block"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/models/book.py:262
|
||||
#: bookwyrm/models/book.py:266
|
||||
msgid "Audiobook"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/models/book.py:263
|
||||
#: bookwyrm/models/book.py:267
|
||||
msgid "eBook"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/models/book.py:264
|
||||
#: bookwyrm/models/book.py:268
|
||||
msgid "Graphic novel"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/models/book.py:265
|
||||
#: bookwyrm/models/book.py:269
|
||||
msgid "Hardcover"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/models/book.py:266
|
||||
#: bookwyrm/models/book.py:270
|
||||
msgid "Paperback"
|
||||
msgstr ""
|
||||
|
||||
|
@ -625,66 +625,66 @@ msgstr ""
|
|||
msgid "All the books %(display_name)s read in %(year)s"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/author/author.html:18
|
||||
#: bookwyrm/templates/author/author.html:19
|
||||
#: bookwyrm/templates/author/author.html:20
|
||||
msgid "Edit Author"
|
||||
msgstr "編輯作者"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:35
|
||||
#: bookwyrm/templates/author/author.html:36
|
||||
msgid "Author details"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/author/author.html:39
|
||||
#: bookwyrm/templates/author/author.html:40
|
||||
#: bookwyrm/templates/author/edit_author.html:42
|
||||
msgid "Aliases:"
|
||||
msgstr "別名:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:48
|
||||
#: bookwyrm/templates/author/author.html:49
|
||||
msgid "Born:"
|
||||
msgstr "出生:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:55
|
||||
#: bookwyrm/templates/author/author.html:56
|
||||
msgid "Died:"
|
||||
msgstr "逝世:"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:65
|
||||
#: bookwyrm/templates/author/author.html:66
|
||||
msgid "External links"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/author/author.html:70
|
||||
#: bookwyrm/templates/author/author.html:71
|
||||
msgid "Wikipedia"
|
||||
msgstr "維基百科"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:78
|
||||
#: bookwyrm/templates/author/author.html:79
|
||||
msgid "View ISNI record"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/author/author.html:83
|
||||
#: bookwyrm/templates/author/author.html:84
|
||||
#: bookwyrm/templates/author/sync_modal.html:5
|
||||
#: bookwyrm/templates/book/book.html:131
|
||||
#: bookwyrm/templates/book/sync_modal.html:5
|
||||
msgid "Load data"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/author/author.html:87
|
||||
#: bookwyrm/templates/author/author.html:88
|
||||
#: bookwyrm/templates/book/book.html:135
|
||||
msgid "View on OpenLibrary"
|
||||
msgstr "在 OpenLibrary 檢視"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:102
|
||||
#: bookwyrm/templates/author/author.html:103
|
||||
#: bookwyrm/templates/book/book.html:149
|
||||
msgid "View on Inventaire"
|
||||
msgstr "在 Inventaire 檢視"
|
||||
|
||||
#: bookwyrm/templates/author/author.html:118
|
||||
#: bookwyrm/templates/author/author.html:119
|
||||
msgid "View on LibraryThing"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/author/author.html:126
|
||||
#: bookwyrm/templates/author/author.html:127
|
||||
msgid "View on Goodreads"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/author/author.html:141
|
||||
#: bookwyrm/templates/author/author.html:142
|
||||
#, python-format
|
||||
msgid "Books by %(name)s"
|
||||
msgstr "%(name)s 所著的書"
|
||||
|
@ -805,6 +805,7 @@ msgstr "儲存"
|
|||
#: bookwyrm/templates/readthrough/readthrough_modal.html:80
|
||||
#: bookwyrm/templates/search/barcode_modal.html:45
|
||||
#: bookwyrm/templates/settings/federation/instance.html:106
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:16
|
||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:22
|
||||
#: bookwyrm/templates/snippets/report_modal.html:52
|
||||
msgid "Cancel"
|
||||
|
@ -821,6 +822,7 @@ msgstr ""
|
|||
#: bookwyrm/templates/groups/members.html:29
|
||||
#: bookwyrm/templates/landing/password_reset.html:52
|
||||
#: bookwyrm/templates/preferences/2fa.html:54
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:19
|
||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:17
|
||||
msgid "Confirm"
|
||||
msgstr "確認"
|
||||
|
@ -1297,6 +1299,7 @@ msgstr "狀態"
|
|||
#: bookwyrm/templates/book/file_links/edit_links.html:37
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:41
|
||||
#: bookwyrm/templates/settings/federation/instance.html:112
|
||||
#: bookwyrm/templates/settings/imports/imports.html:58
|
||||
#: bookwyrm/templates/settings/reports/report_links_table.html:6
|
||||
#: bookwyrm/templates/settings/themes.html:99
|
||||
msgid "Actions"
|
||||
|
@ -1970,6 +1973,7 @@ msgstr ""
|
|||
#: bookwyrm/templates/groups/delete_group_modal.html:7
|
||||
#: bookwyrm/templates/lists/delete_list_modal.html:7
|
||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:12
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:7
|
||||
msgid "This action cannot be un-done"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2629,6 +2633,9 @@ msgid "Retry Status"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/import/import_status.html:22
|
||||
#: bookwyrm/templates/settings/imports/imports.html:5
|
||||
#: bookwyrm/templates/settings/imports/imports.html:8
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
msgid "Imports"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4019,7 +4026,7 @@ msgstr "編輯"
|
|||
#: bookwyrm/templates/settings/announcements/announcements.html:3
|
||||
#: bookwyrm/templates/settings/announcements/announcements.html:5
|
||||
#: bookwyrm/templates/settings/announcements/edit_announcement.html:15
|
||||
#: bookwyrm/templates/settings/layout.html:91
|
||||
#: bookwyrm/templates/settings/layout.html:97
|
||||
msgid "Announcements"
|
||||
msgstr "公告"
|
||||
|
||||
|
@ -4226,6 +4233,7 @@ msgid "Active Tasks"
|
|||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/celery.html:53
|
||||
#: bookwyrm/templates/settings/imports/imports.html:38
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4553,6 +4561,52 @@ msgstr "軟體"
|
|||
msgid "No instances found"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/complete_import_modal.html:4
|
||||
msgid "Mark import as complete?"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:18
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "活躍"
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:22
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:31
|
||||
msgid "Marking an import as complete will <em>not</em> stop it."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:41
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:44
|
||||
msgid "Date Created"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:48
|
||||
msgid "Date Updated"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:52
|
||||
msgid "Items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:55
|
||||
msgid "Pending items"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:76
|
||||
msgid "Mark as complete"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/imports/imports.html:85
|
||||
msgid "No matching imports founds."
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:4
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:11
|
||||
#: bookwyrm/templates/settings/invites/manage_invite_requests.html:25
|
||||
|
@ -4731,21 +4785,21 @@ msgstr ""
|
|||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:82
|
||||
#: bookwyrm/templates/settings/layout.html:88
|
||||
msgid "Celery status"
|
||||
msgstr ""
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:87
|
||||
#: bookwyrm/templates/settings/layout.html:93
|
||||
msgid "Instance Settings"
|
||||
msgstr "實例設定"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:95
|
||||
#: bookwyrm/templates/settings/layout.html:101
|
||||
#: bookwyrm/templates/settings/site.html:4
|
||||
#: bookwyrm/templates/settings/site.html:6
|
||||
msgid "Site Settings"
|
||||
msgstr "網站設定"
|
||||
|
||||
#: bookwyrm/templates/settings/layout.html:100
|
||||
#: bookwyrm/templates/settings/layout.html:106
|
||||
#: bookwyrm/templates/settings/site.html:95
|
||||
#: bookwyrm/templates/settings/themes.html:4
|
||||
#: bookwyrm/templates/settings/themes.html:6
|
||||
|
@ -5094,11 +5148,6 @@ msgstr "最後活躍"
|
|||
msgid "Remote instance"
|
||||
msgstr "移除伺服器"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:81
|
||||
#: bookwyrm/templates/settings/users/user_info.html:28
|
||||
msgid "Active"
|
||||
msgstr "活躍"
|
||||
|
||||
#: bookwyrm/templates/settings/users/user_admin.html:86
|
||||
msgid "Deleted"
|
||||
msgstr ""
|
||||
|
|
Loading…
Reference in a new issue