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
43ca5f466c
42 changed files with 1304 additions and 790 deletions
|
@ -38,7 +38,7 @@ class Create(Verb):
|
||||||
class Delete(Verb):
|
class Delete(Verb):
|
||||||
"""Create activity"""
|
"""Create activity"""
|
||||||
|
|
||||||
to: List[str]
|
to: List[str] = field(default_factory=lambda: [])
|
||||||
cc: List[str] = field(default_factory=lambda: [])
|
cc: List[str] = field(default_factory=lambda: [])
|
||||||
type: str = "Delete"
|
type: str = "Delete"
|
||||||
|
|
||||||
|
@ -137,8 +137,8 @@ class Accept(Verb):
|
||||||
type: str = "Accept"
|
type: str = "Accept"
|
||||||
|
|
||||||
def action(self):
|
def action(self):
|
||||||
"""find and remove the activity object"""
|
"""accept a request"""
|
||||||
obj = self.object.to_model(save=False, allow_create=False)
|
obj = self.object.to_model(save=False, allow_create=True)
|
||||||
obj.accept()
|
obj.accept()
|
||||||
|
|
||||||
|
|
||||||
|
@ -150,7 +150,7 @@ class Reject(Verb):
|
||||||
type: str = "Reject"
|
type: str = "Reject"
|
||||||
|
|
||||||
def action(self):
|
def action(self):
|
||||||
"""find and remove the activity object"""
|
"""reject a follow request"""
|
||||||
obj = self.object.to_model(save=False, allow_create=False)
|
obj = self.object.to_model(save=False, allow_create=False)
|
||||||
obj.reject()
|
obj.reject()
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
""" functionality outline for a book data connector """
|
""" functionality outline for a book data connector """
|
||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
|
import imghdr
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
from django.core.files.base import ContentFile
|
||||||
from django.db import transaction
|
from django.db import transaction
|
||||||
import requests
|
import requests
|
||||||
from requests.exceptions import RequestException
|
from requests.exceptions import RequestException
|
||||||
|
@ -290,10 +292,18 @@ def get_image(url, timeout=10):
|
||||||
)
|
)
|
||||||
except RequestException as err:
|
except RequestException as err:
|
||||||
logger.exception(err)
|
logger.exception(err)
|
||||||
return None
|
return None, None
|
||||||
|
|
||||||
if not resp.ok:
|
if not resp.ok:
|
||||||
return None
|
return None, None
|
||||||
return resp
|
|
||||||
|
image_content = ContentFile(resp.content)
|
||||||
|
extension = imghdr.what(None, image_content.read())
|
||||||
|
if not extension:
|
||||||
|
logger.exception("File requested was not an image: %s", url)
|
||||||
|
return None, None
|
||||||
|
|
||||||
|
return image_content, extension
|
||||||
|
|
||||||
|
|
||||||
class Mapping:
|
class Mapping:
|
||||||
|
|
|
@ -48,7 +48,9 @@ def moderation_report_email(report):
|
||||||
data["reportee"] = report.user.localname or report.user.username
|
data["reportee"] = report.user.localname or report.user.username
|
||||||
data["report_link"] = report.remote_id
|
data["report_link"] = report.remote_id
|
||||||
|
|
||||||
for admin in models.User.objects.filter(groups__name__in=["admin", "moderator"]):
|
for admin in models.User.objects.filter(
|
||||||
|
groups__name__in=["admin", "moderator"]
|
||||||
|
).distinct():
|
||||||
data["user"] = admin.display_name
|
data["user"] = admin.display_name
|
||||||
send_email.delay(admin.email, *format_email("moderation_report", data))
|
send_email.delay(admin.email, *format_email("moderation_report", data))
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
""" activitypub-aware django model fields """
|
""" activitypub-aware django model fields """
|
||||||
from dataclasses import MISSING
|
from dataclasses import MISSING
|
||||||
import imghdr
|
|
||||||
import re
|
import re
|
||||||
from uuid import uuid4
|
from uuid import uuid4
|
||||||
from urllib.parse import urljoin
|
from urllib.parse import urljoin
|
||||||
|
@ -9,7 +8,6 @@ import dateutil.parser
|
||||||
from dateutil.parser import ParserError
|
from dateutil.parser import ParserError
|
||||||
from django.contrib.postgres.fields import ArrayField as DjangoArrayField
|
from django.contrib.postgres.fields import ArrayField as DjangoArrayField
|
||||||
from django.core.exceptions import ValidationError
|
from django.core.exceptions import ValidationError
|
||||||
from django.core.files.base import ContentFile
|
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.forms import ClearableFileInput, ImageField as DjangoImageField
|
from django.forms import ClearableFileInput, ImageField as DjangoImageField
|
||||||
from django.utils import timezone
|
from django.utils import timezone
|
||||||
|
@ -443,12 +441,10 @@ class ImageField(ActivitypubFieldMixin, models.ImageField):
|
||||||
except ValidationError:
|
except ValidationError:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
response = get_image(url)
|
image_content, extension = get_image(url)
|
||||||
if not response:
|
if not image_content:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
image_content = ContentFile(response.content)
|
|
||||||
extension = imghdr.what(None, image_content.read()) or ""
|
|
||||||
image_name = f"{uuid4()}.{extension}"
|
image_name = f"{uuid4()}.{extension}"
|
||||||
return [image_name, image_content]
|
return [image_name, image_content]
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
""" flagged for moderation """
|
""" flagged for moderation """
|
||||||
from django.db import models
|
from django.db import models
|
||||||
|
from bookwyrm.settings import DOMAIN
|
||||||
from .base_model import BookWyrmModel
|
from .base_model import BookWyrmModel
|
||||||
|
|
||||||
|
|
||||||
|
@ -15,6 +16,9 @@ class Report(BookWyrmModel):
|
||||||
links = models.ManyToManyField("Link", blank=True)
|
links = models.ManyToManyField("Link", blank=True)
|
||||||
resolved = models.BooleanField(default=False)
|
resolved = models.BooleanField(default=False)
|
||||||
|
|
||||||
|
def get_remote_id(self):
|
||||||
|
return f"https://{DOMAIN}/settings/reports/{self.id}"
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
"""set order by default"""
|
"""set order by default"""
|
||||||
|
|
||||||
|
|
|
@ -2,15 +2,17 @@
|
||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
|
|
||||||
{% block filter %}
|
{% block filter %}
|
||||||
<label class="label is-block" for="id_format">{% trans "Format:" %}</label>
|
<div class="control">
|
||||||
<div class="select">
|
<label class="label is-block" for="id_format">{% trans "Format:" %}</label>
|
||||||
<select id="id_format" name="format">
|
<div class="select">
|
||||||
<option value="">{% trans "Any" %}</option>
|
<select id="id_format" name="format">
|
||||||
{% for format in formats %}{% if format %}
|
<option value="">{% trans "Any" %}</option>
|
||||||
<option value="{{ format }}" {% if request.GET.format == format %}selected{% endif %}>
|
{% for format in formats %}{% if format %}
|
||||||
{{ format|title }}
|
<option value="{{ format }}" {% if request.GET.format == format %}selected{% endif %}>
|
||||||
</option>
|
{{ format|title }}
|
||||||
{% endif %}{% endfor %}
|
</option>
|
||||||
</select>
|
{% endif %}{% endfor %}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -2,15 +2,17 @@
|
||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
|
|
||||||
{% block filter %}
|
{% block filter %}
|
||||||
<label class="label is-block" for="id_language">{% trans "Language:" %}</label>
|
<div class="control">
|
||||||
<div class="select">
|
<label class="label is-block" for="id_language">{% trans "Language:" %}</label>
|
||||||
<select id="id_language" name="language">
|
<div class="select">
|
||||||
<option value="">{% trans "Any" %}</option>
|
<select id="id_language" name="language">
|
||||||
{% for language in languages %}
|
<option value="">{% trans "Any" %}</option>
|
||||||
<option value="{{ language }}" {% if request.GET.language == language %}selected{% endif %}>
|
{% for language in languages %}
|
||||||
{{ language }}
|
<option value="{{ language }}" {% if request.GET.language == language %}selected{% endif %}>
|
||||||
</option>
|
{{ language }}
|
||||||
{% endfor %}
|
</option>
|
||||||
</select>
|
{% endfor %}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -2,7 +2,9 @@
|
||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
|
|
||||||
{% block filter %}
|
{% block filter %}
|
||||||
<label class="label" for="id_search">{% trans "Search editions" %}</label>
|
<div class="control">
|
||||||
<input type="text" class="input" name="q" value="{{ request.GET.q|default:'' }}" id="id_search">
|
<label class="label" for="id_search">{% trans "Search editions" %}</label>
|
||||||
|
<input type="text" class="input" name="q" value="{{ request.GET.q|default:'' }}" id="id_search">
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,19 @@
|
||||||
{% include 'settings/reports/report_preview.html' with report=report %}
|
{% include 'settings/reports/report_preview.html' with report=report %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="block">
|
||||||
|
<details class="details-panel box">
|
||||||
|
<summary>
|
||||||
|
<span class="title is-4">{% trans "Message reporter" %}</span>
|
||||||
|
<span class="details-close icon icon-x" aria-hidden></span>
|
||||||
|
</summary>
|
||||||
|
<div class="box">
|
||||||
|
{% trans "Update on your report:" as dm_template %}
|
||||||
|
{% include 'snippets/create_status/status.html' with type="direct" uuid=1 mention=report.reporter prepared_content=dm_template no_script=True %}
|
||||||
|
</div>
|
||||||
|
</details>
|
||||||
|
</div>
|
||||||
|
|
||||||
{% if report.statuses.exists %}
|
{% if report.statuses.exists %}
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<h3 class="title is-4">{% trans "Reported statuses" %}</h3>
|
<h3 class="title is-4">{% trans "Reported statuses" %}</h3>
|
||||||
|
@ -68,9 +81,13 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
<form class="block" name="report-comment" method="post" action="{% url 'settings-report' report.id %}">
|
<form class="block" name="report-comment" method="post" action="{% url 'settings-report' report.id %}">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<label for="report_comment" class="label">Comment on report</label>
|
<div class="field">
|
||||||
<textarea name="note" id="report_comment" class="textarea"></textarea>
|
<label for="report_comment" class="label">Comment on report</label>
|
||||||
<button class="button">{% trans "Comment" %}</button>
|
<textarea name="note" id="report_comment" class="textarea"></textarea>
|
||||||
|
</div>
|
||||||
|
<div class="field">
|
||||||
|
<button class="button">{% trans "Comment" %}</button>
|
||||||
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -8,13 +8,14 @@ reply_parent: if applicable, the Status object that this post is in reply to
|
||||||
mention: a user who is @ mentioned by default in the post
|
mention: a user who is @ mentioned by default in the post
|
||||||
draft: an existing Status object that is providing default values for input fields
|
draft: an existing Status object that is providing default values for input fields
|
||||||
{% endcomment %}
|
{% endcomment %}
|
||||||
<textarea
|
<div class="control">
|
||||||
name="content"
|
<textarea
|
||||||
class="textarea save-draft"
|
name="content"
|
||||||
{% if not draft %}data-cache-draft="id_content_{{ type }}_{{ book.id }}{{ reply_parent.id }}"{% endif %}
|
class="textarea save-draft"
|
||||||
id="id_content_{{ type }}_{{ book.id }}{{ reply_parent.id }}{{ uuid }}"
|
{% if not draft %}data-cache-draft="id_content_{{ type }}_{{ book.id }}{{ reply_parent.id }}"{% endif %}
|
||||||
placeholder="{{ placeholder }}"
|
id="id_content_{{ type }}_{{ book.id }}{{ reply_parent.id }}{{ uuid }}"
|
||||||
aria-label="{% if reply_parent %}{% trans 'Reply' %}{% else %}{% trans 'Content' %}{% endif %}"
|
placeholder="{{ placeholder }}"
|
||||||
{% if not optional and type != "quotation" and type != "review" %}required{% endif %}
|
aria-label="{% if reply_parent %}{% trans 'Reply' %}{% else %}{% trans 'Content' %}{% endif %}"
|
||||||
>{% if reply_parent %}{{ reply_parent|mentions:request.user }}{% endif %}{% if mention %}@{{ mention|username }} {% endif %}{% firstof draft.raw_content draft.content '' %}</textarea>
|
{% if not optional and type != "quotation" and type != "review" %}required{% endif %}
|
||||||
|
>{% if reply_parent %}{{ reply_parent|mentions:request.user }}{% endif %}{% if mention %}@{{ mention|username }} {% endif %}{{ prepared_content }}{% firstof draft.raw_content draft.content '' %}</textarea>
|
||||||
|
</div>
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="column is-narrow">
|
<div class="column is-narrow control">
|
||||||
<button class="button is-link" type="submit">
|
<button class="button is-link" type="submit">
|
||||||
<span class="icon icon-spinner" aria-hidden="true"></span>
|
<span class="icon icon-spinner" aria-hidden="true"></span>
|
||||||
<span>{% trans "Post" %}</span>
|
<span>{% trans "Post" %}</span>
|
||||||
|
|
|
@ -38,9 +38,11 @@
|
||||||
{% block filter_fields %}
|
{% block filter_fields %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
<button type="submit" class="button is-primary is-small">
|
<div class="control">
|
||||||
|
<button type="submit" class="button is-primary">
|
||||||
{% trans "Apply filters" %}
|
{% trans "Apply filters" %}
|
||||||
</button>
|
</button>
|
||||||
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</details>
|
</details>
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<input type="hidden" name="reporter" value="{{ request.user.id }}">
|
<input type="hidden" name="reporter" value="{{ request.user.id }}">
|
||||||
<input type="hidden" name="user" value="{{ user.id }}">
|
<input type="hidden" name="user" value="{{ user.id }}">
|
||||||
{% if status %}
|
{% if status_id %}
|
||||||
<input type="hidden" name="statuses" value="{{ status_id }}">
|
<input type="hidden" name="statuses" value="{{ status_id }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if link %}
|
{% if link %}
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
{% load book_display_tags %}
|
{% load book_display_tags %}
|
||||||
{% load markdown %}
|
{% load markdown %}
|
||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
{% load cache %}
|
|
||||||
|
|
||||||
{% if not hide_book %}
|
{% if not hide_book %}
|
||||||
{% with book=status.book|default:status.mention_books.first %}
|
{% with book=status.book|default:status.mention_books.first %}
|
||||||
|
|
|
@ -10,7 +10,9 @@
|
||||||
|
|
||||||
{% block dropdown-list %}
|
{% block dropdown-list %}
|
||||||
<li role="menuitem">
|
<li role="menuitem">
|
||||||
<a href="{% url 'direct-messages-user' user|username %}" class="button is-fullwidth is-small">{% trans "Send direct message" %}</a>
|
<div class="control">
|
||||||
|
<a href="{% url 'direct-messages-user' user|username %}" class="button is-fullwidth is-small">{% trans "Send direct message" %}</a>
|
||||||
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li role="menuitem">
|
<li role="menuitem">
|
||||||
{% include 'snippets/report_button.html' with user=user class="is-fullwidth" %}
|
{% include 'snippets/report_button.html' with user=user class="is-fullwidth" %}
|
||||||
|
|
|
@ -443,18 +443,17 @@ class ModelFields(TestCase):
|
||||||
image_file = pathlib.Path(__file__).parent.joinpath(
|
image_file = pathlib.Path(__file__).parent.joinpath(
|
||||||
"../../static/images/default_avi.jpg"
|
"../../static/images/default_avi.jpg"
|
||||||
)
|
)
|
||||||
image = Image.open(image_file)
|
|
||||||
output = BytesIO()
|
|
||||||
image.save(output, format=image.format)
|
|
||||||
|
|
||||||
instance = fields.ImageField()
|
instance = fields.ImageField()
|
||||||
|
|
||||||
responses.add(
|
with open(image_file, "rb") as image_data:
|
||||||
responses.GET,
|
responses.add(
|
||||||
"http://www.example.com/image.jpg",
|
responses.GET,
|
||||||
body=image.tobytes(),
|
"http://www.example.com/image.jpg",
|
||||||
status=200,
|
body=image_data.read(),
|
||||||
)
|
status=200,
|
||||||
|
content_type="image/jpeg",
|
||||||
|
stream=True,
|
||||||
|
)
|
||||||
loaded_image = instance.field_from_activity("http://www.example.com/image.jpg")
|
loaded_image = instance.field_from_activity("http://www.example.com/image.jpg")
|
||||||
self.assertIsInstance(loaded_image, list)
|
self.assertIsInstance(loaded_image, list)
|
||||||
self.assertIsInstance(loaded_image[1], ContentFile)
|
self.assertIsInstance(loaded_image[1], ContentFile)
|
||||||
|
@ -465,18 +464,18 @@ class ModelFields(TestCase):
|
||||||
image_file = pathlib.Path(__file__).parent.joinpath(
|
image_file = pathlib.Path(__file__).parent.joinpath(
|
||||||
"../../static/images/default_avi.jpg"
|
"../../static/images/default_avi.jpg"
|
||||||
)
|
)
|
||||||
image = Image.open(image_file)
|
|
||||||
output = BytesIO()
|
|
||||||
image.save(output, format=image.format)
|
|
||||||
|
|
||||||
instance = fields.ImageField(activitypub_field="cover", name="cover")
|
instance = fields.ImageField(activitypub_field="cover", name="cover")
|
||||||
|
|
||||||
responses.add(
|
with open(image_file, "rb") as image_data:
|
||||||
responses.GET,
|
responses.add(
|
||||||
"http://www.example.com/image.jpg",
|
responses.GET,
|
||||||
body=image.tobytes(),
|
"http://www.example.com/image.jpg",
|
||||||
status=200,
|
body=image_data.read(),
|
||||||
)
|
content_type="image/jpeg",
|
||||||
|
status=200,
|
||||||
|
stream=True,
|
||||||
|
)
|
||||||
book = Edition.objects.create(title="hello")
|
book = Edition.objects.create(title="hello")
|
||||||
|
|
||||||
MockActivity = namedtuple("MockActivity", ("cover"))
|
MockActivity = namedtuple("MockActivity", ("cover"))
|
||||||
|
@ -491,18 +490,18 @@ class ModelFields(TestCase):
|
||||||
image_file = pathlib.Path(__file__).parent.joinpath(
|
image_file = pathlib.Path(__file__).parent.joinpath(
|
||||||
"../../static/images/default_avi.jpg"
|
"../../static/images/default_avi.jpg"
|
||||||
)
|
)
|
||||||
image = Image.open(image_file)
|
|
||||||
output = BytesIO()
|
|
||||||
image.save(output, format=image.format)
|
|
||||||
|
|
||||||
instance = fields.ImageField(activitypub_field="cover", name="cover")
|
instance = fields.ImageField(activitypub_field="cover", name="cover")
|
||||||
|
|
||||||
responses.add(
|
with open(image_file, "rb") as image_data:
|
||||||
responses.GET,
|
responses.add(
|
||||||
"http://www.example.com/image.jpg",
|
responses.GET,
|
||||||
body=image.tobytes(),
|
"http://www.example.com/image.jpg",
|
||||||
status=200,
|
body=image_data.read(),
|
||||||
)
|
status=200,
|
||||||
|
content_type="image/jpeg",
|
||||||
|
stream=True,
|
||||||
|
)
|
||||||
book = Edition.objects.create(title="hello")
|
book = Edition.objects.create(title="hello")
|
||||||
|
|
||||||
MockActivity = namedtuple("MockActivity", ("cover"))
|
MockActivity = namedtuple("MockActivity", ("cover"))
|
||||||
|
@ -565,18 +564,18 @@ class ModelFields(TestCase):
|
||||||
another_image_file = pathlib.Path(__file__).parent.joinpath(
|
another_image_file = pathlib.Path(__file__).parent.joinpath(
|
||||||
"../../static/images/logo.png"
|
"../../static/images/logo.png"
|
||||||
)
|
)
|
||||||
another_image = Image.open(another_image_file)
|
|
||||||
another_output = BytesIO()
|
|
||||||
another_image.save(another_output, format=another_image.format)
|
|
||||||
|
|
||||||
instance = fields.ImageField(activitypub_field="cover", name="cover")
|
instance = fields.ImageField(activitypub_field="cover", name="cover")
|
||||||
|
|
||||||
responses.add(
|
with open(another_image_file, "rb") as another_image:
|
||||||
responses.GET,
|
responses.add(
|
||||||
"http://www.example.com/image.jpg",
|
responses.GET,
|
||||||
body=another_image.tobytes(),
|
"http://www.example.com/image.jpg",
|
||||||
status=200,
|
body=another_image.read(),
|
||||||
)
|
status=200,
|
||||||
|
content_type="image/jpeg",
|
||||||
|
stream=True,
|
||||||
|
)
|
||||||
|
|
||||||
MockActivity = namedtuple("MockActivity", ("cover"))
|
MockActivity = namedtuple("MockActivity", ("cover"))
|
||||||
mock_activity = MockActivity("http://www.example.com/image.jpg")
|
mock_activity = MockActivity("http://www.example.com/image.jpg")
|
||||||
|
|
|
@ -58,6 +58,7 @@ class ReportAdmin(View):
|
||||||
"""load a report"""
|
"""load a report"""
|
||||||
data = {
|
data = {
|
||||||
"report": get_object_or_404(models.Report, id=report_id),
|
"report": get_object_or_404(models.Report, id=report_id),
|
||||||
|
"group_form": forms.UserGroupForm(),
|
||||||
}
|
}
|
||||||
return TemplateResponse(request, "settings/reports/report.html", data)
|
return TemplateResponse(request, "settings/reports/report.html", data)
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
from uuid import uuid4
|
from uuid import uuid4
|
||||||
|
|
||||||
from django.contrib.auth.decorators import login_required, permission_required
|
from django.contrib.auth.decorators import login_required, permission_required
|
||||||
from django.core.files.base import ContentFile
|
|
||||||
from django.core.paginator import Paginator
|
from django.core.paginator import Paginator
|
||||||
from django.db.models import Avg, Q
|
from django.db.models import Avg, Q
|
||||||
from django.http import Http404
|
from django.http import Http404
|
||||||
|
@ -144,13 +143,12 @@ def upload_cover(request, book_id):
|
||||||
def set_cover_from_url(url):
|
def set_cover_from_url(url):
|
||||||
"""load it from a url"""
|
"""load it from a url"""
|
||||||
try:
|
try:
|
||||||
image_file = get_image(url)
|
image_content, extension = get_image(url)
|
||||||
except: # pylint: disable=bare-except
|
except: # pylint: disable=bare-except
|
||||||
return None
|
return None
|
||||||
if not image_file:
|
if not image_content:
|
||||||
return None
|
return None
|
||||||
image_name = str(uuid4()) + "." + url.split(".")[-1]
|
image_name = str(uuid4()) + "." + extension
|
||||||
image_content = ContentFile(image_file.content)
|
|
||||||
return [image_name, image_content]
|
return [image_name, image_content]
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -31,12 +31,13 @@ class User(View):
|
||||||
shelf_preview = []
|
shelf_preview = []
|
||||||
|
|
||||||
# only show shelves that should be visible
|
# only show shelves that should be visible
|
||||||
shelves = user.shelf_set
|
|
||||||
is_self = request.user.id == user.id
|
is_self = request.user.id == user.id
|
||||||
if not is_self:
|
if not is_self:
|
||||||
shelves = models.Shelf.privacy_filter(
|
shelves = models.Shelf.privacy_filter(
|
||||||
request.user, privacy_levels=["public", "followers"]
|
request.user, privacy_levels=["public", "followers"]
|
||||||
).filter(user=user, books__isnull=False)
|
).filter(user=user, books__isnull=False)
|
||||||
|
else:
|
||||||
|
shelves = user.shelf_set.filter(books__isnull=False).distinct()
|
||||||
|
|
||||||
for user_shelf in shelves.all()[:3]:
|
for user_shelf in shelves.all()[:3]:
|
||||||
shelf_preview.append(
|
shelf_preview.append(
|
||||||
|
|
4
bw-dev
4
bw-dev
|
@ -27,8 +27,8 @@ function execweb {
|
||||||
}
|
}
|
||||||
|
|
||||||
function initdb {
|
function initdb {
|
||||||
execweb python manage.py migrate
|
runweb python manage.py migrate
|
||||||
execweb python manage.py initdb "$@"
|
runweb python manage.py initdb "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
function awscommand {
|
function awscommand {
|
||||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-01-24 17:25+0000\n"
|
"POT-Creation-Date: 2022-01-28 02:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-24 18:55\n"
|
"PO-Revision-Date: 2022-01-29 14:28\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
|
@ -46,33 +46,33 @@ msgstr "{i}-mal verwendbar"
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Unbegrenzt"
|
msgstr "Unbegrenzt"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:483
|
#: bookwyrm/forms.py:489
|
||||||
msgid "List Order"
|
msgid "List Order"
|
||||||
msgstr "Reihenfolge der Liste"
|
msgstr "Reihenfolge der Liste"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:484
|
#: bookwyrm/forms.py:490
|
||||||
msgid "Book Title"
|
msgid "Book Title"
|
||||||
msgstr "Buchtitel"
|
msgstr "Buchtitel"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
|
#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
|
||||||
#: bookwyrm/templates/shelf/shelf.html:187
|
#: bookwyrm/templates/shelf/shelf.html:187
|
||||||
#: bookwyrm/templates/snippets/create_status/review.html:32
|
#: bookwyrm/templates/snippets/create_status/review.html:32
|
||||||
msgid "Rating"
|
msgid "Rating"
|
||||||
msgstr "Bewertung"
|
msgstr "Bewertung"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
|
#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
|
||||||
msgid "Sort By"
|
msgid "Sort By"
|
||||||
msgstr "Sortieren nach"
|
msgstr "Sortieren nach"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:491
|
#: bookwyrm/forms.py:497
|
||||||
msgid "Ascending"
|
msgid "Ascending"
|
||||||
msgstr "Aufsteigend"
|
msgstr "Aufsteigend"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:492
|
#: bookwyrm/forms.py:498
|
||||||
msgid "Descending"
|
msgid "Descending"
|
||||||
msgstr "Absteigend"
|
msgstr "Absteigend"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:505
|
#: bookwyrm/forms.py:511
|
||||||
msgid "Reading finish date cannot be before start date."
|
msgid "Reading finish date cannot be before start date."
|
||||||
msgstr "Enddatum darf nicht vor dem Startdatum liegen."
|
msgstr "Enddatum darf nicht vor dem Startdatum liegen."
|
||||||
|
|
||||||
|
@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Portugiesisch)"
|
msgstr "Português Europeu (Portugiesisch)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:258
|
#: bookwyrm/settings.py:258
|
||||||
|
msgid "Swedish (Svenska)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/settings.py:259
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (vereinfachtes Chinesisch)"
|
msgstr "简体中文 (vereinfachtes Chinesisch)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:259
|
#: bookwyrm/settings.py:260
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Chinesisch, traditionell)"
|
msgstr "繁體中文 (Chinesisch, traditionell)"
|
||||||
|
|
||||||
|
@ -352,7 +356,7 @@ msgstr "Lerne deinen Admins kennen"
|
||||||
#: bookwyrm/templates/about/about.html:99
|
#: bookwyrm/templates/about/about.html:99
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the <a href=\"coc_path\">code of conduct</a>, and respond when users report spam and bad behavior."
|
msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the <a href=\"coc_path\">code of conduct</a>, and respond when users report spam and bad behavior."
|
||||||
msgstr ""
|
msgstr "Die Moderator*innen und Administrator*innen von %(site_name)s halten diese Seite am Laufen. Beachte den <a href=\"coc_path\">Verhaltenskodex</a> und melde, wenn andere Benutzer*innen dagegen verstoßen oder Spam verbreiten."
|
||||||
|
|
||||||
#: bookwyrm/templates/about/about.html:113
|
#: bookwyrm/templates/about/about.html:113
|
||||||
msgid "Moderator"
|
msgid "Moderator"
|
||||||
|
@ -424,7 +428,7 @@ msgid "Copy address"
|
||||||
msgstr "Adresse kopieren"
|
msgstr "Adresse kopieren"
|
||||||
|
|
||||||
#: bookwyrm/templates/annual_summary/layout.html:68
|
#: bookwyrm/templates/annual_summary/layout.html:68
|
||||||
#: bookwyrm/templates/lists/list.html:231
|
#: bookwyrm/templates/lists/list.html:269
|
||||||
msgid "Copied!"
|
msgid "Copied!"
|
||||||
msgstr "Kopiert!"
|
msgstr "Kopiert!"
|
||||||
|
|
||||||
|
@ -689,6 +693,7 @@ msgstr "ISNI:"
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
||||||
#: bookwyrm/templates/groups/form.html:30
|
#: bookwyrm/templates/groups/form.html:30
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:15
|
#: bookwyrm/templates/lists/bookmark_button.html:15
|
||||||
|
#: bookwyrm/templates/lists/edit_item_form.html:15
|
||||||
#: bookwyrm/templates/lists/form.html:130
|
#: bookwyrm/templates/lists/form.html:130
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:124
|
#: bookwyrm/templates/preferences/edit_user.html:124
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
||||||
|
@ -712,6 +717,7 @@ msgstr "Speichern"
|
||||||
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
||||||
#: bookwyrm/templates/book/sync_modal.html:23
|
#: bookwyrm/templates/book/sync_modal.html:23
|
||||||
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:42
|
||||||
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
||||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
||||||
|
@ -816,7 +822,7 @@ msgstr "Orte"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:348
|
#: bookwyrm/templates/book/book.html:348
|
||||||
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
||||||
#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
|
#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12
|
||||||
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
||||||
#: bookwyrm/templates/search/layout.html:25
|
#: bookwyrm/templates/search/layout.html:25
|
||||||
#: bookwyrm/templates/search/layout.html:50
|
#: bookwyrm/templates/search/layout.html:50
|
||||||
|
@ -830,7 +836,8 @@ msgstr "Zur Liste hinzufügen"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:369
|
#: bookwyrm/templates/book/book.html:369
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:31
|
#: bookwyrm/templates/book/cover_add_modal.html:31
|
||||||
#: bookwyrm/templates/lists/list.html:209
|
#: bookwyrm/templates/lists/add_item_modal.html:37
|
||||||
|
#: bookwyrm/templates/lists/list.html:247
|
||||||
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
||||||
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
|
@ -1551,16 +1558,11 @@ msgstr "Alle Nachrichten"
|
||||||
msgid "You have no messages right now."
|
msgid "You have no messages right now."
|
||||||
msgstr "Du hast momentan keine Nachrichten."
|
msgstr "Du hast momentan keine Nachrichten."
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:28
|
#: bookwyrm/templates/feed/feed.html:54
|
||||||
#, python-format
|
|
||||||
msgid "load <span data-poll=\"stream/%(tab_key)s\">0</span> unread status(es)"
|
|
||||||
msgstr "lade <span data-poll=\"stream/%(tab_key)s\">0</span> ungelesene Statusmeldung(en)"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:51
|
|
||||||
msgid "There aren't any activities right now! Try following a user to get started"
|
msgid "There aren't any activities right now! Try following a user to get started"
|
||||||
msgstr "Hier sind noch keine Aktivitäten! Folge Anderen, um loszulegen"
|
msgstr "Hier sind noch keine Aktivitäten! Folge Anderen, um loszulegen"
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:52
|
#: bookwyrm/templates/feed/feed.html:55
|
||||||
msgid "Alternatively, you can try enabling more status types"
|
msgid "Alternatively, you can try enabling more status types"
|
||||||
msgstr "Alternativ könntest du auch weitere Statustypen aktivieren"
|
msgstr "Alternativ könntest du auch weitere Statustypen aktivieren"
|
||||||
|
|
||||||
|
@ -1649,7 +1651,7 @@ msgid "What are you reading?"
|
||||||
msgstr "Was liest du gerade?"
|
msgstr "Was liest du gerade?"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:9
|
#: bookwyrm/templates/get_started/books.html:9
|
||||||
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
|
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
|
||||||
msgid "Search for a book"
|
msgid "Search for a book"
|
||||||
msgstr "Nach einem Buch suchen"
|
msgstr "Nach einem Buch suchen"
|
||||||
|
|
||||||
|
@ -1669,7 +1671,7 @@ msgstr "Du kannst Bücher hinzufügen, wenn du %(site_name)s benutzt."
|
||||||
#: bookwyrm/templates/get_started/users.html:19
|
#: bookwyrm/templates/get_started/users.html:19
|
||||||
#: bookwyrm/templates/groups/members.html:15
|
#: bookwyrm/templates/groups/members.html:15
|
||||||
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
||||||
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
|
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
|
||||||
#: bookwyrm/templates/search/layout.html:4
|
#: bookwyrm/templates/search/layout.html:4
|
||||||
#: bookwyrm/templates/search/layout.html:9
|
#: bookwyrm/templates/search/layout.html:9
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
|
@ -1685,7 +1687,7 @@ msgid "Popular on %(site_name)s"
|
||||||
msgstr "Auf %(site_name)s beliebt"
|
msgstr "Auf %(site_name)s beliebt"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:58
|
#: bookwyrm/templates/get_started/books.html:58
|
||||||
#: bookwyrm/templates/lists/list.html:180
|
#: bookwyrm/templates/lists/list.html:222
|
||||||
msgid "No books found"
|
msgid "No books found"
|
||||||
msgstr "Keine Bücher gefunden"
|
msgstr "Keine Bücher gefunden"
|
||||||
|
|
||||||
|
@ -2034,7 +2036,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
|
||||||
msgstr "Die Genehmigung eines Vorschlags wird das vorgeschlagene Buch dauerhaft in deine Regale aufnehmen und deine Lesedaten, Besprechungen und Bewertungen mit diesem Buch verknüpfen."
|
msgstr "Die Genehmigung eines Vorschlags wird das vorgeschlagene Buch dauerhaft in deine Regale aufnehmen und deine Lesedaten, Besprechungen und Bewertungen mit diesem Buch verknüpfen."
|
||||||
|
|
||||||
#: bookwyrm/templates/import/manual_review.html:58
|
#: bookwyrm/templates/import/manual_review.html:58
|
||||||
#: bookwyrm/templates/lists/curate.html:59
|
#: bookwyrm/templates/lists/curate.html:71
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr "Bestätigen"
|
msgstr "Bestätigen"
|
||||||
|
@ -2245,6 +2247,21 @@ msgstr "%(site_name)s auf <a href=\"%(support_link)s\" target=\"_blank\">%(suppo
|
||||||
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
msgstr "BookWyrm ist open source Software. Du kannst dich auf <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a> beteiligen oder etwas melden."
|
msgstr "BookWyrm ist open source Software. Du kannst dich auf <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a> beteiligen oder etwas melden."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:8
|
||||||
|
#, python-format
|
||||||
|
msgid "Add \"<em>%(title)s</em>\" to this list"
|
||||||
|
msgstr "\"<em>%(title)s</em>\" zu dieser Liste hinzufügen"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:12
|
||||||
|
#, python-format
|
||||||
|
msgid "Suggest \"<em>%(title)s</em>\" for this list"
|
||||||
|
msgstr "\"<em>%(title)s</em>\" für diese Liste vorschlagen"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:39
|
||||||
|
#: bookwyrm/templates/lists/list.html:249
|
||||||
|
msgid "Suggest"
|
||||||
|
msgstr "Vorschlagen"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:30
|
#: bookwyrm/templates/lists/bookmark_button.html:30
|
||||||
msgid "Un-save"
|
msgid "Un-save"
|
||||||
msgstr "Speichern rückgängig machen"
|
msgstr "Speichern rückgängig machen"
|
||||||
|
@ -2264,23 +2281,29 @@ msgstr "Erstellt und betreut von <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgstr "Erstellt von <a href=\"%(path)s\">%(username)s</a>"
|
msgstr "Erstellt von <a href=\"%(path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:11
|
#: bookwyrm/templates/lists/curate.html:12
|
||||||
msgid "Curate"
|
msgid "Curate"
|
||||||
msgstr "Kuratieren"
|
msgstr "Kuratieren"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:20
|
#: bookwyrm/templates/lists/curate.html:21
|
||||||
msgid "Pending Books"
|
msgid "Pending Books"
|
||||||
msgstr "Unbestätigte Bücher"
|
msgstr "Unbestätigte Bücher"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:23
|
#: bookwyrm/templates/lists/curate.html:24
|
||||||
msgid "You're all set!"
|
msgid "You're all set!"
|
||||||
msgstr "Du bist soweit!"
|
msgstr "Du bist soweit!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:43
|
#: bookwyrm/templates/lists/curate.html:45
|
||||||
|
#: bookwyrm/templates/lists/list.html:83
|
||||||
|
#, python-format
|
||||||
|
msgid "<a href=\"%(user_path)s\">%(username)s</a> says:"
|
||||||
|
msgstr "<a href=\"%(user_path)s\">%(username)s</a> sagt:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/curate.html:55
|
||||||
msgid "Suggested by"
|
msgid "Suggested by"
|
||||||
msgstr "Vorgeschlagen von"
|
msgstr "Vorgeschlagen von"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:65
|
#: bookwyrm/templates/lists/curate.html:77
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr "Ablehnen"
|
msgstr "Ablehnen"
|
||||||
|
|
||||||
|
@ -2304,7 +2327,7 @@ msgid "on <a href=\"/\">%(site_name)s</a>"
|
||||||
msgstr "auf <a href=\"/\">%(site_name)s</a>"
|
msgstr "auf <a href=\"/\">%(site_name)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/embed-list.html:27
|
#: bookwyrm/templates/lists/embed-list.html:27
|
||||||
#: bookwyrm/templates/lists/list.html:43
|
#: bookwyrm/templates/lists/list.html:44
|
||||||
msgid "This list is currently empty"
|
msgid "This list is currently empty"
|
||||||
msgstr "Diese Liste ist momentan leer"
|
msgstr "Diese Liste ist momentan leer"
|
||||||
|
|
||||||
|
@ -2365,76 +2388,89 @@ msgstr "Gruppe erstellen"
|
||||||
msgid "Delete list"
|
msgid "Delete list"
|
||||||
msgstr "Liste löschen"
|
msgstr "Liste löschen"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:35
|
#: bookwyrm/templates/lists/item_notes_field.html:7
|
||||||
|
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
||||||
|
msgid "Notes:"
|
||||||
|
msgstr "Anmerkungen:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/item_notes_field.html:19
|
||||||
|
msgid "An optional note that will be displayed with the book."
|
||||||
|
msgstr "Eine optionale Notiz die zusammen mit dem Buch angezeigt wird."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:36
|
||||||
msgid "You successfully suggested a book for this list!"
|
msgid "You successfully suggested a book for this list!"
|
||||||
msgstr "Dein Buchvorschlag wurde dieser Liste hinzugefügt!"
|
msgstr "Dein Buchvorschlag wurde dieser Liste hinzugefügt!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:37
|
#: bookwyrm/templates/lists/list.html:38
|
||||||
msgid "You successfully added a book to this list!"
|
msgid "You successfully added a book to this list!"
|
||||||
msgstr "Du hast ein Buch zu dieser Liste hinzugefügt!"
|
msgstr "Du hast ein Buch zu dieser Liste hinzugefügt!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:81
|
#: bookwyrm/templates/lists/list.html:96
|
||||||
|
msgid "Edit notes"
|
||||||
|
msgstr "Notizen bearbeiten"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:111
|
||||||
|
msgid "Add notes"
|
||||||
|
msgstr "Notiz hinzufügen"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:123
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
msgstr "Hinzugefügt von <a href=\"%(user_path)s\">%(username)s</a>"
|
msgstr "Hinzugefügt von <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:96
|
#: bookwyrm/templates/lists/list.html:138
|
||||||
msgid "List position"
|
msgid "List position"
|
||||||
msgstr "Listenposition"
|
msgstr "Listenposition"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:102
|
#: bookwyrm/templates/lists/list.html:144
|
||||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
||||||
msgid "Set"
|
msgid "Set"
|
||||||
msgstr "Übernehmen"
|
msgstr "Übernehmen"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:117
|
#: bookwyrm/templates/lists/list.html:159
|
||||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Entfernen"
|
msgstr "Entfernen"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:131
|
#: bookwyrm/templates/lists/list.html:173
|
||||||
#: bookwyrm/templates/lists/list.html:148
|
#: bookwyrm/templates/lists/list.html:190
|
||||||
msgid "Sort List"
|
msgid "Sort List"
|
||||||
msgstr "Liste sortieren"
|
msgstr "Liste sortieren"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:141
|
#: bookwyrm/templates/lists/list.html:183
|
||||||
msgid "Direction"
|
msgid "Direction"
|
||||||
msgstr "Reihenfolge"
|
msgstr "Reihenfolge"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:155
|
#: bookwyrm/templates/lists/list.html:197
|
||||||
msgid "Add Books"
|
msgid "Add Books"
|
||||||
msgstr "Bücher hinzufügen"
|
msgstr "Bücher hinzufügen"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:157
|
#: bookwyrm/templates/lists/list.html:199
|
||||||
msgid "Suggest Books"
|
msgid "Suggest Books"
|
||||||
msgstr "Bücher vorschlagen"
|
msgstr "Bücher vorschlagen"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:168
|
#: bookwyrm/templates/lists/list.html:210
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "suchen"
|
msgstr "suchen"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:174
|
#: bookwyrm/templates/lists/list.html:216
|
||||||
msgid "Clear search"
|
msgid "Clear search"
|
||||||
msgstr "Suche zurücksetzen"
|
msgstr "Suche zurücksetzen"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:179
|
#: bookwyrm/templates/lists/list.html:221
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "No books found matching the query \"%(query)s\""
|
msgid "No books found matching the query \"%(query)s\""
|
||||||
msgstr "Keine passenden Bücher zu „%(query)s“ gefunden"
|
msgstr "Keine passenden Bücher zu „%(query)s“ gefunden"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:211
|
#: bookwyrm/templates/lists/list.html:260
|
||||||
msgid "Suggest"
|
|
||||||
msgstr "Vorschlagen"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:222
|
|
||||||
msgid "Embed this list on a website"
|
msgid "Embed this list on a website"
|
||||||
msgstr "Diese Liste auf einer Webseite einbetten"
|
msgstr "Diese Liste auf einer Webseite einbetten"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:230
|
#: bookwyrm/templates/lists/list.html:268
|
||||||
msgid "Copy embed code"
|
msgid "Copy embed code"
|
||||||
msgstr "Code zum einbetten kopieren"
|
msgstr "Code zum einbetten kopieren"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:232
|
#: bookwyrm/templates/lists/list.html:270
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
||||||
msgstr "%(list_name)s, eine Liste von %(owner)s auf %(site_name)s"
|
msgstr "%(list_name)s, eine Liste von %(owner)s auf %(site_name)s"
|
||||||
|
@ -3222,10 +3258,6 @@ msgstr "Software:"
|
||||||
msgid "Version:"
|
msgid "Version:"
|
||||||
msgstr "Version:"
|
msgstr "Version:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
|
||||||
msgid "Notes:"
|
|
||||||
msgstr "Anmerkungen:"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance.html:19
|
#: bookwyrm/templates/settings/federation/instance.html:19
|
||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Details"
|
msgstr "Details"
|
||||||
|
@ -4137,13 +4169,13 @@ msgstr[1] "hat <em><a href=\"%(path)s\">%(title)s</a></em> mit %(display_rating)
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s"
|
msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s"
|
||||||
msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s"
|
msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s"
|
||||||
msgstr[0] ""
|
msgstr[0] "Rezension von \"%(book_title)s\" (%(display_rating)s Stern): %(review_title)s"
|
||||||
msgstr[1] ""
|
msgstr[1] "Rezension von \"%(book_title)s\" (%(display_rating)s Sterne): %(review_title)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12
|
#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Review of \"%(book_title)s\": %(review_title)s"
|
msgid "Review of \"%(book_title)s\": %(review_title)s"
|
||||||
msgstr ""
|
msgstr "Rezension von \"%(book_title)s\": %(review_title)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/goal_form.html:4
|
#: bookwyrm/templates/snippets/goal_form.html:4
|
||||||
#, python-format
|
#, python-format
|
||||||
|
@ -4631,3 +4663,10 @@ msgstr "Ein Link zum Zurücksetzen des Passworts wurde an {email} gesendet"
|
||||||
msgid "Status updates from {obj.display_name}"
|
msgid "Status updates from {obj.display_name}"
|
||||||
msgstr "Status -Updates von {obj.display_name}"
|
msgstr "Status -Updates von {obj.display_name}"
|
||||||
|
|
||||||
|
#: bookwyrm/views/updates.py:45
|
||||||
|
#, python-format
|
||||||
|
msgid "Load %(count)d unread status"
|
||||||
|
msgid_plural "Load %(count)d unread statuses"
|
||||||
|
msgstr[0] "Lade %(count)d ungelesene Statusmeldung"
|
||||||
|
msgstr[1] "Lade %(count)d ungelesene Statusmeldungen"
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 0.0.1\n"
|
"Project-Id-Version: 0.0.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-01-28 02:50+0000\n"
|
"POT-Creation-Date: 2022-01-30 18:17+0000\n"
|
||||||
"PO-Revision-Date: 2021-02-28 17:19-0800\n"
|
"PO-Revision-Date: 2021-02-28 17:19-0800\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: English <LL@li.org>\n"
|
"Language-Team: English <LL@li.org>\n"
|
||||||
|
@ -3574,23 +3574,31 @@ msgstr ""
|
||||||
msgid "Back to reports"
|
msgid "Back to reports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/reports/report.html:22
|
#: bookwyrm/templates/settings/reports/report.html:23
|
||||||
msgid "Reported statuses"
|
msgid "Message reporter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/reports/report.html:27
|
#: bookwyrm/templates/settings/reports/report.html:27
|
||||||
|
msgid "Update on your report:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/reports/report.html:35
|
||||||
|
msgid "Reported statuses"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/settings/reports/report.html:40
|
||||||
msgid "Status has been deleted"
|
msgid "Status has been deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/reports/report.html:39
|
#: bookwyrm/templates/settings/reports/report.html:52
|
||||||
msgid "Reported links"
|
msgid "Reported links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/reports/report.html:55
|
#: bookwyrm/templates/settings/reports/report.html:68
|
||||||
msgid "Moderator Comments"
|
msgid "Moderator Comments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/reports/report.html:73
|
#: bookwyrm/templates/settings/reports/report.html:89
|
||||||
#: bookwyrm/templates/snippets/create_status.html:28
|
#: bookwyrm/templates/snippets/create_status.html:28
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4015,14 +4023,14 @@ msgstr ""
|
||||||
msgid "of %(pages)s pages"
|
msgid "of %(pages)s pages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/create_status/content_field.html:17
|
#: bookwyrm/templates/snippets/create_status/content_field.html:18
|
||||||
#: bookwyrm/templates/snippets/status/layout.html:34
|
#: bookwyrm/templates/snippets/status/layout.html:34
|
||||||
#: bookwyrm/templates/snippets/status/layout.html:53
|
#: bookwyrm/templates/snippets/status/layout.html:53
|
||||||
#: bookwyrm/templates/snippets/status/layout.html:54
|
#: bookwyrm/templates/snippets/status/layout.html:54
|
||||||
msgid "Reply"
|
msgid "Reply"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/create_status/content_field.html:17
|
#: bookwyrm/templates/snippets/create_status/content_field.html:18
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-01-24 17:25+0000\n"
|
"POT-Creation-Date: 2022-01-28 02:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-26 11:26\n"
|
"PO-Revision-Date: 2022-01-28 08:06\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Spanish\n"
|
"Language-Team: Spanish\n"
|
||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
|
@ -46,33 +46,33 @@ msgstr "{i} usos"
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Sin límite"
|
msgstr "Sin límite"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:483
|
#: bookwyrm/forms.py:489
|
||||||
msgid "List Order"
|
msgid "List Order"
|
||||||
msgstr "Orden de la lista"
|
msgstr "Orden de la lista"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:484
|
#: bookwyrm/forms.py:490
|
||||||
msgid "Book Title"
|
msgid "Book Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
|
#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
|
||||||
#: bookwyrm/templates/shelf/shelf.html:187
|
#: bookwyrm/templates/shelf/shelf.html:187
|
||||||
#: bookwyrm/templates/snippets/create_status/review.html:32
|
#: bookwyrm/templates/snippets/create_status/review.html:32
|
||||||
msgid "Rating"
|
msgid "Rating"
|
||||||
msgstr "Valoración"
|
msgstr "Valoración"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
|
#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
|
||||||
msgid "Sort By"
|
msgid "Sort By"
|
||||||
msgstr "Ordenar por"
|
msgstr "Ordenar por"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:491
|
#: bookwyrm/forms.py:497
|
||||||
msgid "Ascending"
|
msgid "Ascending"
|
||||||
msgstr "Ascendente"
|
msgstr "Ascendente"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:492
|
#: bookwyrm/forms.py:498
|
||||||
msgid "Descending"
|
msgid "Descending"
|
||||||
msgstr "Descendente"
|
msgstr "Descendente"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:505
|
#: bookwyrm/forms.py:511
|
||||||
msgid "Reading finish date cannot be before start date."
|
msgid "Reading finish date cannot be before start date."
|
||||||
msgstr "La fecha final de lectura no puede ser anterior a la fecha de inicio."
|
msgstr "La fecha final de lectura no puede ser anterior a la fecha de inicio."
|
||||||
|
|
||||||
|
@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Portugués europeo)"
|
msgstr "Português Europeu (Portugués europeo)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:258
|
#: bookwyrm/settings.py:258
|
||||||
|
msgid "Swedish (Svenska)"
|
||||||
|
msgstr "Sueco (Svenska)"
|
||||||
|
|
||||||
|
#: bookwyrm/settings.py:259
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Chino simplificado)"
|
msgstr "简体中文 (Chino simplificado)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:259
|
#: bookwyrm/settings.py:260
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Chino tradicional)"
|
msgstr "繁體中文 (Chino tradicional)"
|
||||||
|
|
||||||
|
@ -424,7 +428,7 @@ msgid "Copy address"
|
||||||
msgstr "Copiar dirección"
|
msgstr "Copiar dirección"
|
||||||
|
|
||||||
#: bookwyrm/templates/annual_summary/layout.html:68
|
#: bookwyrm/templates/annual_summary/layout.html:68
|
||||||
#: bookwyrm/templates/lists/list.html:231
|
#: bookwyrm/templates/lists/list.html:269
|
||||||
msgid "Copied!"
|
msgid "Copied!"
|
||||||
msgstr "¡Copiado!"
|
msgstr "¡Copiado!"
|
||||||
|
|
||||||
|
@ -689,6 +693,7 @@ msgstr "ISNI:"
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
||||||
#: bookwyrm/templates/groups/form.html:30
|
#: bookwyrm/templates/groups/form.html:30
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:15
|
#: bookwyrm/templates/lists/bookmark_button.html:15
|
||||||
|
#: bookwyrm/templates/lists/edit_item_form.html:15
|
||||||
#: bookwyrm/templates/lists/form.html:130
|
#: bookwyrm/templates/lists/form.html:130
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:124
|
#: bookwyrm/templates/preferences/edit_user.html:124
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
||||||
|
@ -712,6 +717,7 @@ msgstr "Guardar"
|
||||||
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
||||||
#: bookwyrm/templates/book/sync_modal.html:23
|
#: bookwyrm/templates/book/sync_modal.html:23
|
||||||
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:42
|
||||||
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
||||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
||||||
|
@ -816,7 +822,7 @@ msgstr "Lugares"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:348
|
#: bookwyrm/templates/book/book.html:348
|
||||||
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
||||||
#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
|
#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12
|
||||||
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
||||||
#: bookwyrm/templates/search/layout.html:25
|
#: bookwyrm/templates/search/layout.html:25
|
||||||
#: bookwyrm/templates/search/layout.html:50
|
#: bookwyrm/templates/search/layout.html:50
|
||||||
|
@ -830,7 +836,8 @@ msgstr "Agregar a lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:369
|
#: bookwyrm/templates/book/book.html:369
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:31
|
#: bookwyrm/templates/book/cover_add_modal.html:31
|
||||||
#: bookwyrm/templates/lists/list.html:209
|
#: bookwyrm/templates/lists/add_item_modal.html:37
|
||||||
|
#: bookwyrm/templates/lists/list.html:247
|
||||||
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
||||||
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
|
@ -1551,16 +1558,11 @@ msgstr "Todos los mensajes"
|
||||||
msgid "You have no messages right now."
|
msgid "You have no messages right now."
|
||||||
msgstr "No tienes ningún mensaje en este momento."
|
msgstr "No tienes ningún mensaje en este momento."
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:28
|
#: bookwyrm/templates/feed/feed.html:54
|
||||||
#, python-format
|
|
||||||
msgid "load <span data-poll=\"stream/%(tab_key)s\">0</span> unread status(es)"
|
|
||||||
msgstr "cargar <span data-poll=\"stream/%(tab_key)s\">0</span> estado(s) no leído(s)"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:51
|
|
||||||
msgid "There aren't any activities right now! Try following a user to get started"
|
msgid "There aren't any activities right now! Try following a user to get started"
|
||||||
msgstr "¡No hay actividad ahora mismo! Sigue a otro usuario para empezar"
|
msgstr "¡No hay actividad ahora mismo! Sigue a otro usuario para empezar"
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:52
|
#: bookwyrm/templates/feed/feed.html:55
|
||||||
msgid "Alternatively, you can try enabling more status types"
|
msgid "Alternatively, you can try enabling more status types"
|
||||||
msgstr "Alternativamente, puedes intentar habilitar más tipos de estado"
|
msgstr "Alternativamente, puedes intentar habilitar más tipos de estado"
|
||||||
|
|
||||||
|
@ -1649,7 +1651,7 @@ msgid "What are you reading?"
|
||||||
msgstr "¿Qué estás leyendo?"
|
msgstr "¿Qué estás leyendo?"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:9
|
#: bookwyrm/templates/get_started/books.html:9
|
||||||
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
|
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
|
||||||
msgid "Search for a book"
|
msgid "Search for a book"
|
||||||
msgstr "Buscar libros"
|
msgstr "Buscar libros"
|
||||||
|
|
||||||
|
@ -1669,7 +1671,7 @@ msgstr "Puedes agregar libros cuando comiences a usar %(site_name)s."
|
||||||
#: bookwyrm/templates/get_started/users.html:19
|
#: bookwyrm/templates/get_started/users.html:19
|
||||||
#: bookwyrm/templates/groups/members.html:15
|
#: bookwyrm/templates/groups/members.html:15
|
||||||
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
||||||
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
|
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
|
||||||
#: bookwyrm/templates/search/layout.html:4
|
#: bookwyrm/templates/search/layout.html:4
|
||||||
#: bookwyrm/templates/search/layout.html:9
|
#: bookwyrm/templates/search/layout.html:9
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
|
@ -1685,7 +1687,7 @@ msgid "Popular on %(site_name)s"
|
||||||
msgstr "Popular en %(site_name)s"
|
msgstr "Popular en %(site_name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:58
|
#: bookwyrm/templates/get_started/books.html:58
|
||||||
#: bookwyrm/templates/lists/list.html:180
|
#: bookwyrm/templates/lists/list.html:222
|
||||||
msgid "No books found"
|
msgid "No books found"
|
||||||
msgstr "No se encontró ningún libro"
|
msgstr "No se encontró ningún libro"
|
||||||
|
|
||||||
|
@ -2034,7 +2036,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
|
||||||
msgstr "La aprobación de una sugerencia añadirá permanentemente el libro sugerido a tus estanterías y asociará tus fechas de lectura, tus reseñas y tus valoraciones a ese libro."
|
msgstr "La aprobación de una sugerencia añadirá permanentemente el libro sugerido a tus estanterías y asociará tus fechas de lectura, tus reseñas y tus valoraciones a ese libro."
|
||||||
|
|
||||||
#: bookwyrm/templates/import/manual_review.html:58
|
#: bookwyrm/templates/import/manual_review.html:58
|
||||||
#: bookwyrm/templates/lists/curate.html:59
|
#: bookwyrm/templates/lists/curate.html:71
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr "Aprobar"
|
msgstr "Aprobar"
|
||||||
|
@ -2245,6 +2247,21 @@ msgstr "Apoyar %(site_name)s en <a href=\"%(support_link)s\" target=\"_blank\">%
|
||||||
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
msgstr "BookWyrm es software de código abierto. Puedes contribuir o reportar problemas en <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgstr "BookWyrm es software de código abierto. Puedes contribuir o reportar problemas en <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:8
|
||||||
|
#, python-format
|
||||||
|
msgid "Add \"<em>%(title)s</em>\" to this list"
|
||||||
|
msgstr "Añadir «<em>%(title)s</em>» a esta lista"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:12
|
||||||
|
#, python-format
|
||||||
|
msgid "Suggest \"<em>%(title)s</em>\" for this list"
|
||||||
|
msgstr "Sugerir «<em>%(title)s</em>» para esta lista"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:39
|
||||||
|
#: bookwyrm/templates/lists/list.html:249
|
||||||
|
msgid "Suggest"
|
||||||
|
msgstr "Sugerir"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:30
|
#: bookwyrm/templates/lists/bookmark_button.html:30
|
||||||
msgid "Un-save"
|
msgid "Un-save"
|
||||||
msgstr "Des-guardar"
|
msgstr "Des-guardar"
|
||||||
|
@ -2264,23 +2281,29 @@ msgstr "Agregado y comisariado por <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgstr "Creado por <a href=\"%(path)s\">%(username)s</a>"
|
msgstr "Creado por <a href=\"%(path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:11
|
#: bookwyrm/templates/lists/curate.html:12
|
||||||
msgid "Curate"
|
msgid "Curate"
|
||||||
msgstr "Comisariar"
|
msgstr "Comisariar"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:20
|
#: bookwyrm/templates/lists/curate.html:21
|
||||||
msgid "Pending Books"
|
msgid "Pending Books"
|
||||||
msgstr "Libros pendientes"
|
msgstr "Libros pendientes"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:23
|
#: bookwyrm/templates/lists/curate.html:24
|
||||||
msgid "You're all set!"
|
msgid "You're all set!"
|
||||||
msgstr "¡Está todo listo!"
|
msgstr "¡Está todo listo!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:43
|
#: bookwyrm/templates/lists/curate.html:45
|
||||||
|
#: bookwyrm/templates/lists/list.html:83
|
||||||
|
#, python-format
|
||||||
|
msgid "<a href=\"%(user_path)s\">%(username)s</a> says:"
|
||||||
|
msgstr "<a href=\"%(user_path)s\">%(username)s</a> dice:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/curate.html:55
|
||||||
msgid "Suggested by"
|
msgid "Suggested by"
|
||||||
msgstr "Sugerido por"
|
msgstr "Sugerido por"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:65
|
#: bookwyrm/templates/lists/curate.html:77
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr "Descartar"
|
msgstr "Descartar"
|
||||||
|
|
||||||
|
@ -2304,7 +2327,7 @@ msgid "on <a href=\"/\">%(site_name)s</a>"
|
||||||
msgstr "en <a href=\"/\">%(site_name)s</a>"
|
msgstr "en <a href=\"/\">%(site_name)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/embed-list.html:27
|
#: bookwyrm/templates/lists/embed-list.html:27
|
||||||
#: bookwyrm/templates/lists/list.html:43
|
#: bookwyrm/templates/lists/list.html:44
|
||||||
msgid "This list is currently empty"
|
msgid "This list is currently empty"
|
||||||
msgstr "Esta lista está vacia"
|
msgstr "Esta lista está vacia"
|
||||||
|
|
||||||
|
@ -2365,76 +2388,89 @@ msgstr "Crear un grupo"
|
||||||
msgid "Delete list"
|
msgid "Delete list"
|
||||||
msgstr "Eliminar lista"
|
msgstr "Eliminar lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:35
|
#: bookwyrm/templates/lists/item_notes_field.html:7
|
||||||
|
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
||||||
|
msgid "Notes:"
|
||||||
|
msgstr "Notas:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/item_notes_field.html:19
|
||||||
|
msgid "An optional note that will be displayed with the book."
|
||||||
|
msgstr "Una nota opcional que se mostrará con el libro."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:36
|
||||||
msgid "You successfully suggested a book for this list!"
|
msgid "You successfully suggested a book for this list!"
|
||||||
msgstr "¡Has sugerido un libro para esta lista exitosamente!"
|
msgstr "¡Has sugerido un libro para esta lista exitosamente!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:37
|
#: bookwyrm/templates/lists/list.html:38
|
||||||
msgid "You successfully added a book to this list!"
|
msgid "You successfully added a book to this list!"
|
||||||
msgstr "¡Has agregado un libro a esta lista exitosamente!"
|
msgstr "¡Has agregado un libro a esta lista exitosamente!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:81
|
#: bookwyrm/templates/lists/list.html:96
|
||||||
|
msgid "Edit notes"
|
||||||
|
msgstr "Editar notas"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:111
|
||||||
|
msgid "Add notes"
|
||||||
|
msgstr "Añadir notas"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:123
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
msgstr "Agregado por <a href=\"%(user_path)s\">%(username)s</a>"
|
msgstr "Agregado por <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:96
|
#: bookwyrm/templates/lists/list.html:138
|
||||||
msgid "List position"
|
msgid "List position"
|
||||||
msgstr "Posición"
|
msgstr "Posición"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:102
|
#: bookwyrm/templates/lists/list.html:144
|
||||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
||||||
msgid "Set"
|
msgid "Set"
|
||||||
msgstr "Establecido"
|
msgstr "Establecido"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:117
|
#: bookwyrm/templates/lists/list.html:159
|
||||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Quitar"
|
msgstr "Quitar"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:131
|
#: bookwyrm/templates/lists/list.html:173
|
||||||
#: bookwyrm/templates/lists/list.html:148
|
#: bookwyrm/templates/lists/list.html:190
|
||||||
msgid "Sort List"
|
msgid "Sort List"
|
||||||
msgstr "Ordena la lista"
|
msgstr "Ordena la lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:141
|
#: bookwyrm/templates/lists/list.html:183
|
||||||
msgid "Direction"
|
msgid "Direction"
|
||||||
msgstr "Dirección"
|
msgstr "Dirección"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:155
|
#: bookwyrm/templates/lists/list.html:197
|
||||||
msgid "Add Books"
|
msgid "Add Books"
|
||||||
msgstr "Agregar libros"
|
msgstr "Agregar libros"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:157
|
#: bookwyrm/templates/lists/list.html:199
|
||||||
msgid "Suggest Books"
|
msgid "Suggest Books"
|
||||||
msgstr "Sugerir libros"
|
msgstr "Sugerir libros"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:168
|
#: bookwyrm/templates/lists/list.html:210
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "buscar"
|
msgstr "buscar"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:174
|
#: bookwyrm/templates/lists/list.html:216
|
||||||
msgid "Clear search"
|
msgid "Clear search"
|
||||||
msgstr "Borrar búsqueda"
|
msgstr "Borrar búsqueda"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:179
|
#: bookwyrm/templates/lists/list.html:221
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "No books found matching the query \"%(query)s\""
|
msgid "No books found matching the query \"%(query)s\""
|
||||||
msgstr "No se encontró ningún libro correspondiente a la búsqueda: \"%(query)s\""
|
msgstr "No se encontró ningún libro correspondiente a la búsqueda: \"%(query)s\""
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:211
|
#: bookwyrm/templates/lists/list.html:260
|
||||||
msgid "Suggest"
|
|
||||||
msgstr "Sugerir"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:222
|
|
||||||
msgid "Embed this list on a website"
|
msgid "Embed this list on a website"
|
||||||
msgstr "Incrustar esta lista en un sitio web"
|
msgstr "Incrustar esta lista en un sitio web"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:230
|
#: bookwyrm/templates/lists/list.html:268
|
||||||
msgid "Copy embed code"
|
msgid "Copy embed code"
|
||||||
msgstr "Copiar código para incrustar"
|
msgstr "Copiar código para incrustar"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:232
|
#: bookwyrm/templates/lists/list.html:270
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
||||||
msgstr "%(list_name)s, una lista de %(owner)s en %(site_name)s"
|
msgstr "%(list_name)s, una lista de %(owner)s en %(site_name)s"
|
||||||
|
@ -3222,10 +3258,6 @@ msgstr "Software:"
|
||||||
msgid "Version:"
|
msgid "Version:"
|
||||||
msgstr "Versión:"
|
msgstr "Versión:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
|
||||||
msgid "Notes:"
|
|
||||||
msgstr "Notas:"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance.html:19
|
#: bookwyrm/templates/settings/federation/instance.html:19
|
||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Detalles"
|
msgstr "Detalles"
|
||||||
|
@ -4631,3 +4663,10 @@ msgstr "Un enlace para reestablecer tu contraseña se envió a {email}"
|
||||||
msgid "Status updates from {obj.display_name}"
|
msgid "Status updates from {obj.display_name}"
|
||||||
msgstr "Actualizaciones de status de {obj.display_name}"
|
msgstr "Actualizaciones de status de {obj.display_name}"
|
||||||
|
|
||||||
|
#: bookwyrm/views/updates.py:45
|
||||||
|
#, python-format
|
||||||
|
msgid "Load %(count)d unread status"
|
||||||
|
msgid_plural "Load %(count)d unread statuses"
|
||||||
|
msgstr[0] "Cargar %(count)d estado no leído"
|
||||||
|
msgstr[1] "Cargar %(count)d estados no leídos"
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-01-24 17:25+0000\n"
|
"POT-Creation-Date: 2022-01-28 02:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-24 18:55\n"
|
"PO-Revision-Date: 2022-01-28 11:29\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: French\n"
|
"Language-Team: French\n"
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
|
@ -46,33 +46,33 @@ msgstr "{i} utilisations"
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Sans limite"
|
msgstr "Sans limite"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:483
|
#: bookwyrm/forms.py:489
|
||||||
msgid "List Order"
|
msgid "List Order"
|
||||||
msgstr "Ordre de la liste"
|
msgstr "Ordre de la liste"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:484
|
#: bookwyrm/forms.py:490
|
||||||
msgid "Book Title"
|
msgid "Book Title"
|
||||||
msgstr "Titre du livre"
|
msgstr "Titre du livre"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
|
#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
|
||||||
#: bookwyrm/templates/shelf/shelf.html:187
|
#: bookwyrm/templates/shelf/shelf.html:187
|
||||||
#: bookwyrm/templates/snippets/create_status/review.html:32
|
#: bookwyrm/templates/snippets/create_status/review.html:32
|
||||||
msgid "Rating"
|
msgid "Rating"
|
||||||
msgstr "Note"
|
msgstr "Note"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
|
#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
|
||||||
msgid "Sort By"
|
msgid "Sort By"
|
||||||
msgstr "Trier par"
|
msgstr "Trier par"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:491
|
#: bookwyrm/forms.py:497
|
||||||
msgid "Ascending"
|
msgid "Ascending"
|
||||||
msgstr "Ordre croissant"
|
msgstr "Ordre croissant"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:492
|
#: bookwyrm/forms.py:498
|
||||||
msgid "Descending"
|
msgid "Descending"
|
||||||
msgstr "Ordre décroissant"
|
msgstr "Ordre décroissant"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:505
|
#: bookwyrm/forms.py:511
|
||||||
msgid "Reading finish date cannot be before start date."
|
msgid "Reading finish date cannot be before start date."
|
||||||
msgstr "La date de fin de lecture ne peut pas être antérieure à la date de début."
|
msgstr "La date de fin de lecture ne peut pas être antérieure à la date de début."
|
||||||
|
|
||||||
|
@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Portugais européen)"
|
msgstr "Português Europeu (Portugais européen)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:258
|
#: bookwyrm/settings.py:258
|
||||||
|
msgid "Swedish (Svenska)"
|
||||||
|
msgstr "Suédois (Svenska)"
|
||||||
|
|
||||||
|
#: bookwyrm/settings.py:259
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简化字"
|
msgstr "简化字"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:259
|
#: bookwyrm/settings.py:260
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "Infos supplémentaires :"
|
msgstr "Infos supplémentaires :"
|
||||||
|
|
||||||
|
@ -352,7 +356,7 @@ msgstr "Rencontrez vos admins"
|
||||||
#: bookwyrm/templates/about/about.html:99
|
#: bookwyrm/templates/about/about.html:99
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the <a href=\"coc_path\">code of conduct</a>, and respond when users report spam and bad behavior."
|
msgid "%(site_name)s's moderators and administrators keep the site up and running, enforce the <a href=\"coc_path\">code of conduct</a>, and respond when users report spam and bad behavior."
|
||||||
msgstr ""
|
msgstr "L’administration et la modération de %(site_name)s maintiennent le site opérationnel, font respecter le <a href=\"coc_path\">code de conduite</a>, et répondent lorsque les utilisateurs signalent le spam et les mauvais comportements."
|
||||||
|
|
||||||
#: bookwyrm/templates/about/about.html:113
|
#: bookwyrm/templates/about/about.html:113
|
||||||
msgid "Moderator"
|
msgid "Moderator"
|
||||||
|
@ -424,7 +428,7 @@ msgid "Copy address"
|
||||||
msgstr "Copier l’adresse"
|
msgstr "Copier l’adresse"
|
||||||
|
|
||||||
#: bookwyrm/templates/annual_summary/layout.html:68
|
#: bookwyrm/templates/annual_summary/layout.html:68
|
||||||
#: bookwyrm/templates/lists/list.html:231
|
#: bookwyrm/templates/lists/list.html:269
|
||||||
msgid "Copied!"
|
msgid "Copied!"
|
||||||
msgstr "Copié !"
|
msgstr "Copié !"
|
||||||
|
|
||||||
|
@ -689,6 +693,7 @@ msgstr "ISNI :"
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
||||||
#: bookwyrm/templates/groups/form.html:30
|
#: bookwyrm/templates/groups/form.html:30
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:15
|
#: bookwyrm/templates/lists/bookmark_button.html:15
|
||||||
|
#: bookwyrm/templates/lists/edit_item_form.html:15
|
||||||
#: bookwyrm/templates/lists/form.html:130
|
#: bookwyrm/templates/lists/form.html:130
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:124
|
#: bookwyrm/templates/preferences/edit_user.html:124
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
||||||
|
@ -712,6 +717,7 @@ msgstr "Enregistrer"
|
||||||
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
||||||
#: bookwyrm/templates/book/sync_modal.html:23
|
#: bookwyrm/templates/book/sync_modal.html:23
|
||||||
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:42
|
||||||
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
||||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
||||||
|
@ -816,7 +822,7 @@ msgstr "Lieux"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:348
|
#: bookwyrm/templates/book/book.html:348
|
||||||
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
||||||
#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
|
#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12
|
||||||
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
||||||
#: bookwyrm/templates/search/layout.html:25
|
#: bookwyrm/templates/search/layout.html:25
|
||||||
#: bookwyrm/templates/search/layout.html:50
|
#: bookwyrm/templates/search/layout.html:50
|
||||||
|
@ -830,7 +836,8 @@ msgstr "Ajouter à la liste"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:369
|
#: bookwyrm/templates/book/book.html:369
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:31
|
#: bookwyrm/templates/book/cover_add_modal.html:31
|
||||||
#: bookwyrm/templates/lists/list.html:209
|
#: bookwyrm/templates/lists/add_item_modal.html:37
|
||||||
|
#: bookwyrm/templates/lists/list.html:247
|
||||||
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
||||||
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
|
@ -1551,16 +1558,11 @@ msgstr "Tous les messages"
|
||||||
msgid "You have no messages right now."
|
msgid "You have no messages right now."
|
||||||
msgstr "Vous n’avez aucun message pour l’instant."
|
msgstr "Vous n’avez aucun message pour l’instant."
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:28
|
#: bookwyrm/templates/feed/feed.html:54
|
||||||
#, python-format
|
|
||||||
msgid "load <span data-poll=\"stream/%(tab_key)s\">0</span> unread status(es)"
|
|
||||||
msgstr "charger <span data-poll=\"stream/%(tab_key)s\">0</span> statut(s) non lus"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:51
|
|
||||||
msgid "There aren't any activities right now! Try following a user to get started"
|
msgid "There aren't any activities right now! Try following a user to get started"
|
||||||
msgstr "Aucune activité pour l’instant ! Abonnez‑vous à quelqu’un pour commencer"
|
msgstr "Aucune activité pour l’instant ! Abonnez‑vous à quelqu’un pour commencer"
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:52
|
#: bookwyrm/templates/feed/feed.html:55
|
||||||
msgid "Alternatively, you can try enabling more status types"
|
msgid "Alternatively, you can try enabling more status types"
|
||||||
msgstr "Sinon, vous pouvez essayer d’activer plus de types de statuts"
|
msgstr "Sinon, vous pouvez essayer d’activer plus de types de statuts"
|
||||||
|
|
||||||
|
@ -1649,7 +1651,7 @@ msgid "What are you reading?"
|
||||||
msgstr "Que lisez‑vous ?"
|
msgstr "Que lisez‑vous ?"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:9
|
#: bookwyrm/templates/get_started/books.html:9
|
||||||
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
|
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
|
||||||
msgid "Search for a book"
|
msgid "Search for a book"
|
||||||
msgstr "Chercher un livre"
|
msgstr "Chercher un livre"
|
||||||
|
|
||||||
|
@ -1669,7 +1671,7 @@ msgstr "Vous pourrez ajouter des livres lorsque vous commencerez à utiliser %(s
|
||||||
#: bookwyrm/templates/get_started/users.html:19
|
#: bookwyrm/templates/get_started/users.html:19
|
||||||
#: bookwyrm/templates/groups/members.html:15
|
#: bookwyrm/templates/groups/members.html:15
|
||||||
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
||||||
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
|
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
|
||||||
#: bookwyrm/templates/search/layout.html:4
|
#: bookwyrm/templates/search/layout.html:4
|
||||||
#: bookwyrm/templates/search/layout.html:9
|
#: bookwyrm/templates/search/layout.html:9
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
|
@ -1685,7 +1687,7 @@ msgid "Popular on %(site_name)s"
|
||||||
msgstr "Populaire sur %(site_name)s"
|
msgstr "Populaire sur %(site_name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:58
|
#: bookwyrm/templates/get_started/books.html:58
|
||||||
#: bookwyrm/templates/lists/list.html:180
|
#: bookwyrm/templates/lists/list.html:222
|
||||||
msgid "No books found"
|
msgid "No books found"
|
||||||
msgstr "Aucun livre trouvé"
|
msgstr "Aucun livre trouvé"
|
||||||
|
|
||||||
|
@ -2034,7 +2036,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
|
||||||
msgstr "Approuver une suggestion ajoutera définitivement le livre suggéré à vos étagères et associera vos dates, critiques et notes de lecture à ce livre."
|
msgstr "Approuver une suggestion ajoutera définitivement le livre suggéré à vos étagères et associera vos dates, critiques et notes de lecture à ce livre."
|
||||||
|
|
||||||
#: bookwyrm/templates/import/manual_review.html:58
|
#: bookwyrm/templates/import/manual_review.html:58
|
||||||
#: bookwyrm/templates/lists/curate.html:59
|
#: bookwyrm/templates/lists/curate.html:71
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr "Approuver"
|
msgstr "Approuver"
|
||||||
|
@ -2245,6 +2247,21 @@ msgstr "Soutenez %(site_name)s avec <a href=\"%(support_link)s\" target=\"_blank
|
||||||
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
msgstr "BookWyrm est un logiciel libre. Vous pouvez contribuer ou faire des rapports de bogues via <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgstr "BookWyrm est un logiciel libre. Vous pouvez contribuer ou faire des rapports de bogues via <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:8
|
||||||
|
#, python-format
|
||||||
|
msgid "Add \"<em>%(title)s</em>\" to this list"
|
||||||
|
msgstr "Ajouter « <em>%(title)s</em> » à cette liste"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:12
|
||||||
|
#, python-format
|
||||||
|
msgid "Suggest \"<em>%(title)s</em>\" for this list"
|
||||||
|
msgstr "Suggérer « <em>%(title)s</em> » pour cette liste"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:39
|
||||||
|
#: bookwyrm/templates/lists/list.html:249
|
||||||
|
msgid "Suggest"
|
||||||
|
msgstr "Suggérer"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:30
|
#: bookwyrm/templates/lists/bookmark_button.html:30
|
||||||
msgid "Un-save"
|
msgid "Un-save"
|
||||||
msgstr "Annuler la sauvegarde"
|
msgstr "Annuler la sauvegarde"
|
||||||
|
@ -2264,23 +2281,29 @@ msgstr "Créée et modérée par <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgstr "Créée par <a href=\"%(path)s\">%(username)s</a>"
|
msgstr "Créée par <a href=\"%(path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:11
|
#: bookwyrm/templates/lists/curate.html:12
|
||||||
msgid "Curate"
|
msgid "Curate"
|
||||||
msgstr "Organiser"
|
msgstr "Organiser"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:20
|
#: bookwyrm/templates/lists/curate.html:21
|
||||||
msgid "Pending Books"
|
msgid "Pending Books"
|
||||||
msgstr "Livres en attente de modération"
|
msgstr "Livres en attente de modération"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:23
|
#: bookwyrm/templates/lists/curate.html:24
|
||||||
msgid "You're all set!"
|
msgid "You're all set!"
|
||||||
msgstr "Aucun livre en attente de validation !"
|
msgstr "Aucun livre en attente de validation !"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:43
|
#: bookwyrm/templates/lists/curate.html:45
|
||||||
|
#: bookwyrm/templates/lists/list.html:83
|
||||||
|
#, python-format
|
||||||
|
msgid "<a href=\"%(user_path)s\">%(username)s</a> says:"
|
||||||
|
msgstr "<a href=\"%(user_path)s\">%(username)s</a> a dit :"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/curate.html:55
|
||||||
msgid "Suggested by"
|
msgid "Suggested by"
|
||||||
msgstr "Suggéré par"
|
msgstr "Suggéré par"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:65
|
#: bookwyrm/templates/lists/curate.html:77
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr "Rejeter"
|
msgstr "Rejeter"
|
||||||
|
|
||||||
|
@ -2304,7 +2327,7 @@ msgid "on <a href=\"/\">%(site_name)s</a>"
|
||||||
msgstr "sur <a href=\"/\">%(site_name)s</a>"
|
msgstr "sur <a href=\"/\">%(site_name)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/embed-list.html:27
|
#: bookwyrm/templates/lists/embed-list.html:27
|
||||||
#: bookwyrm/templates/lists/list.html:43
|
#: bookwyrm/templates/lists/list.html:44
|
||||||
msgid "This list is currently empty"
|
msgid "This list is currently empty"
|
||||||
msgstr "Cette liste est actuellement vide"
|
msgstr "Cette liste est actuellement vide"
|
||||||
|
|
||||||
|
@ -2365,76 +2388,89 @@ msgstr "Créer un Groupe"
|
||||||
msgid "Delete list"
|
msgid "Delete list"
|
||||||
msgstr "Supprimer la liste"
|
msgstr "Supprimer la liste"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:35
|
#: bookwyrm/templates/lists/item_notes_field.html:7
|
||||||
|
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
||||||
|
msgid "Notes:"
|
||||||
|
msgstr "Remarques :"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/item_notes_field.html:19
|
||||||
|
msgid "An optional note that will be displayed with the book."
|
||||||
|
msgstr "Une note facultative qui sera affichée avec le livre."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:36
|
||||||
msgid "You successfully suggested a book for this list!"
|
msgid "You successfully suggested a book for this list!"
|
||||||
msgstr "Vous avez suggéré un livre à cette liste !"
|
msgstr "Vous avez suggéré un livre à cette liste !"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:37
|
#: bookwyrm/templates/lists/list.html:38
|
||||||
msgid "You successfully added a book to this list!"
|
msgid "You successfully added a book to this list!"
|
||||||
msgstr "Vous avez ajouté un livre à cette liste !"
|
msgstr "Vous avez ajouté un livre à cette liste !"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:81
|
#: bookwyrm/templates/lists/list.html:96
|
||||||
|
msgid "Edit notes"
|
||||||
|
msgstr "Modifier les notes"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:111
|
||||||
|
msgid "Add notes"
|
||||||
|
msgstr "Ajouter des notes"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:123
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
msgstr "Ajouté par <a href=\"%(user_path)s\">%(username)s</a>"
|
msgstr "Ajouté par <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:96
|
#: bookwyrm/templates/lists/list.html:138
|
||||||
msgid "List position"
|
msgid "List position"
|
||||||
msgstr "Position"
|
msgstr "Position"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:102
|
#: bookwyrm/templates/lists/list.html:144
|
||||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
||||||
msgid "Set"
|
msgid "Set"
|
||||||
msgstr "Appliquer"
|
msgstr "Appliquer"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:117
|
#: bookwyrm/templates/lists/list.html:159
|
||||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Retirer"
|
msgstr "Retirer"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:131
|
#: bookwyrm/templates/lists/list.html:173
|
||||||
#: bookwyrm/templates/lists/list.html:148
|
#: bookwyrm/templates/lists/list.html:190
|
||||||
msgid "Sort List"
|
msgid "Sort List"
|
||||||
msgstr "Trier la liste"
|
msgstr "Trier la liste"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:141
|
#: bookwyrm/templates/lists/list.html:183
|
||||||
msgid "Direction"
|
msgid "Direction"
|
||||||
msgstr "Direction"
|
msgstr "Direction"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:155
|
#: bookwyrm/templates/lists/list.html:197
|
||||||
msgid "Add Books"
|
msgid "Add Books"
|
||||||
msgstr "Ajouter des livres"
|
msgstr "Ajouter des livres"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:157
|
#: bookwyrm/templates/lists/list.html:199
|
||||||
msgid "Suggest Books"
|
msgid "Suggest Books"
|
||||||
msgstr "Suggérer des livres"
|
msgstr "Suggérer des livres"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:168
|
#: bookwyrm/templates/lists/list.html:210
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "chercher"
|
msgstr "chercher"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:174
|
#: bookwyrm/templates/lists/list.html:216
|
||||||
msgid "Clear search"
|
msgid "Clear search"
|
||||||
msgstr "Vider la requête"
|
msgstr "Vider la requête"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:179
|
#: bookwyrm/templates/lists/list.html:221
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "No books found matching the query \"%(query)s\""
|
msgid "No books found matching the query \"%(query)s\""
|
||||||
msgstr "Aucun livre trouvé pour la requête « %(query)s »"
|
msgstr "Aucun livre trouvé pour la requête « %(query)s »"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:211
|
#: bookwyrm/templates/lists/list.html:260
|
||||||
msgid "Suggest"
|
|
||||||
msgstr "Suggérer"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:222
|
|
||||||
msgid "Embed this list on a website"
|
msgid "Embed this list on a website"
|
||||||
msgstr "Intégrez cette liste sur un autre site internet"
|
msgstr "Intégrez cette liste sur un autre site internet"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:230
|
#: bookwyrm/templates/lists/list.html:268
|
||||||
msgid "Copy embed code"
|
msgid "Copy embed code"
|
||||||
msgstr "Copier le code d'intégration"
|
msgstr "Copier le code d'intégration"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:232
|
#: bookwyrm/templates/lists/list.html:270
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
||||||
msgstr "%(list_name)s, une liste de %(owner)s sur %(site_name)s"
|
msgstr "%(list_name)s, une liste de %(owner)s sur %(site_name)s"
|
||||||
|
@ -3222,10 +3258,6 @@ msgstr "Logiciel :"
|
||||||
msgid "Version:"
|
msgid "Version:"
|
||||||
msgstr "Description :"
|
msgstr "Description :"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
|
||||||
msgid "Notes:"
|
|
||||||
msgstr "Remarques :"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance.html:19
|
#: bookwyrm/templates/settings/federation/instance.html:19
|
||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Détails"
|
msgstr "Détails"
|
||||||
|
@ -4137,13 +4169,13 @@ msgstr[1] "a noté <em><a href=\"%(path)s\">%(title)s</a></em> : %(display_ratin
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s"
|
msgid "Review of \"%(book_title)s\" (%(display_rating)s star): %(review_title)s"
|
||||||
msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s"
|
msgid_plural "Review of \"%(book_title)s\" (%(display_rating)s stars): %(review_title)s"
|
||||||
msgstr[0] ""
|
msgstr[0] "Critique de « %(book_title)s » (%(display_rating)s étoile) : %(review_title)s"
|
||||||
msgstr[1] ""
|
msgstr[1] "Critique de « %(book_title)s » (%(display_rating)s étoiles) : %(review_title)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12
|
#: bookwyrm/templates/snippets/generated_status/review_pure_name.html:12
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Review of \"%(book_title)s\": %(review_title)s"
|
msgid "Review of \"%(book_title)s\": %(review_title)s"
|
||||||
msgstr ""
|
msgstr "Critique de « %(book_title)s » : %(review_title)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/goal_form.html:4
|
#: bookwyrm/templates/snippets/goal_form.html:4
|
||||||
#, python-format
|
#, python-format
|
||||||
|
@ -4631,3 +4663,10 @@ msgstr "Un lien de réinitialisation a été envoyé à {email}."
|
||||||
msgid "Status updates from {obj.display_name}"
|
msgid "Status updates from {obj.display_name}"
|
||||||
msgstr "Mises à jour de statut de {obj.display_name}"
|
msgstr "Mises à jour de statut de {obj.display_name}"
|
||||||
|
|
||||||
|
#: bookwyrm/views/updates.py:45
|
||||||
|
#, python-format
|
||||||
|
msgid "Load %(count)d unread status"
|
||||||
|
msgid_plural "Load %(count)d unread statuses"
|
||||||
|
msgstr[0] "Charger %(count)d statut non lu"
|
||||||
|
msgstr[1] "Charger %(count)d statuts non lus"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-01-24 17:25+0000\n"
|
"POT-Creation-Date: 2022-01-28 02:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-24 18:54\n"
|
"PO-Revision-Date: 2022-01-28 05:04\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Galician\n"
|
"Language-Team: Galician\n"
|
||||||
"Language: gl\n"
|
"Language: gl\n"
|
||||||
|
@ -46,33 +46,33 @@ msgstr "{i} usos"
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Sen límite"
|
msgstr "Sen límite"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:483
|
#: bookwyrm/forms.py:489
|
||||||
msgid "List Order"
|
msgid "List Order"
|
||||||
msgstr "Orde da listaxe"
|
msgstr "Orde da listaxe"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:484
|
#: bookwyrm/forms.py:490
|
||||||
msgid "Book Title"
|
msgid "Book Title"
|
||||||
msgstr "Título do libro"
|
msgstr "Título do libro"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
|
#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
|
||||||
#: bookwyrm/templates/shelf/shelf.html:187
|
#: bookwyrm/templates/shelf/shelf.html:187
|
||||||
#: bookwyrm/templates/snippets/create_status/review.html:32
|
#: bookwyrm/templates/snippets/create_status/review.html:32
|
||||||
msgid "Rating"
|
msgid "Rating"
|
||||||
msgstr "Puntuación"
|
msgstr "Puntuación"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
|
#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
|
||||||
msgid "Sort By"
|
msgid "Sort By"
|
||||||
msgstr "Ordenar por"
|
msgstr "Ordenar por"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:491
|
#: bookwyrm/forms.py:497
|
||||||
msgid "Ascending"
|
msgid "Ascending"
|
||||||
msgstr "Ascendente"
|
msgstr "Ascendente"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:492
|
#: bookwyrm/forms.py:498
|
||||||
msgid "Descending"
|
msgid "Descending"
|
||||||
msgstr "Descendente"
|
msgstr "Descendente"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:505
|
#: bookwyrm/forms.py:511
|
||||||
msgid "Reading finish date cannot be before start date."
|
msgid "Reading finish date cannot be before start date."
|
||||||
msgstr "A data final da lectura non pode ser anterior á de inicio."
|
msgstr "A data final da lectura non pode ser anterior á de inicio."
|
||||||
|
|
||||||
|
@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Portugués europeo)"
|
msgstr "Português Europeu (Portugués europeo)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:258
|
#: bookwyrm/settings.py:258
|
||||||
|
msgid "Swedish (Svenska)"
|
||||||
|
msgstr "Sueco (Svenska)"
|
||||||
|
|
||||||
|
#: bookwyrm/settings.py:259
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Chinés simplificado)"
|
msgstr "简体中文 (Chinés simplificado)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:259
|
#: bookwyrm/settings.py:260
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Chinés tradicional)"
|
msgstr "繁體中文 (Chinés tradicional)"
|
||||||
|
|
||||||
|
@ -424,7 +428,7 @@ msgid "Copy address"
|
||||||
msgstr "Copiar enderezo"
|
msgstr "Copiar enderezo"
|
||||||
|
|
||||||
#: bookwyrm/templates/annual_summary/layout.html:68
|
#: bookwyrm/templates/annual_summary/layout.html:68
|
||||||
#: bookwyrm/templates/lists/list.html:231
|
#: bookwyrm/templates/lists/list.html:269
|
||||||
msgid "Copied!"
|
msgid "Copied!"
|
||||||
msgstr "Copiado!"
|
msgstr "Copiado!"
|
||||||
|
|
||||||
|
@ -689,6 +693,7 @@ msgstr "ISNI:"
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
||||||
#: bookwyrm/templates/groups/form.html:30
|
#: bookwyrm/templates/groups/form.html:30
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:15
|
#: bookwyrm/templates/lists/bookmark_button.html:15
|
||||||
|
#: bookwyrm/templates/lists/edit_item_form.html:15
|
||||||
#: bookwyrm/templates/lists/form.html:130
|
#: bookwyrm/templates/lists/form.html:130
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:124
|
#: bookwyrm/templates/preferences/edit_user.html:124
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
||||||
|
@ -712,6 +717,7 @@ msgstr "Gardar"
|
||||||
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
||||||
#: bookwyrm/templates/book/sync_modal.html:23
|
#: bookwyrm/templates/book/sync_modal.html:23
|
||||||
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:42
|
||||||
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
||||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
||||||
|
@ -816,7 +822,7 @@ msgstr "Lugares"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:348
|
#: bookwyrm/templates/book/book.html:348
|
||||||
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
||||||
#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
|
#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12
|
||||||
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
||||||
#: bookwyrm/templates/search/layout.html:25
|
#: bookwyrm/templates/search/layout.html:25
|
||||||
#: bookwyrm/templates/search/layout.html:50
|
#: bookwyrm/templates/search/layout.html:50
|
||||||
|
@ -830,7 +836,8 @@ msgstr "Engadir a listaxe"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:369
|
#: bookwyrm/templates/book/book.html:369
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:31
|
#: bookwyrm/templates/book/cover_add_modal.html:31
|
||||||
#: bookwyrm/templates/lists/list.html:209
|
#: bookwyrm/templates/lists/add_item_modal.html:37
|
||||||
|
#: bookwyrm/templates/lists/list.html:247
|
||||||
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
||||||
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
|
@ -1551,16 +1558,11 @@ msgstr "Tódalas mensaxes"
|
||||||
msgid "You have no messages right now."
|
msgid "You have no messages right now."
|
||||||
msgstr "Non tes mensaxes por agora."
|
msgstr "Non tes mensaxes por agora."
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:28
|
#: bookwyrm/templates/feed/feed.html:54
|
||||||
#, python-format
|
|
||||||
msgid "load <span data-poll=\"stream/%(tab_key)s\">0</span> unread status(es)"
|
|
||||||
msgstr "cargar <span data-poll=\"stream/%(tab_key)s\">0</span> estado(s) non lidos"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:51
|
|
||||||
msgid "There aren't any activities right now! Try following a user to get started"
|
msgid "There aren't any activities right now! Try following a user to get started"
|
||||||
msgstr "Non hai actividade por agora! Proba a seguir algunha persoa para comezar"
|
msgstr "Non hai actividade por agora! Proba a seguir algunha persoa para comezar"
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:52
|
#: bookwyrm/templates/feed/feed.html:55
|
||||||
msgid "Alternatively, you can try enabling more status types"
|
msgid "Alternatively, you can try enabling more status types"
|
||||||
msgstr "De xeito alternativo, podes activar máis tipos de estados"
|
msgstr "De xeito alternativo, podes activar máis tipos de estados"
|
||||||
|
|
||||||
|
@ -1649,7 +1651,7 @@ msgid "What are you reading?"
|
||||||
msgstr "Que estás a ler?"
|
msgstr "Que estás a ler?"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:9
|
#: bookwyrm/templates/get_started/books.html:9
|
||||||
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
|
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
|
||||||
msgid "Search for a book"
|
msgid "Search for a book"
|
||||||
msgstr "Buscar un libro"
|
msgstr "Buscar un libro"
|
||||||
|
|
||||||
|
@ -1669,7 +1671,7 @@ msgstr "Podes engadir libros cando comeces a usar %(site_name)s."
|
||||||
#: bookwyrm/templates/get_started/users.html:19
|
#: bookwyrm/templates/get_started/users.html:19
|
||||||
#: bookwyrm/templates/groups/members.html:15
|
#: bookwyrm/templates/groups/members.html:15
|
||||||
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
||||||
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
|
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
|
||||||
#: bookwyrm/templates/search/layout.html:4
|
#: bookwyrm/templates/search/layout.html:4
|
||||||
#: bookwyrm/templates/search/layout.html:9
|
#: bookwyrm/templates/search/layout.html:9
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
|
@ -1685,7 +1687,7 @@ msgid "Popular on %(site_name)s"
|
||||||
msgstr "Populares en %(site_name)s"
|
msgstr "Populares en %(site_name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:58
|
#: bookwyrm/templates/get_started/books.html:58
|
||||||
#: bookwyrm/templates/lists/list.html:180
|
#: bookwyrm/templates/lists/list.html:222
|
||||||
msgid "No books found"
|
msgid "No books found"
|
||||||
msgstr "Non se atopan libros"
|
msgstr "Non se atopan libros"
|
||||||
|
|
||||||
|
@ -2034,7 +2036,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
|
||||||
msgstr "Ao aceptar unha suxestión engadirá permanentemente o libro suxerido aos teus estantes e asociará as túas datas de lectura, revisións e valoracións a ese libro."
|
msgstr "Ao aceptar unha suxestión engadirá permanentemente o libro suxerido aos teus estantes e asociará as túas datas de lectura, revisións e valoracións a ese libro."
|
||||||
|
|
||||||
#: bookwyrm/templates/import/manual_review.html:58
|
#: bookwyrm/templates/import/manual_review.html:58
|
||||||
#: bookwyrm/templates/lists/curate.html:59
|
#: bookwyrm/templates/lists/curate.html:71
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr "Admitir"
|
msgstr "Admitir"
|
||||||
|
@ -2245,6 +2247,21 @@ msgstr "Axuda a %(site_name)s en <a href=\"%(support_link)s\" target=\"_blank\">
|
||||||
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
msgstr "O código fonte de BookWyrm é público. Podes colaborar ou informar de problemas en <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgstr "O código fonte de BookWyrm é público. Podes colaborar ou informar de problemas en <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:8
|
||||||
|
#, python-format
|
||||||
|
msgid "Add \"<em>%(title)s</em>\" to this list"
|
||||||
|
msgstr "Engadir \"<em>%(title)s</em>\" a esta lista"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:12
|
||||||
|
#, python-format
|
||||||
|
msgid "Suggest \"<em>%(title)s</em>\" for this list"
|
||||||
|
msgstr "Suxerir \"<em>%(title)s</em>\" para esta lista"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:39
|
||||||
|
#: bookwyrm/templates/lists/list.html:249
|
||||||
|
msgid "Suggest"
|
||||||
|
msgstr "Suxire"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:30
|
#: bookwyrm/templates/lists/bookmark_button.html:30
|
||||||
msgid "Un-save"
|
msgid "Un-save"
|
||||||
msgstr "Reverter"
|
msgstr "Reverter"
|
||||||
|
@ -2264,23 +2281,29 @@ msgstr "Creada e mantida por <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgstr "Creada por <a href=\"%(path)s\">%(username)s</a>"
|
msgstr "Creada por <a href=\"%(path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:11
|
#: bookwyrm/templates/lists/curate.html:12
|
||||||
msgid "Curate"
|
msgid "Curate"
|
||||||
msgstr "Xestionar"
|
msgstr "Xestionar"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:20
|
#: bookwyrm/templates/lists/curate.html:21
|
||||||
msgid "Pending Books"
|
msgid "Pending Books"
|
||||||
msgstr "Libros pendentes"
|
msgstr "Libros pendentes"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:23
|
#: bookwyrm/templates/lists/curate.html:24
|
||||||
msgid "You're all set!"
|
msgid "You're all set!"
|
||||||
msgstr "Remataches!"
|
msgstr "Remataches!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:43
|
#: bookwyrm/templates/lists/curate.html:45
|
||||||
|
#: bookwyrm/templates/lists/list.html:83
|
||||||
|
#, python-format
|
||||||
|
msgid "<a href=\"%(user_path)s\">%(username)s</a> says:"
|
||||||
|
msgstr "<a href=\"%(user_path)s\">%(username)s</a> di:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/curate.html:55
|
||||||
msgid "Suggested by"
|
msgid "Suggested by"
|
||||||
msgstr "Suxerido por"
|
msgstr "Suxerido por"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:65
|
#: bookwyrm/templates/lists/curate.html:77
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr "Descartar"
|
msgstr "Descartar"
|
||||||
|
|
||||||
|
@ -2304,7 +2327,7 @@ msgid "on <a href=\"/\">%(site_name)s</a>"
|
||||||
msgstr "en <a href=\"/\">%(site_name)s</a>"
|
msgstr "en <a href=\"/\">%(site_name)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/embed-list.html:27
|
#: bookwyrm/templates/lists/embed-list.html:27
|
||||||
#: bookwyrm/templates/lists/list.html:43
|
#: bookwyrm/templates/lists/list.html:44
|
||||||
msgid "This list is currently empty"
|
msgid "This list is currently empty"
|
||||||
msgstr "A lista está baleira neste intre"
|
msgstr "A lista está baleira neste intre"
|
||||||
|
|
||||||
|
@ -2365,76 +2388,89 @@ msgstr "Crea un Grupo"
|
||||||
msgid "Delete list"
|
msgid "Delete list"
|
||||||
msgstr "Eliminar lista"
|
msgstr "Eliminar lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:35
|
#: bookwyrm/templates/lists/item_notes_field.html:7
|
||||||
|
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
||||||
|
msgid "Notes:"
|
||||||
|
msgstr "Notas:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/item_notes_field.html:19
|
||||||
|
msgid "An optional note that will be displayed with the book."
|
||||||
|
msgstr "Unha nota optativa que aparecerá xunto ao libro."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:36
|
||||||
msgid "You successfully suggested a book for this list!"
|
msgid "You successfully suggested a book for this list!"
|
||||||
msgstr "Suxeriches correctamente un libro para esta lista!"
|
msgstr "Suxeriches correctamente un libro para esta lista!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:37
|
#: bookwyrm/templates/lists/list.html:38
|
||||||
msgid "You successfully added a book to this list!"
|
msgid "You successfully added a book to this list!"
|
||||||
msgstr "Engadiches correctamente un libro a esta lista!"
|
msgstr "Engadiches correctamente un libro a esta lista!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:81
|
#: bookwyrm/templates/lists/list.html:96
|
||||||
|
msgid "Edit notes"
|
||||||
|
msgstr "Editar notas"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:111
|
||||||
|
msgid "Add notes"
|
||||||
|
msgstr "Engadir notas"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:123
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
msgstr "Engadido por <a href=\"%(user_path)s\">%(username)s</a>"
|
msgstr "Engadido por <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:96
|
#: bookwyrm/templates/lists/list.html:138
|
||||||
msgid "List position"
|
msgid "List position"
|
||||||
msgstr "Posición da lista"
|
msgstr "Posición da lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:102
|
#: bookwyrm/templates/lists/list.html:144
|
||||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
||||||
msgid "Set"
|
msgid "Set"
|
||||||
msgstr "Establecer"
|
msgstr "Establecer"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:117
|
#: bookwyrm/templates/lists/list.html:159
|
||||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Eliminar"
|
msgstr "Eliminar"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:131
|
#: bookwyrm/templates/lists/list.html:173
|
||||||
#: bookwyrm/templates/lists/list.html:148
|
#: bookwyrm/templates/lists/list.html:190
|
||||||
msgid "Sort List"
|
msgid "Sort List"
|
||||||
msgstr "Ordenar lista"
|
msgstr "Ordenar lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:141
|
#: bookwyrm/templates/lists/list.html:183
|
||||||
msgid "Direction"
|
msgid "Direction"
|
||||||
msgstr "Dirección"
|
msgstr "Dirección"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:155
|
#: bookwyrm/templates/lists/list.html:197
|
||||||
msgid "Add Books"
|
msgid "Add Books"
|
||||||
msgstr "Engadir Libros"
|
msgstr "Engadir Libros"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:157
|
#: bookwyrm/templates/lists/list.html:199
|
||||||
msgid "Suggest Books"
|
msgid "Suggest Books"
|
||||||
msgstr "Suxerir Libros"
|
msgstr "Suxerir Libros"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:168
|
#: bookwyrm/templates/lists/list.html:210
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "buscar"
|
msgstr "buscar"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:174
|
#: bookwyrm/templates/lists/list.html:216
|
||||||
msgid "Clear search"
|
msgid "Clear search"
|
||||||
msgstr "Limpar busca"
|
msgstr "Limpar busca"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:179
|
#: bookwyrm/templates/lists/list.html:221
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "No books found matching the query \"%(query)s\""
|
msgid "No books found matching the query \"%(query)s\""
|
||||||
msgstr "Non se atopan libros coa consulta \"%(query)s\""
|
msgstr "Non se atopan libros coa consulta \"%(query)s\""
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:211
|
#: bookwyrm/templates/lists/list.html:260
|
||||||
msgid "Suggest"
|
|
||||||
msgstr "Suxire"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:222
|
|
||||||
msgid "Embed this list on a website"
|
msgid "Embed this list on a website"
|
||||||
msgstr "Utiliza esta lista nunha páxina web"
|
msgstr "Utiliza esta lista nunha páxina web"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:230
|
#: bookwyrm/templates/lists/list.html:268
|
||||||
msgid "Copy embed code"
|
msgid "Copy embed code"
|
||||||
msgstr "Copia o código a incluír"
|
msgstr "Copia o código a incluír"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:232
|
#: bookwyrm/templates/lists/list.html:270
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
||||||
msgstr "%(list_name)s, unha lista de %(owner)s en %(site_name)s"
|
msgstr "%(list_name)s, unha lista de %(owner)s en %(site_name)s"
|
||||||
|
@ -3222,10 +3258,6 @@ msgstr "Software:"
|
||||||
msgid "Version:"
|
msgid "Version:"
|
||||||
msgstr "Versión:"
|
msgstr "Versión:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
|
||||||
msgid "Notes:"
|
|
||||||
msgstr "Notas:"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance.html:19
|
#: bookwyrm/templates/settings/federation/instance.html:19
|
||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Detalles"
|
msgstr "Detalles"
|
||||||
|
@ -4631,3 +4663,10 @@ msgstr "Enviamos unha ligazón de restablecemento a {email}"
|
||||||
msgid "Status updates from {obj.display_name}"
|
msgid "Status updates from {obj.display_name}"
|
||||||
msgstr "Actualizacións de estados desde {obj.display_name}"
|
msgstr "Actualizacións de estados desde {obj.display_name}"
|
||||||
|
|
||||||
|
#: bookwyrm/views/updates.py:45
|
||||||
|
#, python-format
|
||||||
|
msgid "Load %(count)d unread status"
|
||||||
|
msgid_plural "Load %(count)d unread statuses"
|
||||||
|
msgstr[0] "Cargar %(count)d estado non lido"
|
||||||
|
msgstr[1] "Cargar %(count)d estados non lidos"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-01-24 17:25+0000\n"
|
"POT-Creation-Date: 2022-01-28 02:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-24 18:54\n"
|
"PO-Revision-Date: 2022-01-28 19:04\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Italian\n"
|
"Language-Team: Italian\n"
|
||||||
"Language: it\n"
|
"Language: it\n"
|
||||||
|
@ -46,33 +46,33 @@ msgstr "{i} usi"
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Illimitato"
|
msgstr "Illimitato"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:483
|
#: bookwyrm/forms.py:489
|
||||||
msgid "List Order"
|
msgid "List Order"
|
||||||
msgstr "Ordina Lista"
|
msgstr "Ordina Lista"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:484
|
#: bookwyrm/forms.py:490
|
||||||
msgid "Book Title"
|
msgid "Book Title"
|
||||||
msgstr "Titolo del libro"
|
msgstr "Titolo del libro"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
|
#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
|
||||||
#: bookwyrm/templates/shelf/shelf.html:187
|
#: bookwyrm/templates/shelf/shelf.html:187
|
||||||
#: bookwyrm/templates/snippets/create_status/review.html:32
|
#: bookwyrm/templates/snippets/create_status/review.html:32
|
||||||
msgid "Rating"
|
msgid "Rating"
|
||||||
msgstr "Valutazione"
|
msgstr "Valutazione"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
|
#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
|
||||||
msgid "Sort By"
|
msgid "Sort By"
|
||||||
msgstr "Ordina per"
|
msgstr "Ordina per"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:491
|
#: bookwyrm/forms.py:497
|
||||||
msgid "Ascending"
|
msgid "Ascending"
|
||||||
msgstr "Crescente"
|
msgstr "Crescente"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:492
|
#: bookwyrm/forms.py:498
|
||||||
msgid "Descending"
|
msgid "Descending"
|
||||||
msgstr "Decrescente"
|
msgstr "Decrescente"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:505
|
#: bookwyrm/forms.py:511
|
||||||
msgid "Reading finish date cannot be before start date."
|
msgid "Reading finish date cannot be before start date."
|
||||||
msgstr "La data di fine lettura non può essere precedente alla data di inizio."
|
msgstr "La data di fine lettura non può essere precedente alla data di inizio."
|
||||||
|
|
||||||
|
@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Portoghese europeo)"
|
msgstr "Português Europeu (Portoghese europeo)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:258
|
#: bookwyrm/settings.py:258
|
||||||
|
msgid "Swedish (Svenska)"
|
||||||
|
msgstr "Swedish (Svedese)"
|
||||||
|
|
||||||
|
#: bookwyrm/settings.py:259
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Cinese Semplificato)"
|
msgstr "简体中文 (Cinese Semplificato)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:259
|
#: bookwyrm/settings.py:260
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Cinese Tradizionale)"
|
msgstr "繁體中文 (Cinese Tradizionale)"
|
||||||
|
|
||||||
|
@ -424,7 +428,7 @@ msgid "Copy address"
|
||||||
msgstr "Copia l'indirizzo"
|
msgstr "Copia l'indirizzo"
|
||||||
|
|
||||||
#: bookwyrm/templates/annual_summary/layout.html:68
|
#: bookwyrm/templates/annual_summary/layout.html:68
|
||||||
#: bookwyrm/templates/lists/list.html:231
|
#: bookwyrm/templates/lists/list.html:269
|
||||||
msgid "Copied!"
|
msgid "Copied!"
|
||||||
msgstr "Copiato!"
|
msgstr "Copiato!"
|
||||||
|
|
||||||
|
@ -689,6 +693,7 @@ msgstr "ISNI:"
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
||||||
#: bookwyrm/templates/groups/form.html:30
|
#: bookwyrm/templates/groups/form.html:30
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:15
|
#: bookwyrm/templates/lists/bookmark_button.html:15
|
||||||
|
#: bookwyrm/templates/lists/edit_item_form.html:15
|
||||||
#: bookwyrm/templates/lists/form.html:130
|
#: bookwyrm/templates/lists/form.html:130
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:124
|
#: bookwyrm/templates/preferences/edit_user.html:124
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
||||||
|
@ -712,6 +717,7 @@ msgstr "Salva"
|
||||||
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
||||||
#: bookwyrm/templates/book/sync_modal.html:23
|
#: bookwyrm/templates/book/sync_modal.html:23
|
||||||
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:42
|
||||||
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
||||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
||||||
|
@ -816,7 +822,7 @@ msgstr "Luoghi"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:348
|
#: bookwyrm/templates/book/book.html:348
|
||||||
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
||||||
#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
|
#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12
|
||||||
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
||||||
#: bookwyrm/templates/search/layout.html:25
|
#: bookwyrm/templates/search/layout.html:25
|
||||||
#: bookwyrm/templates/search/layout.html:50
|
#: bookwyrm/templates/search/layout.html:50
|
||||||
|
@ -830,7 +836,8 @@ msgstr "Aggiungi all'elenco"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:369
|
#: bookwyrm/templates/book/book.html:369
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:31
|
#: bookwyrm/templates/book/cover_add_modal.html:31
|
||||||
#: bookwyrm/templates/lists/list.html:209
|
#: bookwyrm/templates/lists/add_item_modal.html:37
|
||||||
|
#: bookwyrm/templates/lists/list.html:247
|
||||||
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
||||||
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
|
@ -1551,16 +1558,11 @@ msgstr "Tutti i messaggi"
|
||||||
msgid "You have no messages right now."
|
msgid "You have no messages right now."
|
||||||
msgstr "Non hai messaggi in questo momento."
|
msgstr "Non hai messaggi in questo momento."
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:28
|
#: bookwyrm/templates/feed/feed.html:54
|
||||||
#, python-format
|
|
||||||
msgid "load <span data-poll=\"stream/%(tab_key)s\">0</span> unread status(es)"
|
|
||||||
msgstr "carica <span data-poll=\"stream/%(tab_key)s\">0</span> stato non letto/i"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:51
|
|
||||||
msgid "There aren't any activities right now! Try following a user to get started"
|
msgid "There aren't any activities right now! Try following a user to get started"
|
||||||
msgstr "Non ci sono attività in questo momento! Prova a seguire qualcuno per iniziare"
|
msgstr "Non ci sono attività in questo momento! Prova a seguire qualcuno per iniziare"
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:52
|
#: bookwyrm/templates/feed/feed.html:55
|
||||||
msgid "Alternatively, you can try enabling more status types"
|
msgid "Alternatively, you can try enabling more status types"
|
||||||
msgstr "In alternativa, puoi provare ad abilitare più tipi di stato"
|
msgstr "In alternativa, puoi provare ad abilitare più tipi di stato"
|
||||||
|
|
||||||
|
@ -1649,7 +1651,7 @@ msgid "What are you reading?"
|
||||||
msgstr "Cosa stai leggendo?"
|
msgstr "Cosa stai leggendo?"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:9
|
#: bookwyrm/templates/get_started/books.html:9
|
||||||
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
|
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
|
||||||
msgid "Search for a book"
|
msgid "Search for a book"
|
||||||
msgstr "Cerca un libro"
|
msgstr "Cerca un libro"
|
||||||
|
|
||||||
|
@ -1669,7 +1671,7 @@ msgstr "Puoi aggiungere libri quando inizi a usare %(site_name)s."
|
||||||
#: bookwyrm/templates/get_started/users.html:19
|
#: bookwyrm/templates/get_started/users.html:19
|
||||||
#: bookwyrm/templates/groups/members.html:15
|
#: bookwyrm/templates/groups/members.html:15
|
||||||
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
||||||
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
|
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
|
||||||
#: bookwyrm/templates/search/layout.html:4
|
#: bookwyrm/templates/search/layout.html:4
|
||||||
#: bookwyrm/templates/search/layout.html:9
|
#: bookwyrm/templates/search/layout.html:9
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
|
@ -1685,7 +1687,7 @@ msgid "Popular on %(site_name)s"
|
||||||
msgstr "Popolare su %(site_name)s"
|
msgstr "Popolare su %(site_name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:58
|
#: bookwyrm/templates/get_started/books.html:58
|
||||||
#: bookwyrm/templates/lists/list.html:180
|
#: bookwyrm/templates/lists/list.html:222
|
||||||
msgid "No books found"
|
msgid "No books found"
|
||||||
msgstr "Nessun libro trovato"
|
msgstr "Nessun libro trovato"
|
||||||
|
|
||||||
|
@ -2034,7 +2036,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
|
||||||
msgstr "Approvare un suggerimento aggiungerà in modo permanente il libro suggerito agli scaffali e assocerà dati, recensioni e valutazioni a quel libro."
|
msgstr "Approvare un suggerimento aggiungerà in modo permanente il libro suggerito agli scaffali e assocerà dati, recensioni e valutazioni a quel libro."
|
||||||
|
|
||||||
#: bookwyrm/templates/import/manual_review.html:58
|
#: bookwyrm/templates/import/manual_review.html:58
|
||||||
#: bookwyrm/templates/lists/curate.html:59
|
#: bookwyrm/templates/lists/curate.html:71
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr "Approvato"
|
msgstr "Approvato"
|
||||||
|
@ -2245,6 +2247,21 @@ msgstr "Supporta %(site_name)s su <a href=\"%(support_link)s\" target=\"_blank\"
|
||||||
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
msgstr "Il codice sorgente di BookWyrm è disponibile liberamente. Puoi contribuire o segnalare problemi su <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgstr "Il codice sorgente di BookWyrm è disponibile liberamente. Puoi contribuire o segnalare problemi su <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:8
|
||||||
|
#, python-format
|
||||||
|
msgid "Add \"<em>%(title)s</em>\" to this list"
|
||||||
|
msgstr "Aggiungi \"<em>%(title)s</em>\" a questa lista"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:12
|
||||||
|
#, python-format
|
||||||
|
msgid "Suggest \"<em>%(title)s</em>\" for this list"
|
||||||
|
msgstr "Suggerisci \"<em>%(title)s</em>\" per questa lista"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:39
|
||||||
|
#: bookwyrm/templates/lists/list.html:249
|
||||||
|
msgid "Suggest"
|
||||||
|
msgstr "Suggerisci"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:30
|
#: bookwyrm/templates/lists/bookmark_button.html:30
|
||||||
msgid "Un-save"
|
msgid "Un-save"
|
||||||
msgstr "Annulla salvataggio"
|
msgstr "Annulla salvataggio"
|
||||||
|
@ -2264,23 +2281,29 @@ msgstr "Creato e curato da <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgstr "Gestito da <a href=\"%(path)s\">%(username)s</a>"
|
msgstr "Gestito da <a href=\"%(path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:11
|
#: bookwyrm/templates/lists/curate.html:12
|
||||||
msgid "Curate"
|
msgid "Curate"
|
||||||
msgstr "Curato"
|
msgstr "Curato"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:20
|
#: bookwyrm/templates/lists/curate.html:21
|
||||||
msgid "Pending Books"
|
msgid "Pending Books"
|
||||||
msgstr "Libri in sospeso"
|
msgstr "Libri in sospeso"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:23
|
#: bookwyrm/templates/lists/curate.html:24
|
||||||
msgid "You're all set!"
|
msgid "You're all set!"
|
||||||
msgstr "é tutto pronto!"
|
msgstr "é tutto pronto!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:43
|
#: bookwyrm/templates/lists/curate.html:45
|
||||||
|
#: bookwyrm/templates/lists/list.html:83
|
||||||
|
#, python-format
|
||||||
|
msgid "<a href=\"%(user_path)s\">%(username)s</a> says:"
|
||||||
|
msgstr "<a href=\"%(user_path)s\">%(username)s</a> dice:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/curate.html:55
|
||||||
msgid "Suggested by"
|
msgid "Suggested by"
|
||||||
msgstr "Suggerito da"
|
msgstr "Suggerito da"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:65
|
#: bookwyrm/templates/lists/curate.html:77
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr "Scarta"
|
msgstr "Scarta"
|
||||||
|
|
||||||
|
@ -2304,7 +2327,7 @@ msgid "on <a href=\"/\">%(site_name)s</a>"
|
||||||
msgstr "su <a href=\"/\">%(site_name)s</a>"
|
msgstr "su <a href=\"/\">%(site_name)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/embed-list.html:27
|
#: bookwyrm/templates/lists/embed-list.html:27
|
||||||
#: bookwyrm/templates/lists/list.html:43
|
#: bookwyrm/templates/lists/list.html:44
|
||||||
msgid "This list is currently empty"
|
msgid "This list is currently empty"
|
||||||
msgstr "Questa lista è attualmente vuota"
|
msgstr "Questa lista è attualmente vuota"
|
||||||
|
|
||||||
|
@ -2365,76 +2388,89 @@ msgstr "Crea un gruppo"
|
||||||
msgid "Delete list"
|
msgid "Delete list"
|
||||||
msgstr "Elimina lista"
|
msgstr "Elimina lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:35
|
#: bookwyrm/templates/lists/item_notes_field.html:7
|
||||||
|
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
||||||
|
msgid "Notes:"
|
||||||
|
msgstr "Note:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/item_notes_field.html:19
|
||||||
|
msgid "An optional note that will be displayed with the book."
|
||||||
|
msgstr "Una nota opzionale che verrà visualizzata con il libro."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:36
|
||||||
msgid "You successfully suggested a book for this list!"
|
msgid "You successfully suggested a book for this list!"
|
||||||
msgstr "Hai consigliato con successo un libro per questa lista!"
|
msgstr "Hai consigliato con successo un libro per questa lista!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:37
|
#: bookwyrm/templates/lists/list.html:38
|
||||||
msgid "You successfully added a book to this list!"
|
msgid "You successfully added a book to this list!"
|
||||||
msgstr "Hai consigliato con successo un libro per questa lista!"
|
msgstr "Hai consigliato con successo un libro per questa lista!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:81
|
#: bookwyrm/templates/lists/list.html:96
|
||||||
|
msgid "Edit notes"
|
||||||
|
msgstr "Modifica note"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:111
|
||||||
|
msgid "Add notes"
|
||||||
|
msgstr "Aggiungi note"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:123
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
msgstr "Aggiunto da <a href=\"%(user_path)s\">%(username)s</a>"
|
msgstr "Aggiunto da <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:96
|
#: bookwyrm/templates/lists/list.html:138
|
||||||
msgid "List position"
|
msgid "List position"
|
||||||
msgstr "Posizione elenco"
|
msgstr "Posizione elenco"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:102
|
#: bookwyrm/templates/lists/list.html:144
|
||||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
||||||
msgid "Set"
|
msgid "Set"
|
||||||
msgstr "Imposta"
|
msgstr "Imposta"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:117
|
#: bookwyrm/templates/lists/list.html:159
|
||||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Elimina"
|
msgstr "Elimina"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:131
|
#: bookwyrm/templates/lists/list.html:173
|
||||||
#: bookwyrm/templates/lists/list.html:148
|
#: bookwyrm/templates/lists/list.html:190
|
||||||
msgid "Sort List"
|
msgid "Sort List"
|
||||||
msgstr "Ordine lista"
|
msgstr "Ordine lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:141
|
#: bookwyrm/templates/lists/list.html:183
|
||||||
msgid "Direction"
|
msgid "Direction"
|
||||||
msgstr "Direzione"
|
msgstr "Direzione"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:155
|
#: bookwyrm/templates/lists/list.html:197
|
||||||
msgid "Add Books"
|
msgid "Add Books"
|
||||||
msgstr "Aggiungi Libri"
|
msgstr "Aggiungi Libri"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:157
|
#: bookwyrm/templates/lists/list.html:199
|
||||||
msgid "Suggest Books"
|
msgid "Suggest Books"
|
||||||
msgstr "Libri consigliati"
|
msgstr "Libri consigliati"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:168
|
#: bookwyrm/templates/lists/list.html:210
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "cerca"
|
msgstr "cerca"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:174
|
#: bookwyrm/templates/lists/list.html:216
|
||||||
msgid "Clear search"
|
msgid "Clear search"
|
||||||
msgstr "Cancella ricerca"
|
msgstr "Cancella ricerca"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:179
|
#: bookwyrm/templates/lists/list.html:221
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "No books found matching the query \"%(query)s\""
|
msgid "No books found matching the query \"%(query)s\""
|
||||||
msgstr "Nessun libro trovato corrispondente alla query \"%(query)s\""
|
msgstr "Nessun libro trovato corrispondente alla query \"%(query)s\""
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:211
|
#: bookwyrm/templates/lists/list.html:260
|
||||||
msgid "Suggest"
|
|
||||||
msgstr "Suggerisci"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:222
|
|
||||||
msgid "Embed this list on a website"
|
msgid "Embed this list on a website"
|
||||||
msgstr "Incorpora questa lista in un sito web"
|
msgstr "Incorpora questa lista in un sito web"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:230
|
#: bookwyrm/templates/lists/list.html:268
|
||||||
msgid "Copy embed code"
|
msgid "Copy embed code"
|
||||||
msgstr "Copia codice di incorporamento"
|
msgstr "Copia codice di incorporamento"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:232
|
#: bookwyrm/templates/lists/list.html:270
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
||||||
msgstr "%(list_name)s, una lista di %(owner)s su %(site_name)s"
|
msgstr "%(list_name)s, una lista di %(owner)s su %(site_name)s"
|
||||||
|
@ -3222,10 +3258,6 @@ msgstr "Software:"
|
||||||
msgid "Version:"
|
msgid "Version:"
|
||||||
msgstr "Versione:"
|
msgstr "Versione:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
|
||||||
msgid "Notes:"
|
|
||||||
msgstr "Note:"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance.html:19
|
#: bookwyrm/templates/settings/federation/instance.html:19
|
||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Dettagli"
|
msgstr "Dettagli"
|
||||||
|
@ -4631,3 +4663,10 @@ msgstr "Il link per reimpostare la password è stato inviato a {email}"
|
||||||
msgid "Status updates from {obj.display_name}"
|
msgid "Status updates from {obj.display_name}"
|
||||||
msgstr "Aggiornamenti di stato da {obj.display_name}"
|
msgstr "Aggiornamenti di stato da {obj.display_name}"
|
||||||
|
|
||||||
|
#: bookwyrm/views/updates.py:45
|
||||||
|
#, python-format
|
||||||
|
msgid "Load %(count)d unread status"
|
||||||
|
msgid_plural "Load %(count)d unread statuses"
|
||||||
|
msgstr[0] "Carica %(count)d stato non letto"
|
||||||
|
msgstr[1] "Carica %(count)d stati non letti"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-01-24 17:25+0000\n"
|
"POT-Creation-Date: 2022-01-28 02:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-24 18:54\n"
|
"PO-Revision-Date: 2022-01-30 17:27\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Lithuanian\n"
|
"Language-Team: Lithuanian\n"
|
||||||
"Language: lt\n"
|
"Language: lt\n"
|
||||||
|
@ -46,33 +46,33 @@ msgstr "{i} naudoja"
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Neribota"
|
msgstr "Neribota"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:483
|
#: bookwyrm/forms.py:489
|
||||||
msgid "List Order"
|
msgid "List Order"
|
||||||
msgstr "Kaip pridėta į sąrašą"
|
msgstr "Kaip pridėta į sąrašą"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:484
|
#: bookwyrm/forms.py:490
|
||||||
msgid "Book Title"
|
msgid "Book Title"
|
||||||
msgstr "Knygos antraštė"
|
msgstr "Knygos antraštė"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
|
#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
|
||||||
#: bookwyrm/templates/shelf/shelf.html:187
|
#: bookwyrm/templates/shelf/shelf.html:187
|
||||||
#: bookwyrm/templates/snippets/create_status/review.html:32
|
#: bookwyrm/templates/snippets/create_status/review.html:32
|
||||||
msgid "Rating"
|
msgid "Rating"
|
||||||
msgstr "Įvertinimas"
|
msgstr "Įvertinimas"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
|
#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
|
||||||
msgid "Sort By"
|
msgid "Sort By"
|
||||||
msgstr "Rūšiuoti pagal"
|
msgstr "Rūšiuoti pagal"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:491
|
#: bookwyrm/forms.py:497
|
||||||
msgid "Ascending"
|
msgid "Ascending"
|
||||||
msgstr "Didėjančia tvarka"
|
msgstr "Didėjančia tvarka"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:492
|
#: bookwyrm/forms.py:498
|
||||||
msgid "Descending"
|
msgid "Descending"
|
||||||
msgstr "Mažėjančia tvarka"
|
msgstr "Mažėjančia tvarka"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:505
|
#: bookwyrm/forms.py:511
|
||||||
msgid "Reading finish date cannot be before start date."
|
msgid "Reading finish date cannot be before start date."
|
||||||
msgstr "Skaitymo pabaigos data negali būti prieš skaitymo pradžios datą."
|
msgstr "Skaitymo pabaigos data negali būti prieš skaitymo pradžios datą."
|
||||||
|
|
||||||
|
@ -138,7 +138,7 @@ msgstr "Susijungę"
|
||||||
#: bookwyrm/templates/settings/federation/instance_list.html:23
|
#: bookwyrm/templates/settings/federation/instance_list.html:23
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:27
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:27
|
||||||
msgid "Blocked"
|
msgid "Blocked"
|
||||||
msgstr "Užblokuota"
|
msgstr "Užblokuoti"
|
||||||
|
|
||||||
#: bookwyrm/models/fields.py:29
|
#: bookwyrm/models/fields.py:29
|
||||||
#, python-format
|
#, python-format
|
||||||
|
@ -206,7 +206,7 @@ msgstr "Galima pasiskolinti"
|
||||||
#: bookwyrm/models/link.py:70
|
#: bookwyrm/models/link.py:70
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:23
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:23
|
||||||
msgid "Approved"
|
msgid "Approved"
|
||||||
msgstr "Patvirtinti"
|
msgstr "Patvirtinti puslapiai"
|
||||||
|
|
||||||
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
|
#: bookwyrm/models/user.py:32 bookwyrm/templates/book/book.html:272
|
||||||
msgid "Reviews"
|
msgid "Reviews"
|
||||||
|
@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Europos portugalų)"
|
msgstr "Português Europeu (Europos portugalų)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:258
|
#: bookwyrm/settings.py:258
|
||||||
|
msgid "Swedish (Svenska)"
|
||||||
|
msgstr "Švedų (Swedish)"
|
||||||
|
|
||||||
|
#: bookwyrm/settings.py:259
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Supaprastinta kinų)"
|
msgstr "简体中文 (Supaprastinta kinų)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:259
|
#: bookwyrm/settings.py:260
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Tradicinė kinų)"
|
msgstr "繁體中文 (Tradicinė kinų)"
|
||||||
|
|
||||||
|
@ -424,7 +428,7 @@ msgid "Copy address"
|
||||||
msgstr "Kopijuoti adresą"
|
msgstr "Kopijuoti adresą"
|
||||||
|
|
||||||
#: bookwyrm/templates/annual_summary/layout.html:68
|
#: bookwyrm/templates/annual_summary/layout.html:68
|
||||||
#: bookwyrm/templates/lists/list.html:231
|
#: bookwyrm/templates/lists/list.html:269
|
||||||
msgid "Copied!"
|
msgid "Copied!"
|
||||||
msgstr "Nukopijuota"
|
msgstr "Nukopijuota"
|
||||||
|
|
||||||
|
@ -697,6 +701,7 @@ msgstr "ISNI:"
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
||||||
#: bookwyrm/templates/groups/form.html:30
|
#: bookwyrm/templates/groups/form.html:30
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:15
|
#: bookwyrm/templates/lists/bookmark_button.html:15
|
||||||
|
#: bookwyrm/templates/lists/edit_item_form.html:15
|
||||||
#: bookwyrm/templates/lists/form.html:130
|
#: bookwyrm/templates/lists/form.html:130
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:124
|
#: bookwyrm/templates/preferences/edit_user.html:124
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
||||||
|
@ -720,6 +725,7 @@ msgstr "Išsaugoti"
|
||||||
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
||||||
#: bookwyrm/templates/book/sync_modal.html:23
|
#: bookwyrm/templates/book/sync_modal.html:23
|
||||||
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:42
|
||||||
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
||||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
||||||
|
@ -826,7 +832,7 @@ msgstr "Vietos"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:348
|
#: bookwyrm/templates/book/book.html:348
|
||||||
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
||||||
#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
|
#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12
|
||||||
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
||||||
#: bookwyrm/templates/search/layout.html:25
|
#: bookwyrm/templates/search/layout.html:25
|
||||||
#: bookwyrm/templates/search/layout.html:50
|
#: bookwyrm/templates/search/layout.html:50
|
||||||
|
@ -840,7 +846,8 @@ msgstr "Pridėti prie sąrašo"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:369
|
#: bookwyrm/templates/book/book.html:369
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:31
|
#: bookwyrm/templates/book/cover_add_modal.html:31
|
||||||
#: bookwyrm/templates/lists/list.html:209
|
#: bookwyrm/templates/lists/add_item_modal.html:37
|
||||||
|
#: bookwyrm/templates/lists/list.html:247
|
||||||
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
||||||
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
|
@ -1298,7 +1305,7 @@ msgstr "Bendruomenė"
|
||||||
|
|
||||||
#: bookwyrm/templates/directory/directory.html:17
|
#: bookwyrm/templates/directory/directory.html:17
|
||||||
msgid "Make your profile discoverable to other BookWyrm users."
|
msgid "Make your profile discoverable to other BookWyrm users."
|
||||||
msgstr "Savo paskyrą leiskite atrasti kitiems „BookWyrm“ nariems."
|
msgstr "Savo paskyrą leiskite atrasti kitiems „BookWyrm“ nariams."
|
||||||
|
|
||||||
#: bookwyrm/templates/directory/directory.html:21
|
#: bookwyrm/templates/directory/directory.html:21
|
||||||
msgid "Join Directory"
|
msgid "Join Directory"
|
||||||
|
@ -1564,16 +1571,11 @@ msgstr "Visos žinutės"
|
||||||
msgid "You have no messages right now."
|
msgid "You have no messages right now."
|
||||||
msgstr "Neturite žinučių."
|
msgstr "Neturite žinučių."
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:28
|
#: bookwyrm/templates/feed/feed.html:54
|
||||||
#, python-format
|
|
||||||
msgid "load <span data-poll=\"stream/%(tab_key)s\">0</span> unread status(es)"
|
|
||||||
msgstr "įkelti <span data-poll=\"stream/%(tab_key)s\">0</span> neperskaitytas būsenas"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:51
|
|
||||||
msgid "There aren't any activities right now! Try following a user to get started"
|
msgid "There aren't any activities right now! Try following a user to get started"
|
||||||
msgstr "Šiuo metu įrašų nėra. Norėdami matyti, sekite narį."
|
msgstr "Šiuo metu įrašų nėra. Norėdami matyti, sekite narį."
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:52
|
#: bookwyrm/templates/feed/feed.html:55
|
||||||
msgid "Alternatively, you can try enabling more status types"
|
msgid "Alternatively, you can try enabling more status types"
|
||||||
msgstr "Taip pat galite pasirinkti daugiau būsenos tipų"
|
msgstr "Taip pat galite pasirinkti daugiau būsenos tipų"
|
||||||
|
|
||||||
|
@ -1645,7 +1647,7 @@ msgstr "Norimos perskaityti"
|
||||||
#: bookwyrm/templates/snippets/translated_shelf_name.html:7
|
#: bookwyrm/templates/snippets/translated_shelf_name.html:7
|
||||||
#: bookwyrm/templates/user/user.html:34
|
#: bookwyrm/templates/user/user.html:34
|
||||||
msgid "Currently Reading"
|
msgid "Currently Reading"
|
||||||
msgstr "Šiuo metu skaitoma"
|
msgstr "Šiuo metu skaitomos"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/book_preview.html:12
|
#: bookwyrm/templates/get_started/book_preview.html:12
|
||||||
#: bookwyrm/templates/shelf/shelf.html:88
|
#: bookwyrm/templates/shelf/shelf.html:88
|
||||||
|
@ -1655,14 +1657,14 @@ msgstr "Šiuo metu skaitoma"
|
||||||
#: bookwyrm/templates/snippets/translated_shelf_name.html:9
|
#: bookwyrm/templates/snippets/translated_shelf_name.html:9
|
||||||
#: bookwyrm/templates/user/user.html:35
|
#: bookwyrm/templates/user/user.html:35
|
||||||
msgid "Read"
|
msgid "Read"
|
||||||
msgstr "Perskaityta"
|
msgstr "Perskaitytos"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:6
|
#: bookwyrm/templates/get_started/books.html:6
|
||||||
msgid "What are you reading?"
|
msgid "What are you reading?"
|
||||||
msgstr "Ką skaitome?"
|
msgstr "Ką skaitome?"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:9
|
#: bookwyrm/templates/get_started/books.html:9
|
||||||
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
|
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
|
||||||
msgid "Search for a book"
|
msgid "Search for a book"
|
||||||
msgstr "Ieškoti knygos"
|
msgstr "Ieškoti knygos"
|
||||||
|
|
||||||
|
@ -1682,7 +1684,7 @@ msgstr "Kai pradedate naudotis %(site_name)s, galite pridėti knygų."
|
||||||
#: bookwyrm/templates/get_started/users.html:19
|
#: bookwyrm/templates/get_started/users.html:19
|
||||||
#: bookwyrm/templates/groups/members.html:15
|
#: bookwyrm/templates/groups/members.html:15
|
||||||
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
||||||
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
|
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
|
||||||
#: bookwyrm/templates/search/layout.html:4
|
#: bookwyrm/templates/search/layout.html:4
|
||||||
#: bookwyrm/templates/search/layout.html:9
|
#: bookwyrm/templates/search/layout.html:9
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
|
@ -1698,7 +1700,7 @@ msgid "Popular on %(site_name)s"
|
||||||
msgstr "%(site_name)s populiaru"
|
msgstr "%(site_name)s populiaru"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:58
|
#: bookwyrm/templates/get_started/books.html:58
|
||||||
#: bookwyrm/templates/lists/list.html:180
|
#: bookwyrm/templates/lists/list.html:222
|
||||||
msgid "No books found"
|
msgid "No books found"
|
||||||
msgstr "Knygų nerasta"
|
msgstr "Knygų nerasta"
|
||||||
|
|
||||||
|
@ -1740,7 +1742,7 @@ msgstr "Baigti"
|
||||||
#: bookwyrm/templates/get_started/profile.html:15
|
#: bookwyrm/templates/get_started/profile.html:15
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:41
|
#: bookwyrm/templates/preferences/edit_user.html:41
|
||||||
msgid "Display name:"
|
msgid "Display name:"
|
||||||
msgstr "Rodyti vardą:"
|
msgstr "Rodomas vardą:"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/profile.html:29
|
#: bookwyrm/templates/get_started/profile.html:29
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:47
|
#: bookwyrm/templates/preferences/edit_user.html:47
|
||||||
|
@ -2055,7 +2057,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
|
||||||
msgstr "Jei patvirtinsite siūlymą, siūloma knyga visam laikui bus įkelta į Jūsų lentyną, susieta su skaitymo datomis, atsiliepimais ir knygos reitingais."
|
msgstr "Jei patvirtinsite siūlymą, siūloma knyga visam laikui bus įkelta į Jūsų lentyną, susieta su skaitymo datomis, atsiliepimais ir knygos reitingais."
|
||||||
|
|
||||||
#: bookwyrm/templates/import/manual_review.html:58
|
#: bookwyrm/templates/import/manual_review.html:58
|
||||||
#: bookwyrm/templates/lists/curate.html:59
|
#: bookwyrm/templates/lists/curate.html:71
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr "Patvirtinti"
|
msgstr "Patvirtinti"
|
||||||
|
@ -2266,6 +2268,21 @@ msgstr "Paremkite %(site_name)s per <a href=\"%(support_link)s\" target=\"_blank
|
||||||
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
msgstr "„BookWyrm“ šaltinio kodas yra laisvai prieinamas. Galite prisidėti arba pranešti apie klaidas per <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgstr "„BookWyrm“ šaltinio kodas yra laisvai prieinamas. Galite prisidėti arba pranešti apie klaidas per <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:8
|
||||||
|
#, python-format
|
||||||
|
msgid "Add \"<em>%(title)s</em>\" to this list"
|
||||||
|
msgstr "Pridėti \"<em>%(title)s</em>\" į šį sąrašą"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:12
|
||||||
|
#, python-format
|
||||||
|
msgid "Suggest \"<em>%(title)s</em>\" for this list"
|
||||||
|
msgstr "Siūlyti \"<em>%(title)s</em>\" į šį sąrašą"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:39
|
||||||
|
#: bookwyrm/templates/lists/list.html:249
|
||||||
|
msgid "Suggest"
|
||||||
|
msgstr "Siūlyti"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:30
|
#: bookwyrm/templates/lists/bookmark_button.html:30
|
||||||
msgid "Un-save"
|
msgid "Un-save"
|
||||||
msgstr "Nebesaugoti"
|
msgstr "Nebesaugoti"
|
||||||
|
@ -2285,23 +2302,29 @@ msgstr "Sukūrė ir kuruoja <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgstr "Sukūrė <a href=\"%(path)s\">%(username)s</a>"
|
msgstr "Sukūrė <a href=\"%(path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:11
|
#: bookwyrm/templates/lists/curate.html:12
|
||||||
msgid "Curate"
|
msgid "Curate"
|
||||||
msgstr "Kuruoti"
|
msgstr "Kuruoti"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:20
|
#: bookwyrm/templates/lists/curate.html:21
|
||||||
msgid "Pending Books"
|
msgid "Pending Books"
|
||||||
msgstr "Patvirtinimo laukiančios knygos"
|
msgstr "Patvirtinimo laukiančios knygos"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:23
|
#: bookwyrm/templates/lists/curate.html:24
|
||||||
msgid "You're all set!"
|
msgid "You're all set!"
|
||||||
msgstr "Viskas atlikta!"
|
msgstr "Viskas atlikta!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:43
|
#: bookwyrm/templates/lists/curate.html:45
|
||||||
|
#: bookwyrm/templates/lists/list.html:83
|
||||||
|
#, python-format
|
||||||
|
msgid "<a href=\"%(user_path)s\">%(username)s</a> says:"
|
||||||
|
msgstr "<a href=\"%(user_path)s\">%(username)s</a> sako:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/curate.html:55
|
||||||
msgid "Suggested by"
|
msgid "Suggested by"
|
||||||
msgstr "Pasiūlė"
|
msgstr "Pasiūlė"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:65
|
#: bookwyrm/templates/lists/curate.html:77
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr "Atmesti"
|
msgstr "Atmesti"
|
||||||
|
|
||||||
|
@ -2325,7 +2348,7 @@ msgid "on <a href=\"/\">%(site_name)s</a>"
|
||||||
msgstr "per <a href=\"/\">%(site_name)s</a>"
|
msgstr "per <a href=\"/\">%(site_name)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/embed-list.html:27
|
#: bookwyrm/templates/lists/embed-list.html:27
|
||||||
#: bookwyrm/templates/lists/list.html:43
|
#: bookwyrm/templates/lists/list.html:44
|
||||||
msgid "This list is currently empty"
|
msgid "This list is currently empty"
|
||||||
msgstr "Šiuo metu sąrašas tuščias"
|
msgstr "Šiuo metu sąrašas tuščias"
|
||||||
|
|
||||||
|
@ -2386,76 +2409,89 @@ msgstr "Sukurti grupę"
|
||||||
msgid "Delete list"
|
msgid "Delete list"
|
||||||
msgstr "Ištrinti sąrašą"
|
msgstr "Ištrinti sąrašą"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:35
|
#: bookwyrm/templates/lists/item_notes_field.html:7
|
||||||
|
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
||||||
|
msgid "Notes:"
|
||||||
|
msgstr "Užrašai:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/item_notes_field.html:19
|
||||||
|
msgid "An optional note that will be displayed with the book."
|
||||||
|
msgstr "Papildomi užrašai, kurie rodomi kartu su knyga."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:36
|
||||||
msgid "You successfully suggested a book for this list!"
|
msgid "You successfully suggested a book for this list!"
|
||||||
msgstr "Sėkmingai pasiūlėte knygą šiam sąrašui!"
|
msgstr "Sėkmingai pasiūlėte knygą šiam sąrašui!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:37
|
#: bookwyrm/templates/lists/list.html:38
|
||||||
msgid "You successfully added a book to this list!"
|
msgid "You successfully added a book to this list!"
|
||||||
msgstr "Sėkmingai pridėjote knygą į šį sąrašą!"
|
msgstr "Sėkmingai pridėjote knygą į šį sąrašą!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:81
|
#: bookwyrm/templates/lists/list.html:96
|
||||||
|
msgid "Edit notes"
|
||||||
|
msgstr "Redaguoti užrašus"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:111
|
||||||
|
msgid "Add notes"
|
||||||
|
msgstr "Pridėti užrašus"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:123
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
msgstr "Pridėjo <a href=\"%(user_path)s\">%(username)s</a>"
|
msgstr "Pridėjo <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:96
|
#: bookwyrm/templates/lists/list.html:138
|
||||||
msgid "List position"
|
msgid "List position"
|
||||||
msgstr "Sąrašo pozicija"
|
msgstr "Sąrašo pozicija"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:102
|
#: bookwyrm/templates/lists/list.html:144
|
||||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
||||||
msgid "Set"
|
msgid "Set"
|
||||||
msgstr "Nustatyti"
|
msgstr "Nustatyti"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:117
|
#: bookwyrm/templates/lists/list.html:159
|
||||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Pašalinti"
|
msgstr "Pašalinti"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:131
|
#: bookwyrm/templates/lists/list.html:173
|
||||||
#: bookwyrm/templates/lists/list.html:148
|
#: bookwyrm/templates/lists/list.html:190
|
||||||
msgid "Sort List"
|
msgid "Sort List"
|
||||||
msgstr "Rūšiuoti sąrašą"
|
msgstr "Rūšiuoti sąrašą"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:141
|
#: bookwyrm/templates/lists/list.html:183
|
||||||
msgid "Direction"
|
msgid "Direction"
|
||||||
msgstr "Kryptis"
|
msgstr "Kryptis"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:155
|
#: bookwyrm/templates/lists/list.html:197
|
||||||
msgid "Add Books"
|
msgid "Add Books"
|
||||||
msgstr "Pridėti knygų"
|
msgstr "Pridėti knygų"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:157
|
#: bookwyrm/templates/lists/list.html:199
|
||||||
msgid "Suggest Books"
|
msgid "Suggest Books"
|
||||||
msgstr "Siūlyti knygų"
|
msgstr "Siūlyti knygų"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:168
|
#: bookwyrm/templates/lists/list.html:210
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "paieška"
|
msgstr "paieška"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:174
|
#: bookwyrm/templates/lists/list.html:216
|
||||||
msgid "Clear search"
|
msgid "Clear search"
|
||||||
msgstr "Išvalyti paiešką"
|
msgstr "Išvalyti paiešką"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:179
|
#: bookwyrm/templates/lists/list.html:221
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "No books found matching the query \"%(query)s\""
|
msgid "No books found matching the query \"%(query)s\""
|
||||||
msgstr "Pagal paiešką „%(query)s“ knygų nerasta"
|
msgstr "Pagal paiešką „%(query)s“ knygų nerasta"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:211
|
#: bookwyrm/templates/lists/list.html:260
|
||||||
msgid "Suggest"
|
|
||||||
msgstr "Siūlyti"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:222
|
|
||||||
msgid "Embed this list on a website"
|
msgid "Embed this list on a website"
|
||||||
msgstr "Įdėkite šį sąrašą į tinklalapį"
|
msgstr "Įdėkite šį sąrašą į tinklalapį"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:230
|
#: bookwyrm/templates/lists/list.html:268
|
||||||
msgid "Copy embed code"
|
msgid "Copy embed code"
|
||||||
msgstr "Nukopijuokite įterptinį kodą"
|
msgstr "Nukopijuokite kodą įterpimui"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:232
|
#: bookwyrm/templates/lists/list.html:270
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
||||||
msgstr "%(list_name)s, sąrašą sudarė %(owner)s, per %(site_name)s"
|
msgstr "%(list_name)s, sąrašą sudarė %(owner)s, per %(site_name)s"
|
||||||
|
@ -2800,13 +2836,13 @@ msgstr "Nebegalėsite atstatyti ištrintos paskyros. Ateityje nebegalėsite naud
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:7
|
#: bookwyrm/templates/preferences/edit_user.html:7
|
||||||
#: bookwyrm/templates/preferences/layout.html:15
|
#: bookwyrm/templates/preferences/layout.html:15
|
||||||
msgid "Edit Profile"
|
msgid "Edit Profile"
|
||||||
msgstr "Redaguoti profilį"
|
msgstr "Redaguoti paskyrą"
|
||||||
|
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:12
|
#: bookwyrm/templates/preferences/edit_user.html:12
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:25
|
#: bookwyrm/templates/preferences/edit_user.html:25
|
||||||
#: bookwyrm/templates/settings/users/user_info.html:7
|
#: bookwyrm/templates/settings/users/user_info.html:7
|
||||||
msgid "Profile"
|
msgid "Profile"
|
||||||
msgstr "Profilis"
|
msgstr "Paskyra"
|
||||||
|
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:13
|
#: bookwyrm/templates/preferences/edit_user.html:13
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:64
|
#: bookwyrm/templates/preferences/edit_user.html:64
|
||||||
|
@ -3251,10 +3287,6 @@ msgstr "Programinė įranga:"
|
||||||
msgid "Version:"
|
msgid "Version:"
|
||||||
msgstr "Versija:"
|
msgstr "Versija:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
|
||||||
msgid "Notes:"
|
|
||||||
msgstr "Užrašai:"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance.html:19
|
#: bookwyrm/templates/settings/federation/instance.html:19
|
||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Išsami informacija"
|
msgstr "Išsami informacija"
|
||||||
|
@ -3522,7 +3554,7 @@ msgstr "Pranešimai"
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:5
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:5
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:7
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:7
|
||||||
msgid "Link Domains"
|
msgid "Link Domains"
|
||||||
msgstr "Susieti domenus"
|
msgstr "Nuorodų puslapiai"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/layout.html:72
|
#: bookwyrm/templates/settings/layout.html:72
|
||||||
msgid "Instance Settings"
|
msgid "Instance Settings"
|
||||||
|
@ -3808,7 +3840,7 @@ msgstr "Nenustatytas"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/users/user_info.html:16
|
#: bookwyrm/templates/settings/users/user_info.html:16
|
||||||
msgid "View user profile"
|
msgid "View user profile"
|
||||||
msgstr "Peržiūrėti vartotojo profilį"
|
msgstr "Peržiūrėti nario paskyrą"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/users/user_info.html:36
|
#: bookwyrm/templates/settings/users/user_info.html:36
|
||||||
msgid "Local"
|
msgid "Local"
|
||||||
|
@ -3888,7 +3920,7 @@ msgstr "Redaguoti lentyną"
|
||||||
|
|
||||||
#: bookwyrm/templates/shelf/shelf.html:24
|
#: bookwyrm/templates/shelf/shelf.html:24
|
||||||
msgid "User profile"
|
msgid "User profile"
|
||||||
msgstr "Nario profilis"
|
msgstr "Nario paskyra"
|
||||||
|
|
||||||
#: bookwyrm/templates/shelf/shelf.html:39
|
#: bookwyrm/templates/shelf/shelf.html:39
|
||||||
#: bookwyrm/templates/snippets/translated_shelf_name.html:3
|
#: bookwyrm/templates/snippets/translated_shelf_name.html:3
|
||||||
|
@ -4438,7 +4470,7 @@ msgstr "pradėjo skaityti <a href=\"%(book_path)s\">%(book)s</a>"
|
||||||
#: bookwyrm/templates/snippets/status/headers/review.html:8
|
#: bookwyrm/templates/snippets/status/headers/review.html:8
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "reviewed <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>"
|
msgid "reviewed <a href=\"%(book_path)s\">%(book)s</a> by <a href=\"%(author_path)s\">%(author_name)s</a>"
|
||||||
msgstr ""
|
msgstr "apžvelgė autoriaus <a href=\"%(author_path)s\">%(author_name)s</a> knygą <a href=\"%(book_path)s\">%(book)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/snippets/status/headers/review.html:15
|
#: bookwyrm/templates/snippets/status/headers/review.html:15
|
||||||
#, python-format
|
#, python-format
|
||||||
|
@ -4547,7 +4579,7 @@ msgstr "Sukurti grupę"
|
||||||
|
|
||||||
#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
|
#: bookwyrm/templates/user/layout.html:19 bookwyrm/templates/user/user.html:10
|
||||||
msgid "User Profile"
|
msgid "User Profile"
|
||||||
msgstr "Naudotojo paskyra"
|
msgstr "Nario paskyra"
|
||||||
|
|
||||||
#: bookwyrm/templates/user/layout.html:48
|
#: bookwyrm/templates/user/layout.html:48
|
||||||
msgid "Follow Requests"
|
msgid "Follow Requests"
|
||||||
|
@ -4678,3 +4710,12 @@ msgstr "Slaptažodžio atstatymo nuoroda išsiųsta į {email}"
|
||||||
msgid "Status updates from {obj.display_name}"
|
msgid "Status updates from {obj.display_name}"
|
||||||
msgstr "Būsenos atnaujinimai iš {obj.display_name}"
|
msgstr "Būsenos atnaujinimai iš {obj.display_name}"
|
||||||
|
|
||||||
|
#: bookwyrm/views/updates.py:45
|
||||||
|
#, python-format
|
||||||
|
msgid "Load %(count)d unread status"
|
||||||
|
msgid_plural "Load %(count)d unread statuses"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-01-24 17:25+0000\n"
|
"POT-Creation-Date: 2022-01-28 02:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-24 18:54\n"
|
"PO-Revision-Date: 2022-01-28 04:03\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Norwegian\n"
|
"Language-Team: Norwegian\n"
|
||||||
"Language: no\n"
|
"Language: no\n"
|
||||||
|
@ -46,33 +46,33 @@ msgstr "{i} ganger"
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Ubegrenset"
|
msgstr "Ubegrenset"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:483
|
#: bookwyrm/forms.py:489
|
||||||
msgid "List Order"
|
msgid "List Order"
|
||||||
msgstr "Liste rekkefølge"
|
msgstr "Liste rekkefølge"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:484
|
#: bookwyrm/forms.py:490
|
||||||
msgid "Book Title"
|
msgid "Book Title"
|
||||||
msgstr "Boktittel"
|
msgstr "Boktittel"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
|
#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
|
||||||
#: bookwyrm/templates/shelf/shelf.html:187
|
#: bookwyrm/templates/shelf/shelf.html:187
|
||||||
#: bookwyrm/templates/snippets/create_status/review.html:32
|
#: bookwyrm/templates/snippets/create_status/review.html:32
|
||||||
msgid "Rating"
|
msgid "Rating"
|
||||||
msgstr "Vurdering"
|
msgstr "Vurdering"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
|
#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
|
||||||
msgid "Sort By"
|
msgid "Sort By"
|
||||||
msgstr "Sorter etter"
|
msgstr "Sorter etter"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:491
|
#: bookwyrm/forms.py:497
|
||||||
msgid "Ascending"
|
msgid "Ascending"
|
||||||
msgstr "Stigende"
|
msgstr "Stigende"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:492
|
#: bookwyrm/forms.py:498
|
||||||
msgid "Descending"
|
msgid "Descending"
|
||||||
msgstr "Synkende"
|
msgstr "Synkende"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:505
|
#: bookwyrm/forms.py:511
|
||||||
msgid "Reading finish date cannot be before start date."
|
msgid "Reading finish date cannot be before start date."
|
||||||
msgstr "Sluttdato kan ikke være før startdato."
|
msgstr "Sluttdato kan ikke være før startdato."
|
||||||
|
|
||||||
|
@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Europeisk Portugisisk)"
|
msgstr "Português Europeu (Europeisk Portugisisk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:258
|
#: bookwyrm/settings.py:258
|
||||||
|
msgid "Swedish (Svenska)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/settings.py:259
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Forenklet kinesisk)"
|
msgstr "简体中文 (Forenklet kinesisk)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:259
|
#: bookwyrm/settings.py:260
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Tradisjonelt kinesisk)"
|
msgstr "繁體中文 (Tradisjonelt kinesisk)"
|
||||||
|
|
||||||
|
@ -424,7 +428,7 @@ msgid "Copy address"
|
||||||
msgstr "Kopiér adresse"
|
msgstr "Kopiér adresse"
|
||||||
|
|
||||||
#: bookwyrm/templates/annual_summary/layout.html:68
|
#: bookwyrm/templates/annual_summary/layout.html:68
|
||||||
#: bookwyrm/templates/lists/list.html:231
|
#: bookwyrm/templates/lists/list.html:269
|
||||||
msgid "Copied!"
|
msgid "Copied!"
|
||||||
msgstr "Kopiert!"
|
msgstr "Kopiert!"
|
||||||
|
|
||||||
|
@ -689,6 +693,7 @@ msgstr "ISNI:"
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
||||||
#: bookwyrm/templates/groups/form.html:30
|
#: bookwyrm/templates/groups/form.html:30
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:15
|
#: bookwyrm/templates/lists/bookmark_button.html:15
|
||||||
|
#: bookwyrm/templates/lists/edit_item_form.html:15
|
||||||
#: bookwyrm/templates/lists/form.html:130
|
#: bookwyrm/templates/lists/form.html:130
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:124
|
#: bookwyrm/templates/preferences/edit_user.html:124
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
||||||
|
@ -712,6 +717,7 @@ msgstr "Lagre"
|
||||||
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
||||||
#: bookwyrm/templates/book/sync_modal.html:23
|
#: bookwyrm/templates/book/sync_modal.html:23
|
||||||
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:42
|
||||||
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
||||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
||||||
|
@ -816,7 +822,7 @@ msgstr "Steder"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:348
|
#: bookwyrm/templates/book/book.html:348
|
||||||
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
||||||
#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
|
#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12
|
||||||
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
||||||
#: bookwyrm/templates/search/layout.html:25
|
#: bookwyrm/templates/search/layout.html:25
|
||||||
#: bookwyrm/templates/search/layout.html:50
|
#: bookwyrm/templates/search/layout.html:50
|
||||||
|
@ -830,7 +836,8 @@ msgstr "Legg til i liste"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:369
|
#: bookwyrm/templates/book/book.html:369
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:31
|
#: bookwyrm/templates/book/cover_add_modal.html:31
|
||||||
#: bookwyrm/templates/lists/list.html:209
|
#: bookwyrm/templates/lists/add_item_modal.html:37
|
||||||
|
#: bookwyrm/templates/lists/list.html:247
|
||||||
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
||||||
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
|
@ -1549,16 +1556,11 @@ msgstr "Alle meldinger"
|
||||||
msgid "You have no messages right now."
|
msgid "You have no messages right now."
|
||||||
msgstr "Du har ingen meldinger."
|
msgstr "Du har ingen meldinger."
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:28
|
#: bookwyrm/templates/feed/feed.html:54
|
||||||
#, python-format
|
|
||||||
msgid "load <span data-poll=\"stream/%(tab_key)s\">0</span> unread status(es)"
|
|
||||||
msgstr "last <span data-poll=\"stream/%(tab_key)s\">0</span> uleste status(er)"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:51
|
|
||||||
msgid "There aren't any activities right now! Try following a user to get started"
|
msgid "There aren't any activities right now! Try following a user to get started"
|
||||||
msgstr "Det er ingen aktiviteter akkurat nå! Prøv å følge en bruker for å komme i gang"
|
msgstr "Det er ingen aktiviteter akkurat nå! Prøv å følge en bruker for å komme i gang"
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:52
|
#: bookwyrm/templates/feed/feed.html:55
|
||||||
msgid "Alternatively, you can try enabling more status types"
|
msgid "Alternatively, you can try enabling more status types"
|
||||||
msgstr "Eller, du kan prøve å aktivere flere statustyper"
|
msgstr "Eller, du kan prøve å aktivere flere statustyper"
|
||||||
|
|
||||||
|
@ -1647,7 +1649,7 @@ msgid "What are you reading?"
|
||||||
msgstr "Hva er det du leser nå?"
|
msgstr "Hva er det du leser nå?"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:9
|
#: bookwyrm/templates/get_started/books.html:9
|
||||||
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
|
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
|
||||||
msgid "Search for a book"
|
msgid "Search for a book"
|
||||||
msgstr "Søk etter en bok"
|
msgstr "Søk etter en bok"
|
||||||
|
|
||||||
|
@ -1667,7 +1669,7 @@ msgstr "Du kan legge til bøker når du begynner å bruke %(site_name)s."
|
||||||
#: bookwyrm/templates/get_started/users.html:19
|
#: bookwyrm/templates/get_started/users.html:19
|
||||||
#: bookwyrm/templates/groups/members.html:15
|
#: bookwyrm/templates/groups/members.html:15
|
||||||
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
||||||
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
|
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
|
||||||
#: bookwyrm/templates/search/layout.html:4
|
#: bookwyrm/templates/search/layout.html:4
|
||||||
#: bookwyrm/templates/search/layout.html:9
|
#: bookwyrm/templates/search/layout.html:9
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
|
@ -1683,7 +1685,7 @@ msgid "Popular on %(site_name)s"
|
||||||
msgstr "Populært på %(site_name)s"
|
msgstr "Populært på %(site_name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:58
|
#: bookwyrm/templates/get_started/books.html:58
|
||||||
#: bookwyrm/templates/lists/list.html:180
|
#: bookwyrm/templates/lists/list.html:222
|
||||||
msgid "No books found"
|
msgid "No books found"
|
||||||
msgstr "Ingen bøker funnet"
|
msgstr "Ingen bøker funnet"
|
||||||
|
|
||||||
|
@ -2032,7 +2034,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
|
||||||
msgstr "Aksept av et forslag legger boka til i hyllene dine permanent, og kobler dine lesedatoer, anmeldelser og vurderinger til boka."
|
msgstr "Aksept av et forslag legger boka til i hyllene dine permanent, og kobler dine lesedatoer, anmeldelser og vurderinger til boka."
|
||||||
|
|
||||||
#: bookwyrm/templates/import/manual_review.html:58
|
#: bookwyrm/templates/import/manual_review.html:58
|
||||||
#: bookwyrm/templates/lists/curate.html:59
|
#: bookwyrm/templates/lists/curate.html:71
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr "Godkjenn"
|
msgstr "Godkjenn"
|
||||||
|
@ -2243,6 +2245,21 @@ msgstr "Støtt %(site_name)s på <a href=\"%(support_link)s\" target=\"_blank\">
|
||||||
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
msgstr "BookWyrms kildekode er fritt tilgjengelig. Du kan bidra eller rapportere problemer på <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgstr "BookWyrms kildekode er fritt tilgjengelig. Du kan bidra eller rapportere problemer på <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:8
|
||||||
|
#, python-format
|
||||||
|
msgid "Add \"<em>%(title)s</em>\" to this list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:12
|
||||||
|
#, python-format
|
||||||
|
msgid "Suggest \"<em>%(title)s</em>\" for this list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:39
|
||||||
|
#: bookwyrm/templates/lists/list.html:249
|
||||||
|
msgid "Suggest"
|
||||||
|
msgstr "Foreslå"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:30
|
#: bookwyrm/templates/lists/bookmark_button.html:30
|
||||||
msgid "Un-save"
|
msgid "Un-save"
|
||||||
msgstr "Fjern lagring"
|
msgstr "Fjern lagring"
|
||||||
|
@ -2262,23 +2279,29 @@ msgstr "Opprettet og forvaltet av <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgstr "Opprettet av <a href=\"%(path)s\">%(username)s</a>"
|
msgstr "Opprettet av <a href=\"%(path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:11
|
#: bookwyrm/templates/lists/curate.html:12
|
||||||
msgid "Curate"
|
msgid "Curate"
|
||||||
msgstr "Forvalt"
|
msgstr "Forvalt"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:20
|
#: bookwyrm/templates/lists/curate.html:21
|
||||||
msgid "Pending Books"
|
msgid "Pending Books"
|
||||||
msgstr "Ventende bøker"
|
msgstr "Ventende bøker"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:23
|
#: bookwyrm/templates/lists/curate.html:24
|
||||||
msgid "You're all set!"
|
msgid "You're all set!"
|
||||||
msgstr "Nå er du klar!"
|
msgstr "Nå er du klar!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:43
|
#: bookwyrm/templates/lists/curate.html:45
|
||||||
|
#: bookwyrm/templates/lists/list.html:83
|
||||||
|
#, python-format
|
||||||
|
msgid "<a href=\"%(user_path)s\">%(username)s</a> says:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/curate.html:55
|
||||||
msgid "Suggested by"
|
msgid "Suggested by"
|
||||||
msgstr "Foreslått av"
|
msgstr "Foreslått av"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:65
|
#: bookwyrm/templates/lists/curate.html:77
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr "Forkast"
|
msgstr "Forkast"
|
||||||
|
|
||||||
|
@ -2302,7 +2325,7 @@ msgid "on <a href=\"/\">%(site_name)s</a>"
|
||||||
msgstr "på <a href=\"/\">%(site_name)s</a>"
|
msgstr "på <a href=\"/\">%(site_name)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/embed-list.html:27
|
#: bookwyrm/templates/lists/embed-list.html:27
|
||||||
#: bookwyrm/templates/lists/list.html:43
|
#: bookwyrm/templates/lists/list.html:44
|
||||||
msgid "This list is currently empty"
|
msgid "This list is currently empty"
|
||||||
msgstr "Denne lista er for tida tom"
|
msgstr "Denne lista er for tida tom"
|
||||||
|
|
||||||
|
@ -2363,76 +2386,89 @@ msgstr "Opprett ei gruppe"
|
||||||
msgid "Delete list"
|
msgid "Delete list"
|
||||||
msgstr "Slett liste"
|
msgstr "Slett liste"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:35
|
#: bookwyrm/templates/lists/item_notes_field.html:7
|
||||||
|
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
||||||
|
msgid "Notes:"
|
||||||
|
msgstr "Notater:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/item_notes_field.html:19
|
||||||
|
msgid "An optional note that will be displayed with the book."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:36
|
||||||
msgid "You successfully suggested a book for this list!"
|
msgid "You successfully suggested a book for this list!"
|
||||||
msgstr "Du har nå foreslått en bok for denne lista!"
|
msgstr "Du har nå foreslått en bok for denne lista!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:37
|
#: bookwyrm/templates/lists/list.html:38
|
||||||
msgid "You successfully added a book to this list!"
|
msgid "You successfully added a book to this list!"
|
||||||
msgstr "Du har nå lagt til ei bok i denne lista!"
|
msgstr "Du har nå lagt til ei bok i denne lista!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:81
|
#: bookwyrm/templates/lists/list.html:96
|
||||||
|
msgid "Edit notes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:111
|
||||||
|
msgid "Add notes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:123
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
msgstr "Lagt til av <a href=\"%(user_path)s\">%(username)s</a>"
|
msgstr "Lagt til av <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:96
|
#: bookwyrm/templates/lists/list.html:138
|
||||||
msgid "List position"
|
msgid "List position"
|
||||||
msgstr "Listeposisjon"
|
msgstr "Listeposisjon"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:102
|
#: bookwyrm/templates/lists/list.html:144
|
||||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
||||||
msgid "Set"
|
msgid "Set"
|
||||||
msgstr "Bruk"
|
msgstr "Bruk"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:117
|
#: bookwyrm/templates/lists/list.html:159
|
||||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Fjern"
|
msgstr "Fjern"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:131
|
#: bookwyrm/templates/lists/list.html:173
|
||||||
#: bookwyrm/templates/lists/list.html:148
|
#: bookwyrm/templates/lists/list.html:190
|
||||||
msgid "Sort List"
|
msgid "Sort List"
|
||||||
msgstr "Sorter liste"
|
msgstr "Sorter liste"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:141
|
#: bookwyrm/templates/lists/list.html:183
|
||||||
msgid "Direction"
|
msgid "Direction"
|
||||||
msgstr "Retning"
|
msgstr "Retning"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:155
|
#: bookwyrm/templates/lists/list.html:197
|
||||||
msgid "Add Books"
|
msgid "Add Books"
|
||||||
msgstr "Legg til bøker"
|
msgstr "Legg til bøker"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:157
|
#: bookwyrm/templates/lists/list.html:199
|
||||||
msgid "Suggest Books"
|
msgid "Suggest Books"
|
||||||
msgstr "Foreslå bøker"
|
msgstr "Foreslå bøker"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:168
|
#: bookwyrm/templates/lists/list.html:210
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "søk"
|
msgstr "søk"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:174
|
#: bookwyrm/templates/lists/list.html:216
|
||||||
msgid "Clear search"
|
msgid "Clear search"
|
||||||
msgstr "Nullstill søk"
|
msgstr "Nullstill søk"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:179
|
#: bookwyrm/templates/lists/list.html:221
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "No books found matching the query \"%(query)s\""
|
msgid "No books found matching the query \"%(query)s\""
|
||||||
msgstr "Ingen bøker funnet for søket\"%(query)s\""
|
msgstr "Ingen bøker funnet for søket\"%(query)s\""
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:211
|
#: bookwyrm/templates/lists/list.html:260
|
||||||
msgid "Suggest"
|
|
||||||
msgstr "Foreslå"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:222
|
|
||||||
msgid "Embed this list on a website"
|
msgid "Embed this list on a website"
|
||||||
msgstr "Legg denne lista inn på et nettsted"
|
msgstr "Legg denne lista inn på et nettsted"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:230
|
#: bookwyrm/templates/lists/list.html:268
|
||||||
msgid "Copy embed code"
|
msgid "Copy embed code"
|
||||||
msgstr "Kopier kode som legger inn lista"
|
msgstr "Kopier kode som legger inn lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:232
|
#: bookwyrm/templates/lists/list.html:270
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
||||||
msgstr "%(list_name)s, en liste av %(owner)s på %(site_name)s"
|
msgstr "%(list_name)s, en liste av %(owner)s på %(site_name)s"
|
||||||
|
@ -3220,10 +3256,6 @@ msgstr "Programvare:"
|
||||||
msgid "Version:"
|
msgid "Version:"
|
||||||
msgstr "Versjon:"
|
msgstr "Versjon:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
|
||||||
msgid "Notes:"
|
|
||||||
msgstr "Notater:"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance.html:19
|
#: bookwyrm/templates/settings/federation/instance.html:19
|
||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Detaljer"
|
msgstr "Detaljer"
|
||||||
|
@ -4629,3 +4661,10 @@ msgstr "En lenke for tilbakestilling av passord er sendt til {email}"
|
||||||
msgid "Status updates from {obj.display_name}"
|
msgid "Status updates from {obj.display_name}"
|
||||||
msgstr "Statusoppdateringer fra {obj.display_name}"
|
msgstr "Statusoppdateringer fra {obj.display_name}"
|
||||||
|
|
||||||
|
#: bookwyrm/views/updates.py:45
|
||||||
|
#, python-format
|
||||||
|
msgid "Load %(count)d unread status"
|
||||||
|
msgid_plural "Load %(count)d unread statuses"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-01-24 17:25+0000\n"
|
"POT-Creation-Date: 2022-01-28 02:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-24 18:55\n"
|
"PO-Revision-Date: 2022-01-29 14:28\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Portuguese, Brazilian\n"
|
"Language-Team: Portuguese, Brazilian\n"
|
||||||
"Language: pt\n"
|
"Language: pt\n"
|
||||||
|
@ -46,33 +46,33 @@ msgstr "{i} usos"
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Ilimitado"
|
msgstr "Ilimitado"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:483
|
#: bookwyrm/forms.py:489
|
||||||
msgid "List Order"
|
msgid "List Order"
|
||||||
msgstr "Ordem de inserção"
|
msgstr "Ordem de inserção"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:484
|
#: bookwyrm/forms.py:490
|
||||||
msgid "Book Title"
|
msgid "Book Title"
|
||||||
msgstr "Título do livro"
|
msgstr "Título do livro"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
|
#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
|
||||||
#: bookwyrm/templates/shelf/shelf.html:187
|
#: bookwyrm/templates/shelf/shelf.html:187
|
||||||
#: bookwyrm/templates/snippets/create_status/review.html:32
|
#: bookwyrm/templates/snippets/create_status/review.html:32
|
||||||
msgid "Rating"
|
msgid "Rating"
|
||||||
msgstr "Avaliação"
|
msgstr "Avaliação"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
|
#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
|
||||||
msgid "Sort By"
|
msgid "Sort By"
|
||||||
msgstr "Organizar por"
|
msgstr "Organizar por"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:491
|
#: bookwyrm/forms.py:497
|
||||||
msgid "Ascending"
|
msgid "Ascending"
|
||||||
msgstr "Crescente"
|
msgstr "Crescente"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:492
|
#: bookwyrm/forms.py:498
|
||||||
msgid "Descending"
|
msgid "Descending"
|
||||||
msgstr "Decrescente"
|
msgstr "Decrescente"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:505
|
#: bookwyrm/forms.py:511
|
||||||
msgid "Reading finish date cannot be before start date."
|
msgid "Reading finish date cannot be before start date."
|
||||||
msgstr "A data de término da leitura não pode ser anterior a de início."
|
msgstr "A data de término da leitura não pode ser anterior a de início."
|
||||||
|
|
||||||
|
@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Português Europeu)"
|
msgstr "Português Europeu (Português Europeu)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:258
|
#: bookwyrm/settings.py:258
|
||||||
|
msgid "Swedish (Svenska)"
|
||||||
|
msgstr "Sueco (Svenska)"
|
||||||
|
|
||||||
|
#: bookwyrm/settings.py:259
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Chinês simplificado)"
|
msgstr "简体中文 (Chinês simplificado)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:259
|
#: bookwyrm/settings.py:260
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Chinês tradicional)"
|
msgstr "繁體中文 (Chinês tradicional)"
|
||||||
|
|
||||||
|
@ -424,7 +428,7 @@ msgid "Copy address"
|
||||||
msgstr "Copiar endereço"
|
msgstr "Copiar endereço"
|
||||||
|
|
||||||
#: bookwyrm/templates/annual_summary/layout.html:68
|
#: bookwyrm/templates/annual_summary/layout.html:68
|
||||||
#: bookwyrm/templates/lists/list.html:231
|
#: bookwyrm/templates/lists/list.html:269
|
||||||
msgid "Copied!"
|
msgid "Copied!"
|
||||||
msgstr "Copiado!"
|
msgstr "Copiado!"
|
||||||
|
|
||||||
|
@ -689,6 +693,7 @@ msgstr "ISNI:"
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
||||||
#: bookwyrm/templates/groups/form.html:30
|
#: bookwyrm/templates/groups/form.html:30
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:15
|
#: bookwyrm/templates/lists/bookmark_button.html:15
|
||||||
|
#: bookwyrm/templates/lists/edit_item_form.html:15
|
||||||
#: bookwyrm/templates/lists/form.html:130
|
#: bookwyrm/templates/lists/form.html:130
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:124
|
#: bookwyrm/templates/preferences/edit_user.html:124
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
||||||
|
@ -712,6 +717,7 @@ msgstr "Salvar"
|
||||||
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
||||||
#: bookwyrm/templates/book/sync_modal.html:23
|
#: bookwyrm/templates/book/sync_modal.html:23
|
||||||
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:42
|
||||||
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
||||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
||||||
|
@ -816,7 +822,7 @@ msgstr "Lugares"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:348
|
#: bookwyrm/templates/book/book.html:348
|
||||||
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
||||||
#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
|
#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12
|
||||||
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
||||||
#: bookwyrm/templates/search/layout.html:25
|
#: bookwyrm/templates/search/layout.html:25
|
||||||
#: bookwyrm/templates/search/layout.html:50
|
#: bookwyrm/templates/search/layout.html:50
|
||||||
|
@ -830,7 +836,8 @@ msgstr "Adicionar à lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:369
|
#: bookwyrm/templates/book/book.html:369
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:31
|
#: bookwyrm/templates/book/cover_add_modal.html:31
|
||||||
#: bookwyrm/templates/lists/list.html:209
|
#: bookwyrm/templates/lists/add_item_modal.html:37
|
||||||
|
#: bookwyrm/templates/lists/list.html:247
|
||||||
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
||||||
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
|
@ -1551,16 +1558,11 @@ msgstr "Todas as mensagens"
|
||||||
msgid "You have no messages right now."
|
msgid "You have no messages right now."
|
||||||
msgstr "Você não tem mensagens."
|
msgstr "Você não tem mensagens."
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:28
|
#: bookwyrm/templates/feed/feed.html:54
|
||||||
#, python-format
|
|
||||||
msgid "load <span data-poll=\"stream/%(tab_key)s\">0</span> unread status(es)"
|
|
||||||
msgstr "carregar <span data-poll=\"stream/%(tab_key)s\">0</span> publicações não lida(s)"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:51
|
|
||||||
msgid "There aren't any activities right now! Try following a user to get started"
|
msgid "There aren't any activities right now! Try following a user to get started"
|
||||||
msgstr "Não há nenhuma atividade! Tente seguir um usuário para começar"
|
msgstr "Não há nenhuma atividade! Tente seguir um usuário para começar"
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:52
|
#: bookwyrm/templates/feed/feed.html:55
|
||||||
msgid "Alternatively, you can try enabling more status types"
|
msgid "Alternatively, you can try enabling more status types"
|
||||||
msgstr "Uma outra opção é habilitar mais tipos de publicação"
|
msgstr "Uma outra opção é habilitar mais tipos de publicação"
|
||||||
|
|
||||||
|
@ -1649,7 +1651,7 @@ msgid "What are you reading?"
|
||||||
msgstr "O que você está lendo?"
|
msgstr "O que você está lendo?"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:9
|
#: bookwyrm/templates/get_started/books.html:9
|
||||||
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
|
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
|
||||||
msgid "Search for a book"
|
msgid "Search for a book"
|
||||||
msgstr "Pesquisar livro"
|
msgstr "Pesquisar livro"
|
||||||
|
|
||||||
|
@ -1669,7 +1671,7 @@ msgstr "Você pode adicionar livros quando começar a usar o %(site_name)s."
|
||||||
#: bookwyrm/templates/get_started/users.html:19
|
#: bookwyrm/templates/get_started/users.html:19
|
||||||
#: bookwyrm/templates/groups/members.html:15
|
#: bookwyrm/templates/groups/members.html:15
|
||||||
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
||||||
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
|
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
|
||||||
#: bookwyrm/templates/search/layout.html:4
|
#: bookwyrm/templates/search/layout.html:4
|
||||||
#: bookwyrm/templates/search/layout.html:9
|
#: bookwyrm/templates/search/layout.html:9
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
|
@ -1685,7 +1687,7 @@ msgid "Popular on %(site_name)s"
|
||||||
msgstr "Popular em %(site_name)s"
|
msgstr "Popular em %(site_name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:58
|
#: bookwyrm/templates/get_started/books.html:58
|
||||||
#: bookwyrm/templates/lists/list.html:180
|
#: bookwyrm/templates/lists/list.html:222
|
||||||
msgid "No books found"
|
msgid "No books found"
|
||||||
msgstr "Nenhum livro encontrado"
|
msgstr "Nenhum livro encontrado"
|
||||||
|
|
||||||
|
@ -2034,7 +2036,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
|
||||||
msgstr "Aprovar uma sugestão adicionará permanentemente o livro sugerido às suas estantes e associará suas datas de leitura, resenhas e avaliações aos do livro."
|
msgstr "Aprovar uma sugestão adicionará permanentemente o livro sugerido às suas estantes e associará suas datas de leitura, resenhas e avaliações aos do livro."
|
||||||
|
|
||||||
#: bookwyrm/templates/import/manual_review.html:58
|
#: bookwyrm/templates/import/manual_review.html:58
|
||||||
#: bookwyrm/templates/lists/curate.html:59
|
#: bookwyrm/templates/lists/curate.html:71
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr "Aprovar"
|
msgstr "Aprovar"
|
||||||
|
@ -2245,6 +2247,21 @@ msgstr "Apoie a instância %(site_name)s: <a href=\"%(support_link)s\" target=\"
|
||||||
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
msgstr "O código-fonte da BookWyrm está disponível gratuitamente. Você pode contribuir ou reportar problemas no <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgstr "O código-fonte da BookWyrm está disponível gratuitamente. Você pode contribuir ou reportar problemas no <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:8
|
||||||
|
#, python-format
|
||||||
|
msgid "Add \"<em>%(title)s</em>\" to this list"
|
||||||
|
msgstr "Adicionar \"<em>%(title)s</em>\" a esta lista"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:12
|
||||||
|
#, python-format
|
||||||
|
msgid "Suggest \"<em>%(title)s</em>\" for this list"
|
||||||
|
msgstr "Sugerir \"<em>%(title)s</em>\" para esta lista"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:39
|
||||||
|
#: bookwyrm/templates/lists/list.html:249
|
||||||
|
msgid "Suggest"
|
||||||
|
msgstr "Sugerir"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:30
|
#: bookwyrm/templates/lists/bookmark_button.html:30
|
||||||
msgid "Un-save"
|
msgid "Un-save"
|
||||||
msgstr "Restaurar"
|
msgstr "Restaurar"
|
||||||
|
@ -2264,23 +2281,29 @@ msgstr "Criada e organizada por <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgstr "Criada por <a href=\"%(path)s\">%(username)s</a>"
|
msgstr "Criada por <a href=\"%(path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:11
|
#: bookwyrm/templates/lists/curate.html:12
|
||||||
msgid "Curate"
|
msgid "Curate"
|
||||||
msgstr "Moderar"
|
msgstr "Moderar"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:20
|
#: bookwyrm/templates/lists/curate.html:21
|
||||||
msgid "Pending Books"
|
msgid "Pending Books"
|
||||||
msgstr "Livros pendentes"
|
msgstr "Livros pendentes"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:23
|
#: bookwyrm/templates/lists/curate.html:24
|
||||||
msgid "You're all set!"
|
msgid "You're all set!"
|
||||||
msgstr "Tudo pronto!"
|
msgstr "Tudo pronto!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:43
|
#: bookwyrm/templates/lists/curate.html:45
|
||||||
|
#: bookwyrm/templates/lists/list.html:83
|
||||||
|
#, python-format
|
||||||
|
msgid "<a href=\"%(user_path)s\">%(username)s</a> says:"
|
||||||
|
msgstr "<a href=\"%(user_path)s\">%(username)s</a> diz:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/curate.html:55
|
||||||
msgid "Suggested by"
|
msgid "Suggested by"
|
||||||
msgstr "Sugerido por"
|
msgstr "Sugerido por"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:65
|
#: bookwyrm/templates/lists/curate.html:77
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr "Descartar"
|
msgstr "Descartar"
|
||||||
|
|
||||||
|
@ -2304,7 +2327,7 @@ msgid "on <a href=\"/\">%(site_name)s</a>"
|
||||||
msgstr "em <a href=\"/\">%(site_name)s</a>"
|
msgstr "em <a href=\"/\">%(site_name)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/embed-list.html:27
|
#: bookwyrm/templates/lists/embed-list.html:27
|
||||||
#: bookwyrm/templates/lists/list.html:43
|
#: bookwyrm/templates/lists/list.html:44
|
||||||
msgid "This list is currently empty"
|
msgid "This list is currently empty"
|
||||||
msgstr "Esta lista está vazia"
|
msgstr "Esta lista está vazia"
|
||||||
|
|
||||||
|
@ -2365,76 +2388,89 @@ msgstr "Criar grupo"
|
||||||
msgid "Delete list"
|
msgid "Delete list"
|
||||||
msgstr "Excluir lista"
|
msgstr "Excluir lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:35
|
#: bookwyrm/templates/lists/item_notes_field.html:7
|
||||||
|
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
||||||
|
msgid "Notes:"
|
||||||
|
msgstr "Notas:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/item_notes_field.html:19
|
||||||
|
msgid "An optional note that will be displayed with the book."
|
||||||
|
msgstr "Uma anotação opcional será mostrada com o livro."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:36
|
||||||
msgid "You successfully suggested a book for this list!"
|
msgid "You successfully suggested a book for this list!"
|
||||||
msgstr "Você sugeriu um livro para esta lista com sucesso!"
|
msgstr "Você sugeriu um livro para esta lista com sucesso!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:37
|
#: bookwyrm/templates/lists/list.html:38
|
||||||
msgid "You successfully added a book to this list!"
|
msgid "You successfully added a book to this list!"
|
||||||
msgstr "Você adicionou um livro a esta lista com sucesso!"
|
msgstr "Você adicionou um livro a esta lista com sucesso!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:81
|
#: bookwyrm/templates/lists/list.html:96
|
||||||
|
msgid "Edit notes"
|
||||||
|
msgstr "Editar anotações"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:111
|
||||||
|
msgid "Add notes"
|
||||||
|
msgstr "Adicionar anotações"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:123
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
msgstr "Adicionado por <a href=\"%(user_path)s\">%(username)s</a>"
|
msgstr "Adicionado por <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:96
|
#: bookwyrm/templates/lists/list.html:138
|
||||||
msgid "List position"
|
msgid "List position"
|
||||||
msgstr "Posição na lista"
|
msgstr "Posição na lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:102
|
#: bookwyrm/templates/lists/list.html:144
|
||||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
||||||
msgid "Set"
|
msgid "Set"
|
||||||
msgstr "Definir"
|
msgstr "Definir"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:117
|
#: bookwyrm/templates/lists/list.html:159
|
||||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Remover"
|
msgstr "Remover"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:131
|
#: bookwyrm/templates/lists/list.html:173
|
||||||
#: bookwyrm/templates/lists/list.html:148
|
#: bookwyrm/templates/lists/list.html:190
|
||||||
msgid "Sort List"
|
msgid "Sort List"
|
||||||
msgstr "Ordenar lista"
|
msgstr "Ordenar lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:141
|
#: bookwyrm/templates/lists/list.html:183
|
||||||
msgid "Direction"
|
msgid "Direction"
|
||||||
msgstr "Sentido"
|
msgstr "Sentido"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:155
|
#: bookwyrm/templates/lists/list.html:197
|
||||||
msgid "Add Books"
|
msgid "Add Books"
|
||||||
msgstr "Adicionar livros"
|
msgstr "Adicionar livros"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:157
|
#: bookwyrm/templates/lists/list.html:199
|
||||||
msgid "Suggest Books"
|
msgid "Suggest Books"
|
||||||
msgstr "Sugerir livros"
|
msgstr "Sugerir livros"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:168
|
#: bookwyrm/templates/lists/list.html:210
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "pesquisar"
|
msgstr "pesquisar"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:174
|
#: bookwyrm/templates/lists/list.html:216
|
||||||
msgid "Clear search"
|
msgid "Clear search"
|
||||||
msgstr "Limpar pesquisa"
|
msgstr "Limpar pesquisa"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:179
|
#: bookwyrm/templates/lists/list.html:221
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "No books found matching the query \"%(query)s\""
|
msgid "No books found matching the query \"%(query)s\""
|
||||||
msgstr "Nenhum livro encontrado para \"%(query)s\""
|
msgstr "Nenhum livro encontrado para \"%(query)s\""
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:211
|
#: bookwyrm/templates/lists/list.html:260
|
||||||
msgid "Suggest"
|
|
||||||
msgstr "Sugerir"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:222
|
|
||||||
msgid "Embed this list on a website"
|
msgid "Embed this list on a website"
|
||||||
msgstr "Incorpore esta lista em um site"
|
msgstr "Incorpore esta lista em um site"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:230
|
#: bookwyrm/templates/lists/list.html:268
|
||||||
msgid "Copy embed code"
|
msgid "Copy embed code"
|
||||||
msgstr "Copiar código de incorporação"
|
msgstr "Copiar código de incorporação"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:232
|
#: bookwyrm/templates/lists/list.html:270
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
||||||
msgstr "%(list_name)s, uma lista de %(owner)s em %(site_name)s"
|
msgstr "%(list_name)s, uma lista de %(owner)s em %(site_name)s"
|
||||||
|
@ -3222,10 +3258,6 @@ msgstr "Software:"
|
||||||
msgid "Version:"
|
msgid "Version:"
|
||||||
msgstr "Versão:"
|
msgstr "Versão:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
|
||||||
msgid "Notes:"
|
|
||||||
msgstr "Notas:"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance.html:19
|
#: bookwyrm/templates/settings/federation/instance.html:19
|
||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Detalhes"
|
msgstr "Detalhes"
|
||||||
|
@ -4631,3 +4663,10 @@ msgstr "Um link para redefinição da senha foi enviado para {email}"
|
||||||
msgid "Status updates from {obj.display_name}"
|
msgid "Status updates from {obj.display_name}"
|
||||||
msgstr "Novas publicações de {obj.display_name}"
|
msgstr "Novas publicações de {obj.display_name}"
|
||||||
|
|
||||||
|
#: bookwyrm/views/updates.py:45
|
||||||
|
#, python-format
|
||||||
|
msgid "Load %(count)d unread status"
|
||||||
|
msgid_plural "Load %(count)d unread statuses"
|
||||||
|
msgstr[0] "Carregar %(count)d publicação não lida"
|
||||||
|
msgstr[1] "Carregar %(count)d publicações não lidas"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-01-24 17:25+0000\n"
|
"POT-Creation-Date: 2022-01-28 02:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-24 18:54\n"
|
"PO-Revision-Date: 2022-01-28 04:03\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Portuguese\n"
|
"Language-Team: Portuguese\n"
|
||||||
"Language: pt\n"
|
"Language: pt\n"
|
||||||
|
@ -46,33 +46,33 @@ msgstr "{i} utilizações"
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Ilimitado"
|
msgstr "Ilimitado"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:483
|
#: bookwyrm/forms.py:489
|
||||||
msgid "List Order"
|
msgid "List Order"
|
||||||
msgstr "Ordem da Lista"
|
msgstr "Ordem da Lista"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:484
|
#: bookwyrm/forms.py:490
|
||||||
msgid "Book Title"
|
msgid "Book Title"
|
||||||
msgstr "Título do livro"
|
msgstr "Título do livro"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
|
#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
|
||||||
#: bookwyrm/templates/shelf/shelf.html:187
|
#: bookwyrm/templates/shelf/shelf.html:187
|
||||||
#: bookwyrm/templates/snippets/create_status/review.html:32
|
#: bookwyrm/templates/snippets/create_status/review.html:32
|
||||||
msgid "Rating"
|
msgid "Rating"
|
||||||
msgstr "Classificação"
|
msgstr "Classificação"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
|
#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
|
||||||
msgid "Sort By"
|
msgid "Sort By"
|
||||||
msgstr "Ordenar Por"
|
msgstr "Ordenar Por"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:491
|
#: bookwyrm/forms.py:497
|
||||||
msgid "Ascending"
|
msgid "Ascending"
|
||||||
msgstr "Ascendente"
|
msgstr "Ascendente"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:492
|
#: bookwyrm/forms.py:498
|
||||||
msgid "Descending"
|
msgid "Descending"
|
||||||
msgstr "Descendente"
|
msgstr "Descendente"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:505
|
#: bookwyrm/forms.py:511
|
||||||
msgid "Reading finish date cannot be before start date."
|
msgid "Reading finish date cannot be before start date."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português (Português Europeu)"
|
msgstr "Português (Português Europeu)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:258
|
#: bookwyrm/settings.py:258
|
||||||
|
msgid "Swedish (Svenska)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/settings.py:259
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Chinês simplificado)"
|
msgstr "简体中文 (Chinês simplificado)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:259
|
#: bookwyrm/settings.py:260
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Chinês tradicional)"
|
msgstr "繁體中文 (Chinês tradicional)"
|
||||||
|
|
||||||
|
@ -424,7 +428,7 @@ msgid "Copy address"
|
||||||
msgstr "Copiar endereço"
|
msgstr "Copiar endereço"
|
||||||
|
|
||||||
#: bookwyrm/templates/annual_summary/layout.html:68
|
#: bookwyrm/templates/annual_summary/layout.html:68
|
||||||
#: bookwyrm/templates/lists/list.html:231
|
#: bookwyrm/templates/lists/list.html:269
|
||||||
msgid "Copied!"
|
msgid "Copied!"
|
||||||
msgstr "Copiado!"
|
msgstr "Copiado!"
|
||||||
|
|
||||||
|
@ -689,6 +693,7 @@ msgstr "ISNI:"
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
||||||
#: bookwyrm/templates/groups/form.html:30
|
#: bookwyrm/templates/groups/form.html:30
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:15
|
#: bookwyrm/templates/lists/bookmark_button.html:15
|
||||||
|
#: bookwyrm/templates/lists/edit_item_form.html:15
|
||||||
#: bookwyrm/templates/lists/form.html:130
|
#: bookwyrm/templates/lists/form.html:130
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:124
|
#: bookwyrm/templates/preferences/edit_user.html:124
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
||||||
|
@ -712,6 +717,7 @@ msgstr "Salvar"
|
||||||
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
||||||
#: bookwyrm/templates/book/sync_modal.html:23
|
#: bookwyrm/templates/book/sync_modal.html:23
|
||||||
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:42
|
||||||
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
||||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
||||||
|
@ -816,7 +822,7 @@ msgstr "Lugares"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:348
|
#: bookwyrm/templates/book/book.html:348
|
||||||
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
||||||
#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
|
#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12
|
||||||
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
||||||
#: bookwyrm/templates/search/layout.html:25
|
#: bookwyrm/templates/search/layout.html:25
|
||||||
#: bookwyrm/templates/search/layout.html:50
|
#: bookwyrm/templates/search/layout.html:50
|
||||||
|
@ -830,7 +836,8 @@ msgstr "Adicionar à lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:369
|
#: bookwyrm/templates/book/book.html:369
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:31
|
#: bookwyrm/templates/book/cover_add_modal.html:31
|
||||||
#: bookwyrm/templates/lists/list.html:209
|
#: bookwyrm/templates/lists/add_item_modal.html:37
|
||||||
|
#: bookwyrm/templates/lists/list.html:247
|
||||||
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
||||||
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
|
@ -1549,16 +1556,11 @@ msgstr "Todas as mensagens"
|
||||||
msgid "You have no messages right now."
|
msgid "You have no messages right now."
|
||||||
msgstr "Ainda não tem mensagens."
|
msgstr "Ainda não tem mensagens."
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:28
|
#: bookwyrm/templates/feed/feed.html:54
|
||||||
#, python-format
|
|
||||||
msgid "load <span data-poll=\"stream/%(tab_key)s\">0</span> unread status(es)"
|
|
||||||
msgstr "carregar <span data-poll=\"stream/%(tab_key)s\">0</span> estado(s) não lido(s)"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:51
|
|
||||||
msgid "There aren't any activities right now! Try following a user to get started"
|
msgid "There aren't any activities right now! Try following a user to get started"
|
||||||
msgstr "Não existem atividades agora! Experimenta seguir um utilizador para começar"
|
msgstr "Não existem atividades agora! Experimenta seguir um utilizador para começar"
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:52
|
#: bookwyrm/templates/feed/feed.html:55
|
||||||
msgid "Alternatively, you can try enabling more status types"
|
msgid "Alternatively, you can try enabling more status types"
|
||||||
msgstr "Alternativamente, podes tentar ativar mais tipos de estado"
|
msgstr "Alternativamente, podes tentar ativar mais tipos de estado"
|
||||||
|
|
||||||
|
@ -1647,7 +1649,7 @@ msgid "What are you reading?"
|
||||||
msgstr "O que andas a ler?"
|
msgstr "O que andas a ler?"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:9
|
#: bookwyrm/templates/get_started/books.html:9
|
||||||
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
|
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
|
||||||
msgid "Search for a book"
|
msgid "Search for a book"
|
||||||
msgstr "Pesquisar por um livro"
|
msgstr "Pesquisar por um livro"
|
||||||
|
|
||||||
|
@ -1667,7 +1669,7 @@ msgstr "Podes adicionar livros quando começas a usar %(site_name)s."
|
||||||
#: bookwyrm/templates/get_started/users.html:19
|
#: bookwyrm/templates/get_started/users.html:19
|
||||||
#: bookwyrm/templates/groups/members.html:15
|
#: bookwyrm/templates/groups/members.html:15
|
||||||
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
||||||
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
|
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
|
||||||
#: bookwyrm/templates/search/layout.html:4
|
#: bookwyrm/templates/search/layout.html:4
|
||||||
#: bookwyrm/templates/search/layout.html:9
|
#: bookwyrm/templates/search/layout.html:9
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
|
@ -1683,7 +1685,7 @@ msgid "Popular on %(site_name)s"
|
||||||
msgstr "Populares em %(site_name)s"
|
msgstr "Populares em %(site_name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:58
|
#: bookwyrm/templates/get_started/books.html:58
|
||||||
#: bookwyrm/templates/lists/list.html:180
|
#: bookwyrm/templates/lists/list.html:222
|
||||||
msgid "No books found"
|
msgid "No books found"
|
||||||
msgstr "Nenhum livro encontrado"
|
msgstr "Nenhum livro encontrado"
|
||||||
|
|
||||||
|
@ -2032,7 +2034,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
|
||||||
msgstr "Aprovar uma sugestão adicionará permanentemente o livro sugerido às tuas prateleiras e associará as tuas datas de leitura, análises, avaliações e criticas a esse livro."
|
msgstr "Aprovar uma sugestão adicionará permanentemente o livro sugerido às tuas prateleiras e associará as tuas datas de leitura, análises, avaliações e criticas a esse livro."
|
||||||
|
|
||||||
#: bookwyrm/templates/import/manual_review.html:58
|
#: bookwyrm/templates/import/manual_review.html:58
|
||||||
#: bookwyrm/templates/lists/curate.html:59
|
#: bookwyrm/templates/lists/curate.html:71
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr "Aprovar"
|
msgstr "Aprovar"
|
||||||
|
@ -2243,6 +2245,21 @@ msgstr "Apoia %(site_name)s em <a href=\"%(support_link)s\" target=\"_blank\">%(
|
||||||
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
msgstr "O código de fonte do BookWyrm está disponível gratuitamente. E também podes contribuir ou reportar problemas no <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgstr "O código de fonte do BookWyrm está disponível gratuitamente. E também podes contribuir ou reportar problemas no <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:8
|
||||||
|
#, python-format
|
||||||
|
msgid "Add \"<em>%(title)s</em>\" to this list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:12
|
||||||
|
#, python-format
|
||||||
|
msgid "Suggest \"<em>%(title)s</em>\" for this list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:39
|
||||||
|
#: bookwyrm/templates/lists/list.html:249
|
||||||
|
msgid "Suggest"
|
||||||
|
msgstr "Sugerir"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:30
|
#: bookwyrm/templates/lists/bookmark_button.html:30
|
||||||
msgid "Un-save"
|
msgid "Un-save"
|
||||||
msgstr "Des-gravar"
|
msgstr "Des-gravar"
|
||||||
|
@ -2262,23 +2279,29 @@ msgstr "Criado e curado por <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgstr "Criado por <a href=\"%(path)s\">%(username)s</a>"
|
msgstr "Criado por <a href=\"%(path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:11
|
#: bookwyrm/templates/lists/curate.html:12
|
||||||
msgid "Curate"
|
msgid "Curate"
|
||||||
msgstr "Administrar"
|
msgstr "Administrar"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:20
|
#: bookwyrm/templates/lists/curate.html:21
|
||||||
msgid "Pending Books"
|
msgid "Pending Books"
|
||||||
msgstr "Livros pendentes"
|
msgstr "Livros pendentes"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:23
|
#: bookwyrm/templates/lists/curate.html:24
|
||||||
msgid "You're all set!"
|
msgid "You're all set!"
|
||||||
msgstr "Está tudo pronto!"
|
msgstr "Está tudo pronto!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:43
|
#: bookwyrm/templates/lists/curate.html:45
|
||||||
|
#: bookwyrm/templates/lists/list.html:83
|
||||||
|
#, python-format
|
||||||
|
msgid "<a href=\"%(user_path)s\">%(username)s</a> says:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/curate.html:55
|
||||||
msgid "Suggested by"
|
msgid "Suggested by"
|
||||||
msgstr "Sugerido por"
|
msgstr "Sugerido por"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:65
|
#: bookwyrm/templates/lists/curate.html:77
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr "Descartar"
|
msgstr "Descartar"
|
||||||
|
|
||||||
|
@ -2302,7 +2325,7 @@ msgid "on <a href=\"/\">%(site_name)s</a>"
|
||||||
msgstr "em <a href=\"/\">%(site_name)s</a>"
|
msgstr "em <a href=\"/\">%(site_name)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/embed-list.html:27
|
#: bookwyrm/templates/lists/embed-list.html:27
|
||||||
#: bookwyrm/templates/lists/list.html:43
|
#: bookwyrm/templates/lists/list.html:44
|
||||||
msgid "This list is currently empty"
|
msgid "This list is currently empty"
|
||||||
msgstr "Esta lista está vazia"
|
msgstr "Esta lista está vazia"
|
||||||
|
|
||||||
|
@ -2363,76 +2386,89 @@ msgstr "Criar um Grupo"
|
||||||
msgid "Delete list"
|
msgid "Delete list"
|
||||||
msgstr "Apagar lista"
|
msgstr "Apagar lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:35
|
#: bookwyrm/templates/lists/item_notes_field.html:7
|
||||||
|
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
||||||
|
msgid "Notes:"
|
||||||
|
msgstr "Notas:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/item_notes_field.html:19
|
||||||
|
msgid "An optional note that will be displayed with the book."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:36
|
||||||
msgid "You successfully suggested a book for this list!"
|
msgid "You successfully suggested a book for this list!"
|
||||||
msgstr "Sugeriste um livro para esta lista com sucesso!"
|
msgstr "Sugeriste um livro para esta lista com sucesso!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:37
|
#: bookwyrm/templates/lists/list.html:38
|
||||||
msgid "You successfully added a book to this list!"
|
msgid "You successfully added a book to this list!"
|
||||||
msgstr "Adicionaste um livro a esta lista com sucesso!"
|
msgstr "Adicionaste um livro a esta lista com sucesso!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:81
|
#: bookwyrm/templates/lists/list.html:96
|
||||||
|
msgid "Edit notes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:111
|
||||||
|
msgid "Add notes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:123
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
msgstr "Adicionado por <a href=\"%(user_path)s\">%(username)s</a>"
|
msgstr "Adicionado por <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:96
|
#: bookwyrm/templates/lists/list.html:138
|
||||||
msgid "List position"
|
msgid "List position"
|
||||||
msgstr "Posição da lista"
|
msgstr "Posição da lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:102
|
#: bookwyrm/templates/lists/list.html:144
|
||||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
||||||
msgid "Set"
|
msgid "Set"
|
||||||
msgstr "Definir"
|
msgstr "Definir"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:117
|
#: bookwyrm/templates/lists/list.html:159
|
||||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Remover"
|
msgstr "Remover"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:131
|
#: bookwyrm/templates/lists/list.html:173
|
||||||
#: bookwyrm/templates/lists/list.html:148
|
#: bookwyrm/templates/lists/list.html:190
|
||||||
msgid "Sort List"
|
msgid "Sort List"
|
||||||
msgstr "Ordenar lista"
|
msgstr "Ordenar lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:141
|
#: bookwyrm/templates/lists/list.html:183
|
||||||
msgid "Direction"
|
msgid "Direction"
|
||||||
msgstr "Direcção"
|
msgstr "Direcção"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:155
|
#: bookwyrm/templates/lists/list.html:197
|
||||||
msgid "Add Books"
|
msgid "Add Books"
|
||||||
msgstr "Adicionar Livros"
|
msgstr "Adicionar Livros"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:157
|
#: bookwyrm/templates/lists/list.html:199
|
||||||
msgid "Suggest Books"
|
msgid "Suggest Books"
|
||||||
msgstr "Sugerir Livros"
|
msgstr "Sugerir Livros"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:168
|
#: bookwyrm/templates/lists/list.html:210
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "pesquisar"
|
msgstr "pesquisar"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:174
|
#: bookwyrm/templates/lists/list.html:216
|
||||||
msgid "Clear search"
|
msgid "Clear search"
|
||||||
msgstr "Limpar Pesquisa"
|
msgstr "Limpar Pesquisa"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:179
|
#: bookwyrm/templates/lists/list.html:221
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "No books found matching the query \"%(query)s\""
|
msgid "No books found matching the query \"%(query)s\""
|
||||||
msgstr "Nenhum livro encontrado que corresponda à consulta \"%(query)s\""
|
msgstr "Nenhum livro encontrado que corresponda à consulta \"%(query)s\""
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:211
|
#: bookwyrm/templates/lists/list.html:260
|
||||||
msgid "Suggest"
|
|
||||||
msgstr "Sugerir"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:222
|
|
||||||
msgid "Embed this list on a website"
|
msgid "Embed this list on a website"
|
||||||
msgstr "Incorporar esta lista num website"
|
msgstr "Incorporar esta lista num website"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:230
|
#: bookwyrm/templates/lists/list.html:268
|
||||||
msgid "Copy embed code"
|
msgid "Copy embed code"
|
||||||
msgstr "Copiar código de incorporação"
|
msgstr "Copiar código de incorporação"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:232
|
#: bookwyrm/templates/lists/list.html:270
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
||||||
msgstr "%(list_name)s, uma lista de %(owner)s no %(site_name)s"
|
msgstr "%(list_name)s, uma lista de %(owner)s no %(site_name)s"
|
||||||
|
@ -3220,10 +3256,6 @@ msgstr "Software:"
|
||||||
msgid "Version:"
|
msgid "Version:"
|
||||||
msgstr "Versão:"
|
msgstr "Versão:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
|
||||||
msgid "Notes:"
|
|
||||||
msgstr "Notas:"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance.html:19
|
#: bookwyrm/templates/settings/federation/instance.html:19
|
||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Detalhes"
|
msgstr "Detalhes"
|
||||||
|
@ -4629,3 +4661,10 @@ msgstr "Um link para redefinir a palavra-passe foi enviado para este {email}"
|
||||||
msgid "Status updates from {obj.display_name}"
|
msgid "Status updates from {obj.display_name}"
|
||||||
msgstr "Actualização de estado fornecido por {obj.display_name}"
|
msgstr "Actualização de estado fornecido por {obj.display_name}"
|
||||||
|
|
||||||
|
#: bookwyrm/views/updates.py:45
|
||||||
|
#, python-format
|
||||||
|
msgid "Load %(count)d unread status"
|
||||||
|
msgid_plural "Load %(count)d unread statuses"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-01-24 17:25+0000\n"
|
"POT-Creation-Date: 2022-01-28 02:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-27 17:00\n"
|
"PO-Revision-Date: 2022-01-28 04:03\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Swedish\n"
|
"Language-Team: Swedish\n"
|
||||||
"Language: sv\n"
|
"Language: sv\n"
|
||||||
|
@ -46,33 +46,33 @@ msgstr "{i} använder"
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "Obegränsad"
|
msgstr "Obegränsad"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:483
|
#: bookwyrm/forms.py:489
|
||||||
msgid "List Order"
|
msgid "List Order"
|
||||||
msgstr "Listordning"
|
msgstr "Listordning"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:484
|
#: bookwyrm/forms.py:490
|
||||||
msgid "Book Title"
|
msgid "Book Title"
|
||||||
msgstr "Bokens titel"
|
msgstr "Bokens titel"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
|
#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
|
||||||
#: bookwyrm/templates/shelf/shelf.html:187
|
#: bookwyrm/templates/shelf/shelf.html:187
|
||||||
#: bookwyrm/templates/snippets/create_status/review.html:32
|
#: bookwyrm/templates/snippets/create_status/review.html:32
|
||||||
msgid "Rating"
|
msgid "Rating"
|
||||||
msgstr "Betyg"
|
msgstr "Betyg"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
|
#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
|
||||||
msgid "Sort By"
|
msgid "Sort By"
|
||||||
msgstr "Sortera efter"
|
msgstr "Sortera efter"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:491
|
#: bookwyrm/forms.py:497
|
||||||
msgid "Ascending"
|
msgid "Ascending"
|
||||||
msgstr "Stigande"
|
msgstr "Stigande"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:492
|
#: bookwyrm/forms.py:498
|
||||||
msgid "Descending"
|
msgid "Descending"
|
||||||
msgstr "Fallande"
|
msgstr "Fallande"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:505
|
#: bookwyrm/forms.py:511
|
||||||
msgid "Reading finish date cannot be before start date."
|
msgid "Reading finish date cannot be before start date."
|
||||||
msgstr "Slutdatum för läsning kan inte vara före startdatum."
|
msgstr "Slutdatum för läsning kan inte vara före startdatum."
|
||||||
|
|
||||||
|
@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr "Português Europeu (Europeisk Portugisiska)"
|
msgstr "Português Europeu (Europeisk Portugisiska)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:258
|
#: bookwyrm/settings.py:258
|
||||||
|
msgid "Swedish (Svenska)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/settings.py:259
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文 (Förenklad Kinesiska)"
|
msgstr "简体中文 (Förenklad Kinesiska)"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:259
|
#: bookwyrm/settings.py:260
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文 (Traditionell Kinesiska)"
|
msgstr "繁體中文 (Traditionell Kinesiska)"
|
||||||
|
|
||||||
|
@ -424,7 +428,7 @@ msgid "Copy address"
|
||||||
msgstr "Kopiera adress"
|
msgstr "Kopiera adress"
|
||||||
|
|
||||||
#: bookwyrm/templates/annual_summary/layout.html:68
|
#: bookwyrm/templates/annual_summary/layout.html:68
|
||||||
#: bookwyrm/templates/lists/list.html:231
|
#: bookwyrm/templates/lists/list.html:269
|
||||||
msgid "Copied!"
|
msgid "Copied!"
|
||||||
msgstr "Kopierades!"
|
msgstr "Kopierades!"
|
||||||
|
|
||||||
|
@ -689,6 +693,7 @@ msgstr "ISNI:"
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
||||||
#: bookwyrm/templates/groups/form.html:30
|
#: bookwyrm/templates/groups/form.html:30
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:15
|
#: bookwyrm/templates/lists/bookmark_button.html:15
|
||||||
|
#: bookwyrm/templates/lists/edit_item_form.html:15
|
||||||
#: bookwyrm/templates/lists/form.html:130
|
#: bookwyrm/templates/lists/form.html:130
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:124
|
#: bookwyrm/templates/preferences/edit_user.html:124
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
||||||
|
@ -712,6 +717,7 @@ msgstr "Spara"
|
||||||
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
||||||
#: bookwyrm/templates/book/sync_modal.html:23
|
#: bookwyrm/templates/book/sync_modal.html:23
|
||||||
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:42
|
||||||
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
||||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
||||||
|
@ -816,7 +822,7 @@ msgstr "Platser"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:348
|
#: bookwyrm/templates/book/book.html:348
|
||||||
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
||||||
#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
|
#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12
|
||||||
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
||||||
#: bookwyrm/templates/search/layout.html:25
|
#: bookwyrm/templates/search/layout.html:25
|
||||||
#: bookwyrm/templates/search/layout.html:50
|
#: bookwyrm/templates/search/layout.html:50
|
||||||
|
@ -830,7 +836,8 @@ msgstr "Lägg till i listan"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:369
|
#: bookwyrm/templates/book/book.html:369
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:31
|
#: bookwyrm/templates/book/cover_add_modal.html:31
|
||||||
#: bookwyrm/templates/lists/list.html:209
|
#: bookwyrm/templates/lists/add_item_modal.html:37
|
||||||
|
#: bookwyrm/templates/lists/list.html:247
|
||||||
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
||||||
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
|
@ -1551,16 +1558,11 @@ msgstr "Alla meddelanden"
|
||||||
msgid "You have no messages right now."
|
msgid "You have no messages right now."
|
||||||
msgstr "Du har inga meddelanden just nu."
|
msgstr "Du har inga meddelanden just nu."
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:28
|
#: bookwyrm/templates/feed/feed.html:54
|
||||||
#, python-format
|
|
||||||
msgid "load <span data-poll=\"stream/%(tab_key)s\">0</span> unread status(es)"
|
|
||||||
msgstr "ladda <span data-poll=\"stream/%(tab_key)s\">0</span> olästa status(ar)"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:51
|
|
||||||
msgid "There aren't any activities right now! Try following a user to get started"
|
msgid "There aren't any activities right now! Try following a user to get started"
|
||||||
msgstr "Det finns inga aktiviteter just nu! Försök att följa en användare för att komma igång"
|
msgstr "Det finns inga aktiviteter just nu! Försök att följa en användare för att komma igång"
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:52
|
#: bookwyrm/templates/feed/feed.html:55
|
||||||
msgid "Alternatively, you can try enabling more status types"
|
msgid "Alternatively, you can try enabling more status types"
|
||||||
msgstr "Alternativt så kan du prova att aktivera fler status-typer"
|
msgstr "Alternativt så kan du prova att aktivera fler status-typer"
|
||||||
|
|
||||||
|
@ -1649,7 +1651,7 @@ msgid "What are you reading?"
|
||||||
msgstr "Vad läser du?"
|
msgstr "Vad läser du?"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:9
|
#: bookwyrm/templates/get_started/books.html:9
|
||||||
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
|
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
|
||||||
msgid "Search for a book"
|
msgid "Search for a book"
|
||||||
msgstr "Sök efter en bok"
|
msgstr "Sök efter en bok"
|
||||||
|
|
||||||
|
@ -1669,7 +1671,7 @@ msgstr "Du kan lägga till böcker när du börjar använda %(site_name)s."
|
||||||
#: bookwyrm/templates/get_started/users.html:19
|
#: bookwyrm/templates/get_started/users.html:19
|
||||||
#: bookwyrm/templates/groups/members.html:15
|
#: bookwyrm/templates/groups/members.html:15
|
||||||
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
||||||
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
|
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
|
||||||
#: bookwyrm/templates/search/layout.html:4
|
#: bookwyrm/templates/search/layout.html:4
|
||||||
#: bookwyrm/templates/search/layout.html:9
|
#: bookwyrm/templates/search/layout.html:9
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
|
@ -1685,7 +1687,7 @@ msgid "Popular on %(site_name)s"
|
||||||
msgstr "Populära i %(site_name)s"
|
msgstr "Populära i %(site_name)s"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:58
|
#: bookwyrm/templates/get_started/books.html:58
|
||||||
#: bookwyrm/templates/lists/list.html:180
|
#: bookwyrm/templates/lists/list.html:222
|
||||||
msgid "No books found"
|
msgid "No books found"
|
||||||
msgstr "Inga böcker hittades"
|
msgstr "Inga böcker hittades"
|
||||||
|
|
||||||
|
@ -2034,7 +2036,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
|
||||||
msgstr "Godkännandet av ett förslag kommer permanent lägga till den föreslagna boken till dina hyllor och associera dina läsdatum, recensioner och betyg med den boken."
|
msgstr "Godkännandet av ett förslag kommer permanent lägga till den föreslagna boken till dina hyllor och associera dina läsdatum, recensioner och betyg med den boken."
|
||||||
|
|
||||||
#: bookwyrm/templates/import/manual_review.html:58
|
#: bookwyrm/templates/import/manual_review.html:58
|
||||||
#: bookwyrm/templates/lists/curate.html:59
|
#: bookwyrm/templates/lists/curate.html:71
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr "Godkänn"
|
msgstr "Godkänn"
|
||||||
|
@ -2245,6 +2247,21 @@ msgstr "Stötta %(site_name)s på <a href=\"%(support_link)s\" target=\"_blank\"
|
||||||
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
msgstr "BookWyrm's källkod är fritt tillgängligt. Du kan bidra eller rapportera problem på <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgstr "BookWyrm's källkod är fritt tillgängligt. Du kan bidra eller rapportera problem på <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:8
|
||||||
|
#, python-format
|
||||||
|
msgid "Add \"<em>%(title)s</em>\" to this list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:12
|
||||||
|
#, python-format
|
||||||
|
msgid "Suggest \"<em>%(title)s</em>\" for this list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:39
|
||||||
|
#: bookwyrm/templates/lists/list.html:249
|
||||||
|
msgid "Suggest"
|
||||||
|
msgstr "Föreslå"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:30
|
#: bookwyrm/templates/lists/bookmark_button.html:30
|
||||||
msgid "Un-save"
|
msgid "Un-save"
|
||||||
msgstr "Ta bort sparning"
|
msgstr "Ta bort sparning"
|
||||||
|
@ -2264,23 +2281,29 @@ msgstr "Skapades och kurerades av <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgstr "Skapades av <a href=\"%(path)s\">%(username)s</a>"
|
msgstr "Skapades av <a href=\"%(path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:11
|
#: bookwyrm/templates/lists/curate.html:12
|
||||||
msgid "Curate"
|
msgid "Curate"
|
||||||
msgstr "Kurera"
|
msgstr "Kurera"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:20
|
#: bookwyrm/templates/lists/curate.html:21
|
||||||
msgid "Pending Books"
|
msgid "Pending Books"
|
||||||
msgstr "Böcker som väntar"
|
msgstr "Böcker som väntar"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:23
|
#: bookwyrm/templates/lists/curate.html:24
|
||||||
msgid "You're all set!"
|
msgid "You're all set!"
|
||||||
msgstr "Nu är du klar!"
|
msgstr "Nu är du klar!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:43
|
#: bookwyrm/templates/lists/curate.html:45
|
||||||
|
#: bookwyrm/templates/lists/list.html:83
|
||||||
|
#, python-format
|
||||||
|
msgid "<a href=\"%(user_path)s\">%(username)s</a> says:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/curate.html:55
|
||||||
msgid "Suggested by"
|
msgid "Suggested by"
|
||||||
msgstr "Föreslogs av"
|
msgstr "Föreslogs av"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:65
|
#: bookwyrm/templates/lists/curate.html:77
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr "Kassera"
|
msgstr "Kassera"
|
||||||
|
|
||||||
|
@ -2304,7 +2327,7 @@ msgid "on <a href=\"/\">%(site_name)s</a>"
|
||||||
msgstr "på <a href=\"/\">%(site_name)s</a>"
|
msgstr "på <a href=\"/\">%(site_name)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/embed-list.html:27
|
#: bookwyrm/templates/lists/embed-list.html:27
|
||||||
#: bookwyrm/templates/lists/list.html:43
|
#: bookwyrm/templates/lists/list.html:44
|
||||||
msgid "This list is currently empty"
|
msgid "This list is currently empty"
|
||||||
msgstr "Den här listan är för närvarande tom"
|
msgstr "Den här listan är för närvarande tom"
|
||||||
|
|
||||||
|
@ -2365,76 +2388,89 @@ msgstr "Skapa en grupp"
|
||||||
msgid "Delete list"
|
msgid "Delete list"
|
||||||
msgstr "Ta bort lista"
|
msgstr "Ta bort lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:35
|
#: bookwyrm/templates/lists/item_notes_field.html:7
|
||||||
|
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
||||||
|
msgid "Notes:"
|
||||||
|
msgstr "Anteckningar:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/item_notes_field.html:19
|
||||||
|
msgid "An optional note that will be displayed with the book."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:36
|
||||||
msgid "You successfully suggested a book for this list!"
|
msgid "You successfully suggested a book for this list!"
|
||||||
msgstr "Du föreslog framgångsrikt en bok för den här listan!"
|
msgstr "Du föreslog framgångsrikt en bok för den här listan!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:37
|
#: bookwyrm/templates/lists/list.html:38
|
||||||
msgid "You successfully added a book to this list!"
|
msgid "You successfully added a book to this list!"
|
||||||
msgstr "Du lade framgångsrikt till en bok i här listan!"
|
msgstr "Du lade framgångsrikt till en bok i här listan!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:81
|
#: bookwyrm/templates/lists/list.html:96
|
||||||
|
msgid "Edit notes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:111
|
||||||
|
msgid "Add notes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:123
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
msgstr "Lades till av <a href=\"%(user_path)s\">%(username)s</a>"
|
msgstr "Lades till av <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:96
|
#: bookwyrm/templates/lists/list.html:138
|
||||||
msgid "List position"
|
msgid "List position"
|
||||||
msgstr "Listans plats"
|
msgstr "Listans plats"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:102
|
#: bookwyrm/templates/lists/list.html:144
|
||||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
||||||
msgid "Set"
|
msgid "Set"
|
||||||
msgstr "Ställ in"
|
msgstr "Ställ in"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:117
|
#: bookwyrm/templates/lists/list.html:159
|
||||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Ta bort"
|
msgstr "Ta bort"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:131
|
#: bookwyrm/templates/lists/list.html:173
|
||||||
#: bookwyrm/templates/lists/list.html:148
|
#: bookwyrm/templates/lists/list.html:190
|
||||||
msgid "Sort List"
|
msgid "Sort List"
|
||||||
msgstr "Sortera lista"
|
msgstr "Sortera lista"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:141
|
#: bookwyrm/templates/lists/list.html:183
|
||||||
msgid "Direction"
|
msgid "Direction"
|
||||||
msgstr "Riktning"
|
msgstr "Riktning"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:155
|
#: bookwyrm/templates/lists/list.html:197
|
||||||
msgid "Add Books"
|
msgid "Add Books"
|
||||||
msgstr "Lägg till böcker"
|
msgstr "Lägg till böcker"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:157
|
#: bookwyrm/templates/lists/list.html:199
|
||||||
msgid "Suggest Books"
|
msgid "Suggest Books"
|
||||||
msgstr "Föreslå böcker"
|
msgstr "Föreslå böcker"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:168
|
#: bookwyrm/templates/lists/list.html:210
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "sök"
|
msgstr "sök"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:174
|
#: bookwyrm/templates/lists/list.html:216
|
||||||
msgid "Clear search"
|
msgid "Clear search"
|
||||||
msgstr "Rensa sökning"
|
msgstr "Rensa sökning"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:179
|
#: bookwyrm/templates/lists/list.html:221
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "No books found matching the query \"%(query)s\""
|
msgid "No books found matching the query \"%(query)s\""
|
||||||
msgstr "Inga böcker hittades som matchar frågan \"%(query)s\""
|
msgstr "Inga böcker hittades som matchar frågan \"%(query)s\""
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:211
|
#: bookwyrm/templates/lists/list.html:260
|
||||||
msgid "Suggest"
|
|
||||||
msgstr "Föreslå"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:222
|
|
||||||
msgid "Embed this list on a website"
|
msgid "Embed this list on a website"
|
||||||
msgstr "Bädda in den här listan på en hemsida"
|
msgstr "Bädda in den här listan på en hemsida"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:230
|
#: bookwyrm/templates/lists/list.html:268
|
||||||
msgid "Copy embed code"
|
msgid "Copy embed code"
|
||||||
msgstr "Kopiera inbäddad kod"
|
msgstr "Kopiera inbäddad kod"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:232
|
#: bookwyrm/templates/lists/list.html:270
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
||||||
msgstr "%(list_name)s, en lista av %(owner)s på %(site_name)s"
|
msgstr "%(list_name)s, en lista av %(owner)s på %(site_name)s"
|
||||||
|
@ -3222,10 +3258,6 @@ msgstr "Programvara:"
|
||||||
msgid "Version:"
|
msgid "Version:"
|
||||||
msgstr "Version:"
|
msgstr "Version:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
|
||||||
msgid "Notes:"
|
|
||||||
msgstr "Anteckningar:"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance.html:19
|
#: bookwyrm/templates/settings/federation/instance.html:19
|
||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "Detaljer"
|
msgstr "Detaljer"
|
||||||
|
@ -4631,3 +4663,10 @@ msgstr "En länk för återställning av lösenordet har skickats till {email}"
|
||||||
msgid "Status updates from {obj.display_name}"
|
msgid "Status updates from {obj.display_name}"
|
||||||
msgstr "Status-uppdateringar från {obj.display_name}"
|
msgstr "Status-uppdateringar från {obj.display_name}"
|
||||||
|
|
||||||
|
#: bookwyrm/views/updates.py:45
|
||||||
|
#, python-format
|
||||||
|
msgid "Load %(count)d unread status"
|
||||||
|
msgid_plural "Load %(count)d unread statuses"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-01-24 17:25+0000\n"
|
"POT-Creation-Date: 2022-01-28 02:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-24 18:54\n"
|
"PO-Revision-Date: 2022-01-28 04:03\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Chinese Simplified\n"
|
"Language-Team: Chinese Simplified\n"
|
||||||
"Language: zh\n"
|
"Language: zh\n"
|
||||||
|
@ -46,33 +46,33 @@ msgstr "{i} 次使用"
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "不受限"
|
msgstr "不受限"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:483
|
#: bookwyrm/forms.py:489
|
||||||
msgid "List Order"
|
msgid "List Order"
|
||||||
msgstr "列表顺序"
|
msgstr "列表顺序"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:484
|
#: bookwyrm/forms.py:490
|
||||||
msgid "Book Title"
|
msgid "Book Title"
|
||||||
msgstr "书名"
|
msgstr "书名"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
|
#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
|
||||||
#: bookwyrm/templates/shelf/shelf.html:187
|
#: bookwyrm/templates/shelf/shelf.html:187
|
||||||
#: bookwyrm/templates/snippets/create_status/review.html:32
|
#: bookwyrm/templates/snippets/create_status/review.html:32
|
||||||
msgid "Rating"
|
msgid "Rating"
|
||||||
msgstr "评价"
|
msgstr "评价"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
|
#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
|
||||||
msgid "Sort By"
|
msgid "Sort By"
|
||||||
msgstr "排序方式"
|
msgstr "排序方式"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:491
|
#: bookwyrm/forms.py:497
|
||||||
msgid "Ascending"
|
msgid "Ascending"
|
||||||
msgstr "升序"
|
msgstr "升序"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:492
|
#: bookwyrm/forms.py:498
|
||||||
msgid "Descending"
|
msgid "Descending"
|
||||||
msgstr "降序"
|
msgstr "降序"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:505
|
#: bookwyrm/forms.py:511
|
||||||
msgid "Reading finish date cannot be before start date."
|
msgid "Reading finish date cannot be before start date."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/settings.py:258
|
#: bookwyrm/settings.py:258
|
||||||
|
msgid "Swedish (Svenska)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/settings.py:259
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "简体中文"
|
msgstr "简体中文"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:259
|
#: bookwyrm/settings.py:260
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文(繁体中文)"
|
msgstr "繁體中文(繁体中文)"
|
||||||
|
|
||||||
|
@ -424,7 +428,7 @@ msgid "Copy address"
|
||||||
msgstr "复制地址"
|
msgstr "复制地址"
|
||||||
|
|
||||||
#: bookwyrm/templates/annual_summary/layout.html:68
|
#: bookwyrm/templates/annual_summary/layout.html:68
|
||||||
#: bookwyrm/templates/lists/list.html:231
|
#: bookwyrm/templates/lists/list.html:269
|
||||||
msgid "Copied!"
|
msgid "Copied!"
|
||||||
msgstr "复制成功!"
|
msgstr "复制成功!"
|
||||||
|
|
||||||
|
@ -685,6 +689,7 @@ msgstr "ISNI:"
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
||||||
#: bookwyrm/templates/groups/form.html:30
|
#: bookwyrm/templates/groups/form.html:30
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:15
|
#: bookwyrm/templates/lists/bookmark_button.html:15
|
||||||
|
#: bookwyrm/templates/lists/edit_item_form.html:15
|
||||||
#: bookwyrm/templates/lists/form.html:130
|
#: bookwyrm/templates/lists/form.html:130
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:124
|
#: bookwyrm/templates/preferences/edit_user.html:124
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
||||||
|
@ -708,6 +713,7 @@ msgstr "保存"
|
||||||
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
||||||
#: bookwyrm/templates/book/sync_modal.html:23
|
#: bookwyrm/templates/book/sync_modal.html:23
|
||||||
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:42
|
||||||
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
||||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
||||||
|
@ -811,7 +817,7 @@ msgstr "地点"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:348
|
#: bookwyrm/templates/book/book.html:348
|
||||||
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
||||||
#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
|
#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12
|
||||||
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
||||||
#: bookwyrm/templates/search/layout.html:25
|
#: bookwyrm/templates/search/layout.html:25
|
||||||
#: bookwyrm/templates/search/layout.html:50
|
#: bookwyrm/templates/search/layout.html:50
|
||||||
|
@ -825,7 +831,8 @@ msgstr "添加到列表"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:369
|
#: bookwyrm/templates/book/book.html:369
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:31
|
#: bookwyrm/templates/book/cover_add_modal.html:31
|
||||||
#: bookwyrm/templates/lists/list.html:209
|
#: bookwyrm/templates/lists/add_item_modal.html:37
|
||||||
|
#: bookwyrm/templates/lists/list.html:247
|
||||||
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
||||||
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
|
@ -1542,16 +1549,11 @@ msgstr "所有消息"
|
||||||
msgid "You have no messages right now."
|
msgid "You have no messages right now."
|
||||||
msgstr "你现在没有消息。"
|
msgstr "你现在没有消息。"
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:28
|
#: bookwyrm/templates/feed/feed.html:54
|
||||||
#, python-format
|
|
||||||
msgid "load <span data-poll=\"stream/%(tab_key)s\">0</span> unread status(es)"
|
|
||||||
msgstr "加载 <span data-poll=\"stream/%(tab_key)s\">0</span> 条未读状态"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:51
|
|
||||||
msgid "There aren't any activities right now! Try following a user to get started"
|
msgid "There aren't any activities right now! Try following a user to get started"
|
||||||
msgstr "现在还没有任何活动!尝试从关注一个用户开始吧"
|
msgstr "现在还没有任何活动!尝试从关注一个用户开始吧"
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:52
|
#: bookwyrm/templates/feed/feed.html:55
|
||||||
msgid "Alternatively, you can try enabling more status types"
|
msgid "Alternatively, you can try enabling more status types"
|
||||||
msgstr "或者,您可以尝试启用更多的状态种类"
|
msgstr "或者,您可以尝试启用更多的状态种类"
|
||||||
|
|
||||||
|
@ -1640,7 +1642,7 @@ msgid "What are you reading?"
|
||||||
msgstr "你在阅读什么?"
|
msgstr "你在阅读什么?"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:9
|
#: bookwyrm/templates/get_started/books.html:9
|
||||||
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
|
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
|
||||||
msgid "Search for a book"
|
msgid "Search for a book"
|
||||||
msgstr "搜索书目"
|
msgstr "搜索书目"
|
||||||
|
|
||||||
|
@ -1660,7 +1662,7 @@ msgstr "你可以在开始使用 %(site_name)s 后添加书目。"
|
||||||
#: bookwyrm/templates/get_started/users.html:19
|
#: bookwyrm/templates/get_started/users.html:19
|
||||||
#: bookwyrm/templates/groups/members.html:15
|
#: bookwyrm/templates/groups/members.html:15
|
||||||
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
||||||
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
|
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
|
||||||
#: bookwyrm/templates/search/layout.html:4
|
#: bookwyrm/templates/search/layout.html:4
|
||||||
#: bookwyrm/templates/search/layout.html:9
|
#: bookwyrm/templates/search/layout.html:9
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
|
@ -1676,7 +1678,7 @@ msgid "Popular on %(site_name)s"
|
||||||
msgstr "%(site_name)s 上的热门"
|
msgstr "%(site_name)s 上的热门"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:58
|
#: bookwyrm/templates/get_started/books.html:58
|
||||||
#: bookwyrm/templates/lists/list.html:180
|
#: bookwyrm/templates/lists/list.html:222
|
||||||
msgid "No books found"
|
msgid "No books found"
|
||||||
msgstr "没有找到书目"
|
msgstr "没有找到书目"
|
||||||
|
|
||||||
|
@ -2021,7 +2023,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
|
||||||
msgstr "批准建议后,被提议的书将会永久添加到您的书架上并与您的阅读日期、书评、评分联系起来。"
|
msgstr "批准建议后,被提议的书将会永久添加到您的书架上并与您的阅读日期、书评、评分联系起来。"
|
||||||
|
|
||||||
#: bookwyrm/templates/import/manual_review.html:58
|
#: bookwyrm/templates/import/manual_review.html:58
|
||||||
#: bookwyrm/templates/lists/curate.html:59
|
#: bookwyrm/templates/lists/curate.html:71
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr "批准"
|
msgstr "批准"
|
||||||
|
@ -2232,6 +2234,21 @@ msgstr "在 <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>
|
||||||
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
msgstr "BookWyrm 是开源软件。你可以在 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a> 贡献或报告问题。"
|
msgstr "BookWyrm 是开源软件。你可以在 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a> 贡献或报告问题。"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:8
|
||||||
|
#, python-format
|
||||||
|
msgid "Add \"<em>%(title)s</em>\" to this list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:12
|
||||||
|
#, python-format
|
||||||
|
msgid "Suggest \"<em>%(title)s</em>\" for this list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:39
|
||||||
|
#: bookwyrm/templates/lists/list.html:249
|
||||||
|
msgid "Suggest"
|
||||||
|
msgstr "推荐"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:30
|
#: bookwyrm/templates/lists/bookmark_button.html:30
|
||||||
msgid "Un-save"
|
msgid "Un-save"
|
||||||
msgstr "取消保存"
|
msgstr "取消保存"
|
||||||
|
@ -2251,23 +2268,29 @@ msgstr "由 <a href=\"%(path)s\">%(username)s</a> 创建并策展"
|
||||||
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgstr "由 <a href=\"%(path)s\">%(username)s</a> 创建"
|
msgstr "由 <a href=\"%(path)s\">%(username)s</a> 创建"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:11
|
#: bookwyrm/templates/lists/curate.html:12
|
||||||
msgid "Curate"
|
msgid "Curate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:20
|
#: bookwyrm/templates/lists/curate.html:21
|
||||||
msgid "Pending Books"
|
msgid "Pending Books"
|
||||||
msgstr "等候中的书目"
|
msgstr "等候中的书目"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:23
|
#: bookwyrm/templates/lists/curate.html:24
|
||||||
msgid "You're all set!"
|
msgid "You're all set!"
|
||||||
msgstr "都弄好了!"
|
msgstr "都弄好了!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:43
|
#: bookwyrm/templates/lists/curate.html:45
|
||||||
|
#: bookwyrm/templates/lists/list.html:83
|
||||||
|
#, python-format
|
||||||
|
msgid "<a href=\"%(user_path)s\">%(username)s</a> says:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/curate.html:55
|
||||||
msgid "Suggested by"
|
msgid "Suggested by"
|
||||||
msgstr "推荐来自"
|
msgstr "推荐来自"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:65
|
#: bookwyrm/templates/lists/curate.html:77
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr "削除"
|
msgstr "削除"
|
||||||
|
|
||||||
|
@ -2291,7 +2314,7 @@ msgid "on <a href=\"/\">%(site_name)s</a>"
|
||||||
msgstr "在 <a href=\"/\">%(site_name)s</a>"
|
msgstr "在 <a href=\"/\">%(site_name)s</a>"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/embed-list.html:27
|
#: bookwyrm/templates/lists/embed-list.html:27
|
||||||
#: bookwyrm/templates/lists/list.html:43
|
#: bookwyrm/templates/lists/list.html:44
|
||||||
msgid "This list is currently empty"
|
msgid "This list is currently empty"
|
||||||
msgstr "此列表当前是空的"
|
msgstr "此列表当前是空的"
|
||||||
|
|
||||||
|
@ -2352,76 +2375,89 @@ msgstr "创建一个群组"
|
||||||
msgid "Delete list"
|
msgid "Delete list"
|
||||||
msgstr "删除列表"
|
msgstr "删除列表"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:35
|
#: bookwyrm/templates/lists/item_notes_field.html:7
|
||||||
|
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
||||||
|
msgid "Notes:"
|
||||||
|
msgstr "备注:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/item_notes_field.html:19
|
||||||
|
msgid "An optional note that will be displayed with the book."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:36
|
||||||
msgid "You successfully suggested a book for this list!"
|
msgid "You successfully suggested a book for this list!"
|
||||||
msgstr "你成功向该列表推荐了一本书!"
|
msgstr "你成功向该列表推荐了一本书!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:37
|
#: bookwyrm/templates/lists/list.html:38
|
||||||
msgid "You successfully added a book to this list!"
|
msgid "You successfully added a book to this list!"
|
||||||
msgstr "你成功向此列表添加了一本书!"
|
msgstr "你成功向此列表添加了一本书!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:81
|
#: bookwyrm/templates/lists/list.html:96
|
||||||
|
msgid "Edit notes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:111
|
||||||
|
msgid "Add notes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:123
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
msgstr "由 <a href=\"%(user_path)s\">%(username)s</a> 添加"
|
msgstr "由 <a href=\"%(user_path)s\">%(username)s</a> 添加"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:96
|
#: bookwyrm/templates/lists/list.html:138
|
||||||
msgid "List position"
|
msgid "List position"
|
||||||
msgstr "列表位置:"
|
msgstr "列表位置:"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:102
|
#: bookwyrm/templates/lists/list.html:144
|
||||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
||||||
msgid "Set"
|
msgid "Set"
|
||||||
msgstr "设定"
|
msgstr "设定"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:117
|
#: bookwyrm/templates/lists/list.html:159
|
||||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "移除"
|
msgstr "移除"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:131
|
#: bookwyrm/templates/lists/list.html:173
|
||||||
#: bookwyrm/templates/lists/list.html:148
|
#: bookwyrm/templates/lists/list.html:190
|
||||||
msgid "Sort List"
|
msgid "Sort List"
|
||||||
msgstr "排序列表"
|
msgstr "排序列表"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:141
|
#: bookwyrm/templates/lists/list.html:183
|
||||||
msgid "Direction"
|
msgid "Direction"
|
||||||
msgstr "方向"
|
msgstr "方向"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:155
|
#: bookwyrm/templates/lists/list.html:197
|
||||||
msgid "Add Books"
|
msgid "Add Books"
|
||||||
msgstr "添加书目"
|
msgstr "添加书目"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:157
|
#: bookwyrm/templates/lists/list.html:199
|
||||||
msgid "Suggest Books"
|
msgid "Suggest Books"
|
||||||
msgstr "推荐书目"
|
msgstr "推荐书目"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:168
|
#: bookwyrm/templates/lists/list.html:210
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "搜索"
|
msgstr "搜索"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:174
|
#: bookwyrm/templates/lists/list.html:216
|
||||||
msgid "Clear search"
|
msgid "Clear search"
|
||||||
msgstr "清除搜索"
|
msgstr "清除搜索"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:179
|
#: bookwyrm/templates/lists/list.html:221
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "No books found matching the query \"%(query)s\""
|
msgid "No books found matching the query \"%(query)s\""
|
||||||
msgstr "没有符合 “%(query)s” 请求的书目"
|
msgstr "没有符合 “%(query)s” 请求的书目"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:211
|
#: bookwyrm/templates/lists/list.html:260
|
||||||
msgid "Suggest"
|
|
||||||
msgstr "推荐"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:222
|
|
||||||
msgid "Embed this list on a website"
|
msgid "Embed this list on a website"
|
||||||
msgstr "将此列表嵌入到网站"
|
msgstr "将此列表嵌入到网站"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:230
|
#: bookwyrm/templates/lists/list.html:268
|
||||||
msgid "Copy embed code"
|
msgid "Copy embed code"
|
||||||
msgstr "复制嵌入代码"
|
msgstr "复制嵌入代码"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:232
|
#: bookwyrm/templates/lists/list.html:270
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
||||||
msgstr "%(list_name)s,%(owner)s 在 %(site_name)s 上的列表"
|
msgstr "%(list_name)s,%(owner)s 在 %(site_name)s 上的列表"
|
||||||
|
@ -3205,10 +3241,6 @@ msgstr "软件:"
|
||||||
msgid "Version:"
|
msgid "Version:"
|
||||||
msgstr "版本:"
|
msgstr "版本:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
|
||||||
msgid "Notes:"
|
|
||||||
msgstr "备注:"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance.html:19
|
#: bookwyrm/templates/settings/federation/instance.html:19
|
||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "详细"
|
msgstr "详细"
|
||||||
|
@ -4605,3 +4637,9 @@ msgstr "密码重置连接已发送给 {email}"
|
||||||
msgid "Status updates from {obj.display_name}"
|
msgid "Status updates from {obj.display_name}"
|
||||||
msgstr "{obj.display_name} 的状态更新"
|
msgstr "{obj.display_name} 的状态更新"
|
||||||
|
|
||||||
|
#: bookwyrm/views/updates.py:45
|
||||||
|
#, python-format
|
||||||
|
msgid "Load %(count)d unread status"
|
||||||
|
msgid_plural "Load %(count)d unread statuses"
|
||||||
|
msgstr[0] ""
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: bookwyrm\n"
|
"Project-Id-Version: bookwyrm\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-01-24 17:25+0000\n"
|
"POT-Creation-Date: 2022-01-28 02:50+0000\n"
|
||||||
"PO-Revision-Date: 2022-01-24 18:54\n"
|
"PO-Revision-Date: 2022-01-28 04:03\n"
|
||||||
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
"Last-Translator: Mouse Reeve <mousereeve@riseup.net>\n"
|
||||||
"Language-Team: Chinese Traditional\n"
|
"Language-Team: Chinese Traditional\n"
|
||||||
"Language: zh\n"
|
"Language: zh\n"
|
||||||
|
@ -46,33 +46,33 @@ msgstr ""
|
||||||
msgid "Unlimited"
|
msgid "Unlimited"
|
||||||
msgstr "不受限"
|
msgstr "不受限"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:483
|
#: bookwyrm/forms.py:489
|
||||||
msgid "List Order"
|
msgid "List Order"
|
||||||
msgstr "列表順序"
|
msgstr "列表順序"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:484
|
#: bookwyrm/forms.py:490
|
||||||
msgid "Book Title"
|
msgid "Book Title"
|
||||||
msgstr "書名"
|
msgstr "書名"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:485 bookwyrm/templates/shelf/shelf.html:155
|
#: bookwyrm/forms.py:491 bookwyrm/templates/shelf/shelf.html:155
|
||||||
#: bookwyrm/templates/shelf/shelf.html:187
|
#: bookwyrm/templates/shelf/shelf.html:187
|
||||||
#: bookwyrm/templates/snippets/create_status/review.html:32
|
#: bookwyrm/templates/snippets/create_status/review.html:32
|
||||||
msgid "Rating"
|
msgid "Rating"
|
||||||
msgstr "評價"
|
msgstr "評價"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:487 bookwyrm/templates/lists/list.html:135
|
#: bookwyrm/forms.py:493 bookwyrm/templates/lists/list.html:177
|
||||||
msgid "Sort By"
|
msgid "Sort By"
|
||||||
msgstr "排序方式"
|
msgstr "排序方式"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:491
|
#: bookwyrm/forms.py:497
|
||||||
msgid "Ascending"
|
msgid "Ascending"
|
||||||
msgstr "升序"
|
msgstr "升序"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:492
|
#: bookwyrm/forms.py:498
|
||||||
msgid "Descending"
|
msgid "Descending"
|
||||||
msgstr "降序"
|
msgstr "降序"
|
||||||
|
|
||||||
#: bookwyrm/forms.py:505
|
#: bookwyrm/forms.py:511
|
||||||
msgid "Reading finish date cannot be before start date."
|
msgid "Reading finish date cannot be before start date."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -283,10 +283,14 @@ msgid "Português Europeu (European Portuguese)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/settings.py:258
|
#: bookwyrm/settings.py:258
|
||||||
|
msgid "Swedish (Svenska)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/settings.py:259
|
||||||
msgid "简体中文 (Simplified Chinese)"
|
msgid "简体中文 (Simplified Chinese)"
|
||||||
msgstr "簡體中文"
|
msgstr "簡體中文"
|
||||||
|
|
||||||
#: bookwyrm/settings.py:259
|
#: bookwyrm/settings.py:260
|
||||||
msgid "繁體中文 (Traditional Chinese)"
|
msgid "繁體中文 (Traditional Chinese)"
|
||||||
msgstr "繁體中文"
|
msgstr "繁體中文"
|
||||||
|
|
||||||
|
@ -424,7 +428,7 @@ msgid "Copy address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/annual_summary/layout.html:68
|
#: bookwyrm/templates/annual_summary/layout.html:68
|
||||||
#: bookwyrm/templates/lists/list.html:231
|
#: bookwyrm/templates/lists/list.html:269
|
||||||
msgid "Copied!"
|
msgid "Copied!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -685,6 +689,7 @@ msgstr ""
|
||||||
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
#: bookwyrm/templates/book/file_links/edit_links.html:82
|
||||||
#: bookwyrm/templates/groups/form.html:30
|
#: bookwyrm/templates/groups/form.html:30
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:15
|
#: bookwyrm/templates/lists/bookmark_button.html:15
|
||||||
|
#: bookwyrm/templates/lists/edit_item_form.html:15
|
||||||
#: bookwyrm/templates/lists/form.html:130
|
#: bookwyrm/templates/lists/form.html:130
|
||||||
#: bookwyrm/templates/preferences/edit_user.html:124
|
#: bookwyrm/templates/preferences/edit_user.html:124
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:72
|
||||||
|
@ -708,6 +713,7 @@ msgstr "儲存"
|
||||||
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
#: bookwyrm/templates/book/file_links/verification_modal.html:21
|
||||||
#: bookwyrm/templates/book/sync_modal.html:23
|
#: bookwyrm/templates/book/sync_modal.html:23
|
||||||
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
#: bookwyrm/templates/groups/delete_group_modal.html:17
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:42
|
||||||
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
#: bookwyrm/templates/lists/delete_list_modal.html:18
|
||||||
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
#: bookwyrm/templates/readthrough/delete_readthrough_modal.html:23
|
||||||
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
#: bookwyrm/templates/readthrough/readthrough_modal.html:74
|
||||||
|
@ -811,7 +817,7 @@ msgstr "地點"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:348
|
#: bookwyrm/templates/book/book.html:348
|
||||||
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
#: bookwyrm/templates/groups/group.html:19 bookwyrm/templates/layout.html:74
|
||||||
#: bookwyrm/templates/lists/curate.html:7 bookwyrm/templates/lists/list.html:11
|
#: bookwyrm/templates/lists/curate.html:8 bookwyrm/templates/lists/list.html:12
|
||||||
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
#: bookwyrm/templates/lists/lists.html:5 bookwyrm/templates/lists/lists.html:12
|
||||||
#: bookwyrm/templates/search/layout.html:25
|
#: bookwyrm/templates/search/layout.html:25
|
||||||
#: bookwyrm/templates/search/layout.html:50
|
#: bookwyrm/templates/search/layout.html:50
|
||||||
|
@ -825,7 +831,8 @@ msgstr "新增到列表"
|
||||||
|
|
||||||
#: bookwyrm/templates/book/book.html:369
|
#: bookwyrm/templates/book/book.html:369
|
||||||
#: bookwyrm/templates/book/cover_add_modal.html:31
|
#: bookwyrm/templates/book/cover_add_modal.html:31
|
||||||
#: bookwyrm/templates/lists/list.html:209
|
#: bookwyrm/templates/lists/add_item_modal.html:37
|
||||||
|
#: bookwyrm/templates/lists/list.html:247
|
||||||
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
#: bookwyrm/templates/settings/email_blocklist/domain_form.html:24
|
||||||
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
#: bookwyrm/templates/settings/ip_blocklist/ip_address_form.html:31
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
|
@ -1542,16 +1549,11 @@ msgstr "所有訊息"
|
||||||
msgid "You have no messages right now."
|
msgid "You have no messages right now."
|
||||||
msgstr "你現在沒有訊息。"
|
msgstr "你現在沒有訊息。"
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:28
|
#: bookwyrm/templates/feed/feed.html:54
|
||||||
#, python-format
|
|
||||||
msgid "load <span data-poll=\"stream/%(tab_key)s\">0</span> unread status(es)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:51
|
|
||||||
msgid "There aren't any activities right now! Try following a user to get started"
|
msgid "There aren't any activities right now! Try following a user to get started"
|
||||||
msgstr "現在還沒有任何活動!嘗試著從關注一個使用者開始吧"
|
msgstr "現在還沒有任何活動!嘗試著從關注一個使用者開始吧"
|
||||||
|
|
||||||
#: bookwyrm/templates/feed/feed.html:52
|
#: bookwyrm/templates/feed/feed.html:55
|
||||||
msgid "Alternatively, you can try enabling more status types"
|
msgid "Alternatively, you can try enabling more status types"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1640,7 +1642,7 @@ msgid "What are you reading?"
|
||||||
msgstr "你在閱讀什麼?"
|
msgstr "你在閱讀什麼?"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:9
|
#: bookwyrm/templates/get_started/books.html:9
|
||||||
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:163
|
#: bookwyrm/templates/layout.html:47 bookwyrm/templates/lists/list.html:205
|
||||||
msgid "Search for a book"
|
msgid "Search for a book"
|
||||||
msgstr "搜尋書目"
|
msgstr "搜尋書目"
|
||||||
|
|
||||||
|
@ -1660,7 +1662,7 @@ msgstr "你可以在開始使用 %(site_name)s 後新增書目。"
|
||||||
#: bookwyrm/templates/get_started/users.html:19
|
#: bookwyrm/templates/get_started/users.html:19
|
||||||
#: bookwyrm/templates/groups/members.html:15
|
#: bookwyrm/templates/groups/members.html:15
|
||||||
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
#: bookwyrm/templates/groups/members.html:16 bookwyrm/templates/layout.html:53
|
||||||
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:167
|
#: bookwyrm/templates/layout.html:54 bookwyrm/templates/lists/list.html:209
|
||||||
#: bookwyrm/templates/search/layout.html:4
|
#: bookwyrm/templates/search/layout.html:4
|
||||||
#: bookwyrm/templates/search/layout.html:9
|
#: bookwyrm/templates/search/layout.html:9
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
|
@ -1676,7 +1678,7 @@ msgid "Popular on %(site_name)s"
|
||||||
msgstr "%(site_name)s 上的熱門"
|
msgstr "%(site_name)s 上的熱門"
|
||||||
|
|
||||||
#: bookwyrm/templates/get_started/books.html:58
|
#: bookwyrm/templates/get_started/books.html:58
|
||||||
#: bookwyrm/templates/lists/list.html:180
|
#: bookwyrm/templates/lists/list.html:222
|
||||||
msgid "No books found"
|
msgid "No books found"
|
||||||
msgstr "沒有找到書目"
|
msgstr "沒有找到書目"
|
||||||
|
|
||||||
|
@ -2021,7 +2023,7 @@ msgid "Approving a suggestion will permanently add the suggested book to your sh
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/import/manual_review.html:58
|
#: bookwyrm/templates/import/manual_review.html:58
|
||||||
#: bookwyrm/templates/lists/curate.html:59
|
#: bookwyrm/templates/lists/curate.html:71
|
||||||
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
#: bookwyrm/templates/settings/link_domains/link_domains.html:76
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr "批准"
|
msgstr "批准"
|
||||||
|
@ -2232,6 +2234,21 @@ msgstr "在 <a href=\"%(support_link)s\" target=\"_blank\">%(support_title)s</a>
|
||||||
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
msgid "BookWyrm's source code is freely available. You can contribute or report issues on <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a>."
|
||||||
msgstr "BookWyrm 是開源軟體。你可以在 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a> 貢獻或報告問題。"
|
msgstr "BookWyrm 是開源軟體。你可以在 <a href=\"https://github.com/mouse-reeve/bookwyrm\">GitHub</a> 貢獻或報告問題。"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:8
|
||||||
|
#, python-format
|
||||||
|
msgid "Add \"<em>%(title)s</em>\" to this list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:12
|
||||||
|
#, python-format
|
||||||
|
msgid "Suggest \"<em>%(title)s</em>\" for this list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/add_item_modal.html:39
|
||||||
|
#: bookwyrm/templates/lists/list.html:249
|
||||||
|
msgid "Suggest"
|
||||||
|
msgstr "推薦"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/bookmark_button.html:30
|
#: bookwyrm/templates/lists/bookmark_button.html:30
|
||||||
msgid "Un-save"
|
msgid "Un-save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2251,23 +2268,29 @@ msgstr "由 <a href=\"%(path)s\">%(username)s</a> 建立並管理"
|
||||||
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
msgid "Created by <a href=\"%(path)s\">%(username)s</a>"
|
||||||
msgstr "由 <a href=\"%(path)s\">%(username)s</a> 建立"
|
msgstr "由 <a href=\"%(path)s\">%(username)s</a> 建立"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:11
|
#: bookwyrm/templates/lists/curate.html:12
|
||||||
msgid "Curate"
|
msgid "Curate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:20
|
#: bookwyrm/templates/lists/curate.html:21
|
||||||
msgid "Pending Books"
|
msgid "Pending Books"
|
||||||
msgstr "等候中的書目"
|
msgstr "等候中的書目"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:23
|
#: bookwyrm/templates/lists/curate.html:24
|
||||||
msgid "You're all set!"
|
msgid "You're all set!"
|
||||||
msgstr "都弄好了!"
|
msgstr "都弄好了!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:43
|
#: bookwyrm/templates/lists/curate.html:45
|
||||||
|
#: bookwyrm/templates/lists/list.html:83
|
||||||
|
#, python-format
|
||||||
|
msgid "<a href=\"%(user_path)s\">%(username)s</a> says:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/curate.html:55
|
||||||
msgid "Suggested by"
|
msgid "Suggested by"
|
||||||
msgstr "推薦來自"
|
msgstr "推薦來自"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/curate.html:65
|
#: bookwyrm/templates/lists/curate.html:77
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr "放棄"
|
msgstr "放棄"
|
||||||
|
|
||||||
|
@ -2291,7 +2314,7 @@ msgid "on <a href=\"/\">%(site_name)s</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/embed-list.html:27
|
#: bookwyrm/templates/lists/embed-list.html:27
|
||||||
#: bookwyrm/templates/lists/list.html:43
|
#: bookwyrm/templates/lists/list.html:44
|
||||||
msgid "This list is currently empty"
|
msgid "This list is currently empty"
|
||||||
msgstr "此列表當前是空的"
|
msgstr "此列表當前是空的"
|
||||||
|
|
||||||
|
@ -2352,76 +2375,89 @@ msgstr ""
|
||||||
msgid "Delete list"
|
msgid "Delete list"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:35
|
#: bookwyrm/templates/lists/item_notes_field.html:7
|
||||||
|
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
||||||
|
msgid "Notes:"
|
||||||
|
msgstr "備註:"
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/item_notes_field.html:19
|
||||||
|
msgid "An optional note that will be displayed with the book."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:36
|
||||||
msgid "You successfully suggested a book for this list!"
|
msgid "You successfully suggested a book for this list!"
|
||||||
msgstr "你成功!向該列表推薦了一本書"
|
msgstr "你成功!向該列表推薦了一本書"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:37
|
#: bookwyrm/templates/lists/list.html:38
|
||||||
msgid "You successfully added a book to this list!"
|
msgid "You successfully added a book to this list!"
|
||||||
msgstr "你成功在此列表新增了一本書!"
|
msgstr "你成功在此列表新增了一本書!"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:81
|
#: bookwyrm/templates/lists/list.html:96
|
||||||
|
msgid "Edit notes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:111
|
||||||
|
msgid "Add notes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/templates/lists/list.html:123
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
msgid "Added by <a href=\"%(user_path)s\">%(username)s</a>"
|
||||||
msgstr "由 <a href=\"%(user_path)s\">%(username)s</a> 新增"
|
msgstr "由 <a href=\"%(user_path)s\">%(username)s</a> 新增"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:96
|
#: bookwyrm/templates/lists/list.html:138
|
||||||
msgid "List position"
|
msgid "List position"
|
||||||
msgstr "列表位置:"
|
msgstr "列表位置:"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:102
|
#: bookwyrm/templates/lists/list.html:144
|
||||||
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
#: bookwyrm/templates/settings/link_domains/edit_domain_modal.html:21
|
||||||
msgid "Set"
|
msgid "Set"
|
||||||
msgstr "設定"
|
msgstr "設定"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:117
|
#: bookwyrm/templates/lists/list.html:159
|
||||||
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
#: bookwyrm/templates/snippets/remove_from_group_button.html:20
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "移除"
|
msgstr "移除"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:131
|
#: bookwyrm/templates/lists/list.html:173
|
||||||
#: bookwyrm/templates/lists/list.html:148
|
#: bookwyrm/templates/lists/list.html:190
|
||||||
msgid "Sort List"
|
msgid "Sort List"
|
||||||
msgstr "排序列表"
|
msgstr "排序列表"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:141
|
#: bookwyrm/templates/lists/list.html:183
|
||||||
msgid "Direction"
|
msgid "Direction"
|
||||||
msgstr "方向"
|
msgstr "方向"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:155
|
#: bookwyrm/templates/lists/list.html:197
|
||||||
msgid "Add Books"
|
msgid "Add Books"
|
||||||
msgstr "新增書目"
|
msgstr "新增書目"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:157
|
#: bookwyrm/templates/lists/list.html:199
|
||||||
msgid "Suggest Books"
|
msgid "Suggest Books"
|
||||||
msgstr "推薦書目"
|
msgstr "推薦書目"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:168
|
#: bookwyrm/templates/lists/list.html:210
|
||||||
msgid "search"
|
msgid "search"
|
||||||
msgstr "搜尋"
|
msgstr "搜尋"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:174
|
#: bookwyrm/templates/lists/list.html:216
|
||||||
msgid "Clear search"
|
msgid "Clear search"
|
||||||
msgstr "清除搜尋"
|
msgstr "清除搜尋"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:179
|
#: bookwyrm/templates/lists/list.html:221
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "No books found matching the query \"%(query)s\""
|
msgid "No books found matching the query \"%(query)s\""
|
||||||
msgstr "沒有符合 \"%(query)s\" 請求的書目"
|
msgstr "沒有符合 \"%(query)s\" 請求的書目"
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:211
|
#: bookwyrm/templates/lists/list.html:260
|
||||||
msgid "Suggest"
|
|
||||||
msgstr "推薦"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:222
|
|
||||||
msgid "Embed this list on a website"
|
msgid "Embed this list on a website"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:230
|
#: bookwyrm/templates/lists/list.html:268
|
||||||
msgid "Copy embed code"
|
msgid "Copy embed code"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: bookwyrm/templates/lists/list.html:232
|
#: bookwyrm/templates/lists/list.html:270
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
msgid "%(list_name)s, a list by %(owner)s on %(site_name)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3205,10 +3241,6 @@ msgstr "軟件:"
|
||||||
msgid "Version:"
|
msgid "Version:"
|
||||||
msgstr "版本:"
|
msgstr "版本:"
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/edit_instance.html:74
|
|
||||||
msgid "Notes:"
|
|
||||||
msgstr "備註:"
|
|
||||||
|
|
||||||
#: bookwyrm/templates/settings/federation/instance.html:19
|
#: bookwyrm/templates/settings/federation/instance.html:19
|
||||||
msgid "Details"
|
msgid "Details"
|
||||||
msgstr "詳細"
|
msgstr "詳細"
|
||||||
|
@ -4605,3 +4637,9 @@ msgstr "密碼重置連結已傳送給 {email}"
|
||||||
msgid "Status updates from {obj.display_name}"
|
msgid "Status updates from {obj.display_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: bookwyrm/views/updates.py:45
|
||||||
|
#, python-format
|
||||||
|
msgid "Load %(count)d unread status"
|
||||||
|
msgid_plural "Load %(count)d unread statuses"
|
||||||
|
msgstr[0] ""
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
celery==5.2.2
|
celery==5.2.2
|
||||||
colorthief==0.2.1
|
colorthief==0.2.1
|
||||||
Django==3.2.10
|
Django==3.2.11
|
||||||
django-imagekit==4.1.0
|
django-imagekit==4.1.0
|
||||||
django-model-utils==4.0.0
|
django-model-utils==4.0.0
|
||||||
environs==9.3.4
|
environs==9.3.4
|
||||||
|
|
Loading…
Reference in a new issue